diff mx/sanitycheck.py @ 7569:7cae58134ff7

collection of Graal compilation speed metrics is now triggered by -XX:+CITime instead of -Dgraal.benchmark.compilation=true
author Doug Simon <doug.simon@oracle.com>
date Wed, 30 Jan 2013 22:33:04 +0100
parents a8bc60aeacb8
children 2025455e7d80
line wrap: on
line diff
--- a/mx/sanitycheck.py	Wed Jan 30 21:36:28 2013 +0100
+++ b/mx/sanitycheck.py	Wed Jan 30 22:33:04 2013 +0100
@@ -290,7 +290,7 @@
             parser.addMatcher(scoreMatcher)
 
         if self.benchmarkCompilationRate:
-            opts.append('-Dgraal.benchmark.compilation=true')
+            opts.append('-XX:+CITime')
             bps = re.compile(r"ParsedBytecodesPerSecond@final: (?P<rate>[0-9]+)")
             ibps = re.compile(r"InlinedBytecodesPerSecond@final: (?P<rate>[0-9]+)")
             parser.addMatcher(ValuesMatcher(bps, {'group' : 'ParsedBytecodesPerSecond', 'name' : self.name, 'score' : '<rate>'}))