comparison src/share/vm/c1/c1_Instruction.hpp @ 4116:973293defacd

7112085: assert(fr.interpreter_frame_expression_stack_size()==0) failed: only handle empty stacks Summary: Move the inlinee invoke notification callback into inlinee preamble Reviewed-by: kvn, never
author iveresov
date Wed, 16 Nov 2011 19:42:58 -0800
parents a32de5085326
children 701a83c86f28
comparison
equal deleted inserted replaced
4115:1bd45abaa507 4116:973293defacd
499 virtual Throw* as_Throw() { return NULL; } 499 virtual Throw* as_Throw() { return NULL; }
500 virtual Base* as_Base() { return NULL; } 500 virtual Base* as_Base() { return NULL; }
501 virtual RoundFP* as_RoundFP() { return NULL; } 501 virtual RoundFP* as_RoundFP() { return NULL; }
502 virtual ExceptionObject* as_ExceptionObject() { return NULL; } 502 virtual ExceptionObject* as_ExceptionObject() { return NULL; }
503 virtual UnsafeOp* as_UnsafeOp() { return NULL; } 503 virtual UnsafeOp* as_UnsafeOp() { return NULL; }
504 virtual ProfileInvoke* as_ProfileInvoke() { return NULL; }
504 505
505 virtual void visit(InstructionVisitor* v) = 0; 506 virtual void visit(InstructionVisitor* v) = 0;
506 507
507 virtual bool can_trap() const { return false; } 508 virtual bool can_trap() const { return false; }
508 509