hotspot/src/cpu/x86/vm/frame_x86.hpp
changeset 4752 67a506670cd0
parent 1 489c9b5090e2
child 5547 f4b087cbb361
equal deleted inserted replaced
4751:9418f690831d 4752:67a506670cd0
   161 
   161 
   162   intptr_t* ptr_at_addr(int offset) const {
   162   intptr_t* ptr_at_addr(int offset) const {
   163     return (intptr_t*) addr_at(offset);
   163     return (intptr_t*) addr_at(offset);
   164   }
   164   }
   165 
   165 
       
   166 #if ASSERT
       
   167   // Used in frame::sender_for_{interpreter,compiled}_frame
       
   168   static void verify_deopt_original_pc(   nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false);
       
   169   static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) {
       
   170     verify_deopt_original_pc(nm, unextended_sp, true);
       
   171   }
       
   172 #endif
       
   173 
   166  public:
   174  public:
   167   // Constructors
   175   // Constructors
   168 
   176 
   169   frame(intptr_t* sp, intptr_t* fp, address pc);
   177   frame(intptr_t* sp, intptr_t* fp, address pc);
   170 
   178