Searched refs:get_index_u1 (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp124 int get_index_u1() const { assert_raw_index_size(1); return *(jubyte*)(bcp()+1); } function in class:BaseBytecodeStream
166 int get_index() const { return (is_wide()) ? get_index_u2_raw(bcp() + 2) : get_index_u1(); }
228 int get_index() const { return is_wide() ? bytecode().get_index_u2(raw_code(), true) : get_index_u1(); }
H A DbytecodeTracer.cpp59 int get_index_u1() { return *(address)_next_pc++; } function in class:BytecodePrinter
61 int get_index_u1_cpcache() { return get_index_u1() + constantPoolOopDesc::CPCACHE_INDEX_TAG; }
64 int get_index_special() { return (is_wide()) ? get_index_u2() : get_index_u1(); }
397 print_constant(get_index_u1(), st);
431 BasicType atype = (BasicType)get_index_u1();
448 int nof_dims = get_index_u1();
541 int n = get_index_u1();
H A DinterpreterRuntime.hpp68 static int get_index_u1(JavaThread *thread, Bytecodes::Code bc) function in class:InterpreterRuntime
69 { return bytecode(thread).get_index_u1(bc); }
H A Dbytecode.cpp202 return get_index_u1(rawc);
H A Dbytecode.hpp86 int get_index_u1(Bytecodes::Code bc) const { function in class:Bytecode
H A DinterpreterRuntime.cpp116 int index = wide ? get_index_u2(thread, Bytecodes::_ldc_w) : get_index_u1(thread, Bytecodes::_ldc);
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp156 int get_index_u1() const { function in class:ciBytecodeStream
157 return bytecode().get_index_u1(cur_bc_raw());
170 : get_index_u1(); // no, return narrow index
H A DciStreams.cpp166 return get_index_u1();
202 return get_index_u1();
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp726 opcode, bcs.get_index_u1(), &current_frame,

Completed in 50 milliseconds