diff src/share/vm/runtime/arguments.cpp @ 3568:409ef3a68dc8

re-lock objects whose lock was removed by escape analysis, enable stack walking compilation policy (-XX:CompilationPolicyChoice=1)
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 01 Sep 2011 15:28:24 +0200
parents 4aa80ca3dbec
children 4e3bcc322fdc
line wrap: on
line diff
--- a/src/share/vm/runtime/arguments.cpp	Thu Sep 01 09:52:58 2011 +0200
+++ b/src/share/vm/runtime/arguments.cpp	Thu Sep 01 15:28:24 2011 +0200
@@ -2018,7 +2018,7 @@
 
   if (UseGraal) {
     if (PrintVMOptions) {
-      tty->print("Running Graal VM... ");
+      tty->print_cr("Running Graal VM... ");
     }
     const int BUFFER_SIZE = 1024;
     char maxine_dir[BUFFER_SIZE];
@@ -2026,7 +2026,7 @@
     if (!os::getenv("MAXINE", maxine_dir, sizeof(maxine_dir))) {
 	  fatal("Must set MAXINE environment variable to a Maxine project directory.");
     }
-    if (PrintVMOptions) tty->print("MAXINE=%s", maxine_dir);
+    if (PrintVMOptions) tty->print_cr("MAXINE=%s", maxine_dir);
 	SysClassPath scp_compiler(Arguments::get_sysclasspath());
     sprintf(temp, "%s/com.oracle.max.cri/bin", maxine_dir);
     scp_compiler.add_prefix(temp);