changeset 18339:f212e8329825

Truffle: increased the default TruffleTimeThreshold from 5s to 25s. This should be backed out once we have OSR.
author Danilo Ansaloni <danilo.ansaloni@oracle.com>
date Tue, 11 Nov 2014 15:15:19 +0100
parents c4f374adce13
children a0381103324b
files graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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<Integer> 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<Integer> TruffleTimeThreshold = new OptionValue<>(5000);
+    public static final OptionValue<Integer> TruffleTimeThreshold = new OptionValue<>(25000);
     @Option(help = "Minimum number of calls before a call target is compiled")
     public static final OptionValue<Integer> TruffleMinInvokeThreshold = new OptionValue<>(3);
     @Option(help = "Delay compilation after an invalidation to allow for reprofiling")