src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/CompilerConfigurationFactory.java
changeset 57537 ecc6e394475f
parent 55509 d58442b8abc1
child 58299 6df94ce3ab2f
equal deleted inserted replaced
57536:67cce1b84a9a 57537:ecc6e394475f
   198             if ("help".equals(value)) {
   198             if ("help".equals(value)) {
   199                 System.out.println("The available compiler configurations are:");
   199                 System.out.println("The available compiler configurations are:");
   200                 for (CompilerConfigurationFactory candidate : getAllCandidates()) {
   200                 for (CompilerConfigurationFactory candidate : getAllCandidates()) {
   201                     System.out.println("    " + candidate.name);
   201                     System.out.println("    " + candidate.name);
   202                 }
   202                 }
   203                 System.exit(0);
   203                 HotSpotGraalServices.exit(0);
   204             } else if (value != null) {
   204             } else if (value != null) {
   205                 for (CompilerConfigurationFactory candidate : GraalServices.load(CompilerConfigurationFactory.class)) {
   205                 for (CompilerConfigurationFactory candidate : GraalServices.load(CompilerConfigurationFactory.class)) {
   206                     if (candidate.name.equals(value)) {
   206                     if (candidate.name.equals(value)) {
   207                         factory = candidate;
   207                         factory = candidate;
   208                         break;
   208                         break;