Searched refs:get_index_u2 (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
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();
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 Dbytecode.cpp204 return get_index_u2(rawc, false);
H A DinterpreterRuntime.cpp116 int index = wide ? get_index_u2(thread, Bytecodes::_ldc_w) : get_index_u1(thread, Bytecodes::_ldc);
206 int i = get_index_u2(thread, Bytecodes::_multianewarray);
240 int which = get_index_u2(thread, Bytecodes::_checkcast);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp138 u2 cpi_old = _s_old->get_index_u2();
139 u2 cpi_new = _s_new->get_index_u2();
207 u2 cpi_old = _s_old->get_index_u2();
208 u2 cpi_new = _s_new->get_index_u2();
231 if (_s_old->get_index_u2() != _s_new->get_index_u2())
299 // We could use get_index_u2 and get_constant_u2, but it's simpler to grab all four bytes at once:
/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);
H A DciStreams.cpp175 return get_index_u2();
205 return get_index_u2();
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp732 opcode, bcs.get_index_u2(), &current_frame,
1562 index = bcs.get_index_u2();
1584 bci, bcs.get_index_u2(), cp, &current_frame, CHECK_VERIFY(this));
1599 index = bcs.get_index_u2();
1608 index = bcs.get_index_u2();
1622 index = bcs.get_index_u2();
2103 u2 index = bcs->get_index_u2();
2277 cp->signature_ref_at(bcs->get_index_u2()));
2304 u2 index = bcs->get_index_u2();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp2677 case Bytecodes::_new : new_instance(s.get_index_u2()); break;
2682 case Bytecodes::_checkcast : check_cast(s.get_index_u2()); break;
2683 case Bytecodes::_instanceof : instance_of(s.get_index_u2()); break;

Completed in 62 milliseconds