Searched defs:trap_state (Results 1 - 2 of 2) sorted by relevance

/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();
/openjdk7/hotspot/src/share/vm/runtime/
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...]

Completed in 38 milliseconds