comparison jvmci/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/services/JVMCICompilerFactory.java @ 23781:276858bc6ac6

recast "JVMCI flags" language to "JVMCI system properties"
author Doug Simon <doug.simon@oracle.com>
date Wed, 05 Oct 2016 17:30:21 +0200
parents 6c8eaf47db9a
children 1523f2f7832f
comparison
equal deleted inserted replaced
23780:4ae76f509448 23781:276858bc6ac6
72 * Create a new instance of a {@link JVMCICompiler}. 72 * Create a new instance of a {@link JVMCICompiler}.
73 */ 73 */
74 public abstract JVMCICompiler createCompiler(JVMCIRuntime runtime); 74 public abstract JVMCICompiler createCompiler(JVMCIRuntime runtime);
75 75
76 /** 76 /**
77 * Prints a help message describing the flags supported by this compiler and how to set them. 77 * Prints a help message describing the system properties used to configure this compiler.
78 * 78 *
79 * @param out where to print the message 79 * @param out where to print the message
80 */ 80 */
81 public void printFlags(PrintStream out) { 81 public void printSystemProperties(PrintStream out) {
82 } 82 }
83 } 83 }