# HG changeset patch # User Bernhard Urban # Date 1379337510 -7200 # Node ID 01512eb1ae7b535b4a73748bee6f673d7ee3742b # Parent 74ea8747b43a2106124992731a8a96d31b4e6a15 bootstrap: print number of compiled methods diff -r 74ea8747b43a -r 01512eb1ae7b graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/VMToCompilerImpl.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/VMToCompilerImpl.java Mon Sep 16 10:02:14 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/VMToCompilerImpl.java Mon Sep 16 15:18:30 2013 +0200 @@ -432,7 +432,7 @@ bootstrapRunning = false; - TTY.println(" in %d ms", System.currentTimeMillis() - startTime); + TTY.println(" in %d ms (compiled %d methods)", System.currentTimeMillis() - startTime, compileQueue.getCompletedTaskCount()); if (graalRuntime.getCache() != null) { graalRuntime.getCache().clear(); } diff -r 74ea8747b43a -r 01512eb1ae7b mx/sanitycheck.py --- a/mx/sanitycheck.py Mon Sep 16 10:02:14 2013 +0200 +++ b/mx/sanitycheck.py Mon Sep 16 15:18:30 2013 +0200 @@ -252,13 +252,15 @@ return Test("Scala-DaCapo-" + name, ['-jar', dacapo, name] + _noneAsEmptyList(dacapoArgs), [dacapoSuccess], [dacapoFail], [dacapoMatcher], ['-Xms2g', '-XX:+' + gc, '-XX:-UseCompressedOops']) def getBootstraps(): - time = re.compile(r"Bootstrapping Graal\.+ in (?P