# HG changeset patch # User Doug Simon # Date 1344036901 -7200 # Node ID a7b2eaf364dee4b519c95d97d9f0655a758c673f # Parent 77196bba55758fb5139742a4563fd0f2665a10bd added info message suggesting use of -G:-PrintCFG in conjuction with -G:+PrintBinaryGraphs diff -r 77196bba5575 -r a7b2eaf364de graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java Mon Jul 30 08:37:04 2012 -0700 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotDebugConfig.java Sat Aug 04 01:35:01 2012 +0200 @@ -66,6 +66,9 @@ } dumpHandlers.add(new GraphPrinterDumpHandler()); if (GraalOptions.PrintCFG) { + if (GraalOptions.PrintBinaryGraphs) { + TTY.println("CFG dumping slows down PrintBinaryGraphs: use -G:-PrintCFG to disable it"); + } dumpHandlers.add(new CFGPrinterObserver()); } this.output = output;