hotspot/src/share/vm/runtime/vframeArray.cpp
changeset 24018 77b156916bab
parent 20282 7f9cbdf89af2
child 24424 2658d7834c6e
--- a/hotspot/src/share/vm/runtime/vframeArray.cpp	Mon Apr 14 09:04:36 2014 +0000
+++ b/hotspot/src/share/vm/runtime/vframeArray.cpp	Tue Apr 01 09:36:49 2014 +0200
@@ -418,24 +418,20 @@
 
 }
 
-int vframeArrayElement::on_stack_size(int caller_actual_parameters,
-                                      int callee_parameters,
+int vframeArrayElement::on_stack_size(int callee_parameters,
                                       int callee_locals,
                                       bool is_top_frame,
-                                      bool is_bottom_frame,
                                       int popframe_extra_stack_expression_els) const {
   assert(method()->max_locals() == locals()->size(), "just checking");
   int locks = monitors() == NULL ? 0 : monitors()->number_of_monitors();
   int temps = expressions()->size();
-  return Interpreter::size_activation(method(),
+  return Interpreter::size_activation(method()->max_stack(),
                                       temps + callee_parameters,
                                       popframe_extra_stack_expression_els,
                                       locks,
-                                      caller_actual_parameters,
                                       callee_parameters,
                                       callee_locals,
-                                      is_top_frame,
-                                      is_bottom_frame);
+                                      is_top_frame);
 }