< prev index next >

src/hotspot/cpu/sparc/frame_sparc.inline.hpp

Print this page
rev 56101 : 8227745: Enable Escape Analysis for better performance when debugging
Reviewed-by: ???

@@ -176,14 +176,14 @@
   const Argument link = Argument(0, false);
   return (JavaCallWrapper**)&sp()[link.as_in().as_register()->sp_offset_in_saved_window()];
 }
 
 
-inline oop  frame::saved_oop_result(RegisterMap* map) const      {
+inline oop  frame::saved_oop_result(const RegisterMap* map) const      {
   return *((oop*) map->location(O0->as_VMReg()));
 }
 
-inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) {
+inline void frame::set_saved_oop_result(const RegisterMap* map, oop obj) {
   *((oop*) map->location(O0->as_VMReg())) = obj;
 }
 
 #endif // CPU_SPARC_FRAME_SPARC_INLINE_HPP
< prev index next >