Searched refs:bcp_from (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp210 return Bytecodes::java_code_at(this, bcp_from(bci));
213 return Bytecodes::code_at(this, bcp_from(bci));
586 address bcp_from(int bci) const;
H A DmethodOop.cpp206 assert(bci == -1 || bci == bci_from(bcp_from(bci)), "sane bci if >=0");
210 address methodOopDesc::bcp_from(int bci) const { function in class:methodOopDesc
1580 _orig_bytecode = (Bytecodes::Code) *m->bcp_from(_bci);
1589 Bytecodes::Code code = (Bytecodes::Code) *method->bcp_from(_bci);
1595 *method->bcp_from(_bci) = Bytecodes::_breakpoint;
1608 *method->bcp_from(_bci) = orig_bytecode();
H A DgenerateOopMap.cpp998 address bcp = _method->bcp_from(bb->_end_bci);
1006 address bcp = _method->bcp_from(bb->_end_bci);
2392 bcp = _method->bcp_from(bcs->bci());
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp176 bcp = method()->bcp_from(0); // first byte code
180 bcp = method()->bcp_from(bci());
183 bcp = method()->bcp_from(bci());
H A Dframe.cpp444 interpreter_frame_set_bcx((intptr_t)interpreter_frame_method()->bcp_from(bci));
450 return is_bci(bcx) ? interpreter_frame_method()->bcp_from(bcx) : (address)bcx;
H A DsharedRuntime.cpp588 address bcp = method()->bcp_from(vfst.bci());
1792 Bytecode_checkcast cc(vfst.method(), vfst.method()->bcp_from(vfst.bci()));
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp196 Bytecode_member_ref(methodHandle method, int bci) : Bytecode(method(), method()->bcp_from(bci)), _method(method) {}
333 Bytecode_loadconstant(methodHandle method, int bci): Bytecode(method(), method->bcp_from(bci)), _method(method) { verify(); }
H A Drewriter.cpp386 address bcp = original_method->bcp_from(0);
H A Dbytecodes.cpp93 return code_at(method, method->bcp_from(bci));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp854 { Bytecode_new bnew(caller_method(), caller_method->bcp_from(bci));
859 { Bytecode_multianewarray mna(caller_method(), caller_method->bcp_from(bci));
864 { Bytecode_instanceof io(caller_method(), caller_method->bcp_from(bci));
869 { Bytecode_checkcast cc(caller_method(), caller_method->bcp_from(bci));
874 { Bytecode_anewarray anew(caller_method(), caller_method->bcp_from(bci));
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp283 return _method->bcp_from(_bci);
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp442 Bytecodes::Code code = Bytecodes::code_or_bp_at(method->bcp_from(_bci));

Completed in 82 milliseconds