Lines Matching defs:Bytecode

53 class Bytecode: public StackObj {
71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) {
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 {
281 Bytecode_checkcast(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
289 class Bytecode_instanceof: public Bytecode {
291 Bytecode_instanceof(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
298 class Bytecode_new: public Bytecode {
300 Bytecode_new(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
307 class Bytecode_multianewarray: public Bytecode {
309 Bytecode_multianewarray(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
316 class Bytecode_anewarray: public Bytecode {
318 Bytecode_anewarray(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
326 class Bytecode_loadconstant: public Bytecode {
333 Bytecode_loadconstant(methodHandle method, int bci): Bytecode(method(), method->bcp_from(bci)), _method(method) { verify(); }