blob: 5fd5e394ffd603f4ffa574d46bfccad4fc95d783 [file] [log] [blame]
rgallardb6435452013-11-25 20:19:02 -08001'\" t
2.\" Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
3.\"
4.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5.\"
6.\" This code is free software; you can redistribute it and/or modify it
7.\" under the terms of the GNU General Public License version 2 only, as
8.\" published by the Free Software Foundation.
9.\"
10.\" This code is distributed in the hope that it will be useful, but WITHOUT
11.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13.\" version 2 for more details (a copy is included in the LICENSE file that
14.\" accompanied this code).
15.\"
16.\" You should have received a copy of the GNU General Public License version
17.\" 2 along with this work; if not, write to the Free Software Foundation,
18.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19.\"
20.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21.\" or visit www.oracle.com if you need additional information or have any
22.\" questions.
23.\"
24.\" Arch: generic
25.\" Software: JDK 8
26.\" Date: 21 November 2013
27.\" SectDesc: Basic Tools
28.\" Title: java.1
29.\"
30.if n .pl 99999
31.TH java 1 "21 November 2013" "JDK 8" "Basic Tools"
32.\" -----------------------------------------------------------------
33.\" * Define some portability stuff
34.\" -----------------------------------------------------------------
35.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
36.\" http://bugs.debian.org/507673
37.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
38.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39.ie \n(.g .ds Aq \(aq
40.el .ds Aq '
41.\" -----------------------------------------------------------------
42.\" * set default formatting
43.\" -----------------------------------------------------------------
44.\" disable hyphenation
45.nh
46.\" disable justification (adjust text to left margin only)
47.ad l
48.\" -----------------------------------------------------------------
49.\" * MAIN CONTENT STARTS HERE *
50.\" -----------------------------------------------------------------
duke6e45e102007-12-01 00:00:00 +000051
rgallardb6435452013-11-25 20:19:02 -080052.SH NAME
53java \- Launches a Java application\&.
54.SH SYNOPSIS
55.sp
56.nf
57
58\fBjava\fR [\fIoptions\fR] \fIclassname\fR [\fIargs\fR]
59.fi
60.nf
61
62\fBjava\fR [\fIoptions\fR] \fB\-jar\fR \fIfilename\fR [\fIargs\fR]
63.fi
64.sp
65.TP
66\fIoptions\fR
67Command-line options separated by spaces\&. See Options\&.
68.TP
69\fIclassname\fR
70The name of the class to be launched\&.
71.TP
72\fIfilename\fR
73The name of the Java Archive (JAR) file to be called\&. Used only with the \f3-jar\fR option\&.
74.TP
75\fIargs\fR
76The arguments passed to the \f3main()\fR method separated by spaces\&.
77.SH DESCRIPTION
78The \f3java\fR command starts a Java application\&. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class\&'s \f3main()\fR method\&. The method must be declared \fIpublic\fR and \fIstatic\fR, it must not return any value, and it must accept a \f3String\fR array as a parameter\&. The method declaration has the following form:
79.sp
80.nf
81\f3public static void main(String[] args)\fP
82.fi
83.nf
84\f3\fP
85.fi
86.sp
87The \f3java\fR command can be used to launch a JavaFX application by loading a class that either has a \f3main()\fR method or that extends \f3javafx\&.application\&.Application\fR\&. In the latter case, the launcher constructs an instance of the \f3Application\fR class, calls its \f3init()\fR method, and then calls the \f3start(javafx\&.stage\&.Stage)\fR method\&.
88.PP
89By default, the first argument that is not an option of the \f3java\fR command is the fully qualified name of the class to be called\&. If the \f3-jar\fR option is specified, its argument is the name of the JAR file containing class and resource files for the application\&. The startup class must be indicated by the \f3Main-Class\fR manifest header in its source code\&.
90.PP
91The JRE searches for the startup class (and other classes used by the application) in three sets of locations: the bootstrap class path, the installed extensions, and the user\(cqs class path\&.
92.PP
93Arguments after the class file name or the JAR file name are passed to the \f3main()\fR method\&.
94.SH OPTIONS
95The \f3java\fR command supports a wide range of options that can be divided into the following categories:
96.TP 0.2i
97\(bu
98Standard Options
99.TP 0.2i
100\(bu
101Non-Standard Options
102.TP 0.2i
103\(bu
104Advanced Runtime Options
105.TP 0.2i
106\(bu
107Advanced JIT Compiler Options
108.TP 0.2i
109\(bu
110Advanced Serviceability Options
111.TP 0.2i
112\(bu
113Advanced Garbage Collection Options
114.PP
115Standard options are guaranteed to be supported by all implementations of the Java Virtual Machine (JVM)\&. They are used for common actions, such as checking the version of the JRE, setting the class path, enabling verbose output, and so on\&.
116.PP
117Non-standard options are general purpose options that are specific to the Java HotSpot Virtual Machine, so they are not guaranteed to be supported by all JVM implementations, and are subject to change\&. These options start with \f3-X\fR\&.
118.PP
119Advanced options are not recommended for casual use\&. These are developer options used for tuning specific areas of the Java HotSpot Virtual Machine operation that often have specific system requirements and may require privileged access to system configuration parameters\&. They are also not guaranteed to be supported by all JVM implementations, and are subject to change\&. Advanced options start with \f3-XX\fR\&.
120.PP
121To keep track of the options that were deprecated or removed in the latest release, there is a section named Deprecated and Removed Options at the end of the document\&.
122.PP
123Boolean options are used to either enable a feature that is disabled by default or disable a feature that is enabled by default\&. Such options do not require a parameter\&. Boolean \f3-XX\fR options are enabled using the plus sign (\f3-XX:+\fR\fIOptionName\fR) and disabled using the minus sign (\f3-XX:-\fR\fIOptionName\fR)\&.
124.PP
125For options that require an argument, the argument may be separated from the option name by a space, a colon (:), or an equal sign (=), or the argument may directly follow the option (the exact syntax differs for each option)\&. If you are expected to specify the size in bytes, you can use no suffix, or use the suffix \f3k\fR or \f3K\fR for kilobytes (KB), \f3m\fR or \f3M\fR for megabytes (MB), \f3g\fR or \f3G\fR for gigabytes (GB)\&. For example, to set the size to 8 GB, you can specify either \f38g\fR, \f38192m\fR, \f38388608k\fR, or \f38589934592\fR as the argument\&. If you are expected to specify the percentage, use a number from 0 to 1 (for example, specify \f30\&.25\fR for 25%)\&.
126.SS STANDARD\ OPTIONS
127These are the most commonly used options that are supported by all implementations of the JVM\&.
128.TP
129-agentlib:\fIlibname\fR[=\fIoptions\fR]
130.br
131Loads the specified native agent library\&. After the library name, a comma-separated list of options specific to the library can be used\&.
132
133If the option \f3-agentlib:foo\fR is specified, then the JVM attempts to load the library named \f3libfoo\&.so\fR in the location specified by the \f3LD_LIBRARY_PATH\fR system variable (on OS X this variable is \f3DYLD_LIBRARY_PATH\fR)\&.
134
135The following example shows how to load the heap profiling tool (HPROF) library and get sample CPU information every 20 ms, with a stack depth of 3:
136.sp
137.nf
138\f3\-agentlib:hprof=cpu=samples,interval=20,depth=3\fP
139.fi
140.nf
141\f3\fP
142.fi
143.sp
144
145
146The following example shows how to load the Java Debug Wire Protocol (JDWP) library and listen for the socket connection on port 8000, suspending the JVM before the main class loads:
147.sp
148.nf
149\f3\-agentlib:jdwp=transport=dt_socket,server=y,address=8000\fP
150.fi
151.nf
152\f3\fP
153.fi
154.sp
155
156
157For more information about the native agent libraries, refer to the following:
158.RS
159.TP 0.2i
160\(bu
161The \f3java\&.lang\&.instrument\fR package description at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package-summary\&.html
162.TP 0.2i
163\(bu
164Agent Command Line Options in the JVM Tools Interface guide at http://docs\&.oracle\&.com/javase/8/docs/platform/jvmti/jvmti\&.html#starting
165.RE
166
167.TP
168-agentpath:\fIpathname\fR[=\fIoptions\fR]
169.br
170Loads the native agent library specified by the absolute path name\&. This option is equivalent to \f3-agentlib\fR but uses the full path and file name of the library\&.
171.TP
172-client
173.br
174Selects the Java HotSpot Client VM\&. The 64-bit version of the Java SE Development Kit (JDK) currently ignores this option and instead uses the Server JVM\&.
175
176For default JVM selection, see Server-Class Machine Detection at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server-class\&.html
177.TP
178-D\fIproperty\fR=\fIvalue\fR
179.br
180Sets a system property value\&. The \fIproperty\fR variable is a string with no spaces that represents the name of the property\&. The \fIvalue\fR variable is a string that represents the value of the property\&. If \fIvalue\fR is a string with spaces, then enclose it in quotation marks (for example \f3-Dfoo="foo bar"\fR)\&.
181.TP
182-d32
183.br
184Runs the application in a 32-bit environment\&. If a 32-bit environment is not installed or is not supported, then an error will be reported\&. By default, the application is run in a 32-bit environment unless a 64-bit system is used\&.
185.TP
186-d64
187.br
188Runs the application in a 64-bit environment\&. If a 64-bit environment is not installed or is not supported, then an error will be reported\&. By default, the application is run in a 32-bit environment unless a 64-bit system is used\&.
189
190Currently only the Java HotSpot Server VM supports 64-bit operation, and the \f3-server\fR option is implicit with the use of \f3-d64\fR\&. The \f3-client\fR option is ignored with the use of \f3-d64\fR\&. This is subject to change in a future release\&.
191.TP
duke6e45e102007-12-01 00:00:00 +0000192.nf
rgallardb6435452013-11-25 20:19:02 -0800193-disableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR], -da[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
194.br
duke6e45e102007-12-01 00:00:00 +0000195.fi
rgallardb6435452013-11-25 20:19:02 -0800196Disables assertions\&. By default, assertions are disabled in all packages and classes\&.
duke6e45e102007-12-01 00:00:00 +0000197
rgallardb6435452013-11-25 20:19:02 -0800198With no arguments, \f3-disableassertions\fR (\f3-da\fR) disables assertions in all packages and classes\&. With the \fIpackagename\fR argument ending in \f3\&.\&.\&.\fR, the switch disables assertions in the specified package and any subpackages\&. If the argument is simply \f3\&.\&.\&.\fR, then the switch disables assertions in the unnamed package in the current working directory\&. With the \fIclassname\fR argument\f3\fR, the switch disables assertions in the specified class\&.
199
200The \f3-disableassertions\fR (\f3-da\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to disable assertions in all classes except for system classes\&. The \f3-disablesystemassertions\fR option enables you to disable assertions in all system classes\&.
201
202To explicitly enable assertions in specific packages or classes, use the \f3-enableassertions\fR (\f3-ea\fR) option\&. Both options can be used at the same time\&. For example, to run the \f3MyClass\fR application with assertions enabled in package \f3com\&.wombat\&.fruitbat\fR (and any subpackages) but disabled in class \f3com\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
203.sp
204.nf
205\f3java \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fP
206.fi
207.nf
208\f3\fP
209.fi
210.sp
211
212.TP
213-disablesystemassertions, -dsa
214.br
215Disables assertions in all system classes\&.
216.TP
217.nf
218-enableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR], -ea[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
219.br
220.fi
221Enables assertions\&. By default, assertions are disabled in all packages and classes\&.
222
223With no arguments, \f3-enableassertions\fR (\f3-ea\fR) enables assertions in all packages and classes\&. With the \fIpackagename\fR argument ending in \f3\&.\&.\&.\fR, the switch enables assertions in the specified package and any subpackages\&. If the argument is simply \f3\&.\&.\&.\fR, then the switch enables assertions in the unnamed package in the current working directory\&. With the \fIclassname\fR argument\f3\fR, the switch enables assertions in the specified class\&.
224
225The \f3-enableassertions\fR (\f3-ea\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to enable assertions in all classes except for system classes\&. The \f3-enablesystemassertions\fR option provides a separate switch to enable assertions in all system classes\&.
226
227To explicitly disable assertions in specific packages or classes, use the \f3-disableassertions\fR (\f3-da\fR) option\&. If a single command contains multiple instances of these switches, then they are processed in order before loading any classes\&. For example, to run the \f3MyClass\fR application with assertions enabled only in package \f3com\&.wombat\&.fruitbat\fR (and any subpackages) but disabled in class \f3com\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
228.sp
229.nf
230\f3java \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fP
231.fi
232.nf
233\f3\fP
234.fi
235.sp
236
237.TP
238-enablesystemassertions, -esa
239.br
240Enables assertions in all system classes\&.
241.TP
242-help, -?
243.br
244Displays usage information for the \f3java\fR command without actually running the JVM\&.
245.TP
246-jar \fIfilename\fR
247.br
248Executes a program encapsulated in a JAR file\&. The \fIfilename\fR argument is the name of a JAR file with a manifest that contains a line in the form \f3Main-Class:\fR\fIclassname\fR that defines the class with the \f3public static void main(String[] args)\fR method that serves as your application\&'s starting point\&.
249
250When you use the \f3-jar\fR option, the specified JAR file is the source of all user classes, and other class path settings are ignored\&.
251
252For more information about JAR files, see the following resources:
253.RS
254.TP 0.2i
255\(bu
256jar(1)
257.TP 0.2i
258\(bu
259The Java Archive (JAR) Files guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/jar/index\&.html
260.TP 0.2i
261\(bu
262Lesson: Packaging Programs in JAR Files at http://docs\&.oracle\&.com/javase/tutorial/deployment/jar/index\&.html
263.RE
264
265.TP
266-javaagent:\fIjarpath\fR[=\fIoptions\fR]
267.br
268Loads the specified Java programming language agent\&. For more information about instrumenting Java applications, see the \f3java\&.lang\&.instrument\fR package description in the Java API documentation at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package-summary\&.html
269.TP
270-jre-restrict-search
271.br
272Includes user-private JREs in the version search\&.
273.TP
274-no-jre-restrict-search
275.br
276Excludes user-private JREs from the version search\&.
277.TP
278-server
279.br
280Selects the Java HotSpot Server VM\&. The 64-bit version of the JDK supports only the Server VM, so in that case the option is implicit\&.
281
282For default JVM selection, see Server-Class Machine Detection at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server-class\&.html
283.TP
284-showversion
285.br
286Displays version information and continues execution of the application\&. This option is equivalent to the \f3-version\fR option except that the latter instructs the JVM to exit after displaying version information\&.
287.TP
288-splash:\fIimgname\fR
289.br
290Shows the splash screen with the image specified by \fIimgname\fR\&. For example, to show the \f3splash\&.gif\fR file from the \f3images\fR directory when starting your application, use the following option:
291.sp
292.nf
293\f3\-splash:images/splash\&.gif\fP
294.fi
295.nf
296\f3\fP
297.fi
298.sp
299
300.TP
301-verbose:class
302.br
303Displays information about each loaded class\&.
304.TP
305-verbose:gc
306.br
307Displays information about each garbage collection (GC) event\&.
308.TP
309-verbose:jni
310.br
311Displays information about the use of native methods and other Java Native Interface (JNI) activity\&.
312.TP
313-version
314.br
315Displays version information and then exits\&. This option is equivalent to the \f3-showversion\fR option except that the latter does not instruct the JVM to exit after displaying version information\&.
316.TP
317-version:\fIrelease\fR
318.br
319Specifies the release version to be used for running the application\&. If the version of the \f3java\fR command called does not meet this specification and an appropriate implementation is found on the system, then the appropriate implementation will be used\&.
320
321The \fIrelease\fR argument specifies either the exact version string, or a list of version strings and ranges separated by spaces\&. A \fIversion string\fR is the developer designation of the version number in the following form: \f31\&.\fR\fIx\fR\f3\&.0_\fR\fIu\fR (where \fIx\fR is the major version number, and \fIu\fR is the update version number)\&. A \fIversion range\fR is made up of a version string followed by a plus sign (\f3+\fR) to designate this version or later, or a part of a version string followed by an asterisk (\f3*\fR) to designate any version string with a matching prefix\&. Version strings and ranges can be combined using a space for a logical \fIOR\fR combination, or an ampersand (\f3&\fR) for a logical \fIAND\fR combination of two version strings/ranges\&. For example, if running the class or JAR file requires either JRE 6u13 (1\&.6\&.0_13), or any JRE 6 starting from 6u10 (1\&.6\&.0_10), specify the following:
322.sp
323.nf
324\f3\-version:"1\&.6\&.0_13 1\&.6* & 1\&.6\&.0_10+"\fP
325.fi
326.nf
327\f3\fP
328.fi
329.sp
330
331
332Quotation marks are necessary only if there are spaces in the \fIrelease\fR parameter\&.
333
334For JAR files, the preference is to specify version requirements in the JAR file manifest rather than on the command line\&.
335.SS NON-STANDARD\ OPTIONS
336These options are general purpose options that are specific to the Java HotSpot Virtual Machine\&.
337.TP
338-X
339.br
340Displays help for all available \f3-X\fR options\&.
341.TP
342-Xbatch
343.br
344Disables background compilation\&. By default, the JVM compiles the method as a background task, running the method in interpreter mode until the background compilation is finished\&. The \f3-Xbatch\fR flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed\&.
345
346This option is equivalent to \f3-XX:-BackgroundCompilation\fR\&.
347.TP
348-Xbootclasspath:\fIpath\fR
349.br
350Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to search for boot class files\&. These are used in place of the boot class files included in the JDK\&.
351
352\fI\fRDo not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
353.TP
354-Xbootclasspath/a:\fIpath\fR
355.br
356Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to append to the end of the default bootstrap class path\&.
357
358Do not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
359.TP
360-Xbootclasspath/p:\fIpath\fR
361.br
362Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to prepend to the front of the default bootstrap class path\&.
363
364Do not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
365.TP
366-Xboundthreads
367.br
368Binds user-level threads to kernel threads\&.
369.TP
370-Xcheck:jni
371.br
372Performs additional checks for Java Native Interface (JNI) functions\&. Specifically, it validates the parameters passed to the JNI function and the runtime environment data before processing the JNI request\&. Any invalid data encountered indicates a problem in the native code, and the JVM will terminate with an irrecoverable error in such cases\&. Expect a performance degradation when this option is used\&.
373.TP
374-Xcomp
375.br
rgallard3369a1b2013-12-13 14:21:33 -0800376Forces compilation of methods on first invocation\&. By default, the Client VM (\f3-client\fR) performs 1,000 interpreted method invocations and the Server VM (\f3-server\fR) performs 10,000 interpreted method invocations to gather information for efficient compilation\&. Specifying the \f3-Xcomp\fR option disables interpreted method invocations to increase compilation performance at the expense of efficiency\&.
rgallardb6435452013-11-25 20:19:02 -0800377
378You can also change the number of interpreted method invocations before compilation using the \f3-XX:CompileThreshold\fR option\&.
379.TP
380-Xdebug
381.br
382Does nothing\&. Provided for backward compatibility\&.
383.TP
384-Xdiag
385.br
386Shows additional diagnostic messages\&.
387.TP
388-Xfuture
389.br
390Enables strict class-file format checks that enforce close conformance to the class-file format specification\&. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases\&.
391.TP
392-Xincgc
393.br
394Enables incremental GC\&.
395.TP
396-Xint
397.br
398Runs the application in interpreted-only mode\&. Compilation to native code is disabled, and all bytecode is executed by the interpreter\&. The performance benefits offered by the just in time (JIT) compiler are not present in this mode\&.
399.TP
400-Xinternalversion
401.br
402Displays more detailed JVM version information than the \f3-version\fR option, and then exits\&.
403.TP
404-Xloggc:\fIfilename\fR
405.br
406Sets the file to which verbose GC events information should be redirected for logging\&. The information written to this file is similar to the output of \f3-verbose:gc\fR with the time elapsed since the first GC event preceding each logged event\&. The \f3-Xloggc\fR option overrides \f3-verbose:gc\fR if both are given with the same \f3java\fR command\&.
407
408Example:
409.sp
410.nf
411\f3\-Xloggc:garbage\-collection\&.log\fP
412.fi
413.nf
414\f3\fP
415.fi
416.sp
417
418.TP
419-Xmaxjitcodesize=\fIsize\fR
420.br
421Specifies the maximum code cache size (in bytes) for JIT-compiled code\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the value is set to 48 MB:
422.sp
423.nf
424\f3\-Xmaxjitcodesize=48m\fP
425.fi
426.nf
427\f3\fP
428.fi
429.sp
430
431
432This option is equivalent to \f3-XX:ReservedCodeCacheSize\fR\&.
433.TP
434-Xmixed
435.br
436Executes all bytecode by the interpreter except for hot methods, which are compiled to native code\&.
437.TP
438-Xmn\fIsize\fR
439.br
440Sets the initial and maximum size (in bytes) of the heap for the young generation (nursery)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.
441
442The young generation region of the heap is used for new objects\&. GC is performed in this region more often than in other regions\&. If the size for the young generation is too small, then a lot of minor garbage collections will be performed\&. If the size is too large, then only full garbage collections will be performed, which can take a long time to complete\&. Oracle recommends that you keep the size for the young generation between a half and a quarter of the overall heap size\&.
443
444The following examples show how to set the initial and maximum size of young generation to 256 MB using various units:
445.sp
446.nf
447\f3\-Xmn256m\fP
448.fi
449.nf
450\f3\-Xmn262144k\fP
451.fi
452.nf
453\f3\-Xmn268435456\fP
454.fi
455.nf
456\f3\fP
457.fi
458.sp
459
460
461Instead of the \f3-Xmn\fR option to set both the initial and maximum size of the heap for the young generation, you can use \f3-XX:NewSize\fR to set the initial size and \f3-XX:MaxNewSize\fR to set the maximum size\&.
462.TP
463-Xms\fIsize\fR
464.br
465Sets the initial size (in bytes) of the heap\&. This value must be a multiple of 1024 and greater than 1 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.
466
467The following examples show how to set the size of allocated memory to 6 MB using various units:
468.sp
469.nf
470\f3\-Xms6291456\fP
471.fi
472.nf
473\f3\-Xms6144k\fP
474.fi
475.nf
476\f3\-Xms6m\fP
477.fi
478.nf
479\f3\fP
480.fi
481.sp
482
483
484If you do not set this option, then the initial size will be set as the sum of the sizes allocated for the old generation and the young generation\&. The initial size of the heap for the young generation can be set using the \f3-Xmn\fR option or the \f3-XX:NewSize\fR option\&.
485.TP
486-Xmx\fIsize\fR
487.br
488Specifies the maximum size (in bytes) of the memory allocation pool in bytes\&. This value must be a multiple of 1024 and greater than 2 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments, \f3-Xms\fR and \f3-Xmx\fR are often set to the same value\&. For more information, see Garbage Collector Ergonomics at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gc-ergonomics\&.html
489
490The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
491.sp
492.nf
493\f3\-Xmx83886080\fP
494.fi
495.nf
496\f3\-Xmx81920k\fP
497.fi
498.nf
499\f3\-Xmx80m\fP
500.fi
501.nf
502\f3\fP
503.fi
504.sp
505
506
507The \f3-Xmx\fR option is equivalent to \f3-XX:MaxHeapSize\fR\&.
508.TP
509-Xnoclassgc
510.br
511Disables garbage collection (GC) of classes\&. This can save some GC time, which shortens interruptions during the application run\&.
512
513When you specify \f3-Xnoclassgc\fR at startup, the class objects in the application will be left untouched during GC and will always be considered live\&. This can result in more memory being permanently occupied which, if not used carefully, will throw an out of memory exception\&.
514.TP
515-Xprof
516.br
517Profiles the running program and sends profiling data to standard output\&. This option is provided as a utility that is useful in program development and is not intended to be used in production systems\&.
518.TP
519-Xrs
520.br
521Reduces the use of operating system signals by the JVM\&.
522
523Shutdown hooks enable orderly shutdown of a Java application by running user cleanup code (such as closing database connections) at shutdown, even if the JVM terminates abruptly\&.
524
525The JVM catches signals to implement shutdown hooks for unexpected termination\&. The JVM uses \f3SIGHUP\fR, \f3SIGINT\fR, and \f3SIGTERM\fR to initiate the running of shutdown hooks\&.
526
527The JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes\&. The JVM uses \f3SIGQUIT\fR to perform thread dumps\&.
528
529Applications embedding the JVM frequently need to trap signals such as \f3SIGINT\fR or \f3SIGTERM\fR, which can lead to interference with the JVM signal handlers\&. The \f3-Xrs\fR option is available to address this issue\&. When \f3-Xrs\fR is used, the signal masks for \f3SIGINT\fR, \f3SIGTERM\fR, \f3SIGHUP\fR, and \f3SIGQUIT\fR are not changed by the JVM, and signal handlers for these signals are not installed\&.
530
531There are two consequences of specifying \f3-Xrs\fR:
532.RS
533.TP 0.2i
534\(bu
535\f3SIGQUIT\fR thread dumps are not available\&.
536.TP 0.2i
537\(bu
538User code is responsible for causing shutdown hooks to run, for example, by calling \f3System\&.exit()\fR when the JVM is to be terminated\&.
539.RE
540
541.TP
542-Xshare:\fImode\fR
543.br
544Sets the class data sharing mode\&. Possible \fImode\fR arguments for this option include the following:
545.RS
546.TP
547auto
548Use shared class data if possible\&. This is the default value for Java HotSpot 32-Bit Client VM\&.
549.TP
550on
551Require the use of class data sharing\&. Print an error message and exit if class data sharing cannot be used\&.
552.TP
553off
554Do not use shared class data\&. This is the default value for Java HotSpot 32-Bit Server VM, Java HotSpot 64-Bit Client VM, and Java HotSpot 64-Bit Server VM\&.
555.TP
556dump
557Manually generate the class data sharing archive\&.
558.RE
559
560.TP
561-XshowSettings:\fIcategory\fR
562.br
563Shows settings and continues\&. Possible \fIcategory\fR arguments for this option include the following:
564.RS
565.TP
566all
567Shows all categories of settings\&. This is the default value\&.
568.TP
569locale
570Shows settings related to locale\&.
571.TP
572properties
573Shows settings related to system properties\&.
574.TP
575vm
576Shows the settings of the JVM\&.
577.RE
578
579.TP
580-Xss\fIsize\fR
581.br
582Sets the thread stack size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate KB, \f3m\fR or \f3M\fR to indicate MB, \f3g\fR or \f3G\fR to indicate GB\&. The default value depends on the platform:
583.RS
584.TP 0.2i
585\(bu
586Linux/ARM (32-bit): 320 KB
587.TP 0.2i
588\(bu
589Linux/i386 (32-bit): 320 KB
590.TP 0.2i
591\(bu
592Linux/x64 (64-bit): 1024 KB
593.TP 0.2i
594\(bu
595OS X (64-bit): 1024 KB
596.TP 0.2i
597\(bu
598Oracle Solaris/i386 (32-bit): 320 KB
599.TP 0.2i
600\(bu
601Oracle Solaris/x64 (64-bit): 1024 KB
602.TP 0.2i
603\(bu
604Windows: depends on virtual memory
duke6e45e102007-12-01 00:00:00 +0000605.RE
rgallardb6435452013-11-25 20:19:02 -0800606.RS
607The following examples set the thread stack size to 1024 KB in different units:
608.sp
609.nf
610\f3\-Xss1m\fP
611.fi
612.nf
613\f3\-Xss1024k\fP
614.fi
615.nf
616\f3\-Xss1048576\fP
617.fi
618.nf
619\f3\fP
620.fi
621.sp
duke6e45e102007-12-01 00:00:00 +0000622
duke6e45e102007-12-01 00:00:00 +0000623
rgallardb6435452013-11-25 20:19:02 -0800624This option is equivalent to \f3-XX:ThreadStackSize\fR\&.
625
duke6e45e102007-12-01 00:00:00 +0000626.RE
rgallardb6435452013-11-25 20:19:02 -0800627.TP
628-Xusealtsigs
629.br
630Use alternative signals instead of \f3SIGUSR1\fR and \f3SIGUSR2\fR for JVM internal signals\&. This option is equivalent to \f3-XX:+UseAltSigs\fR\&.
631.TP
632-Xverify:\fImode\fR
633.br
634Sets the mode of the bytecode verifier\&. Bytecode verification helps to troubleshoot some problems, but it also adds overhead to the running application\&. Possible \fImode\fR arguments for this option include the following:
635.RS
636.TP
637none
638Do not verify the bytecode\&. This reduces startup time and also reduces the protection provided by Java\&.
639.TP
640remote
641Verify only those classes that are loaded remotely over the network\&. This is the default behavior if you do not specify the \f3-Xverify\fR option\&.
642.TP
643all
644Verify all classes\&.
645.RE
duke6e45e102007-12-01 00:00:00 +0000646
rgallardb6435452013-11-25 20:19:02 -0800647.SS ADVANCED\ RUNTIME\ OPTIONS
648These options control the runtime behavior of the Java HotSpot VM\&.
649.TP
650-XX:+DisableAttachMechanism
bpatel4bf512b2011-05-11 08:30:46 -0700651.br
rgallardb6435452013-11-25 20:19:02 -0800652Enables the option that disables the mechanism that lets tools attach to the JVM\&. By default, this option is disabled, meaning that the attach mechanism is enabled and you can use tools such as \f3jcmd\fR, \f3jstack\fR, \f3jmap\fR, and \f3jinfo\fR\&.
653.TP
654-XX:ErrorFile=\fIfilename\fR
bpatel4bf512b2011-05-11 08:30:46 -0700655.br
rgallardb6435452013-11-25 20:19:02 -0800656Specifies the path and file name to which error data is written when an irrecoverable error occurs\&. By default, this file is created in the current working directory and named \f3hs_err_pid\fR\fIpid\fR\f3\&.log\fR where \fIpid\fR is the identifier of the process that caused the error\&. The following example shows how to set the default log file (note that the identifier of the process is specified as \f3%p\fR):
657.sp
658.nf
659\f3\-XX:ErrorFile=\&./hs_err_pid%p\&.log\fP
660.fi
661.nf
662\f3\fP
663.fi
664.sp
bpatel4bf512b2011-05-11 08:30:46 -0700665
bpatel4bf512b2011-05-11 08:30:46 -0700666
rgallardb6435452013-11-25 20:19:02 -0800667The following example shows how to set the error log to \f3/var/log/java/java_error\&.log\fR:
668.sp
669.nf
670\f3\-XX:ErrorFile=/var/log/java/java_error\&.log\fP
671.fi
672.nf
673\f3\fP
674.fi
675.sp
676
677
678If the file cannot be created in the specified directory (due to insufficient space, permission problem, or another issue), then the file is created in the temporary directory for the operating system\&. The temporary directory is \f3/tmp\fR\&.
679.TP
680-XX:LargePageSizeInBytes=\fIsize\fR
bpatel4bf512b2011-05-11 08:30:46 -0700681.br
rgallardb6435452013-11-25 20:19:02 -0800682Sets the maximum size (in bytes) for large pages used for Java heap\&. The \fIsize\fR argument must be a power of 2 (2, 4, 8, 16, \&.\&.\&.)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically\&.
683
684The following example illustrates how to set the large page size to 4 megabytes (MB):
685.sp
686.nf
687\f3\-XX:LargePageSizeInBytes=4m\fP
688.fi
689.nf
690\f3\fP
691.fi
692.sp
693
694.TP
695-XX:MaxDirectMemorySize=\fIsize\fR
bpatel4bf512b2011-05-11 08:30:46 -0700696.br
rgallardb6435452013-11-25 20:19:02 -0800697Sets the maximum total size (in bytes) of the New I/O (the \f3java\&.nio\fR package) direct-buffer allocations\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for NIO direct-buffer allocations automatically\&.
698
699The following examples illustrate how to set the NIO size to 1024 KB in different units:
700.sp
701.nf
702\f3\-XX:MaxDirectMemorySize=1m\fP
703.fi
704.nf
705\f3\-XX:MaxDirectMemorySize=1024k\fP
706.fi
707.nf
708\f3\-XX:MaxDirectMemorySize=1048576\fP
709.fi
710.nf
711\f3\fP
712.fi
713.sp
714
715.TP
716-XX:NativeMemoryTracking=\fImode\fR
bpatel4bf512b2011-05-11 08:30:46 -0700717.br
rgallardb6435452013-11-25 20:19:02 -0800718Specifies the mode for tracking JVM native memory usage\&. Possible \fImode\fR arguments for this option include the following:
719.RS
720.TP
721off
722Do not track JVM native memory usage\&. This is the default behavior if you do not specify the \f3-XX:NativeMemoryTracking\fR option\&.
723.TP
724summary
725Only track memory usage by JVM subsystems, such as Java heap, class, code, and thread\&.
726.TP
727detail
728In addition to tracking memory usage by JVM subsystems, track memory usage by individual \f3CallSite\fR, individual virtual memory region and its committed regions\&.
729.RE
730
731.TP
732-XX:OnError=\fIstring\fR
bpatel4bf512b2011-05-11 08:30:46 -0700733.br
rgallardb6435452013-11-25 20:19:02 -0800734Sets a custom command or a series of semicolon-separated commands to run when an irrecoverable error occurs\&. If the string contains spaces, then it must be enclosed in quotation marks\&.
735
736\fI\fRThe following example shows how the \f3-XX:OnError\fR option can be used to run the \f3gcore\fR command to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the \f3%p\fR designates the current process):
737.sp
738.nf
739\f3\-XX:OnError="gcore %p;dbx \- %p"\fP
740.fi
741.nf
742\f3\fP
743.fi
744.sp
745
746.TP
747-XX:OnOutOfMemoryError=\fIstring\fR
bpatel4bf512b2011-05-11 08:30:46 -0700748.br
rgallardb6435452013-11-25 20:19:02 -0800749Sets a custom command or a series of semicolon-separated commands to run when an \f3OutOfMemoryError\fR exception is first thrown\&. If the string contains spaces, then it must be enclosed in quotation marks\&. For an example of a command string, see the description of the \f3-XX:OnError\fR option\&.
750.TP
751-XX:+PrintCommandLineFlags
bpatel4bf512b2011-05-11 08:30:46 -0700752.br
rgallardb6435452013-11-25 20:19:02 -0800753Enables printing of ergonomically selected JVM flags that appeared on the command line\&. It can be useful to know the ergonomic values set by the JVM, such as the heap space size and the selected garbage collector\&. By default, this option is disabled and flags are not printed\&.
754.TP
755-XX:+PrintNMTStatistics
bpatel4bf512b2011-05-11 08:30:46 -0700756.br
rgallardb6435452013-11-25 20:19:02 -0800757Enables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see \f3-XX:NativeMemoryTracking\fR)\&. By default, this option is disabled and native memory tracking data is not printed\&.
758.TP
759-XX:+ShowMessageBoxOnError
bpatel4bf512b2011-05-11 08:30:46 -0700760.br
rgallardb6435452013-11-25 20:19:02 -0800761Enables displaying of a dialog box when the JVM experiences an irrecoverable error\&. This prevents the JVM from exiting and keeps the process active so that you can attach a debugger to it to investigate the cause of the error\&. By default, this option is disabled\&.
762.TP
763-XX:ThreadStackSize=\fIsize\fR
bpatel4bf512b2011-05-11 08:30:46 -0700764.br
rgallardb6435452013-11-25 20:19:02 -0800765Sets the thread stack size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value depends on the platform:
766.RS
767.TP 0.2i
768\(bu
769Linux/ARM (32-bit): 320 KB
770.TP 0.2i
771\(bu
772Linux/i386 (32-bit): 320 KB
773.TP 0.2i
774\(bu
775Linux/x64 (64-bit): 1024 KB
776.TP 0.2i
777\(bu
778OS X (64-bit): 1024 KB
779.TP 0.2i
780\(bu
781Oracle Solaris/i386 (32-bit): 320 KB
782.TP 0.2i
783\(bu
784Oracle Solaris/x64 (64-bit): 1024 KB
785.TP 0.2i
786\(bu
787Windows: depends on virtual memory
duke6e45e102007-12-01 00:00:00 +0000788.RE
rgallardb6435452013-11-25 20:19:02 -0800789.RS
790The following examples show how to set the thread stack size to 1024 KB in different units:
791.sp
792.nf
793\f3\-XX:ThreadStackSize=1m\fP
794.fi
795.nf
796\f3\-XX:ThreadStackSize=1024k\fP
797.fi
798.nf
799\f3\-XX:ThreadStackSize=1048576\fP
800.fi
801.nf
802\f3\fP
803.fi
804.sp
duke6e45e102007-12-01 00:00:00 +0000805
rgallardb6435452013-11-25 20:19:02 -0800806
807This option is equivalent to \f3-Xss\fR\&.
808
809.RE
810.TP
811-XX:+TraceClassLoading
812.br
813Enables tracing of classes as they are loaded\&. By default, this option is disabled and classes are not traced\&.
814.TP
815-XX:+TraceClassLoadingPreorder
816.br
817Enables tracing of all loaded classes in the order in which they are referenced\&. By default, this option is disabled and classes are not traced\&.
818.TP
819-XX:+TraceClassResolution
820.br
821Enables tracing of constant pool resolutions\&. By default, this option is disabled and constant pool resolutions are not traced\&.
822.TP
823-XX:+TraceClassUnloading
824.br
825Enables tracing of classes as they are unloaded\&. By default, this option is disabled and classes are not traced\&.
826.TP
827-XX:+TraceLoaderConstraints
828.br
829Enables tracing of the loader constraints recording\&. By default, this option is disabled and loader constraints recoding is not traced\&.
830.TP
831-XX:+UseAltSigs
832.br
833Enables the use of alternative signals instead of \f3SIGUSR1\fR and \f3SIGUSR2\fR for JVM internal signals\&. By default, this option is disabled and alternative signals are not used\&. This option is equivalent to \f3-Xusealtsigs\fR\&.
834.TP
835-XX:+UseBiasedLocking
836.br
837Enables the use of biased locking\&. Some applications with significant amounts of uncontended synchronization may attain significant speedups with this flag enabled, whereas applications with certain patterns of locking may see slowdowns\&. For more information about the biased locking technique, see the example in Java Tuning White Paper at http://www\&.oracle\&.com/technetwork/java/tuning-139912\&.html#section4\&.2\&.5
838
839By default, this option is disabled and biased locking is not used\&.
840.TP
841-XX:+UseCompressedOops
842.br
843Enables the use of compressed pointers\&. When this option is enabled, object references are represented as 32-bit offsets instead of 64-bit pointers, which typically increases performance when running the application with Java heap sizes less than 32 GB\&. This option works only for 64-bit JVMs\&.
844
845By default, this option is disabled and compressed pointers are not used\&.
846.TP
847-XX:+UseLargePages
848.br
849Enables the use of large page memory\&. This option is enabled by default\&. To disable the use of large page memory, specify \f3-XX:-UseLargePages\fR\&.
850
851For more information, see Java Support for Large Memory Pages at http://www\&.oracle\&.com/technetwork/java/javase/tech/largememory-jsp-137182\&.html
852.TP
853-XX:+UseMembar
854.br
855Enables issuing of membars on thread state transitions\&. This option is disabled by default on all platforms except Power PC and ARM servers, where it is enabled\&. To disable issuing of membars on thread state transitions for Power PC and ARM, specify \f3-XX:-UseMembar\fR\&.
856.TP
857-XX:+UsePerfData
858.br
859Enables the \f3perfdata\fR feature\&. This option is enabled by default to allow JVM monitoring and performance testing\&. Disabling it suppresses the creation of the \f3hsperfdata_userid\fR directories\&. To disable the \f3perfdata\fR feature, specify \f3-XX:-UsePerfData\fR\&.
860.TP
861-XX:+AllowUserSignalHandlers
862.br
863Enables installation of signal handlers by the application\&. By default, this option is disabled and the application is not allowed to install signal handlers\&.
864.SS ADVANCED\ JIT\ COMPILER\ OPTIONS
865These options control the dynamic just-in-time (JIT) compilation performed by the Java HotSpot VM\&.
866.TP
867-XX:+AggressiveOpts
868.br
869Enables the use of aggressive performance optimization features, which are expected to become default in upcoming releases\&. By default, this option is disabled and experimental performance features are not used\&.
870.TP
871-XX:AllocateInstancePrefetchLines=\fIlines\fR
872.br
873Sets the number of lines to prefetch ahead of the instance allocation pointer\&. By default, the number of lines to prefetch is set to 1:
874.sp
875.nf
876\f3\-XX:AllocateInstancePrefetchLines=1\fP
877.fi
878.nf
879\f3\fP
880.fi
881.sp
882
883.TP
884-XX:AllocatePrefetchInstr=\fIinstruction\fR
885.br
886Sets the prefetch instruction to prefetch ahead of the allocation pointer\&. Possible values are from 0 to 3\&. The actual instructions behind the values depend on the platform\&. By default, the prefetch instruction is set to 0:
887.sp
888.nf
889\f3\-XX:AllocatePrefetchInstr=0\fP
890.fi
891.nf
892\f3\fP
893.fi
894.sp
895
896.TP
897-XX:AllocatePrefetchStepSize=\fIsize\fR
898.br
899Sets the step size (in bytes) for sequential prefetch instructions\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the step size is set to 16 bytes:
900.sp
901.nf
902\f3\-XX:AllocatePrefetchStepSize=16\fP
903.fi
904.nf
905\f3\fP
906.fi
907.sp
908
909.TP
910-XX:+BackgroundCompilation
911.br
912Enables background compilation\&. This option is enabled by default\&. To disable background compilation, specify \f3-XX:-BackgroundCompilation\fR (this is equivalent to specifying \f3-Xbatch\fR)\&.
913.TP
914-XX:CICompilerCount=\fIthreads\fR
915.br
916Sets the number of compiler threads to use for compilation\&. By default, the number of threads is set to 2 for the server JVM, to 1 for the client JVM, and it scales to the number of cores if tiered compilation is used\&. The following example shows how to set the number of threads to 2:
917.sp
918.nf
919\f3\-XX:CICompilerCount=2\fP
920.fi
921.nf
922\f3\fP
923.fi
924.sp
925
926.TP
927-XX:CodeCacheMinimumFreeSpace=\fIsize\fR
928.br
929Sets the minimum free space (in bytes) required for compilation\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. When less than the minimum free space remains, compiling stops\&. By default, this option is set to 500 KB\&. The following example shows how to set the minimum free space to 1024 MB:
930.sp
931.nf
932\f3\-XX:CodeCacheMinimumFreeSpace=1024m\fP
933.fi
934.nf
935\f3\fP
936.fi
937.sp
938
939.TP
rgallard3369a1b2013-12-13 14:21:33 -0800940-XX:CompileCommand=\fIcommand\fR,\fImethod\fR[,\fIoption\fR]
rgallardb6435452013-11-25 20:19:02 -0800941.br
rgallard3369a1b2013-12-13 14:21:33 -0800942Specifies a command to perform on a method\&. For example, to exclude the \f3indexOf()\fR method of the \f3String\fR class from being compiled, use the following:
rgallardb6435452013-11-25 20:19:02 -0800943.sp
944.nf
945\f3\-XX:CompileCommand=exclude,java/lang/String\&.indexOf\fP
946.fi
947.nf
948\f3\fP
949.fi
950.sp
duke6e45e102007-12-01 00:00:00 +0000951
duke6e45e102007-12-01 00:00:00 +0000952
rgallard3369a1b2013-12-13 14:21:33 -0800953Note that the full class name is specified, including all packages and subpackages separated by a slash (\f3/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the \f3-XX:+PrintCompilation\fR and \f3-XX:+LogCompilation\fR options:
954.sp
955.nf
956\f3\-XX:CompileCommand=exclude,java\&.lang\&.String::indexOf\fP
957.fi
958.nf
959\f3\fP
960.fi
961.sp
duke6e45e102007-12-01 00:00:00 +0000962
rgallard3369a1b2013-12-13 14:21:33 -0800963
964If the method is specified without the signature, the command will be applied to all methods with the specified name\&. However, you can also specify the signature of the method in the class file format\&. In this case, you should enclose the arguments in quotation marks, because otherwise the shell treats the semicolon as command end\&. For example, if you want to exclude only the \f3indexOf(String)\fR method of the \f3String\fR class from being compiled, use the following:
965.sp
966.nf
967\f3\-XX:CompileCommand="exclude,java/lang/String\&.indexOf,(Ljava/lang/String;)I"\fP
968.fi
969.nf
970\f3\fP
971.fi
972.sp
973
974
975You can also use the asterisk (*) as a wildcard for class and method names\&. For example, to exclude all \f3indexOf()\fR methods in all classes from being compiled, use the following:
976.sp
977.nf
978\f3\-XX:CompileCommand=exclude,*\&.indexOf\fP
979.fi
980.nf
981\f3\fP
982.fi
983.sp
984
985
986The commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell\&. You can pass arguments to \f3-XX:CompileCommand\fR using spaces as separators by enclosing the argument in quotation marks:
rgallardb6435452013-11-25 20:19:02 -0800987.sp
988.nf
989\f3\-XX:CompileCommand="exclude java/lang/String indexOf"\fP
990.fi
991.nf
992\f3\fP
993.fi
994.sp
995
996
rgallard3369a1b2013-12-13 14:21:33 -0800997Note that after parsing the commands passed on the command line using the \f3-XX:CompileCommand\fR options, the JIT compiler then reads commands from the \f3\&.hotspot_compiler\fR file\&. You can add commands to this file or specify a different file using the \f3-XX:CompileCommandFile\fR option\&.
rgallardb6435452013-11-25 20:19:02 -0800998
rgallard3369a1b2013-12-13 14:21:33 -0800999To add several commands, either specify the \f3-XX:CompileCommand\fR option multiple times, or separate each argument with the newline separator (\f3\en\fR)\&. The following commands are available:
rgallardb6435452013-11-25 20:19:02 -08001000.RS
1001.TP
1002break
1003Set a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method\&.
1004.TP
1005compileonly
rgallard3369a1b2013-12-13 14:21:33 -08001006Exclude all methods from compilation except for the specified method\&. As an alternative, you can use the \f3-XX:CompileOnly\fR option, which allows to specify several methods\&.
rgallardb6435452013-11-25 20:19:02 -08001007.TP
1008dontinline
1009Prevent inlining of the specified method\&.
1010.TP
1011exclude
1012Exclude the specified method from compilation\&.
1013.TP
1014help
1015Print a help message for the \f3-XX:CompileCommand\fR option\&.
1016.TP
1017inline
1018Attempt to inline the specified method\&.
1019.TP
1020log
1021Exclude compilation logging (with the \f3-XX:+LogCompilation\fR option) for all methods except for the specified method\&. By default, logging is performed for all compiled methods\&.
1022.TP
rgallard3369a1b2013-12-13 14:21:33 -08001023option
1024This command can be used to pass a JIT compilation option to the specified method in place of the last argument (\fIoption\fR)\&. The compilation option is set at the end, after the method name\&. For example, to enable the \f3BlockLayoutByFrequency\fR option for the \f3append()\fR method of the \f3StringBuffer\fR class, use the following:
1025.sp
1026.nf
1027\f3\-XX:CompileCommand=option,java/lang/StringBuffer\&.append,BlockLayoutByFrequency\fP
1028.fi
1029.nf
1030\f3\fP
1031.fi
1032.sp
1033
1034
1035You can specify multiple compilation options, separated by commas or spaces\&.
1036.TP
rgallardb6435452013-11-25 20:19:02 -08001037print
1038Print generated assembler code after compilation of the specified method\&.
1039.TP
1040quiet
1041Do not print the compile commands\&. By default, the commands that you specify with the -\f3XX:CompileCommand\fR option are printed; for example, if you exclude from compilation the \f3indexOf()\fR method of the \f3String\fR class, then the following will be printed to standard output:
1042.sp
1043.nf
1044\f3CompilerOracle: exclude java/lang/String\&.indexOf\fP
1045.fi
1046.nf
1047\f3\fP
1048.fi
1049.sp
1050
1051
1052You can suppress this by specifying the \f3-XX:CompileCommand=quiet\fR option before other \f3-XX:CompileCommand\fR options\&.
1053.RE
1054
rgallardb6435452013-11-25 20:19:02 -08001055.TP
1056-XX:CompileCommandFile=\fIfilename\fR
1057.br
rgallard3369a1b2013-12-13 14:21:33 -08001058Sets the file from which JIT compiler commands are read\&. By default, the \f3\&.hotspot_compiler\fR file is used to store commands performed by the JIT compiler\&.
rgallardb6435452013-11-25 20:19:02 -08001059
rgallard3369a1b2013-12-13 14:21:33 -08001060Each line in the command file represents a command, a class name, and a method name for which the command is used\&. For example, this line prints assembly code for the \f3toString()\fR method of the \f3String\fR class:
rgallardb6435452013-11-25 20:19:02 -08001061.sp
1062.nf
1063\f3print java/lang/String toString\fP
1064.fi
1065.nf
1066\f3\fP
1067.fi
1068.sp
1069
1070
rgallard3369a1b2013-12-13 14:21:33 -08001071For more information about specifying the commands for the JIT compiler to perform on methods, see the \f3-XX:CompileCommand\fR option\&.
rgallardb6435452013-11-25 20:19:02 -08001072.TP
1073-XX:CompileOnly=\fImethods\fR
1074.br
1075Sets the list of methods (separated by commas) to which compilation should be restricted\&. Only the specified methods will be compiled\&. Specify each method with the full class name (including the packages and subpackages)\&. For example, to compile only the \f3length()\fR method of the \f3String\fR class and the \f3size()\fR method of the \f3List\fR class, use the following:
1076.sp
1077.nf
1078\f3\-XX:CompileOnly=java/lang/String\&.length,java/util/List\&.size\fP
1079.fi
1080.nf
1081\f3\fP
1082.fi
1083.sp
1084
rgallard3369a1b2013-12-13 14:21:33 -08001085
1086Note that the full class name is specified, including all packages and subpackages separated by a slash (\f3/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the \f3-XX:+PrintCompilation\fR and \f3-XX:+LogCompilation\fR options:
1087.sp
1088.nf
1089\f3\-XX:CompileOnly=java\&.lang\&.String::length,java\&.util\&.List::size\fP
1090.fi
1091.nf
1092\f3\fP
1093.fi
1094.sp
1095
1096
1097Although wildcards are not supported, you can specify only the class or package name to compile all methods in that class or package, as well as specify just the method to compile methods with this name in any class:
1098.sp
1099.nf
1100\f3\-XX:CompileOnly=java/lang/String\fP
1101.fi
1102.nf
1103\f3\-XX:CompileOnly=java/lang\fP
1104.fi
1105.nf
1106\f3\-XX:CompileOnly=\&.length\fP
1107.fi
1108.nf
1109\f3\fP
1110.fi
1111.sp
1112
rgallardb6435452013-11-25 20:19:02 -08001113.TP
1114-XX:CompileThreshold=\fIinvocations\fR
1115.br
1116Sets the number of interpreted method invocations before compilation\&. By default, in the server JVM, the JIT compiler performs 10,000 interpreted method invocations to gather information for efficient compilation\&. For the client JVM, the default setting is 1,500 invocations\&. The following example shows how to set the number of interpreted method invocations to 5,000:
1117.sp
1118.nf
1119\f3\-XX:CompileThreshold=5000\fP
1120.fi
1121.nf
1122\f3\fP
1123.fi
1124.sp
1125
1126
1127You can completely disable interpretation of Java methods before compilation by specifying the \f3-Xcomp\fR option\&.
1128.TP
1129-XX:+DoEscapeAnalysis
1130.br
1131Enables the use of escape analysis\&. This option is enabled by default\&. To disable the use of escape analysis, specify \f3-XX:-DoEscapeAnalysis\fR\&.
1132.TP
1133-XX:+FailOverToOldVerifier
1134.br
1135Enables automatic failover to the old verifier when the new type checker fails\&. By default, this option is disabled and it is ignored (that is, treated as disabled) for classes with a recent bytecode version\&. You can enable it for classes with older versions of the bytecode\&.
1136.TP
1137-XX:InitialCodeCacheSize=\fIsize\fR
1138.br
1139Sets the initial code cache size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is set to 500 KB\&. The following example shows how to set the initial code cache size to 32 KB:
1140.sp
1141.nf
1142\f3\-XX:InitialCodeCacheSize=32k\fP
1143.fi
1144.nf
1145\f3\fP
1146.fi
1147.sp
1148
1149.TP
1150-XX:+Inline
1151.br
1152Enables method inlining\&. This option is enabled by default to increase performance\&. To disable method inlining, specify \f3-XX:-Inline\fR\&.
1153.TP
1154-XX:InlineSmallCode=\fIsize\fR
1155.br
1156Sets the maximum code size (in bytes) for compiled methods that should be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. Only compiled methods with the size smaller than the specified size will be inlined\&. By default, the maximum code size is set to 1000 bytes:
1157.sp
1158.nf
1159\f3\-XX:InlineSmallCode=1000\fP
1160.fi
1161.nf
1162\f3\fP
1163.fi
1164.sp
1165
1166.TP
1167-XX:+LogCompilation
1168.br
1169Enables logging of compilation activity to a file named \f3hotspot\&.log\fR in the current working directory\&. You can specify a different log file path and name using the \f3-XX:LogFile\fR option\&.
1170
1171By default, this option is disabled and compilation activity is not logged\&. The \f3-XX:+LogCompilation\fR option has to be used together with the \f3-XX:UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.
1172
1173You can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the \f3-XX:+PrintCompilation\fR option\&.
1174.TP
1175-XX:MaxInlineSize=\fIsize\fR
1176.br
1177Sets the maximum bytecode size (in bytes) of a method to be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the maximum bytecode size is set to 35 bytes:
1178.sp
1179.nf
1180\f3\-XX:MaxInlineSize=35\fP
1181.fi
1182.nf
1183\f3\fP
1184.fi
1185.sp
1186
1187.TP
1188-XX:MaxNodeLimit=\fInodes\fR
1189.br
1190Sets the maximum number of nodes to be used during single method compilation\&. By default, the maximum number of nodes is set to 65,000:
1191.sp
1192.nf
1193\f3\-XX:MaxNodeLimit=65000\fP
1194.fi
1195.nf
1196\f3\fP
1197.fi
1198.sp
1199
1200.TP
1201-XX:MaxTrivialSize=\fIsize\fR
1202.br
1203Sets the maximum bytecode size (in bytes) of a trivial method to be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the maximum bytecode size of a trivial method is set to 6 bytes:
1204.sp
1205.nf
1206\f3\-XX:MaxTrivialSize=6\fP
1207.fi
1208.nf
1209\f3\fP
1210.fi
1211.sp
1212
1213.TP
1214-XX:+OptimizeStringConcat
1215.br
1216Enables the optimization of \f3String\fR concatenation operations\&. This option is enabled by default\&. To disable the optimization of \f3String\fR concatenation operations, specify \f3-XX:-OptimizeStringConcat\fR\&.
1217.TP
1218-XX:+PrintAssembly
1219.br
1220Enables printing of assembly code for bytecoded and native methods by using the external \f3disassembler\&.so\fR library\&. This enables you to see the generated code, which may help you to diagnose performance issues\&.
1221
1222By default, this option is disabled and assembly code is not printed\&. The \f3-XX:+PrintAssembly\fR option has to be used together with the \f3-XX:UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.
1223.TP
1224-XX:+PrintCompilation
1225.br
1226Enables verbose diagnostic output from the JVM by printing a message to the console every time a method is compiled\&. This enables you to see which methods actually get compiled\&. By default, this option is disabled and diagnostic output is not printed\&.
1227
1228You can also log compilation activity to a file by using the \f3-XX:+LogCompilation\fR option\&.
1229.TP
1230-XX:+PrintInlining
1231.br
1232Enables printing of inlining decisions\&. This enables you to see which methods are getting inlined\&.
1233
1234By default, this option is disabled and inlining information is not printed\&. The \f3-XX:+PrintInlining\fR option has to be used together with the \f3-XX:+UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.
1235.TP
1236-XX:+RelaxAccessControlCheck
1237.br
1238Decreases the amount of access control checks in the verifier\&. By default, this option is disabled, and it is ignored (that is, treated as disabled) for classes with a recent bytecode version\&. You can enable it for classes with older versions of the bytecode\&.
1239.TP
1240-XX:ReservedCodeCacheSize=\fIsize\fR
1241.br
1242Sets the maximum code cache size (in bytes) for JIT-compiled code\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. This option is equivalent to \f3-Xmaxjitcodesize\fR\&.
1243.TP
1244-XX:+TieredCompilation
1245.br
1246Enables the use of tiered compilation\&. By default, this option is disabled and tiered compilation is not used\&.
1247.TP
1248-XX:+UseCodeCacheFlushing
1249.br
1250Enables flushing of the code cache before shutting down the compiler\&. This option is enabled by default\&. To disable flushing of the code cache before shutting down the compiler, specify \f3-XX:-UseCodeCacheFlushing\fR\&.
1251.TP
1252-XX:+UseCondCardMark
1253.br
1254Enables checking of whether the card is already marked before updating the card table\&. This option is disabled by default and should only be used on machines with multiple sockets, where it will increase performance of Java applications that rely heavily on concurrent operations\&.
1255.TP
1256-XX:+UseSuperWord
1257.br
1258Enables the transformation of scalar operations into superword operations\&. This option is enabled by default\&. To disable the transformation of scalar operations into superword operations, specify \f3-XX:-UseSuperWord\fR\&.
1259.SS ADVANCED\ SERVICEABILITY\ OPTIONS
1260These options provide the ability to gather system information and perform extensive debugging\&.
1261.TP
1262-XX:+ExtendedDTraceProbes
1263.br
1264Enables additional \f3dtrace\fR tool probes that impact the performance\&. By default, this option is disabled and \f3dtrace\fR performs only standard probes\&.
1265.TP
1266-XX:+HeapDumpOnOutOfMemory
1267.br
1268Enables the dumping of the Java heap to a file in the current directory by using the heap profiler (HPROF) when a \f3java\&.lang\&.OutOfMemoryError\fR exception is thrown\&. You can explicitly set the heap dump file path and name using the \f3-XX:HeapDumpPath\fR option\&. By default, this option is disabled and the heap is not dumped when an \f3OutOfMemoryError\fR exception is thrown\&.
1269.TP
1270-XX:HeapDumpPath=\fIpath\fR
1271.br
1272Sets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the \f3-XX:+HeapDumpOnOutOfMemoryError\fR option is set\&. By default, the file is created in the current working directory, and it is named \f3java_pid\fR\fIpid\fR\f3\&.hprof\fR where \fIpid\fR is the identifier of the process that caused the error\&. The following example shows how to set the default file explicitly (\f3%p\fR represents the current process identificator):
1273.sp
1274.nf
1275\f3\-XX:HeapDumpPath=\&./java_pid%p\&.hprof\fP
1276.fi
1277.nf
1278\f3\fP
1279.fi
1280.sp
1281
1282
1283\fI\fRThe following example shows how to set the heap dump file to \f3/var/log/java/java_heapdump\&.hprof\fR:
1284.sp
1285.nf
1286\f3\-XX:HeapDumpPath=/var/log/java/java_heapdump\&.hprof\fP
1287.fi
1288.nf
1289\f3\fP
1290.fi
1291.sp
1292
1293.TP
1294-XX:LogFile=\fIpath\fR
1295.br
1296Sets the path and file name where log data is written\&. By default, the file is created in the current working directory, and it is named \f3hotspot\&.log\fR\&.
1297
1298\fI\fRThe following example shows how to set the log file to \f3/var/log/java/hotspot\&.log\fR:
1299.sp
1300.nf
1301\f3\-XX:LogFile=/var/log/java/hotspot\&.log\fP
1302.fi
1303.nf
1304\f3\fP
1305.fi
1306.sp
1307
1308.TP
1309-XX:+PrintClassHistogram
1310.br
1311\fI\fREnables printing of a class instance histogram after a \f3Control+C\fR event (\f3SIGTERM\fR)\&. By default, this option is disabled\&.
1312
1313Setting this option is equivalent to running the \f3jmap -histo\fR command, or the \f3jcmd\fR\fIpid\fR\f3GC\&.class_histogram\fR command, where \fIpid\fR is the current Java process identifier\&.
1314.TP
1315-XX:+PrintConcurrentLocks
1316
1317
1318Enables printing of j\f3ava\&.util\&.concurrent\fR locks after a \f3Control+C\fR event (\f3SIGTERM\fR)\&. By default, this option is disabled\&.
1319
1320Setting this option is equivalent to running the \f3jstack -l\fR command or the \f3jcmd\fR\fIpid\fR\f3Thread\&.print -l\fR command, where \fIpid\fR is the current Java process identifier\&.
1321.TP
1322-XX:+UnlockDiagnosticVMOptions
1323.br
1324Unlocks the options intended for diagnosing the JVM\&. By default, this option is disabled and diagnostic options are not available\&.
1325.SS ADVANCED\ GARBAGE\ COLLECTION\ OPTIONS
1326These options control how garbage collection (GC) is performed by the Java HotSpot VM\&.
1327.TP
1328-XX:+AggressiveHeap
1329.br
1330Enables Java heap optimization\&. This sets various parameters to be optimal for long-running jobs with intensive memory allocation, based on the configuration of the computer (RAM and CPU)\&. By default, the option is disabled and the heap is not optimized\&.
1331.TP
1332-XX:AllocatePrefetchDistance=\fIsize\fR
1333.br
1334Sets the size (in bytes) of the prefetch distance for object allocation\&. Memory about to be written with the value of new objects is prefetched up to this distance starting from the address of the last allocated object\&. Each Java thread has its own allocation point\&.
1335
1336Negative values denote that prefetch distance is chosen based on the platform\&. Positive values are bytes to prefetch\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is set to -1\&.
1337
1338The following example shows how to set the prefetch distance to 1024 bytes:
1339.sp
1340.nf
1341\f3\-XX:AllocatePrefetchDistance=1024\fP
1342.fi
1343.nf
1344\f3\fP
1345.fi
1346.sp
1347
1348.TP
1349-XX:AllocatePrefetchLines=\fIlines\fR
1350.br
1351Sets the number of cache lines to load after the last object allocation by using the prefetch instructions generated in compiled code\&. The default value is 1 if the last allocated object was an instance, and 3 if it was an array\&.
1352
1353The following example shows how to set the number of loaded cache lines to 5:
1354.sp
1355.nf
1356\f3\-XX:AllocatePrefetchLines=5\fP
1357.fi
1358.nf
1359\f3\fP
1360.fi
1361.sp
1362
1363.TP
1364-XX:AllocatePrefetchStyle=\fIstyle\fR
1365.br
1366Sets the generated code style for prefetch instructions\&. The \fIstyle\fR argument is an integer from 0 to 3:
1367.RS
1368.TP
13690
1370Do not generate prefetch instructions\&.
1371.TP
13721
1373Execute prefetch instructions after each allocation\&. This is the default parameter\&.
1374.TP
13752
1376Use the thread-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed\&.
1377.TP
13783
1379Use BIS instruction on SPARC for allocation prefetch\&.
1380.RE
1381
1382.TP
1383-XX:+AlwaysPreTouch
1384.br
1385Enables touching of every page on the Java heap during JVM initialization\&. This gets all pages into the memory before entering the \f3main()\fR method\&. The option can be used in testing to simulate a long-running system with all virtual memory mapped to physical memory\&. By default, this option is disabled and all pages are committed as JVM heap space fills\&.
1386.TP
1387-XX:+CMSClassUnloadingEnabled
1388.br
1389Enables class unloading when using the concurrent mark-sweep (CMS) garbage collector\&. This option is enabled by default\&. To disable class unloading for the CMS garbage collector, specify \f3-XX:-CMSClassUnloadingEnabled\fR\&.
1390.TP
1391-XX:CMSExpAvgFactor=\fIpercent\fR
1392.br
1393Sets the percentage of time (0 to 100) used to weight the current sample when computing exponential averages for the concurrent collection statistics\&. By default, the exponential averages factor is set to 25%\&. The following example shows how to set the factor to 15%:
1394.sp
1395.nf
1396\f3\-XX:CMSExpAvgFactor=15\fP
1397.fi
1398.nf
1399\f3\fP
1400.fi
1401.sp
1402
1403.TP
1404-XX:CMSIncrementalDutyCycle=\fIpercent\fR
1405.br
1406Sets the percentage of time (0 to 100) between minor collections that the concurrent collector is allowed to run\&. When \f3-XX:+CMSIncrementalPacing\fR is enabled, the duty cycle is set automatically, and this option sets only the initial value\&.
1407
1408By default, the duty cycle is set to 10%\&. The following example shows how to set the duty cycle to 20%:
1409.sp
1410.nf
1411\f3\-XX:CMSIncrementalDutyCycle=20\fP
1412.fi
1413.nf
1414\f3\fP
1415.fi
1416.sp
1417
1418.TP
1419-XX:CMSIncrementalDutyCycleMin=\fIpercent\fR
1420.br
1421Sets the percentage of time (0 to 100) between minor collections that is the lower bound for the duty cycle when \f3-XX:+CMSIncrementalPacing\fR is enabled\&. By default, the lower bound for the duty cycle is set to 0%\&. The following example shows how to set the lower bound to 10%:
1422.sp
1423.nf
1424\f3\-XX:CMSIncrementalDutyCycleMin=10\fP
1425.fi
1426.nf
1427\f3\fP
1428.fi
1429.sp
1430
1431.TP
1432-XX:+CMSIncrementalMode
1433.br
1434Enables the incremental mode for the CMS collector\&. This option is disabled by default and should only be enabled for configurations with no more than two GC threads\&. All options that start with \f3CMSIncremental\fR apply only when this option is enabled\&.
1435.TP
1436-XX:CMSIncrementalOffset=\fIpercent\fR
1437.br
1438Sets the percentage of time (0 to 100) by which the incremental mode duty cycle is shifted to the right within the period between minor collections\&. By default, the offset is set to 0%\&. The following example shows how to set the duty cycle offset to 25%:
1439.sp
1440.nf
1441\f3\-XX:CMSIncrementalOffset=25\fP
1442.fi
1443.nf
1444\f3\fP
1445.fi
1446.sp
1447
1448.TP
1449-XX:+CMSIncrementalPacing
1450.br
1451Enables automatic adjustment of the incremental mode duty cycle based on statistics collected while the JVM is running\&. This option is enabled by default\&. To disable automatic adjustment of the incremental mode duty cycle, specify \f3-XX:-CMSIncrementalPacing\fR\&.
1452.TP
1453-XX:CMSIncrementalSafetyFactor=\fIpercent\fR
1454.br
1455Sets the percentage of time (0 to 100) used to add conservatism when computing the duty cycle\&. By default, the safety factor is set to 10%\&. The example below shows how to set the safety factor to 5%:
1456.sp
1457.nf
1458\f3\-XX:CMSIncrementalSafetyFactor=5\fP
1459.fi
1460.nf
1461\f3\fP
1462.fi
1463.sp
1464
1465.TP
1466-XX:CMSInitiatingOccupancyFraction=\fIpercent\fR
1467.br
1468Sets the percentage of the old generation occupancy (0 to 100) at which to start a CMS collection cycle\&. The default value is set to -1\&. Any negative value (including the default) implies that \f3-XX:CMSTriggerRatio\fR is used to define the value of the initiating occupancy fraction\&.
1469
1470The following example shows how to set the occupancy fraction to 20%:
1471.sp
1472.nf
1473\f3\-XX:CMSInitiatingOccupancyFraction=20\fP
1474.fi
1475.nf
1476\f3\fP
1477.fi
1478.sp
1479
1480.TP
1481-XX:+CMSScavengeBeforeRemark
1482.br
1483Enables scavenging attempts before the CMS remark step\&. By default, this option is disabled\&.
1484.TP
1485-XX:CMSTriggerRatio=\fIpercent\fR
1486.br
1487Sets the percentage (0 to 100) of the value specified by \f3-XX:MinHeapFreeRatio\fR that is allocated before a CMS collection cycle commences\&. The default value is set to 80%\&.
1488
1489The following example shows how to set the occupancy fraction to 75%:
1490.sp
1491.nf
1492\f3\-XX:CMSTriggerRatio=75\fP
1493.fi
1494.nf
1495\f3\fP
1496.fi
1497.sp
1498
1499.TP
1500-XX:ConcGCThreads=\fIthreads\fR
1501.br
1502Sets the number of threads used for concurrent GC\&. The default value depends on the number of CPUs available to the JVM\&.
1503
1504For example, to set the number of threads for concurrent GC to 2, specify the following option:
1505.sp
1506.nf
1507\f3\-XX:ConcGCThreads=2\fP
1508.fi
1509.nf
1510\f3\fP
1511.fi
1512.sp
1513
1514.TP
1515-XX:+DisableExplicitGC
1516.br
1517Enables the option that disables processing of calls to \f3System\&.gc()\fR\&. This option is disabled by default, meaning that calls to \f3System\&.gc()\fR are processed\&. If processing of calls to \f3System\&.gc()\fR is disabled, the JVM still performs GC when necessary\&.
1518.TP
1519-XX:+ExplicitGCInvokesConcurrent
1520.br
1521Enables invoking of concurrent GC by using the \f3System\&.gc()\fR request\&. This option is disabled by default and can be enabled only together with the \f3-XX:+UseConcMarkSweepGC\fR option\&.
1522.TP
1523-XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
1524.br
1525Enables invoking of concurrent GC by using the \f3System\&.gc()\fR request and unloading of classes during the concurrent GC cycle\&. This option is disabled by default and can be enabled only together with the \f3-XX:+UseConcMarkSweepGC\fR option\&.
1526.TP
1527-XX:G1HeapRegionSize=\fIsize\fR
1528.br
1529Sets the size of the regions into which the Java heap is subdivided when using the garbage-first (G1) collector\&. The value can be between 1 MB and 32 MB\&. The default region size is determined ergonomically based on the heap size\&.
1530
1531The following example shows how to set the size of the subdivisions to 16 MB:
1532.sp
1533.nf
1534\f3\-XX:G1HeapRegionSize=16m\fP
1535.fi
1536.nf
1537\f3\fP
1538.fi
1539.sp
1540
1541.TP
1542-XX:+G1PrintHeapRegions
1543.br
1544Enables the printing of information about which regions are allocated and which are reclaimed by the G1 collector\&. By default, this option is disabled\&.
1545.TP
1546-XX:G1ReservePercent=\fIpercent\fR
1547.br
1548Sets the percentage of the heap (0 to 50) that is reserved as a false ceiling to reduce the possibility of promotion failure for the G1 collector\&. By default, this option is set to 10%\&.
1549
1550The following example shows how to set the reserved heap to 20%:
1551.sp
1552.nf
1553\f3\-XX:G1ReservePercent=20\fP
1554.fi
1555.nf
1556\f3\fP
1557.fi
1558.sp
1559
1560.TP
1561-XX:InitialHeapSize=\fIsize\fR
1562.br
1563Sets the initial size (in bytes) of the memory allocation pool\&. This value must be either 0, or a multiple of 1024 and greater than 1 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For more information, see Garbage Collector Ergonomics at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gc-ergonomics\&.html
1564
1565The following examples show how to set the size of allocated memory to 6 MB using various units:
1566.sp
1567.nf
1568\f3\-XX:InitialHeapSize=6291456\fP
1569.fi
1570.nf
1571\f3\-XX:InitialHeapSize=6144k\fP
1572.fi
1573.nf
1574\f3\-XX:InitialHeapSize=6m\fP
1575.fi
1576.nf
1577\f3\fP
1578.fi
1579.sp
1580
1581
1582If you set this option to 0, then the initial size will be set as the sum of the sizes allocated for the old generation and the young generation\&. The size of the heap for the young generation can be set using the \f3-XX:NewSize\fR option\&.
1583.TP
1584-XX:InitialSurvivorRatio=\fIratio\fR
1585.br
1586Sets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the \f3-XX:+UseParallelGC\fR and/or -\f3XX:+UseParallelOldGC\fR options)\&. Adaptive sizing is enabled by default with the throughput garbage collector by using the \f3-XX:+UseParallelGC\fR and \f3-XX:+UseParallelOldGC\fR options, and survivor space is resized according to the application behavior, starting with the initial value\&. If adaptive sizing is disabled (using the \f3-XX:-UseAdaptiveSizePolicy\fR option), then the \f3-XX:SurvivorRatio\fR option should be used to set the size of the survivor space for the entire execution of the application\&.
1587
1588The following formula can be used to calculate the initial size of survivor space (S) based on the size of the young generation (Y), and the initial survivor space ratio (R):
1589.sp
1590.nf
1591\f3S=Y/(R+2)\fP
1592.fi
1593.nf
1594\f3\fP
1595.fi
1596.sp
1597
1598
1599The 2 in the equation denotes two survivor spaces\&. The larger the value specified as the initial survivor space ratio, the smaller the initial survivor space size\&.
1600
1601By default, the initial survivor space ratio is set to 8\&. If the default value for the young generation space size is used (2 MB), the initial size of the survivor space will be 0\&.2 MB\&.
1602
1603The following example shows how to set the initial survivor space ratio to 4:
1604.sp
1605.nf
1606\f3\-XX:InitialSurvivorRatio=4\fP
1607.fi
1608.nf
1609\f3\fP
1610.fi
1611.sp
1612
1613.TP
1614-XX:InitiatingHeapOccupancyPercent=\fIpercent\fR
1615.br
1616Sets the percentage of the heap occupancy (0 to 100) at which to start a concurrent GC cycle\&. It is used by garbage collectors that trigger a concurrent GC cycle based on the occupancy of the entire heap, not just one of the generations (for example, the G1 garbage collector)\&.
1617
1618By default, the initiating value is set to 45%\&. A value of 0 implies nonstop GC cycles\&. The following example shows how to set the initiating heap occupancy to 75%:
1619.sp
1620.nf
1621\f3\-XX:InitiatingHeapOccupancyPercent=75\fP
1622.fi
1623.nf
1624\f3\fP
1625.fi
1626.sp
1627
1628.TP
1629-XX:MaxGCPauseMillis=\fItime\fR
1630.br
1631Sets a target for the maximum GC pause time (in milliseconds)\&. This is a soft goal, and the JVM will make its best effort to achieve it\&. By default, there is no maximum pause time value\&.
1632
1633The following example shows how to set the maximum target pause time to 500 ms:
1634.sp
1635.nf
1636\f3\-XX:MaxGCPauseMillis=500\fP
1637.fi
1638.nf
1639\f3\fP
1640.fi
1641.sp
1642
1643.TP
1644-XX:MaxHeapSize=\fIsize\fR
1645.br
1646Sets the maximum size (in byes) of the memory allocation pool\&. This value must be a multiple of 1024 and greater than 2 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments, \f3-XX:InitialHeapSize\fR and \f3-XX:MaxHeapSize\fR are often set to the same value\&. For more information, see Garbage Collector Ergonomics at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gc-ergonomics\&.html
1647
1648The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
1649.sp
1650.nf
1651\f3\-XX:MaxHeapSize=83886080\fP
1652.fi
1653.nf
1654\f3\-XX:MaxHeapSize=81920k\fP
1655.fi
1656.nf
1657\f3\-XX:MaxHeapSize=80m\fP
1658.fi
1659.nf
1660\f3\fP
1661.fi
1662.sp
1663
1664
1665On Oracle Solaris 7 and Oracle Solaris 8 SPARC platforms, the upper limit for this value is approximately 4,000 MB minus overhead amounts\&. On Oracle Solaris 2\&.6 and x86 platforms, the upper limit is approximately 2,000 MB minus overhead amounts\&. On Linux platforms, the upper limit is approximately 2,000 MB minus overhead amounts\&.
1666
1667The \f3-XX:MaxHeapSize\fR option is equivalent to \f3-Xmx\fR\&.
1668.TP
1669-XX:MaxHeapFreeRatio=\fIpercent\fR
1670.br
1671Sets the maximum allowed percentage of free heap space (0 to 100) after a GC event\&. If free heap space expands above this value, then the heap will be shrunk\&. By default, this value is set to 70%\&.
1672
1673The following example shows how to set the maximum free heap ratio to 75%:
1674.sp
1675.nf
1676\f3\-XX:MaxHeapFreeRatio=75\fP
1677.fi
1678.nf
1679\f3\fP
1680.fi
1681.sp
1682
1683.TP
1684-XX:MaxMetaspaceSize=\fIsize\fR
1685.br
1686Sets the maximum amount of native memory that can be allocated for class metadata\&. By default, the size is not limited\&. The amount of metadata for an application depends on the application itself, other running applications, and the amount of memory available on the system\&.
1687
1688The following example shows how to set the maximum class metadata size to 256 MB:
1689.sp
1690.nf
1691\f3\-XX:MaxMetaspaceSize=256m\fP
1692.fi
1693.nf
1694\f3\fP
1695.fi
1696.sp
1697
1698.TP
1699-XX:MaxNewSize=\fIsize\fR
1700.br
1701Sets the maximum size (in bytes) of the heap for the young generation (nursery)\&. The default value is set ergonomically\&.
1702.TP
1703-XX:MaxTenuringThreshold=\fIthreshold\fR
1704.br
1705Sets the maximum tenuring threshold for use in adaptive GC sizing\&. The largest value is 15\&. The default value is 15 for the parallel (throughput) collector, and 6 for the CMS collector\&.
1706
1707The following example shows how to set the maximum tenuring threshold to 10:
1708.sp
1709.nf
1710\f3\-XX:MaxTenuringThreshold=10\fP
1711.fi
1712.nf
1713\f3\fP
1714.fi
1715.sp
1716
1717.TP
1718-XX:MetaspaceSize=\fIsize\fR
1719.br
1720Sets the size of the allocated class metadata space that will trigger a garbage collection the first time it is exceeded\&. This threshold for a garbage collection is increased or decreased depending on the amount of metadata used\&. The default size depends on the platform\&.
1721.TP
1722-XX:MinHeapFreeRatio=\fIpercent\fR
1723.br
1724Sets the minimum allowed percentage of free heap space (0 to 100) after a GC event\&. If free heap space falls below this value, then the heap will be expanded\&. By default, this value is set to 40%\&.
1725
1726The following example shows how to set the minimum free heap ratio to 25%:
1727.sp
1728.nf
1729\f3\-XX:MinHeapFreeRatio=25\fP
1730.fi
1731.nf
1732\f3\fP
1733.fi
1734.sp
1735
1736.TP
1737-XX:NewRatio=\fIratio\fR
1738.br
1739Sets the ratio between young and old generation sizes\&. By default, this option is set to 2\&. The following example shows how to set the young/old ratio to 1:
1740.sp
1741.nf
1742\f3\-XX:NewRatio=1\fP
1743.fi
1744.nf
1745\f3\fP
1746.fi
1747.sp
1748
1749.TP
1750-XX:NewSize=\fIsize\fR
1751.br
1752Sets the initial size (in bytes) of the heap for the young generation (nursery)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.
1753
1754The young generation region of the heap is used for new objects\&. GC is performed in this region more often than in other regions\&. If the size for the young generation is too low, then a large number of minor GCs will be performed\&. If the size is too high, then only full GCs will be performed, which can take a long time to complete\&. Oracle recommends that you keep the size for the young generation between a half and a quarter of the overall heap size\&.
1755
1756The following examples show how to set the initial size of young generation to 256 MB using various units:
1757.sp
1758.nf
1759\f3\-XX:NewSize=256m\fP
1760.fi
1761.nf
1762\f3\-XX:NewSize=262144k\fP
1763.fi
1764.nf
1765\f3\-XX:NewSize=268435456\fP
1766.fi
1767.nf
1768\f3\fP
1769.fi
1770.sp
1771
1772
1773The \f3-XX:NewSize\fR option is equivalent to \f3-Xmn\fR\&.
1774.TP
1775-XX:ParallelGCThreads=\fIthreads\fR
1776.br
1777Sets the number of threads used for parallel garbage collection in the young and old generations\&. The default value depends on the number of CPUs available to the JVM\&.
1778
1779For example, to set the number of threads for parallel GC to 2, specify the following option:
1780.sp
1781.nf
1782\f3\-XX:ParallelGCThreads=2\fP
1783.fi
1784.nf
1785\f3\fP
1786.fi
1787.sp
1788
1789.TP
1790-XX:+ParallelRefProcEnabled
1791.br
1792Enables parallel reference processing\&. By default, this option is disabled\&.
1793.TP
1794-XX:+PrintAdaptiveSizePolicy
1795.br
1796Enables printing of information about adaptive generation sizing\&. By default, this option is disabled\&.
1797.TP
1798-XX:+PrintGC
1799.br
1800Enables printing of messages at every GC\&. By default, this option is disabled\&.
1801.TP
1802-XX:+PrintGCApplicationConcurrentTime
1803.br
1804Enables printing of how much time elapsed since the last pause (for example, a GC pause)\&. By default, this option is disabled\&.
1805.TP
1806-XX:+PrintGCApplicationStoppedTime
1807.br
1808Enables printing of how much time the pause (for example, a GC pause) lasted\&. By default, this option is disabled\&.
1809.TP
1810-XX+PrintGCDateStamp
1811.br
1812Enables printing of a date stamp at every GC\&. By default, this option is disabled\&.
1813.TP
1814-XX:+PrintGCDetails
1815.br
1816Enables printing of detailed messages at every GC\&. By default, this option is disabled\&.
1817.TP
1818-XX:+PrintGCTaskTimeStamps
1819.br
1820Enables printing of time stamps for every individual GC worker thread task\&. By default, this option is disabled\&.
1821.TP
1822-XX:+PrintGCTimeStamp
1823.br
1824Enables printing of time stamps at every GC\&. By default, this option is disabled\&.
1825.TP
1826-XX:+PrintTenuringDistribution
1827.br
1828Enables printing of tenuring age information\&. The following is an example of the output:
1829.sp
1830.nf
1831\f3Desired survivor size 48286924 bytes, new threshold 10 (max 10)\fP
1832.fi
1833.nf
1834\f3\- age 1: 28992024 bytes, 28992024 total\fP
1835.fi
1836.nf
1837\f3\- age 2: 1366864 bytes, 30358888 total\fP
1838.fi
1839.nf
1840\f3\- age 3: 1425912 bytes, 31784800 total\fP
1841.fi
1842.nf
1843\f3\&.\&.\&.\fP
1844.fi
1845.nf
1846\f3\fP
1847.fi
1848.sp
1849
1850
1851Age 1 objects are the youngest survivors (they were created after the previous scavenge, survived the latest scavenge, and moved from eden to survivor space)\&. Age 2 objects have survived two scavenges (during the second scavenge they were copied from one survivor space to the next)\&. And so on\&.
1852
1853In the preceding example, 28 992 024 bytes survived one scavenge and were copied from eden to survivor space, 1 366 864 bytes are occupied by age 2 objects, etc\&. The third value in each row is the cumulative size of objects of age n or less\&.
1854
1855By default, this option is disabled\&.
1856.TP
1857-XX:+ScavengeBeforeFullGC
1858.br
1859Enables GC of the young generation before each full GC\&. This option is enabled by default\&. Oracle recommends that you \fIdo not\fR disable it, because scavenging the young generation before a full GC can reduce the number of objects reachable from the old generation space into the young generation space\&. To disable GC of the young generation before each full GC, specify \f3-XX:-ScavengeBeforeFullGC\fR\&.
1860.TP
1861-XX:SoftRefLRUPolicyMSPerMB=\fItime\fR
1862.br
1863Sets the amount of time (in milliseconds) a softly reachable object is kept active on the heap after the last time it was referenced\&. The default value is one second of lifetime per free megabyte in the heap\&. The \f3-XX:SoftRefLRUPolicyMSPerMB\fR option accepts integer values representing milliseconds per one megabyte of the current heap size (for Java HotSpot Client VM) or the maximum possible heap size (for Java HotSpot Server VM)\&. This difference means that the Client VM tends to flush soft references rather than grow the heap, whereas the Server VM tends to grow the heap rather than flush soft references\&. In the latter case, the value of the \f3-Xmx\fR option has a significant effect on how quickly soft references are garbage collected\&.
1864
1865The following example shows how to set the value to 2\&.5 seconds:
1866.sp
1867.nf
1868\f3\-XX:SoftRefLRUPolicyMSPerMB=2500\fP
1869.fi
1870.nf
1871\f3\fP
1872.fi
1873.sp
1874
1875.TP
1876-XX:SurvivorRatio=\fIratio\fR
1877.br
1878Sets the ratio between eden space size and survivor space size\&. By default, this option is set to 8\&. The following example shows how to set the eden/survivor space ratio to 4:
1879.sp
1880.nf
1881\f3\-XX:SurvivorRatio=4\fP
1882.fi
1883.nf
1884\f3\fP
1885.fi
1886.sp
1887
1888.TP
1889-XX:TargetSurvivorRatio=\fIpercent\fR
1890.br
1891Sets the desired percentage of survivor space (0 to 100) used after young garbage collection\&. By default, this option is set to 50%\&.
1892
1893The following example shows how to set the target survivor space ratio to 30%:
1894.sp
1895.nf
1896\f3\-XX:TargetSurvivorRatio=30\fP
1897.fi
1898.nf
1899\f3\fP
1900.fi
1901.sp
1902
1903.TP
1904-XX:TLABSize=\fIsize\fR
1905.br
1906Sets the initial size (in bytes) of a thread-local allocation buffer (TLAB)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. If this option is set to 0, then the JVM chooses the initial size automatically\&.
1907
1908The following example shows how to set the initial TLAB size to 512 KB:
1909.sp
1910.nf
1911\f3\-XX:TLABSize=512k\fP
1912.fi
1913.nf
1914\f3\fP
1915.fi
1916.sp
1917
1918.TP
1919-XX:+UseAdaptiveSizePolicy
1920.br
1921Enables the use of adaptive generation sizing\&. This option is enabled by default\&. To disable adaptive generation sizing, specify \f3-XX:-UseAdaptiveSizePolicy\fR and set the size of the memory allocation pool explicitly (see the \f3-XX:SurvivorRatio\fR option)\&.
1922.TP
1923-XX:+UseCMSInitiatingOccupancyOnly
1924.br
1925Enables the use of the occupancy value as the only criterion for initiating the CMS collector\&. By default, this option is disabled and other criteria may be used\&.
1926.TP
1927-XX:+UseConcMarkSweepGC
1928.br
1929Enables the use of the CMS garbage collector for the old generation\&. Oracle recommends that you use the CMS garbage collector when application latency requirements cannot be met by the throughput (\f3-XX:+UseParallelGC\fR) garbage collector\&. The G1 garbage collector (\f3-XX:+UseG1GC\fR) is another alternative\&.
1930
1931By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&. When this option is enabled, the \f3-XX:+UseParNewGC\fR option is automatically set\&.
1932.TP
1933-XX:+UseG1GC
1934.br
1935Enables the use of the G1 garbage collector\&. It is a server-style garbage collector, targeted for multiprocessor machines with a large amount of RAM\&. It meets GC pause time goals with high probability, while maintaining good throughput\&. The G1 collector is recommended for applications requiring large heaps (sizes of around 6 GB or larger) with limited GC latency requirements (stable and predictable pause time below 0\&.5 seconds)\&.
1936
1937By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&.
1938.TP
1939-XX:+UseGCOverheadLimit
1940.br
1941Enables the use of a policy that limits the proportion of time spent by the JVM on GC before an \f3OutOfMemoryError\fR exception is thrown\&. This option is enabled, by default and the parallel GC will throw an \f3OutOfMemoryError\fR if more than 98% of the total time is spent on garbage collection and less than 2% of the heap is recovered\&. When the heap is small, this feature can be used to prevent applications from running for long periods of time with little or no progress\&. To disable this option, specify \f3-XX:-UseGCOverheadLimit\fR\&.
1942.TP
1943-XX:+UseNUMA
1944.br
1945Enables performance optimization of an application on a machine with nonuniform memory architecture (NUMA) by increasing the application\&'s use of lower latency memory\&. By default, this option is disabled and no optimization for NUMA is made\&. The option is only available when the parallel garbage collector is used (\f3-XX:+UseParallelGC\fR)\&.
1946.TP
1947-XX:+UseParallelGC
1948.br
1949Enables the use of the parallel scavenge garbage collector (also known as the throughput collector) to improve the performance of your application by leveraging multiple processors\&.
1950
1951By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&. If it is enabled, then the \f3-XX:+UseParallelOldGC\fR option is automatically enabled, unless you explicitly disable it\&.
1952.TP
1953-XX:+UseParallelOldGC
1954.br
1955Enables the use of the parallel garbage collector for full GCs\&. By default, this option is disabled\&. Enabling it automatically enables the \f3-XX:+UseParallelGC\fR option\&.
1956.TP
1957-XX:+UseParNewGC
1958.br
1959Enables the use of parallel threads for collection in the young generation\&. By default, this option is disabled\&. It is automatically enabled when you set the \f3-XX:+UseConcMarkSweepGC\fR option\&.
1960.TP
1961-XX:+UseSerialGC
1962.br
1963Enables the use of the serial garbage collector\&. This is generally the best choice for small and simple applications that do not require any special functionality from garbage collection\&. By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&.
1964.TP
1965-XX:+UseTLAB
1966.br
1967Enables the use of thread-local allocation blocks (TLABs) in the young generation space\&. This option is enabled by default\&. To disable the use of TLABs, specify \f3-XX:-UseTLAB\fR\&.
1968.SS DEPRECATED\ AND\ REMOVED\ OPTIONS
1969These options were included in the previous release, but have since been considered unnecessary\&.
1970.TP
1971-Xrun\fIlibname\fR
1972.br
1973Loads the specified debugging/profiling library\&. This option was superseded by the \f3-agentlib\fR option\&.
1974.TP
1975-XX:CMSInitiatingPermOccupancyFraction=\fIpercent\fR
1976.br
1977Sets the percentage of the permanent generation occupancy (0 to 100) at which to start a GC\&. This option was deprecated in JDK 8 with no replacement\&.
1978.TP
1979-XX:MaxPermSize=\fIsize\fR
1980.br
1981Sets the maximum permanent generation space size (in bytes)\&. This option was deprecated in JDK 8, and superseded by the \f3-XX:MaxMetaspaceSize\fR option\&.
1982.TP
1983-XX:PermSize=\fIsize\fR
1984.br
1985Sets the space (in bytes) allocated to the permanent generation that triggers a garbage collection if it is exceeded\&. This option was deprecated un JDK 8, and superseded by the \f3-XX:MetaspaceSize\fR option\&.
1986.TP
1987-XX:+UseSplitVerifier
1988.br
1989Enables splitting of the verification process\&. By default, this option was enabled in the previous releases, and verification was split into two phases: type referencing (performed by the compiler) and type checking (performed by the JVM runtime)\&. This option was deprecated in JDK 8, and verification is now split by default without a way to disable it\&.
1990.TP
1991-XX:+UseStringCache
1992.br
1993Enables caching of commonly allocated strings\&. This option was removed from JDK 8 with no replacement\&.
1994.SH PERFORMANCE\ TUNING\ EXAMPLES
1995The following examples show how to use experimental tuning flags to either optimize throughput or to provide lower response time\&.
1996.PP
1997\f3Example 1 Tuning for Higher Throughput\fR
1998.sp
1999.nf
2000\f3java \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g \-Xms26g \-Xmx26g\fP
2001.fi
2002.nf
2003\f3\fP
2004.fi
2005.sp
2006\f3Example 2 Tuning for Lower Response Time\fR
2007.sp
2008.nf
2009\f3java \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamp\fP
2010.fi
2011.nf
2012\f3\fP
2013.fi
2014.sp
2015.SH EXIT\ STATUS
2016The following exit values are typically returned by the launcher when the launcher is called with the wrong arguments, serious errors, or exceptions thrown by the JVM\&. However, a Java application may choose to return any value by using the API call \f3System\&.exit(exitValue)\fR\&. The values are:
2017.TP 0.2i
2018\(bu
2019\f30\fR: Successful completion
2020.TP 0.2i
2021\(bu
2022\f3>0\fR: An error occurred
2023.SH SEE\ ALSO
2024.TP 0.2i
2025\(bu
2026javac(1)
2027.TP 0.2i
2028\(bu
2029jdb(1)
2030.TP 0.2i
2031\(bu
2032javah(1)
2033.TP 0.2i
2034\(bu
2035jar(1)
2036.RE
2037.br
2038'pl 8.5i
2039'bp