changeset 3551:7d9e3ee49ac9

Made default for GraalBailoutIsFatal "false".
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 22 Aug 2011 12:19:03 +0200
parents 25765a764212
children aa7b62997aa0
files perf/benchmarktool.py runeclipse.sh runfop.sh src/share/vm/c1/c1_globals.hpp
diffstat 4 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/perf/benchmarktool.py	Fri Aug 19 17:28:37 2011 +0200
+++ b/perf/benchmarktool.py	Mon Aug 22 12:19:03 2011 +0200
@@ -85,6 +85,7 @@
         benchmarks = runBash('java -jar ' + os.environ['DACAPO'] + '/dacapo-9.12-bach.jar -l').read().decode().split(' ')
     
         benchmarkTime = re.compile(r"===== DaCapo 9\.12 ([a-zA-Z0-9_]+) ((PASSED)|(completed warmup [0-9]+)) in ([0-9]+) msec =====")
+	print('command: ' + cmd)
     
         csvOutput = [['benchmark', 'type', 'time']]
         csvOutputLine = 0
--- a/runeclipse.sh	Fri Aug 19 17:28:37 2011 +0200
+++ b/runeclipse.sh	Mon Aug 22 12:19:03 2011 +0200
@@ -15,7 +15,7 @@
   echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
   exit 1;
 fi
-COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 5 eclipse"
+COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 15 eclipse"
 echo $COMMAND
 $COMMAND
 echo $COMMAND
--- a/runfop.sh	Fri Aug 19 17:28:37 2011 +0200
+++ b/runfop.sh	Mon Aug 22 12:19:03 2011 +0200
@@ -15,4 +15,4 @@
   echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
   exit 1;
 fi
-${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal $* Harness --preserve -n 100 fop 
+${JDK7}/bin/java -graal -Xms1g -Xmx2g -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal $* Harness --preserve -n 100 fop 
--- a/src/share/vm/c1/c1_globals.hpp	Fri Aug 19 17:28:37 2011 +0200
+++ b/src/share/vm/c1/c1_globals.hpp	Mon Aug 22 12:19:03 2011 +0200
@@ -57,7 +57,7 @@
           "Use graal instead of C1")                                        \
   product(bool, DebugGraal, true,                                           \
           "Enable JVMTI for the compiler thread")                           \
-  product(bool, GraalBailoutIsFatal, true,                                  \
+  product(bool, GraalBailoutIsFatal, false,                                 \
           "Abort the VM on graal bailout")                                  \
   product(bool, BootstrapGraal, true,                                       \
           "Bootstrap graal before running Java main method")                \