Searched refs:help (Results 1 - 25 of 110) sorted by relevance

12345

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/
H A DGraalOptions.java36 @Option(help = "Use compiler intrinsifications.", type = OptionType.Debug)
39 @Option(help = "Inline calls with monomorphic type profile.", type = OptionType.Expert)
42 @Option(help = "Inline calls with polymorphic type profile.", type = OptionType.Expert)
45 @Option(help = "Inline calls with megamorphic type profile (i.e., not all types could be recorded).", type = OptionType.Expert)
48 @Option(help = "Maximum desired size of the compiler graph in nodes.", type = OptionType.User)
51 @Option(help = "Minimum probability for methods to be inlined for megamorphic type profiles.", type = OptionType.Expert)
54 @Option(help = "Maximum level of recursive inlining.", type = OptionType.Expert)
57 @Option(help = "Graphs with less than this number of nodes are trivial and therefore always inlined.", type = OptionType.Expert)
60 @Option(help = "Inlining is explored up to this number of nodes in the graph for each call site.", type = OptionType.Expert)
63 @Option(help
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.salver/src/org/graalvm/compiler/salver/
H A DSalverOptions.java32 @Option(help = "Enable dumps via Salver trace events.", type = OptionType.Debug)
35 @Option(help = "Network address (Salver).", type = OptionType.Debug)
38 @Option(help = "Network port (Salver).", type = OptionType.Debug)
41 @Option(help = "Dump to files as opposed to sending them over the network (Salver).", type = OptionType.Debug)
44 //@Option(help = "Use binary format for dumps (Salver).", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.java/src/org/graalvm/compiler/java/
H A DBytecodeParserOptions.java38 @Option(help = "The trace level for the bytecode parser used when building a graph from bytecode", type = OptionType.Debug)
41 @Option(help = "Inlines trivial methods during bytecode parsing.", type = OptionType.Expert)
44 @Option(help = "Inlines intrinsic methods during bytecode parsing.", type = OptionType.Expert)
47 @Option(help = "Traces inlining performed during bytecode parsing.", type = OptionType.Debug)
50 @Option(help = "Traces use of plugins during bytecode parsing.", type = OptionType.Debug)
53 @Option(help = "Maximum depth when inlining during bytecode parsing.", type = OptionType.Debug)
56 @Option(help = "Dump graphs after non-trivial changes during bytecode parsing.", type = OptionType.Debug)
59 @Option(help = "When creating info points hide the methods of the substitutions.", type = OptionType.Debug)
62 @Option(help = "Use intrinsics guarded by a virtual dispatch test at indirect call sites.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/
H A DHotspotSnippetsOptions.java40 @Option(help = "If the probability that a type check will hit one the profiled types (up to " +
44 @Option(help = "The maximum number of profiled types that will be used when compiling a profiled type check. " +
48 @Option(help = "Use a VM runtime call to load and clear the exception object from the thread at the start of a compiled exception handler.", type = OptionType.Debug)
51 @Option(help = "Enable profiling of allocation sites.", type = OptionType.Debug)
54 @Option(help = "Control the naming of the counters when using ProfileAllocations.", type = OptionType.Debug)
57 @Option(help = "Enable profiling of monitor operations.", type = OptionType.Debug)
60 @Option(help = "Trace monitor operations on objects whose type contains this substring.", type = OptionType.Debug)
63 @Option(help = "Trace monitor operations in methods whose fully qualified name contains this substring.", type = OptionType.Debug)
66 @Option(help = "Emit extra code to dynamically check monitor operations are balanced.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/
H A DGraalCompilerOptions.java35 @Option(help = "Repeatedly run the LIR code generation pass to improve statistical profiling results.", type = OptionType.Debug)
37 @Option(help = "", type = OptionType.Debug)
39 @Option(help = "", type = OptionType.Debug)
41 @Option(help = "", type = OptionType.Debug)
43 @Option(help = "", type = OptionType.Debug)
45 @Option(help = "", type = OptionType.Debug)
47 @Option(help = "", type = OptionType.Debug)
49 @Option(help = "", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/
H A DStubOptions.java39 @Option(help = "Trace execution of stub used to handle an exception thrown by a callee.", type = OptionType.Debug)
42 @Option(help = "Trace execution of the stub that routes an exception to a handler in the calling frame.", type = OptionType.Debug)
45 @Option(help = "Trace execution of slow path stub for array allocation.", type = OptionType.Debug)
48 @Option(help = "Trace execution of slow path stub for non-array object allocation.", type = OptionType.Debug)
51 @Option(help = "Force non-array object allocation to always use the slow path.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DCompileTheWorldOptions.java37 @Option(help = "Class path denoting methods to compile", type = OptionType.Debug)
39 @Option(help = "Verbose CompileTheWorld operation", type = OptionType.Debug)
41 @Option(help = "The number of CompileTheWorld iterations to perform", type = OptionType.Debug)
43 @Option(help = "Only compile methods matching this filter", type = OptionType.Debug)
45 @Option(help = "Exclude methods matching this filter from compilation", type = OptionType.Debug)
47 @Option(help = "First class to consider when using -XX:+CompileTheWorld", type = OptionType.Debug)
49 @Option(help = "Last class to consider when using -XX:+CompileTheWorld", type = OptionType.Debug)
51 @Option(help = "Option value overrides to use during compile the world. For example, " +
56 @Option(help = "Run CTW using as many threads as there are processors on the system", type = OptionType.Debug)
58 @Option(help
[all...]
H A DHotSpotTTYStreamProvider.java38 @Option(help = "File to which logging is sent. A %p in the name will be replaced with a string identifying " +
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/
H A DOptionDescriptor.java33 protected final String help; field in class:OptionDescriptor
38 public static OptionDescriptor create(String name, Class<?> type, String help, Class<?> declaringClass, String fieldName, OptionValue<?> option) { argument
41 result = new OptionDescriptor(name, type, help, declaringClass, fieldName, option);
48 private OptionDescriptor(String name, Class<?> type, String help, Class<?> declaringClass, String fieldName, OptionValue<?> option) { argument
51 this.help = help;
67 * Gets a descriptive help message for the option.
70 return help;
H A DOption.java41 * Gets a help message for the option. New lines can be embedded in the message with
44 String help(); method in interface:Option
/openjdk9/jdk/test/sun/security/tools/keytool/
H A Dfile-in-help.sh26 # @summary keytool's help on -file always shows 'output file'
47 $TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -printcertreq -help 2> h1 || exit 1
48 $TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -exportcert -help 2> h2 || exit 2
H A Dnewhelp.sh26 # @summary keytool -help is unhelpful
47 $TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -help 2> h1 || exit 1
48 $TESTJAVA${FS}bin${FS}keytool ${TESTTOOLVMOPTS} -help -list 2> h2 || exit 2
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DGraalDebugConfig.java51 @Option(help = "Pattern for scope(s) in which dumping is enabled (see DebugFilter and Debug.dump)", type = OptionType.Debug)
53 @Option(help = "Pattern for scope(s) in which counting is enabled (see DebugFilter and Debug.counter). " +
56 @Option(help = "Pattern for scope(s) in which verification is enabled (see DebugFilter and Debug.verify).", type = OptionType.Debug)
63 @Option(help = "Pattern for scope(s) in which memory use tracking is enabled (see DebugFilter and Debug.counter). " +
66 @Option(help = "Pattern for scope(s) in which timing is enabled (see DebugFilter and Debug.timer). " +
69 @Option(help = "Pattern for scope(s) in which logging is enabled (see DebugFilter and Debug.log)", type = OptionType.Debug)
71 @Option(help = "Pattern for filtering debug scope output based on method context (see MethodFilter)", type = OptionType.Debug)
73 @Option(help = "Only check MethodFilter against the root method in the context if true, otherwise check all methods", type = OptionType.Debug)
76 @Option(help = "How to print counters and timing values:%n" +
82 @Option(help
[all...]
H A DFingerprint.java40 @Option(help = "Enables execution fingerprinting.")//
43 @Option(help = "Limit number of events shown in fingerprinting error message.")//
46 @Option(help = "Fingerprinting event at which to execute breakpointable code.")//
/openjdk9/jdk/test/java/awt/MenuBar/DeadlockTest1/
H A DDeadlockTest1.java43 Menu help = new Menu("Help");
57 menubar.add(help);
58 menubar.setHelpMenu(help);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotAOTProfilingPlugin.java36 @Option(help = "Do profiling and callbacks to tiered runtime", type = OptionType.User)//
38 @Option(help = "Invocation notification frequency", type = OptionType.Expert)//
40 @Option(help = "Inlinee invocation notification frequency (-1 means count, but do not notify)", type = OptionType.Expert)//
42 @Option(help = "Invocation profile probability", type = OptionType.Expert)//
44 @Option(help = "Backedge notification frequency", type = OptionType.Expert)//
46 @Option(help = "Backedge profile probability", type = OptionType.Expert)//
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DPostAllocationOptimizationStage.java42 @Option(help = "", type = OptionType.Debug)
44 @Option(help = "", type = OptionType.Debug)
46 @Option(help = "", type = OptionType.Debug)
48 @Option(help = "", type = OptionType.Debug)
50 @Option(help = "Enables profiling of move types on LIR level. " +
54 @Option(help = "Enables profiling of methods.", type = OptionType.Debug)
/openjdk9/jdk/test/tools/jjs/
H A Djjs-helpTest.sh31 # Tests that the output of 'jjs -help' is not empty
38 ${JJS} -J-Djava.security.manager -help > jjs-helpTest.out 2>&1
42 echo "Output of jjs -help is empty. Failed."
/openjdk9/langtools/test/tools/javac/main/
H A DOption_J_At_Test.java27 * @summary extra space in javac -help for -J and @ options
42 String[] help = { "-help" };
43 int rc = com.sun.tools.javac.Main.compile(help, pw);
/openjdk9/jdk/src/demo/share/jfc/Metalworks/
H A DMetalworksFrame.java114 JMenu help = buildHelpMenu();
145 menuBar.add(help);
281 JMenu help = new JMenu("Help");
299 help.add(about);
300 help.add(openHelp);
302 return help;
330 JInternalFrame help = new MetalworksHelp();
331 desktop.add(help, HELPLAYER);
333 help.setVisible(true);
334 help
[all...]
/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jps/
H A DArguments.java45 private boolean help; field in class:Arguments
55 ps.println("usage: jps [-help]");
67 || (args[0].compareTo("-help")== 0)) {
68 help = true;
136 return help;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options.processor/src/org/graalvm/compiler/options/processor/
H A DOptionProcessor.java120 String help = annotation.help();
121 if (help.length() != 0) {
122 char firstChar = help.charAt(0);
124 processingEnv.getMessager().printMessage(Kind.ERROR, "Option help text must start with upper case letter", element);
173 info.options.add(new OptionInfo(optionName, help, optionType, declaringClass, field));
223 String help = option.help;
227 out.printf(" return %s.create(\"%s\", %s.class, \"%s\", %s.class, \"%s\", %s);\n", desc, name, type, help, declaringClass, fieldName, optionValue);
229 out.printf(" case \"" + name + "\": return %s.create(\"%s\", %s.class, \"%s\", %s.class, \"%s\", %s);\n", desc, name, type, help, declaringClas
285 final String help; field in class:OptionProcessor.OptionInfo
290 OptionInfo(String name, String help, String type, String declaringClass, VariableElement field) argument
[all...]
/openjdk9/jdk/test/sun/tools/jrunscript/
H A Djrunscript-helpTest.sh47 ${JRUNSCRIPT} -help > jrunscript-helpTest.out 2>&1
51 echo "Output of jrunscript -help is empty. Failed."
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DBailoutAndRestartBackendException.java42 @Option(help = "Unlock backend restart feature.", type = OptionType.Debug)
/openjdk9/jdk/test/sun/tools/jstat/
H A DjstatHelp.sh27 # @summary Test that output of 'jstat -?', 'jstat -help' and 'jstat' matches the usage.out file
46 ${JSTAT} -J-XX:+UsePerfData -help > jstat.out 2>&1
51 echo "Output of jstat -help differs from expected output. Failed."

Completed in 128 milliseconds

12345