changeset 22700:1ecbf6cc9ab0

removed Graal compiler options from JVMCICompiler
author Doug Simon <doug.simon@oracle.com>
date Wed, 21 Oct 2015 22:45:57 +0200
parents ea58bbafd5b9
children 6b1cd334f300
files jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/JVMCICompiler.java mx.jvmci/suite.py
diffstat 2 files changed, 2 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/JVMCICompiler.java	Wed Oct 21 09:06:12 2015 -0700
+++ b/jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/JVMCICompiler.java	Wed Oct 21 22:45:57 2015 +0200
@@ -23,21 +23,10 @@
 package jdk.vm.ci.runtime;
 
 import jdk.vm.ci.code.CompilationRequest;
-import jdk.vm.ci.options.Option;
-import jdk.vm.ci.options.OptionType;
-import jdk.vm.ci.options.OptionValue;
 
 public interface JVMCICompiler {
     int INVOCATION_ENTRY_BCI = -1;
 
-    @Option(help = "", type = OptionType.Debug) OptionValue<String> PrintFilter = new OptionValue<>(null);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintCompilation = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintAfterCompilation = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintBailout = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> ExitVMOnBailout = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> ExitVMOnException = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintStackTraceOnException = new OptionValue<>(false);
-
     /**
      * Services a compilation request. This object should compile the method to machine code and
      * install it in the code cache if the compilation is successful.
--- a/mx.jvmci/suite.py	Wed Oct 21 09:06:12 2015 -0700
+++ b/mx.jvmci/suite.py	Wed Oct 21 22:45:57 2015 +0200
@@ -109,7 +109,6 @@
       "sourceDirs" : ["src"],
       "dependencies" : [
         "jdk.vm.ci.code",
-        "jdk.vm.ci.options"
       ],
       "checkstyle" : "jdk.vm.ci.service",
       "annotationProcessors" : ["JVMCI_OPTIONS_PROCESSOR"],
@@ -123,6 +122,7 @@
       "dependencies" : [
         "mx:JUNIT",
         "jdk.vm.ci.common",
+        "jdk.vm.ci.options",
         "jdk.vm.ci.runtime",
       ],
       "checkstyle" : "jdk.vm.ci.service",
@@ -196,6 +196,7 @@
       "dependencies" : [
         "jdk.vm.ci.hotspotvmconfig",
         "jdk.vm.ci.common",
+        "jdk.vm.ci.options",
         "jdk.vm.ci.runtime",
         "jdk.vm.ci.service",
       ],