Searched defs:get_index_u2 (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp70 static int get_index_u2(JavaThread *thread, Bytecodes::Code bc) function in class:InterpreterRuntime
71 { return bytecode(thread).get_index_u2(bc); }
H A DbytecodeStream.hpp168 int get_index_u2() const { assert(!is_wide(), ""); return get_index_u2_raw(bcp() + 1); } function in class:RawBytecodeStream
228 int get_index() const { return is_wide() ? bytecode().get_index_u2(raw_code(), true) : get_index_u1(); }
230 int get_index_u2() const { assert_raw_stream(false);
231 return bytecode().get_index_u2(raw_code(), false); }
H A Dbytecode.hpp90 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { function in class:Bytecode
285 long index() const { return get_index_u2(Bytecodes::_checkcast); };
295 long index() const { return get_index_u2(Bytecodes::_instanceof); };
304 long index() const { return get_index_u2(Bytecodes::_new); };
313 long index() const { return get_index_u2(Bytecodes::_multianewarray); };
322 long index() const { return get_index_u2(Bytecodes::_anewarray); };
H A DbytecodeTracer.cpp60 int get_index_u2() { int i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; } function in class:BytecodePrinter
64 int get_index_special() { return (is_wide()) ? get_index_u2() : get_index_u1(); }
406 print_constant(get_index_u2(), st);
440 int klass_index = get_index_u2();
447 int klass_index = get_index_u2();
554 { int i = get_index_u2();
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp169 ? get_index_u2(true) // yes, return wide index
174 int get_index_u2(bool is_wide = false) const { function in class:ciBytecodeStream
175 return bytecode().get_index_u2(cur_bc_raw(), is_wide);

Completed in 53 milliseconds