# HG changeset patch # User Doug Simon # Date 1475681421 -7200 # Node ID 276858bc6ac606840547d7512a6d278cb0c1a44e # Parent 4ae76f509448c1debe7f683b68a7296a928bccd8 recast "JVMCI flags" language to "JVMCI system properties" diff -r 4ae76f509448 -r 276858bc6ac6 jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java --- a/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java Wed Oct 05 16:28:05 2016 +0200 +++ b/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java Wed Oct 05 17:30:21 2016 +0200 @@ -174,11 +174,11 @@ } /** - * Prints all option flags to {@code out}. + * Prints system properties used to configure shared JVMCI code. * * @param out stream to print to */ - public static void printFlags(PrintStream out) { + public static void printSystemProperties(PrintStream out) { out.println("[JVMCI system properties]"); int typeWidth = 0; int nameWidth = 0; @@ -311,8 +311,8 @@ if (config.getFlag("JVMCIPrintSystemProperties", Boolean.class)) { PrintStream out = new PrintStream(getLogStream()); - Option.printFlags(out); - compilerFactory.printFlags(out); + Option.printSystemProperties(out); + compilerFactory.printSystemProperties(out); } if (Option.PrintConfig.getBoolean()) { diff -r 4ae76f509448 -r 276858bc6ac6 jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/services/JVMCICompilerFactory.java --- a/jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/services/JVMCICompilerFactory.java Wed Oct 05 16:28:05 2016 +0200 +++ b/jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/services/JVMCICompilerFactory.java Wed Oct 05 17:30:21 2016 +0200 @@ -74,10 +74,10 @@ public abstract JVMCICompiler createCompiler(JVMCIRuntime runtime); /** - * Prints a help message describing the flags supported by this compiler and how to set them. + * Prints a help message describing the system properties used to configure this compiler. * * @param out where to print the message */ - public void printFlags(PrintStream out) { + public void printSystemProperties(PrintStream out) { } }