# HG changeset patch # User Christian Humer # Date 1397557243 -7200 # Node ID 4833806209f2c99c8bcddeb6bc07b8c4818b21c0 # Parent ed29f7ff71ebb5918c7858d2f82f5213a1ca6372 Truffle: fixed compiler options. diff -r ed29f7ff71eb -r 4833806209f2 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 Mon Apr 14 17:21:49 2014 -1000 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java Tue Apr 15 12:20:43 2014 +0200 @@ -44,9 +44,9 @@ @Option(help = "Restrict compilation to comma-separated list of includes (or excludes prefixed with tilde)") public static final OptionValue TruffleCompileOnly = new OptionValue<>(null); @Option(help = "Compile call target when call count exceeds this threshold") - public static final OptionValue TruffleCompilationThreshold = new OptionValue<>(3); + public static final OptionValue TruffleCompilationThreshold = new OptionValue<>(1000); @Option(help = "Minimum number of calls before a call target is compiled") - public static final OptionValue TruffleMinInvokeThreshold = new OptionValue<>(1000); + public static final OptionValue TruffleMinInvokeThreshold = new OptionValue<>(3); @Option(help = "Delay compilation after an invalidation to allow for reprofiling") public static final OptionValue TruffleInvalidationReprofileCount = new OptionValue<>(3); @Option(help = "Delay compilation after a node replacement")