# HG changeset patch # User Christian Humer # Date 1412868359 -7200 # Node ID 1615d78a9d350bd6b99950360f51f931c927683b # Parent 04d6bb76cfb36d98841f540691f8c63aa12e1e95 Truffle: add some documentation for TurffleCallTargetProfiling. diff -r 04d6bb76cfb3 -r 1615d78a9d35 graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java --- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java Thu Oct 09 17:25:59 2014 +0200 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java Thu Oct 09 17:25:59 2014 +0200 @@ -126,7 +126,7 @@ public static final OptionValue TraceTruffleTransferToInterpreter = new StableOptionValue<>(false); @Option(help = "Print stack trace on assumption invalidation") public static final OptionValue TraceTruffleAssumptions = new StableOptionValue<>(false); - @Option(help = "") + @Option(help = "Print a summary of execution counts for all executed CallTargets. Introduces counter overhead for each call.") public static final OptionValue TruffleCallTargetProfiling = new StableOptionValue<>(false); // @formatter:on }