Searched refs:help (Results 26 - 50 of 110) sorted by relevance

12345

/openjdk9/make/
H A DHelp.gmk27 ### Global targets for printing help etc.
33 help:
35 $(info OpenJDK Makefile help)
55 $(info $(_) make help # Give some help on using make)
113 ALL_GLOBAL_TARGETS := help print-configurations
/openjdk9/langtools/make/src/classes/build/tools/symbolgenerator/
H A DTransitiveDependencies.java49 private static void help() { method in class:TransitiveDependencies
55 help();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DDefaultLoopPolicies.java54 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Integer> LoopUnswitchMaxIncrease = new OptionValue<>(500);
55 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Integer> LoopUnswitchTrivial = new OptionValue<>(10);
56 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Double> LoopUnswitchFrequencyBoost = new OptionValue<>(10.0);
58 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Integer> FullUnrollMaxNodes = new OptionValue<>(300);
59 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Integer> FullUnrollMaxIterations = new OptionValue<>(600);
60 @Option(help = "", type = OptionType.Expert) public static final OptionValue<Integer> ExactFullUnrollMaxNodes = new OptionValue<>(1200);
/openjdk9/jdk/test/sun/security/tools/keytool/
H A Ddefault_options.sh73 $KEYTOOL -conf no-such-file -help -list && exit 31
89 $KEYTOOL -conf bad.conf -help -list && exit 33
96 $KEYTOOL -conf bad.conf -help -list && exit 34
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/
H A DOptionsParser.java241 String help = desc.getHelp();
245 if (help.length() > 0 && !help.endsWith(".")) {
246 help += ".";
248 help += " Valid values are: " + evalues.substring(1, evalues.length() - 1);
262 if (help.length() != 0) {
263 List<String> helpLines = wrap(help, PROPERTY_LINE_WIDTH - PROPERTY_HELP_INDENT);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/aot/
H A DAOTInliningPolicy.java46 @Option(help = "", type = OptionType.Expert)
48 @Option(help = "", type = OptionType.Expert)
50 @Option(help = "", type = OptionType.Expert)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DCompilationWatchDog.java55 @Option(help = "Delay in seconds before watch dog monitoring a compilation (0 disables monitoring).", type = OptionType.Debug)
57 @Option(help = "Interval in seconds between a watch dog reporting stack traces for long running compilations.", type = OptionType.Debug)
59 @Option(help = "Number of contiguous identical compiler thread stack traces allowed before the VM exits " +
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/
H A DInliningPhase.java43 @Option(help = "Unconditionally inline intrinsics", type = OptionType.Debug)//
51 @Option(help = "Per-compilation method inlining exploration limit before giving up (use 0 to disable)", type = OptionType.Debug)//
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/internal/method/
H A DMethodMetricsPrinter.java47 @Option(help = "Dump method metrics to stdout on shutdown.", type = OptionType.Debug)
49 @Option(help = "Dump method metrics to the given file in CSV format on shutdown.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/profiling/
H A DFinalizeProfileNodesPhase.java59 @Option(help = "Profile simple methods", type = OptionType.Expert)//
61 @Option(help = "Maximum number of nodes in a graph for a simple method", type = OptionType.Expert)//
63 @Option(help = "Maximum number of calls in a simple method", type = OptionType.Expert)//
65 @Option(help = "Maximum number of indirect calls in a simple moethod", type = OptionType.Expert)//
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/
H A DTraceRegisterAllocationPhase.java57 @Option(help = "Use inter-trace register hints.", type = OptionType.Debug)
59 @Option(help = "Share information about spilled values to other traces.", type = OptionType.Debug)
61 @Option(help = "Reuse spill slots for global move resolution cycle breaking.", type = OptionType.Debug)
63 @Option(help = "Cache stack slots globally (i.e. a variable always gets the same slot in every trace).", type = OptionType.Debug)
H A DTraceBuilderPhase.java59 @Option(help = "Trace building algorithm.", type = OptionType.Debug)
61 @Option(help = "Schedule trivial traces as early as possible.", type = OptionType.Debug)
H A DDefaultTraceRegisterAllocationPolicy.java59 @Option(help = "Use special allocator for trivial blocks.", type = OptionType.Debug)
61 @Option(help = "Use LSRA / BottomUp ratio", type = OptionType.Debug)
63 @Option(help = "TraceRA allocation policy to use.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/
H A DCompilationAlarm.java36 @Option(help = "Time limit in seconds before a compilation expires (0 to disable the limit).", type = OptionType.Debug)
/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jstat/
H A DArguments.java55 private boolean help; field in class:Arguments
76 ps.println("Usage: jstat -help|-options");
145 help = true;
150 || (args[0].compareTo("-help") == 0)) {
151 help = true;
341 return help;
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DOptions.java74 public boolean help; field in class:Options
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/debug/
H A DBenchmarkCounters.java95 @Option(help = "Turn on the benchmark counters, and displays the results on VM shutdown", type = OptionType.Debug)
97 @Option(help = "Turn on the benchmark counters, and displays the results every n milliseconds", type = OptionType.Debug)
100 @Option(help = "Turn on the benchmark counters, and listen for specific patterns on System.out/System.err:%n" +
106 @Option(help = "Use grouping separators for number printing", type = OptionType.Debug)
108 @Option(help = "Print in human readable format", type = OptionType.Debug)
110 @Option(help = "Benchmark counters log file (default is stdout)", type = OptionType.Debug)
112 @Option(help = "Dump dynamic counters", type = OptionType.Debug)
114 @Option(help = "Dump static counters", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotProfilingPlugin.java43 @Option(help = "Emit profiling of invokes", type = OptionType.Expert)//
45 @Option(help = "Emit profiling of backedges", type = OptionType.Expert)//
/openjdk9/common/bin/
H A Dunshuffle_patch.sh28 echo "Usage: $0 [-h|--help] [-v|--verbose] <repo> <input_patch> <output_patch>"
50 -h | --help )
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/ssi/
H A DSSIConstructionPhase.java51 @Option(help = "Use fast SSI builder.", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/profiling/
H A DProfileNode.java43 @Option(help = "Control probabilistic profiling on AMD64", type = OptionType.Expert)//
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DNoDeadCodeVerifyHandler.java52 @Option(help = "Run level for NoDeadCodeVerifyHandler (0 = off, 1 = info, 2 = verbose, 3 = fatal)", type = OptionType.Debug)
/openjdk9/hotspot/src/jdk.internal.vm.compiler/.mx.graal/
H A Dmx_graal_9.py118 parser.add_argument('--jar', help='Explicitly specify micro-benchmark location')
172 parser.add_argument('--ctwopts', action='store', help='space separated JVMCI options used for CTW compilations (default: --ctwopts="' + defaultCtwopts + '")', default=defaultCtwopts, metavar='<options>')
173 parser.add_argument('--cp', '--jar', action='store', help='jar or class path denoting classes to compile', metavar='<path>')
300 mx_gate.add_gate_argument('--extra-vm-argument', action='append', help='add extra vm argument to gate tasks if applicable (multiple occurrences allowed)')
427 mx.add_argument('-M', '--jvmci-mode', action='store', choices=sorted(_jvmciModes.viewkeys()), help='the JVM variant type to build/run (default: ' + _vm.jvmciMode + ')')
/openjdk9/hotspot/.mx.jvmci/
H A Dmx_jvmci.py148 return subprocess.check_output([mx.gmake_cmd(), 'help'], cwd=_jdkSourceRoot)
186 parser.add_argument('--jdk-jvm-variants', '--vms', help='a comma separated list of VMs to build (default: ' + jvmVariantsDefault + ')', metavar='<args>', default=jvmVariantsDefault)
187 parser.add_argument('--jdk-debug-levels', '--builds', help='a comma separated list of JDK debug levels (default: ' + debugLevelsDefault + ')', metavar='<args>', default=debugLevelsDefault)
188 parser.add_argument('-n', '--no-check', action='store_true', help='omit running "java -version" after each build')
190 select.add_argument('-c', '--console', action='store_true', help='send build output to console instead of log files')
191 select.add_argument('-d', '--output-dir', help='directory for log files instead of current working directory', default=os.getcwd(), metavar='<dir>')
404 mx_gate.add_gate_argument('-g', '--only-build-jvmci', action='store_false', dest='buildNonJVMCI', help='only build the JVMCI VM')
531 parser.add_argument('-m', '--map', help='address to symbol map applied to disassembler output')
714 mx.add_argument('-M', '--jvmci-mode', action='store', choices=sorted(_jvmciModes.viewkeys()), help='the JVM variant type to build/run (default: ' + _vm.jvmciMode + ')')
715 mx.add_argument('--jdk-jvm-variant', '--vm', action='store', choices=_jdkJvmVariants + sorted(_legacyVms.viewkeys()), help
[all...]
/openjdk9/jdk/make/src/classes/build/tools/jarreorder/
H A DJarReorder.java52 String help;
53 help =
70 System.err.println(help);

Completed in 270 milliseconds

12345