Searched refs:trap_state (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.hpp291 // The trap_state stored in a MDO is decoded here.
297 static DeoptReason trap_state_reason(int trap_state);
298 static int trap_state_has_reason(int trap_state, int reason);
299 static int trap_state_add_reason(int trap_state, int reason);
300 static bool trap_state_is_recompiled(int trap_state);
301 static int trap_state_set_recompiled(int trap_state, bool z);
303 int trap_state);
H A Ddeoptimization.cpp1317 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) { argument
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, in argument
1725 trap_state_add_reason(int trap_state, int reason) argument
1740 trap_state_is_recompiled(int trap_state) argument
1744 trap_state_set_recompiled(int trap_state, bool z) argument
1750 format_trap_state(char* buf, size_t buflen, int trap_state) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.cpp203 // Conservatively decode the trap_state of a ciProfileData.
209 // Impossible for this trap to have occurred, regardless of trap_state.
225 return Deoptimization::trap_state_has_reason(data->trap_state(), per_bc_reason);
233 return Deoptimization::trap_state_is_recompiled(data->trap_state())? 1: 0;
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.hpp121 // The _struct._flags word is formatted as [trap_state:4 | flags:4].
127 // The trap_state is collected only if ProfileTraps is true.
165 int trap_state() { function in class:VALUE_OBJ_CLASS_SPEC
379 int trap_state() {
380 return data()->trap_state();
H A DmethodDataOop.cpp84 int trap = trap_state();

Completed in 35 milliseconds