Lines Matching refs:trap_state

1317         int dos = (pdata == NULL)? 0: pdata->trap_state();
1548 int tstate0 = pdata->trap_state();
1634 int tstate0 = pdata->trap_state();
1688 // Further breakdown of DataLayout::trap_state, as promised by DataLayout.
1694 Deoptimization::trap_state_reason(int trap_state) {
1699 int recompile_bit = (trap_state & DS_RECOMPILE_BIT);
1700 trap_state -= recompile_bit;
1701 if (trap_state == DS_REASON_MASK) {
1705 return (DeoptReason)trap_state;
1709 int Deoptimization::trap_state_has_reason(int trap_state, int reason) {
1712 int recompile_bit = (trap_state & DS_RECOMPILE_BIT);
1713 trap_state -= recompile_bit;
1714 if (trap_state == DS_REASON_MASK) {
1716 } else if (trap_state == reason) {
1718 } else if (trap_state == 0) {
1725 int Deoptimization::trap_state_add_reason(int trap_state, int reason) {
1727 int recompile_bit = (trap_state & DS_RECOMPILE_BIT);
1728 trap_state -= recompile_bit;
1729 if (trap_state == DS_REASON_MASK) {
1730 return trap_state + recompile_bit; // already at state lattice bottom
1731 } else if (trap_state == reason) {
1732 return trap_state + recompile_bit; // the condition is already true
1733 } else if (trap_state == 0) {
1740 bool Deoptimization::trap_state_is_recompiled(int trap_state) {
1741 return (trap_state & DS_RECOMPILE_BIT) != 0;
1744 int Deoptimization::trap_state_set_recompiled(int trap_state, bool z) {
1745 if (z) return trap_state | DS_RECOMPILE_BIT;
1746 else return trap_state & ~DS_RECOMPILE_BIT;
1751 int trap_state) {
1752 DeoptReason reason = trap_state_reason(trap_state);
1753 bool recomp_flag = trap_state_is_recompiled(trap_state);
1764 if (decoded_state != trap_state) {
1766 len = jio_snprintf(buf, buflen, "#%d", trap_state);
1939 bool Deoptimization::trap_state_is_recompiled(int trap_state) {
1956 int Deoptimization::trap_state_has_reason(int trap_state, int reason) {
1966 int trap_state) {
1967 jio_snprintf(buf, buflen, "#%d", trap_state);