Searched defs:code_at (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
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 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); }
/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
/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));

Completed in 41 milliseconds