# HG changeset patch # User Danilo Ansaloni # Date 1415715319 -3600 # Node ID f212e8329825a7d834aafcaddb706954c245e064 # Parent c4f374adce13803108d5c3120e7a28d3665f93f2 Truffle: increased the default TruffleTimeThreshold from 5s to 25s. This should be backed out once we have OSR. diff -r c4f374adce13 -r f212e8329825 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 Tue Nov 11 14:24:21 2014 +0100 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java Tue Nov 11 15:15:19 2014 +0100 @@ -46,7 +46,7 @@ @Option(help = "Compile call target when call count exceeds this threshold") public static final OptionValue TruffleCompilationThreshold = new OptionValue<>(1000); @Option(help = "Defines the maximum timespan in milliseconds that is required for a call target to be queued for compilation.") - public static final OptionValue TruffleTimeThreshold = new OptionValue<>(5000); + public static final OptionValue TruffleTimeThreshold = new OptionValue<>(25000); @Option(help = "Minimum number of calls before a call target is compiled") public static final OptionValue TruffleMinInvokeThreshold = new OptionValue<>(3); @Option(help = "Delay compilation after an invalidation to allow for reprofiling")