# HG changeset patch # User Andreas Woess # Date 1381341823 -7200 # Node ID f2fbdf89a1a5330c28465ef7add3c0880e24f82e # Parent c52e4ba9530607bc3365f539a8538e2fdf2b971c Remove obsolete TruffleCompilerOptions. diff -r c52e4ba95306 -r f2fbdf89a1a5 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 Wed Oct 09 19:38:58 2013 +0200 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerOptions.java Wed Oct 09 20:03:43 2013 +0200 @@ -34,7 +34,7 @@ /** * Instructs the Truffle Compiler to compile call targets only if their name contains at least one element of a comma-separated list of includes. * Excludes are prefixed with a tilde (~). - * + * * The format in EBNF: *
      * CompileOnly = Element, { ',', Element } ;
@@ -56,10 +56,6 @@
     @Option(help = "")
     public static final OptionValue TruffleFunctionInlining = new OptionValue<>(true);
     @Option(help = "")
-    public static final OptionValue TruffleConstantUnrollLimit = new OptionValue<>(32);
-    @Option(help = "")
-    public static final OptionValue TruffleOperationCacheMaxNodes = new OptionValue<>(350);
-    @Option(help = "")
     public static final OptionValue TruffleGraphMaxNodes = new OptionValue<>(20000);
     @Option(help = "")
     public static final OptionValue TruffleInliningMaxRecursiveDepth = new OptionValue<>(2);
@@ -83,8 +79,6 @@
     @Option(help = "")
     public static final OptionValue TraceTruffleCacheDetails = new OptionValue<>(false);
     @Option(help = "")
-    public static final OptionValue TraceTrufflePerformanceWarnings = new OptionValue<>(false);
-    @Option(help = "")
     public static final OptionValue TruffleInlinePrinter = new OptionValue<>(false);
     @Option(help = "")
     public static final OptionValue TraceTruffleCompilationExceptions = new OptionValue<>(true);