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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java282 static final int _bc_can_rewrite = 1<<1; // bytecode execution has an alternate form field in class:Bytecodes
379 public static boolean canRewrite (int code) { check(code); return has_all_flags(code, _bc_can_rewrite, false); }
840 if (java_code != code) bc_flags |= _bc_can_rewrite;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp315 _bc_can_rewrite = 1<<1, // bytecode execution has an alternate form enumerator in enum:Bytecodes::Flags
404 static bool can_rewrite (Code code) { check(code); return has_all_flags(code, _bc_can_rewrite, false); }

Completed in 37 milliseconds