Searched defs:Bytecode (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java31 public class Bytecode { class
38 Bytecode(Method method, int bci) { method in class:Bytecode
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp81 Bytecode bytecode() const { return Bytecode(this, _bc_start); }
82 Bytecode next_bytecode() const { return Bytecode(this, _pc); }
419 Bytecode::Bytecode(const ciBytecodeStream* stream, address bcp): _bcp(bcp != NULL ? bcp : stream->cur_bcp()), _code(Bytecodes::code_at(NULL, addr_at(0))) {} function in class:Bytecode
420 Bytecode_lookupswitch::Bytecode_lookupswitch(const ciBytecodeStream* stream): Bytecode(stream) { verify(); }
421 Bytecode_tableswitch::Bytecode_tableswitch(const ciBytecodeStream* stream): Bytecode(stream) { verify(); }
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp53 class Bytecode: public StackObj { class in inherits:StackObj
71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) { function in class:Bytecode
75 inline Bytecode(const ciBytecodeStream* stream, address bcp = NULL);
159 class Bytecode_lookupswitch: public Bytecode {
161 Bytecode_lookupswitch(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
175 class Bytecode_tableswitch: public Bytecode {
177 Bytecode_tableswitch(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
192 class Bytecode_member_ref: public Bytecode {
196 Bytecode_member_ref(methodHandle method, int bci) : Bytecode(method(), method()->bcp_from(bci)), _method(method) {}
279 class Bytecode_checkcast: public Bytecode {
[all...]

Completed in 1482 milliseconds