hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
changeset 15943 d830a939d985
parent 14583 d70ee55535f4
child 18507 61bfc8995bb3
child 22807 1cf02ef734e2
--- a/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Fri Mar 08 08:22:18 2013 -0800
+++ b/hotspot/src/share/vm/interpreter/abstractInterpreter.hpp	Wed Mar 13 09:44:45 2013 +0100
@@ -186,7 +186,8 @@
                                     int caller_actual_parameters,
                                     int callee_params,
                                     int callee_locals,
-                                    bool is_top_frame) {
+                                    bool is_top_frame,
+                                    bool is_bottom_frame) {
     return layout_activation(method,
                              temps,
                              popframe_args,
@@ -196,7 +197,8 @@
                              callee_locals,
                              (frame*)NULL,
                              (frame*)NULL,
-                             is_top_frame);
+                             is_top_frame,
+                             is_bottom_frame);
   }
 
   static int       layout_activation(Method* method,
@@ -208,7 +210,8 @@
                                      int callee_locals,
                                      frame* caller,
                                      frame* interpreter_frame,
-                                     bool is_top_frame);
+                                     bool is_top_frame,
+                                     bool is_bottom_frame);
 
   // Runtime support
   static bool       is_not_reached(                       methodHandle method, int bci);