hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/sparc/SPARCFrame.java
changeset 46620 750c6edff33b
parent 40357 d46cac7959c4
--- a/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/sparc/SPARCFrame.java	Tue Jul 04 15:58:10 2017 +0200
+++ b/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/sparc/SPARCFrame.java	Thu Apr 13 09:57:51 2017 +0200
@@ -845,7 +845,7 @@
   // // Also begin is one past last monitor.
   //
   // inline BasicObjectLock* frame::interpreter_frame_monitor_begin()       const  {
-  //   int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
+  //   int rounded_vm_local_words = align_up(frame::interpreter_frame_vm_local_words, WordsPerLong);
   //   return (BasicObjectLock *)fp_addr_at(-rounded_vm_local_words);
   // }
   //
@@ -860,7 +860,7 @@
   //
   //
   // inline int frame::interpreter_frame_monitor_size() {
-  //   return round_to(BasicObjectLock::size(), WordsPerLong);
+  //   return align_up(BasicObjectLock::size(), WordsPerLong);
   // }
 
   public Address addressOfInterpreterFrameMethod() {