< prev index next >

src/hotspot/share/c1/c1_IR.hpp

Print this page
rev 60137 : 8227745: Enable Escape Analysis for Better Performance in the Presence of JVMTI Agents
Reviewed-by: mdoerr, goetz
rev 60138 : 8227745: delta webrev.5 -> webrev.6

@@ -245,12 +245,12 @@
     bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis.
     bool rethrow_exception = false;
     bool not_global_escape_in_scope = false;
     bool arg_escape = false;
     recorder->describe_scope(pc_offset, methodHandle(), scope()->method(), bci(),
-                             reexecute, rethrow_exception, is_method_handle_invoke, return_oop, not_global_escape_in_scope, arg_escape,
-                             locvals, expvals, monvals);
+                             reexecute, rethrow_exception, is_method_handle_invoke, return_oop,
+                             not_global_escape_in_scope, arg_escape, locvals, expvals, monvals);
   }
 };
 
 
 class CodeEmitInfo: public CompilationResourceObj {
< prev index next >