hotspot/src/cpu/x86/vm/frame_x86.cpp
changeset 2880 c2974244a496
parent 1066 717c3345024f
child 3261 c7d5aae8d3f7
--- a/hotspot/src/cpu/x86/vm/frame_x86.cpp	Wed Jun 03 18:15:25 2009 -0700
+++ b/hotspot/src/cpu/x86/vm/frame_x86.cpp	Fri Jun 05 10:25:39 2009 -0700
@@ -237,9 +237,8 @@
   return Interpreter::contains(pc());
 }
 
-int frame::frame_size() const {
-  RegisterMap map(JavaThread::current(), false);
-  frame sender = this->sender(&map);
+int frame::frame_size(RegisterMap* map) const {
+  frame sender = this->sender(map);
   return sender.sp() - sp();
 }