comparison src/cpu/x86/vm/frame_x86.hpp @ 8883:b9a918201d47

Merge with hsx25
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sat, 06 Apr 2013 20:04:06 +0200
parents b8f261ba79c6 47bc9800972c
children d8041d695d19
comparison
equal deleted inserted replaced
8660:d47b52b0ff68 8883:b9a918201d47
168 168
169 intptr_t* ptr_at_addr(int offset) const { 169 intptr_t* ptr_at_addr(int offset) const {
170 return (intptr_t*) addr_at(offset); 170 return (intptr_t*) addr_at(offset);
171 } 171 }
172 172
173 #if ASSERT 173 #ifdef ASSERT
174 // Used in frame::sender_for_{interpreter,compiled}_frame 174 // Used in frame::sender_for_{interpreter,compiled}_frame
175 static void verify_deopt_original_pc( nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false); 175 static void verify_deopt_original_pc( nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false);
176 static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) { 176 static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) {
177 verify_deopt_original_pc(nm, unextended_sp, true); 177 verify_deopt_original_pc(nm, unextended_sp, true);
178 } 178 }