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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java281 static final int _bc_can_trap = 1<<0; // bytecode execution can trap or block field in class:Bytecodes
377 public static boolean canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); }
839 if (can_trap) bc_flags |= _bc_can_trap;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp314 _bc_can_trap = 1<<0, // bytecode execution can trap or block enumerator in enum:Bytecodes::Flags
402 static bool can_trap (Code code) { check(code); return has_all_flags(code, _bc_can_trap, false); }

Completed in 29 milliseconds