< prev index next >
src/share/vm/runtime/vm_operations.hpp
Print this page
*** 270,280 ****
friend class Deoptimization;
private:
JavaThread* _thread;
intptr_t* _id;
! VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id);
public:
VMOp_Type type() const { return VMOp_DeoptimizeFrame; }
void doit();
bool allow_nested_vm_operations() const { return true; }
--- 270,281 ----
friend class Deoptimization;
private:
JavaThread* _thread;
intptr_t* _id;
! int _reason;
! VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id, int reason);
public:
VMOp_Type type() const { return VMOp_DeoptimizeFrame; }
void doit();
bool allow_nested_vm_operations() const { return true; }
< prev index next >