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

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp233 int get_index_u2_cpcache() const { assert_raw_stream(false);
234 return bytecode().get_index_u2_cpcache(raw_code()); }
H A DinterpreterRuntime.hpp72 static int get_index_u2_cpcache(JavaThread *thread, Bytecodes::Code bc) function in class:InterpreterRuntime
73 { return bytecode(thread).get_index_u2_cpcache(bc); }
H A DbytecodeTracer.cpp62 int get_index_u2_cpcache() { int i=Bytes::get_native_u2(_next_pc); _next_pc+=2; return i + constantPoolOopDesc::CPCACHE_INDEX_TAG; } function in class:BytecodePrinter
404 print_constant(get_index_u2_cpcache(), st);
530 print_field_or_method(get_index_u2_cpcache(), st);
536 print_field_or_method(get_index_u2_cpcache(), st);
540 { int i = get_index_u2_cpcache();
H A Dbytecode.cpp173 return get_index_u2_cpcache(rawc);
H A DinterpreterRuntime.cpp516 LinkResolver::resolve_field(info, pool, get_index_u2_cpcache(thread, bytecode),
683 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
694 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
743 get_index_u2_cpcache(thread, bytecode), bytecode, CHECK);
H A Dbytecode.hpp101 int get_index_u2_cpcache(Bytecodes::Code bc) const { function in class:Bytecode
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp179 int get_index_u2_cpcache() const { function in class:ciBytecodeStream
180 return bytecode().get_index_u2_cpcache(cur_bc_raw());
H A DciStreams.cpp269 return get_index_u2_cpcache();
351 return get_index_u2_cpcache();
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp156 int cpci_old = _s_old->get_index_u2_cpcache();
157 int cpci_new = _s_new->get_index_u2_cpcache();
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1283 int idx = currentBC->has_index_u4() ? currentBC->get_index_u4() : currentBC->get_index_u2_cpcache();
1315 int idx = currentBC->has_index_u4() ? currentBC->get_index_u4() : currentBC->get_index_u2_cpcache();
1578 case Bytecodes::_getstatic: do_field(true, true, itr->get_index_u2_cpcache(), itr->bci()); break;
1579 case Bytecodes::_putstatic: do_field(false, true, itr->get_index_u2_cpcache(), itr->bci()); break;
1580 case Bytecodes::_getfield: do_field(true, false, itr->get_index_u2_cpcache(), itr->bci()); break;
1581 case Bytecodes::_putfield: do_field(false, false, itr->get_index_u2_cpcache(), itr->bci()); break;
1584 case Bytecodes::_invokespecial: do_method(false, false, itr->get_index_u2_cpcache(), itr->bci()); break;
1585 case Bytecodes::_invokestatic: do_method(true, false, itr->get_index_u2_cpcache(), itr->bci()); break;
1587 case Bytecodes::_invokeinterface: do_method(false, true, itr->get_index_u2_cpcache(), itr->bci()); break;
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp430 int index = iter.get_index_u2_cpcache();

Completed in 58 milliseconds