Searched refs:code_at (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp373 static Code code_at(const methodOopDesc* method, address bcp) { function in class:Bytecodes
380 return java_code(code_at(method, bcp));
386 static Code code_at(methodOop method, int bci);
411 static int special_length_at(methodOop method, address bcp, address end = NULL) { return special_length_at(code_at(method, bcp), bcp, end); }
414 static int length_at (methodOop method, address bcp) { return length_for_code_at(code_at(method, bcp), bcp); }
H A DbytecodeStream.hpp198 raw_code = Bytecodes::code_at(_method(), bcp);
H A DbytecodeTracer.cpp103 code = Bytecodes::code_at(method(), bcp+1);
105 code = Bytecodes::code_at(method(), bcp);
130 Bytecodes::Code code = Bytecodes::code_at(method(), bcp);
134 code = Bytecodes::code_at(method(), bcp+1);
H A DinterpreterRuntime.hpp64 return Bytecodes::code_at(method(thread), bcp(thread));
H A Dbytecode.hpp71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) {
H A Dinterpreter.cpp263 Bytecodes::Code code = method()->code_at(bci);
H A Dbytecodes.cpp92 Bytecodes::Code Bytecodes::code_at(methodOop method, int bci) { function in class:Bytecodes
93 return code_at(method, method->bcp_from(bci));
H A DbytecodeInterpreter.cpp842 if ( Bytecodes::code_at(METHOD, pc) == Bytecodes::_return_register_finalizer) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.hpp101 Bytecodes::Code code_at(int bci) const { return (Bytecodes::Code) code_array()[bci]; } function in class:Relocator
H A Drelocator.cpp213 Bytecodes::Code bc= code_at(bci);
311 switch (bc= code_at(bci)) {
654 Bytecodes::Code bc = code_at(bci);
H A Ddeoptimization.cpp1006 Bytecodes::Code code = vf->method()->code_at(bci);
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp419 Bytecode::Bytecode(const ciBytecodeStream* stream, address bcp): _bcp(bcp != NULL ? bcp : stream->cur_bcp()), _code(Bytecodes::code_at(NULL, addr_at(0))) {}
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp212 Bytecodes::Code code_at(int bci) const { function in class:methodOopDesc
213 return Bytecodes::code_at(this, bcp_from(bci));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp401 Bytecodes::Code branch = Bytecodes::code_at(method(), pc);

Completed in 59 milliseconds