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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java286 static final int _fmt_has_j = 1<<3; // constant pool cache index, such as getfield "bjj" field in class:Bytecodes
302 static final int _fmt_bJJ = _fmt_b | _fmt_has_j | _fmt_has_u2 | _fmt_has_nbo;
381 public static boolean uses_cp_cache (int code) { check(code); return has_all_flags(code, _fmt_has_j, false); }
436 case 'j': this_flag = _fmt_has_j; has_jbo = true; break;
444 case 'J': this_flag = _fmt_has_j; has_nbo = true; break;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp319 _fmt_has_j = 1<<3, // constant pool cache index, such as getfield "bjj" enumerator in enum:Bytecodes::Flags
335 _fmt_bJJ = _fmt_b | _fmt_has_j | _fmt_has_u2 | _fmt_has_nbo,
407 static bool uses_cp_cache (Code code) { check(code); return has_all_flags(code, _fmt_has_j, false); }

Completed in 40 milliseconds