Searched refs:_fmt_has_k (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp320 _fmt_has_k = 1<<4, // constant pool index, such as ldc "bk" enumerator in enum:Bytecodes::Flags
334 _fmt_bkk = _fmt_b | _fmt_has_k | _fmt_has_u2,
H A Dbytecodes.cpp203 // 2. to derive bytecode format flags (_fmt_has_k, etc.)
239 case 'k': this_flag = _fmt_has_k; has_jbo = 1; break;
247 case 'K': this_flag = _fmt_has_k; has_nbo = 1; break;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java287 static final int _fmt_has_k = 1<<4; // constant pool index, such as ldc "bk" field in class:Bytecodes
301 static final int _fmt_bkk = _fmt_b | _fmt_has_k | _fmt_has_u2;
437 case 'k': this_flag = _fmt_has_k; has_jbo = true; break;
445 case 'K': this_flag = _fmt_has_k; has_nbo = true; break;

Completed in 534 milliseconds