'\" t.\" Copyright (c) 1994, 2018, Oracle and/or its affiliates. All rights reserved..\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER..\".\" This code is free software; you can redistribute it and/or modify it.\" under the terms of the GNU General Public License version 2 only, as.\" published by the Free Software Foundation..\".\" This code is distributed in the hope that it will be useful, but WITHOUT.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License.\" version 2 for more details (a copy is included in the LICENSE file that.\" accompanied this code)..\".\" You should have received a copy of the GNU General Public License version.\" 2 along with this work; if not, write to the Free Software Foundation,.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA..\".\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.\" or visit www.oracle.com if you need additional information or have any.\" questions..\".\" Title: java.\" Language: English.\" Date: 03 March 2015.\" SectDesc: Basic Tools.\" Software: JDK 8.\" Arch: generic.\" Part Number: E38207-04.\" Doc ID: JSSON.\".if n .pl 99999.TH "java" "1" "03 March 2015" "JDK 8" "Basic Tools".\" -----------------------------------------------------------------.\" * Define some portability stuff.\" -----------------------------------------------------------------.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.\" http://bugs.debian.org/507673.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.ie \n(.g .ds Aq \(aq.el .ds Aq '.\" -----------------------------------------------------------------.\" * set default formatting.\" -----------------------------------------------------------------.\" disable hyphenation.nh.\" disable justification (adjust text to left margin only).ad l.\" -----------------------------------------------------------------.\" * MAIN CONTENT STARTS HERE *.\" -----------------------------------------------------------------.SH "NAME"java \- Launches a Java application\&..SH "SYNOPSIS".sp.if n \{\.RS 4.\}.nf\fBjava\fR [\fIoptions\fR] \fIclassname\fR [\fIargs\fR].fi.if n \{\.RE.\}.sp.if n \{\.RS 4.\}.nf\fBjava\fR [\fIoptions\fR] \fB\-jar\fR \fIfilename\fR [\fIargs\fR].fi.if n \{\.RE.\}.PP\fIoptions\fR.RS 4Command\-line options separated by spaces\&. See Options\&..RE.PP\fIclassname\fR.RS 4The name of the class to be launched\&..RE.PP\fIfilename\fR.RS 4The name of the Java Archive (JAR) file to be called\&. Used only with the\fB\-jar\fRoption\&..RE.PP\fIargs\fR.RS 4The arguments passed to the\fBmain()\fRmethod separated by spaces\&..RE.SH "DESCRIPTION".PPThe\fBjava\fRcommand starts a Java application\&. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class\*(Aqs\fBmain()\fRmethod\&. The method must be declared\fIpublic\fRand\fIstatic\fR, it must not return any value, and it must accept a\fBString\fRarray as a parameter\&. The method declaration has the following form:.sp.if n \{\.RS 4.\}.nf\fBpublic static void main(String[] args)\fR.fi.if n \{\.RE.\}.PPThe\fBjava\fRcommand can be used to launch a JavaFX application by loading a class that either has a\fBmain()\fRmethod or that extends\fBjavafx\&.application\&.Application\fR\&. In the latter case, the launcher constructs an instance of the\fBApplication\fRclass, calls its\fBinit()\fRmethod, and then calls the\fBstart(javafx\&.stage\&.Stage)\fRmethod\&..PPBy default, the first argument that is not an option of the\fBjava\fRcommand is the fully qualified name of the class to be called\&. If the\fB\-jar\fRoption 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\fBMain\-Class\fRmanifest header in its source code\&..PPThe 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\&..PPArguments after the class file name or the JAR file name are passed to the\fBmain()\fRmethod\&..SH "OPTIONS".PPThe\fBjava\fRcommand supports a wide range of options that can be divided into the following categories:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Standard Options.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Non\-Standard Options.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Advanced Runtime Options.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Advanced JIT Compiler Options.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Advanced Serviceability Options.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Advanced Garbage Collection Options.RE.PPStandard 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\&..PPNon\-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\fB\-X\fR\&..PPAdvanced 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\fB\-XX\fR\&..PPTo 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\&..PPBoolean 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\fB\-XX\fRoptions are enabled using the plus sign (\fB\-XX:+\fR\fIOptionName\fR) and disabled using the minus sign (\fB\-XX:\-\fR\fIOptionName\fR)\&..PPFor 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\fBk\fRor\fBK\fRfor kilobytes (KB),\fBm\fRor\fBM\fRfor megabytes (MB),\fBg\fRor\fBG\fRfor gigabytes (GB)\&. For example, to set the size to 8 GB, you can specify either\fB8g\fR,\fB8192m\fR,\fB8388608k\fR, or\fB8589934592\fRas the argument\&. If you are expected to specify the percentage, use a number from 0 to 1 (for example, specify\fB0\&.25\fRfor 25%)\&..SS "Standard Options".PPThese are the most commonly used options that are supported by all implementations of the JVM\&..PP\-agentlib:\fIlibname\fR[=\fIoptions\fR].RS 4Loads the specified native agent library\&. After the library name, a comma\-separated list of options specific to the library can be used\&..spIf the option\fB\-agentlib:foo\fRis specified, then the JVM attempts to load the library named\fBlibfoo\&.so\fRin the location specified by the\fBLD_LIBRARY_PATH\fRsystem variable (on OS X this variable is\fBDYLD_LIBRARY_PATH\fR)\&..spThe 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:.sp.if n \{\.RS 4.\}.nf\fB\-agentlib:hprof=cpu=samples,interval=20,depth=3\fR.fi.if n \{\.RE.\}The 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:.sp.if n \{\.RS 4.\}.nf\fB\-agentlib:jdwp=transport=dt_socket,server=y,address=8000\fR.fi.if n \{\.RE.\}For more information about the native agent libraries, refer to the following:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}The\fBjava\&.lang\&.instrument\fRpackage description at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package\-summary\&.html.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Agent Command Line Options in the JVM Tools Interface guide at http://docs\&.oracle\&.com/javase/8/docs/platform/jvmti/jvmti\&.html#starting.RE.RE.PP\-agentpath:\fIpathname\fR[=\fIoptions\fR].RS 4Loads the native agent library specified by the absolute path name\&. This option is equivalent to\fB\-agentlib\fRbut uses the full path and file name of the library\&..RE.PP\-client.RS 4Selects 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\&..spFor default JVM selection, see Server\-Class Machine Detection athttp://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html.RE.PP\-D\fIproperty\fR=\fIvalue\fR.RS 4Sets a system property value\&. The\fIproperty\fRvariable is a string with no spaces that represents the name of the property\&. The\fIvalue\fRvariable is a string that represents the value of the property\&. If\fIvalue\fRis a string with spaces, then enclose it in quotation marks (for example\fB\-Dfoo="foo bar"\fR)\&..RE.PP\-d32.RS 4Runs 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\&..RE.PP\-d64.RS 4Runs 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\&..spCurrently only the Java HotSpot Server VM supports 64\-bit operation, and the\fB\-server\fRoption is implicit with the use of\fB\-d64\fR\&. The\fB\-client\fRoption is ignored with the use of\fB\-d64\fR\&. This is subject to change in a future release\&..RE.PP\-disableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR].br\-da[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR].RS 4Disables assertions\&. By default, assertions are disabled in all packages and classes\&..spWith no arguments,\fB\-disableassertions\fR(\fB\-da\fR) disables assertions in all packages and classes\&. With the\fIpackagename\fRargument ending in\fB\&.\&.\&.\fR, the switch disables assertions in the specified package and any subpackages\&. If the argument is simply\fB\&.\&.\&.\fR, then the switch disables assertions in the unnamed package in the current working directory\&. With the\fIclassname\fRargument, the switch disables assertions in the specified class\&..spThe\fB\-disableassertions\fR(\fB\-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\fB\-disablesystemassertions\fRoption enables you to disable assertions in all system classes\&..spTo explicitly enable assertions in specific packages or classes, use the\fB\-enableassertions\fR(\fB\-ea\fR) option\&. Both options can be used at the same time\&. For example, to run the\fBMyClass\fRapplication with assertions enabled in package\fBcom\&.wombat\&.fruitbat\fR(and any subpackages) but disabled in class\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:.sp.if n \{\.RS 4.\}.nf\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR.fi.if n \{\.RE.\}.RE.PP\-disablesystemassertions.br\-dsa.RS 4Disables assertions in all system classes\&..RE.PP\-enableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR].br\-ea[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR].RS 4Enables assertions\&. By default, assertions are disabled in all packages and classes\&..spWith no arguments,\fB\-enableassertions\fR(\fB\-ea\fR) enables assertions in all packages and classes\&. With the\fIpackagename\fRargument ending in\fB\&.\&.\&.\fR, the switch enables assertions in the specified package and any subpackages\&. If the argument is simply\fB\&.\&.\&.\fR, then the switch enables assertions in the unnamed package in the current working directory\&. With the\fIclassname\fRargument, the switch enables assertions in the specified class\&..spThe\fB\-enableassertions\fR(\fB\-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\fB\-enablesystemassertions\fRoption provides a separate switch to enable assertions in all system classes\&..spTo explicitly disable assertions in specific packages or classes, use the\fB\-disableassertions\fR(\fB\-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\fBMyClass\fRapplication with assertions enabled only in package\fBcom\&.wombat\&.fruitbat\fR(and any subpackages) but disabled in class\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:.sp.if n \{\.RS 4.\}.nf\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR.fi.if n \{\.RE.\}.RE.PP\-enablesystemassertions.br\-esa.RS 4Enables assertions in all system classes\&..RE.PP\-help.br\-?.RS 4Displays usage information for the\fBjava\fRcommand without actually running the JVM\&..RE.PP\-jar \fIfilename\fR.RS 4Executes a program encapsulated in a JAR file\&. The\fIfilename\fRargument is the name of a JAR file with a manifest that contains a line in the form\fBMain\-Class:\fR\fIclassname\fRthat defines the class with the\fBpublic static void main(String[] args)\fRmethod that serves as your application\*(Aqs starting point\&..spWhen you use the\fB\-jar\fRoption, the specified JAR file is the source of all user classes, and other class path settings are ignored\&..spFor more information about JAR files, see the following resources:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}jar(1).RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}The Java Archive (JAR) Files guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/jar/index\&.html.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Lesson: Packaging Programs in JAR Files athttp://docs\&.oracle\&.com/javase/tutorial/deployment/jar/index\&.html.RE.RE.PP\-javaagent:\fIjarpath\fR[=\fIoptions\fR].RS 4Loads the specified Java programming language agent\&. For more information about instrumenting Java applications, see the\fBjava\&.lang\&.instrument\fRpackage description in the Java API documentation at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package\-summary\&.html.RE.PP\-jre\-restrict\-search.RS 4Includes user\-private JREs in the version search\&..RE.PP\-no\-jre\-restrict\-search.RS 4Excludes user\-private JREs from the version search\&..RE.PP\-server.RS 4Selects 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\&..spFor default JVM selection, see Server\-Class Machine Detection athttp://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html.RE.PP\-showversion.RS 4Displays version information and continues execution of the application\&. This option is equivalent to the\fB\-version\fRoption except that the latter instructs the JVM to exit after displaying version information\&..RE.PP\-splash:\fIimgname\fR.RS 4Shows the splash screen with the image specified by\fIimgname\fR\&. For example, to show the\fBsplash\&.gif\fRfile from the\fBimages\fRdirectory when starting your application, use the following option:.sp.if n \{\.RS 4.\}.nf\fB\-splash:images/splash\&.gif\fR.fi.if n \{\.RE.\}.RE.PP\-verbose:class.RS 4Displays information about each loaded class\&..RE.PP\-verbose:gc.RS 4Displays information about each garbage collection (GC) event\&..RE.PP\-verbose:jni.RS 4Displays information about the use of native methods and other Java Native Interface (JNI) activity\&..RE.PP\-version.RS 4Displays version information and then exits\&. This option is equivalent to the\fB\-showversion\fRoption except that the latter does not instruct the JVM to exit after displaying version information\&..RE.PP\-version:\fIrelease\fR.RS 4Specifies the release version to be used for running the application\&. If the version of the\fBjava\fRcommand called does not meet this specification and an appropriate implementation is found on the system, then the appropriate implementation will be used\&..spThe\fIrelease\fRargument specifies either the exact version string, or a list of version strings and ranges separated by spaces\&. A\fIversion string\fRis the developer designation of the version number in the following form:\fB1\&.\fR\fIx\fR\fB\&.0_\fR\fIu\fR(where\fIx\fRis the major version number, and\fIu\fRis the update version number)\&. A\fIversion range\fRis made up of a version string followed by a plus sign (\fB+\fR) to designate this version or later, or a part of a version string followed by an asterisk (\fB*\fR) to designate any version string with a matching prefix\&. Version strings and ranges can be combined using a space for a logical\fIOR\fRcombination, or an ampersand (\fB&\fR) for a logical\fIAND\fRcombination 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:.sp.if n \{\.RS 4.\}.nf\fB\-version:"1\&.6\&.0_13 1\&.6* & 1\&.6\&.0_10+"\fR.fi.if n \{\.RE.\}Quotation marks are necessary only if there are spaces in the\fIrelease\fRparameter\&..spFor JAR files, the preference is to specify version requirements in the JAR file manifest rather than on the command line\&..RE.SS "Non\-Standard Options".PPThese options are general purpose options that are specific to the Java HotSpot Virtual Machine\&..PP\-X.RS 4Displays help for all available\fB\-X\fRoptions\&..RE.PP\-Xbatch.RS 4Disables 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\fB\-Xbatch\fRflag disables background compilation so that compilation of all methods proceeds as a foreground task until completed\&..spThis option is equivalent to\fB\-XX:\-BackgroundCompilation\fR\&..RE.PP\-Xbootclasspath:\fIpath\fR.RS 4Specifies 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\&..spDo not deploy applications that use this option to override a class in\fBrt\&.jar\fR, because this violates the JRE binary code license\&..RE.PP\-Xbootclasspath/a:\fIpath\fR.RS 4Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to append to the end of the default bootstrap class path\&..spDo not deploy applications that use this option to override a class in\fBrt\&.jar\fR, because this violates the JRE binary code license\&..RE.PP\-Xbootclasspath/p:\fIpath\fR.RS 4Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to prepend to the front of the default bootstrap class path\&..spDo not deploy applications that use this option to override a class in\fBrt\&.jar\fR, because this violates the JRE binary code license\&..RE.PP\-Xcheck:jni.RS 4Performs 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\&..RE.PP\-Xcomp.RS 4Forces compilation of methods on first invocation\&. By default, the Client VM (\fB\-client\fR) performs 1,000 interpreted method invocations and the Server VM (\fB\-server\fR) performs 10,000 interpreted method invocations to gather information for efficient compilation\&. Specifying the\fB\-Xcomp\fRoption disables interpreted method invocations to increase compilation performance at the expense of efficiency\&..spYou can also change the number of interpreted method invocations before compilation using the\fB\-XX:CompileThreshold\fRoption\&..RE.PP\-Xdebug.RS 4Does nothing\&. Provided for backward compatibility\&..RE.PP\-Xdiag.RS 4Shows additional diagnostic messages\&..RE.PP\-Xfuture.RS 4Enables 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\&..RE.PP\-Xint.RS 4Runs 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\&..RE.PP\-Xinternalversion.RS 4Displays more detailed JVM version information than the\fB\-version\fRoption, and then exits\&..RE.PP\-Xloggc:\fIfilename\fR.RS 4Sets 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\fB\-verbose:gc\fRwith the time elapsed since the first GC event preceding each logged event\&. The\fB\-Xloggc\fRoption overrides\fB\-verbose:gc\fRif both are given with the same\fBjava\fRcommand\&..spExample:.sp.if n \{\.RS 4.\}.nf\fB\-Xloggc:garbage\-collection\&.log\fR.fi.if n \{\.RE.\}.RE.PP\-Xmaxjitcodesize=\fIsize\fR.RS 4Specifies the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option\fB\-XX:\-TieredCompilation\fR, then the default size is 48 MB:.sp.if n \{\.RS 4.\}.nf\fB\-Xmaxjitcodesize=240m\fR.fi.if n \{\.RE.\}This option is equivalent to\fB\-XX:ReservedCodeCacheSize\fR\&..RE.PP\-Xmixed.RS 4Executes all bytecode by the interpreter except for hot methods, which are compiled to native code\&..RE.PP\-Xmn\fIsize\fR.RS 4Sets the initial and maximum size (in bytes) of the heap for the young generation (nursery)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&..spThe 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\&..spThe following examples show how to set the initial and maximum size of young generation to 256 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-Xmn256m\fR\fB\-Xmn262144k\fR\fB\-Xmn268435456\fR.fi.if n \{\.RE.\}Instead of the\fB\-Xmn\fRoption to set both the initial and maximum size of the heap for the young generation, you can use\fB\-XX:NewSize\fRto set the initial size and\fB\-XX:MaxNewSize\fRto set the maximum size\&..RE.PP\-Xms\fIsize\fR.RS 4Sets the initial size (in bytes) of the heap\&. This value must be a multiple of 1024 and greater than 1 MB\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&..spThe following examples show how to set the size of allocated memory to 6 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-Xms6291456\fR\fB\-Xms6144k\fR\fB\-Xms6m\fR.fi.if n \{\.RE.\}If 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\fB\-Xmn\fRoption or the\fB\-XX:NewSize\fRoption\&..RE.PP\-Xmx\fIsize\fR.RS 4Specifies 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\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,\fB\-Xms\fRand\fB\-Xmx\fRare often set to the same value\&. See the section "Ergonomics" in\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fRat http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&..spThe following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-Xmx83886080\fR\fB\-Xmx81920k\fR\fB\-Xmx80m\fR.fi.if n \{\.RE.\}The\fB\-Xmx\fRoption is equivalent to\fB\-XX:MaxHeapSize\fR\&..RE.PP\-Xnoclassgc.RS 4Disables garbage collection (GC) of classes\&. This can save some GC time, which shortens interruptions during the application run\&..spWhen you specify\fB\-Xnoclassgc\fRat 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\&..RE.PP\-Xrs.RS 4Reduces the use of operating system signals by the JVM\&..spShutdown 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\&..spThe JVM catches signals to implement shutdown hooks for unexpected termination\&. The JVM uses\fBSIGHUP\fR,\fBSIGINT\fR, and\fBSIGTERM\fRto initiate the running of shutdown hooks\&..spThe JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes\&. The JVM uses\fBSIGQUIT\fRto perform thread dumps\&..spApplications embedding the JVM frequently need to trap signals such as\fBSIGINT\fRor\fBSIGTERM\fR, which can lead to interference with the JVM signal handlers\&. The\fB\-Xrs\fRoption is available to address this issue\&. When\fB\-Xrs\fRis used, the signal masks for\fBSIGINT\fR,\fBSIGTERM\fR,\fBSIGHUP\fR, and\fBSIGQUIT\fRare not changed by the JVM, and signal handlers for these signals are not installed\&..spThere are two consequences of specifying\fB\-Xrs\fR:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}\fBSIGQUIT\fRthread dumps are not available\&..RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}User code is responsible for causing shutdown hooks to run, for example, by calling\fBSystem\&.exit()\fRwhen the JVM is to be terminated\&..RE.RE.PP\-Xshare:\fImode\fR.RS 4Sets the class data sharing (CDS) mode\&. Possible\fImode\fRarguments for this option include the following:.PPauto.RS 4Use CDS if possible\&. This is the default value for Java HotSpot 32\-Bit Client VM\&..RE.PPon.RS 4Require the use of CDS\&. Print an error message and exit if class data sharing cannot be used\&..RE.PPoff.RS 4Do not use CDS\&. 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\&..RE.PPdump.RS 4Manually generate the CDS archive\&. Specify the application class path as described in "Setting the Class Path "\&..spYou should regenerate the CDS archive with each new JDK release\&..RE.RE.PP\-XshowSettings:\fIcategory\fR.RS 4Shows settings and continues\&. Possible\fIcategory\fRarguments for this option include the following:.PPall.RS 4Shows all categories of settings\&. This is the default value\&..RE.PPlocale.RS 4Shows settings related to locale\&..RE.PPproperties.RS 4Shows settings related to system properties\&..RE.PPvm.RS 4Shows the settings of the JVM\&..RE.RE.PP\-Xss\fIsize\fR.RS 4Sets the thread stack size (in bytes)\&. Append the letter\fBk\fRor\fBK\fRto indicate KB,\fBm\fRor\fBM\fRto indicate MB,\fBg\fRor\fBG\fRto indicate GB\&. The default value depends on the platform:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/ARM (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/i386 (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/x64 (64\-bit): 1024 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}OS X (64\-bit): 1024 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Oracle Solaris/i386 (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Oracle Solaris/x64 (64\-bit): 1024 KB.RE.spThe following examples set the thread stack size to 1024 KB in different units:.sp.if n \{\.RS 4.\}.nf\fB\-Xss1m\fR\fB\-Xss1024k\fR\fB\-Xss1048576\fR.fi.if n \{\.RE.\}This option is equivalent to\fB\-XX:ThreadStackSize\fR\&..RE.PP\-Xusealtsigs.RS 4Use alternative signals instead of\fBSIGUSR1\fRand\fBSIGUSR2\fRfor JVM internal signals\&. This option is equivalent to\fB\-XX:+UseAltSigs\fR\&..RE.PP\-Xverify:\fImode\fR.RS 4Sets the mode of the bytecode verifier\&. Bytecode verification helps to troubleshoot some problems, but it also adds overhead to the running application\&. Possible\fImode\fRarguments for this option include the following:.PPnone.RS 4Do not verify the bytecode\&. This reduces startup time and also reduces the protection provided by Java\&..RE.PPremote.RS 4Verify those classes that are not loaded by the bootstrap class loader\&. This is the default behavior if you do not specify the\fB\-Xverify\fRoption\&..RE.PPall.RS 4Verify all classes\&..RE.RE.SS "Advanced Runtime Options".PPThese options control the runtime behavior of the Java HotSpot VM\&..PP\-XX:+DisableAttachMechanism.RS 4Enables 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\fBjcmd\fR,\fBjstack\fR,\fBjmap\fR, and\fBjinfo\fR\&..RE.PP\-XX:ErrorFile=\fIfilename\fR.RS 4Specifies 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\fBhs_err_pid\fR\fIpid\fR\fB\&.log\fRwhere\fIpid\fRis 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\fB%p\fR):.sp.if n \{\.RS 4.\}.nf\fB\-XX:ErrorFile=\&./hs_err_pid%p\&.log\fR.fi.if n \{\.RE.\}The following example shows how to set the error log to\fB/var/log/java/java_error\&.log\fR:.sp.if n \{\.RS 4.\}.nf\fB\-XX:ErrorFile=/var/log/java/java_error\&.log\fR.fi.if n \{\.RE.\}If 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\fB/tmp\fR\&..RE.PP\-XX:+FailOverToOldVerifier.RS 4Enables 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\&..RE.PP\-XX:LargePageSizeInBytes=\fIsize\fR.RS 4On Solaris, sets the maximum size (in bytes) for large pages used for Java heap\&. The\fIsize\fRargument must be a power of 2 (2, 4, 8, 16, \&.\&.\&.)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically\&..spThe following example illustrates how to set the large page size to 4 megabytes (MB):.sp.if n \{\.RS 4.\}.nf\fB\-XX:LargePageSizeInBytes=4m\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxDirectMemorySize=\fIsize\fR.RS 4Sets the maximum total size (in bytes) of the New I/O (the\fBjava\&.nio\fRpackage) direct\-buffer allocations\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for NIO direct\-buffer allocations automatically\&..spThe following examples illustrate how to set the NIO size to 1024 KB in different units:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxDirectMemorySize=1m\fR\fB\-XX:MaxDirectMemorySize=1024k\fR\fB\-XX:MaxDirectMemorySize=1048576\fR.fi.if n \{\.RE.\}.RE.PP\-XX:NativeMemoryTracking=\fImode\fR.RS 4Specifies the mode for tracking JVM native memory usage\&. Possible\fImode\fRarguments for this option include the following:.PPoff.RS 4Do not track JVM native memory usage\&. This is the default behavior if you do not specify the\fB\-XX:NativeMemoryTracking\fRoption\&..RE.PPsummary.RS 4Only track memory usage by JVM subsystems, such as Java heap, class, code, and thread\&..RE.PPdetail.RS 4In addition to tracking memory usage by JVM subsystems, track memory usage by individual\fBCallSite\fR, individual virtual memory region and its committed regions\&..RE.RE.PP\-XX:ObjectAlignmentInBytes=\fIalignment\fR.RS 4Sets the memory alignment of Java objects (in bytes)\&. By default, the value is set to 8 bytes\&. The specified value should be a power of two, and must be within the range of 8 and 256 (inclusive)\&. This option makes it possible to use compressed pointers with large Java heap sizes\&..spThe heap size limit in bytes is calculated as:.sp\fB4GB * ObjectAlignmentInBytes\fR.spNote: As the alignment value increases, the unused space between objects will also increase\&. As a result, you may not realize any benefits from using compressed pointers with large Java heap sizes\&..RE.PP\-XX:OnError=\fIstring\fR.RS 4Sets 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\&..spThe following example shows how the\fB\-XX:OnError\fRoption can be used to run the\fBgcore\fRcommand to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the\fB%p\fRdesignates the current process):.sp.if n \{\.RS 4.\}.nf\fB\-XX:OnError="gcore %p;dbx \- %p"\fR.fi.if n \{\.RE.\}.RE.PP\-XX:OnOutOfMemoryError=\fIstring\fR.RS 4Sets a custom command or a series of semicolon\-separated commands to run when an\fBOutOfMemoryError\fRexception 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\fB\-XX:OnError\fRoption\&..RE.PP\-XX:+PerfDataSaveToFile.RS 4If enabled, savesjstat(1) binary data when the Java application exits\&. This binary data is saved in a file named\fBhsperfdata_\fR\fI<pid>\fR, where\fI<pid>\fRis the process identifier of the Java application you ran\&. Use\fBjstat\fRto display the performance data contained in this file as follows:.sp.if n \{\.RS 4.\}.nf\fBjstat \-class file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR\fBjstat \-gc file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+PrintCommandLineFlags.RS 4Enables 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\&..RE.PP\-XX:+PrintNMTStatistics.RS 4Enables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see\fB\-XX:NativeMemoryTracking\fR)\&. By default, this option is disabled and native memory tracking data is not printed\&..RE.PP\-XX:+RelaxAccessControlCheck.RS 4Decreases 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\&..RE.PP\-XX:+ShowMessageBoxOnError.RS 4Enables 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\&..RE.PP\-XX:ThreadStackSize=\fIsize\fR.RS 4Sets the thread stack size (in bytes)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value depends on the platform:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/ARM (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/i386 (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Linux/x64 (64\-bit): 1024 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}OS X (64\-bit): 1024 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Oracle Solaris/i386 (32\-bit): 320 KB.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Oracle Solaris/x64 (64\-bit): 1024 KB.RE.spThe following examples show how to set the thread stack size to 1024 KB in different units:.sp.if n \{\.RS 4.\}.nf\fB\-XX:ThreadStackSize=1m\fR\fB\-XX:ThreadStackSize=1024k\fR\fB\-XX:ThreadStackSize=1048576\fR.fi.if n \{\.RE.\}This option is equivalent to\fB\-Xss\fR\&..RE.PP\-XX:+TraceClassLoading.RS 4Enables tracing of classes as they are loaded\&. By default, this option is disabled and classes are not traced\&..RE.PP\-XX:+TraceClassLoadingPreorder.RS 4Enables tracing of all loaded classes in the order in which they are referenced\&. By default, this option is disabled and classes are not traced\&..RE.PP\-XX:+TraceClassResolution.RS 4Enables tracing of constant pool resolutions\&. By default, this option is disabled and constant pool resolutions are not traced\&..RE.PP\-XX:+TraceClassUnloading.RS 4Enables tracing of classes as they are unloaded\&. By default, this option is disabled and classes are not traced\&..RE.PP\-XX:+TraceLoaderConstraints.RS 4Enables tracing of the loader constraints recording\&. By default, this option is disabled and loader constraints recording is not traced\&..RE.PP\-XX:+UseAltSigs.RS 4Enables the use of alternative signals instead of\fBSIGUSR1\fRand\fBSIGUSR2\fRfor JVM internal signals\&. By default, this option is disabled and alternative signals are not used\&. This option is equivalent to\fB\-Xusealtsigs\fR\&..RE.PP\-XX:\-UseBiasedLocking.RS 4Disables 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.spBy default, this option is enabled\&..RE.PP\-XX:\-UseCompressedOops.RS 4Disables the use of compressed pointers\&. By default, this option is enabled, and compressed pointers are used when Java heap sizes are less than 32 GB\&. 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\&..spIt is also possible to use compressed pointers when Java heap sizes are greater than 32GB\&. See the\fB\-XX:ObjectAlignmentInBytes\fRoption\&..RE.PP\-XX:+UseHugeTLBFS.RS 4This option for Linux is the equivalent of specifying\fB\-XX:+UseLargePages\fR\&. This option is disabled by default\&. This option pre\-allocates all large pages up\-front, when memory is reserved; consequently the JVM cannot dynamically grow or shrink large pages memory areas; see\fB\-XX:UseTransparentHugePages\fRif you want this behavior\&..spFor more information, see "Large Pages"\&..RE.PP\-XX:+UseLargePages.RS 4Enables the use of large page memory\&. By default, this option is disabled and large page memory is not used\&..spFor more information, see "Large Pages"\&..RE.PP\-XX:+UseMembar.RS 4Enables issuing of membars on thread state transitions\&. This option is disabled by default on all platforms except ARM servers, where it is enabled\&. (It is recommended that you do not disable this option on ARM servers\&.).RE.PP\-XX:+UsePerfData.RS 4Enables the\fBperfdata\fRfeature\&. This option is enabled by default to allow JVM monitoring and performance testing\&. Disabling it suppresses the creation of the\fBhsperfdata_userid\fRdirectories\&. To disable the\fBperfdata\fRfeature, specify\fB\-XX:\-UsePerfData\fR\&..RE.PP\-XX:+UseTransparentHugePages.RS 4On Linux, enables the use of large pages that can dynamically grow or shrink\&. This option is disabled by default\&. You may encounter performance problems with transparent huge pages as the OS moves other pages around to create huge pages; this option is made available for experimentation\&..spFor more information, see "Large Pages"\&..RE.PP\-XX:+AllowUserSignalHandlers.RS 4Enables installation of signal handlers by the application\&. By default, this option is disabled and the application is not allowed to install signal handlers\&..RE.SS "Advanced JIT Compiler Options".PPThese options control the dynamic just\-in\-time (JIT) compilation performed by the Java HotSpot VM\&..PP\-XX:+AggressiveOpts.RS 4Enables 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\&..RE.PP\-XX:AllocateInstancePrefetchLines=\fIlines\fR.RS 4Sets the number of lines to prefetch ahead of the instance allocation pointer\&. By default, the number of lines to prefetch is set to 1:.sp.if n \{\.RS 4.\}.nf\fB\-XX:AllocateInstancePrefetchLines=1\fR.fi.if n \{\.RE.\}Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:AllocatePrefetchDistance=\fIsize\fR.RS 4Sets 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\&..spNegative values denote that prefetch distance is chosen based on the platform\&. Positive values are bytes to prefetch\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value is set to \-1\&..spThe following example shows how to set the prefetch distance to 1024 bytes:.sp.if n \{\.RS 4.\}.nf\fB\-XX:AllocatePrefetchDistance=1024\fR.fi.if n \{\.RE.\}Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:AllocatePrefetchInstr=\fIinstruction\fR.RS 4Sets the prefetch instruction to prefetch ahead of the allocation pointer\&. Only the Java HotSpot Server VM supports this option\&. 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:AllocatePrefetchInstr=0\fR.fi.if n \{\.RE.\}Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:AllocatePrefetchLines=\fIlines\fR.RS 4Sets 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\&..spThe following example shows how to set the number of loaded cache lines to 5:.sp.if n \{\.RS 4.\}.nf\fB\-XX:AllocatePrefetchLines=5\fR.fi.if n \{\.RE.\}Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:AllocatePrefetchStepSize=\fIsize\fR.RS 4Sets the step size (in bytes) for sequential prefetch instructions\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. By default, the step size is set to 16 bytes:.sp.if n \{\.RS 4.\}.nf\fB\-XX:AllocatePrefetchStepSize=16\fR.fi.if n \{\.RE.\}Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:AllocatePrefetchStyle=\fIstyle\fR.RS 4Sets the generated code style for prefetch instructions\&. The\fIstyle\fRargument is an integer from 0 to 3:.PP0.RS 4Do not generate prefetch instructions\&..RE.PP1.RS 4Execute prefetch instructions after each allocation\&. This is the default parameter\&..RE.PP2.RS 4Use the thread\-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed\&..RE.PP3.RS 4Use BIS instruction on SPARC for allocation prefetch\&..RE.spOnly the Java HotSpot Server VM supports this option\&..RE.PP\-XX:+BackgroundCompilation.RS 4Enables background compilation\&. This option is enabled by default\&. To disable background compilation, specify\fB\-XX:\-BackgroundCompilation\fR(this is equivalent to specifying\fB\-Xbatch\fR)\&..RE.PP\-XX:CICompilerCount=\fIthreads\fR.RS 4Sets 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CICompilerCount=2\fR.fi.if n \{\.RE.\}.RE.PP\-XX:CodeCacheMinimumFreeSpace=\fIsize\fR.RS 4Sets the minimum free space (in bytes) required for compilation\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CodeCacheMinimumFreeSpace=1024m\fR.fi.if n \{\.RE.\}.RE.PP\-XX:CompileCommand=\fIcommand\fR,\fImethod\fR[,\fIoption\fR].RS 4Specifies a command to perform on a method\&. For example, to exclude the\fBindexOf()\fRmethod of the\fBString\fRclass from being compiled, use the following:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand=exclude,java/lang/String\&.indexOf\fR.fi.if n \{\.RE.\}Note that the full class name is specified, including all packages and subpackages separated by a slash (\fB/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the\fB\-XX:+PrintCompilation\fRand\fB\-XX:+LogCompilation\fRoptions:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand=exclude,java\&.lang\&.String::indexOf\fR.fi.if n \{\.RE.\}If 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\fBindexOf(String)\fRmethod of the\fBString\fRclass from being compiled, use the following:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand="exclude,java/lang/String\&.indexOf,(Ljava/lang/String;)I"\fR.fi.if n \{\.RE.\}You can also use the asterisk (*) as a wildcard for class and method names\&. For example, to exclude all\fBindexOf()\fRmethods in all classes from being compiled, use the following:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand=exclude,*\&.indexOf\fR.fi.if n \{\.RE.\}The commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell\&. You can pass arguments to\fB\-XX:CompileCommand\fRusing spaces as separators by enclosing the argument in quotation marks:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand="exclude java/lang/String indexOf"\fR.fi.if n \{\.RE.\}Note that after parsing the commands passed on the command line using the\fB\-XX:CompileCommand\fRoptions, the JIT compiler then reads commands from the\fB\&.hotspot_compiler\fRfile\&. You can add commands to this file or specify a different file using the\fB\-XX:CompileCommandFile\fRoption\&..spTo add several commands, either specify the\fB\-XX:CompileCommand\fRoption multiple times, or separate each argument with the newline separator (\fB\en\fR)\&. The following commands are available:.PPbreak.RS 4Set a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method\&..RE.PPcompileonly.RS 4Exclude all methods from compilation except for the specified method\&. As an alternative, you can use the\fB\-XX:CompileOnly\fRoption, which allows to specify several methods\&..RE.PPdontinline.RS 4Prevent inlining of the specified method\&..RE.PPexclude.RS 4Exclude the specified method from compilation\&..RE.PPhelp.RS 4Print a help message for the\fB\-XX:CompileCommand\fRoption\&..RE.PPinline.RS 4Attempt to inline the specified method\&..RE.PPlog.RS 4Exclude compilation logging (with the\fB\-XX:+LogCompilation\fRoption) for all methods except for the specified method\&. By default, logging is performed for all compiled methods\&..RE.PPoption.RS 4This 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\fBBlockLayoutByFrequency\fRoption for the\fBappend()\fRmethod of the\fBStringBuffer\fRclass, use the following:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileCommand=option,java/lang/StringBuffer\&.append,BlockLayoutByFrequency\fR.fi.if n \{\.RE.\}You can specify multiple compilation options, separated by commas or spaces\&..RE.PPprint.RS 4Print generated assembler code after compilation of the specified method\&..RE.PPquiet.RS 4Do not print the compile commands\&. By default, the commands that you specify with the \-\fBXX:CompileCommand\fRoption are printed; for example, if you exclude from compilation the\fBindexOf()\fRmethod of the\fBString\fRclass, then the following will be printed to standard output:.sp.if n \{\.RS 4.\}.nf\fBCompilerOracle: exclude java/lang/String\&.indexOf\fR.fi.if n \{\.RE.\}You can suppress this by specifying the\fB\-XX:CompileCommand=quiet\fRoption before other\fB\-XX:CompileCommand\fRoptions\&..RE.RE.PP\-XX:CompileCommandFile=\fIfilename\fR.RS 4Sets the file from which JIT compiler commands are read\&. By default, the\fB\&.hotspot_compiler\fRfile is used to store commands performed by the JIT compiler\&..spEach 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\fBtoString()\fRmethod of the\fBString\fRclass:.sp.if n \{\.RS 4.\}.nf\fBprint java/lang/String toString\fR.fi.if n \{\.RE.\}For more information about specifying the commands for the JIT compiler to perform on methods, see the\fB\-XX:CompileCommand\fRoption\&..RE.PP\-XX:CompileOnly=\fImethods\fR.RS 4Sets 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\fBlength()\fRmethod of the\fBString\fRclass and the\fBsize()\fRmethod of the\fBList\fRclass, use the following:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileOnly=java/lang/String\&.length,java/util/List\&.size\fR.fi.if n \{\.RE.\}Note that the full class name is specified, including all packages and subpackages separated by a slash (\fB/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the\fB\-XX:+PrintCompilation\fRand\fB\-XX:+LogCompilation\fRoptions:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileOnly=java\&.lang\&.String::length,java\&.util\&.List::size\fR.fi.if n \{\.RE.\}Although 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileOnly=java/lang/String\fR\fB\-XX:CompileOnly=java/lang\fR\fB\-XX:CompileOnly=\&.length\fR.fi.if n \{\.RE.\}.RE.PP\-XX:CompileThreshold=\fIinvocations\fR.RS 4Sets 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\&. This option is ignored when tiered compilation is enabled; see the option\fB\-XX:+TieredCompilation\fR\&. The following example shows how to set the number of interpreted method invocations to 5,000:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CompileThreshold=5000\fR.fi.if n \{\.RE.\}You can completely disable interpretation of Java methods before compilation by specifying the\fB\-Xcomp\fRoption\&..RE.PP\-XX:+DoEscapeAnalysis.RS 4Enables the use of escape analysis\&. This option is enabled by default\&. To disable the use of escape analysis, specify\fB\-XX:\-DoEscapeAnalysis\fR\&. Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:InitialCodeCacheSize=\fIsize\fR.RS 4Sets the initial code cache size (in bytes)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value is set to 500 KB\&. The initial code cache size should be not less than the system\*(Aqs minimal memory page size\&. The following example shows how to set the initial code cache size to 32 KB:.sp.if n \{\.RS 4.\}.nf\fB\-XX:InitialCodeCacheSize=32k\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+Inline.RS 4Enables method inlining\&. This option is enabled by default to increase performance\&. To disable method inlining, specify\fB\-XX:\-Inline\fR\&..RE.PP\-XX:InlineSmallCode=\fIsize\fR.RS 4Sets the maximum code size (in bytes) for compiled methods that should be inlined\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:InlineSmallCode=1000\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+LogCompilation.RS 4Enables logging of compilation activity to a file named\fBhotspot\&.log\fRin the current working directory\&. You can specify a different log file path and name using the\fB\-XX:LogFile\fRoption\&..spBy default, this option is disabled and compilation activity is not logged\&. The\fB\-XX:+LogCompilation\fRoption has to be used together with the\fB\-XX:UnlockDiagnosticVMOptions\fRoption that unlocks diagnostic JVM options\&..spYou can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the\fB\-XX:+PrintCompilation\fRoption\&..RE.PP\-XX:MaxInlineSize=\fIsize\fR.RS 4Sets the maximum bytecode size (in bytes) of a method to be inlined\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. By default, the maximum bytecode size is set to 35 bytes:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxInlineSize=35\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxNodeLimit=\fInodes\fR.RS 4Sets the maximum number of nodes to be used during single method compilation\&. By default, the maximum number of nodes is set to 65,000:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxNodeLimit=65000\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxTrivialSize=\fIsize\fR.RS 4Sets the maximum bytecode size (in bytes) of a trivial method to be inlined\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. By default, the maximum bytecode size of a trivial method is set to 6 bytes:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxTrivialSize=6\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+OptimizeStringConcat.RS 4Enables the optimization of\fBString\fRconcatenation operations\&. This option is enabled by default\&. To disable the optimization of\fBString\fRconcatenation operations, specify\fB\-XX:\-OptimizeStringConcat\fR\&. Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:+PrintAssembly.RS 4Enables printing of assembly code for bytecoded and native methods by using the external\fBdisassembler\&.so\fRlibrary\&. This enables you to see the generated code, which may help you to diagnose performance issues\&..spBy default, this option is disabled and assembly code is not printed\&. The\fB\-XX:+PrintAssembly\fRoption has to be used together with the\fB\-XX:UnlockDiagnosticVMOptions\fRoption that unlocks diagnostic JVM options\&..RE.PP\-XX:+PrintCompilation.RS 4Enables 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\&..spYou can also log compilation activity to a file by using the\fB\-XX:+LogCompilation\fRoption\&..RE.PP\-XX:+PrintInlining.RS 4Enables printing of inlining decisions\&. This enables you to see which methods are getting inlined\&..spBy default, this option is disabled and inlining information is not printed\&. The\fB\-XX:+PrintInlining\fRoption has to be used together with the\fB\-XX:+UnlockDiagnosticVMOptions\fRoption that unlocks diagnostic JVM options\&..RE.PP\-XX:ReservedCodeCacheSize=\fIsize\fR.RS 4Sets the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option\fB\-XX:\-TieredCompilation\fR, then the default size is 48 MB\&. This option has a limit of 2 GB; otherwise, an error is generated\&. The maximum code cache size should not be less than the initial code cache size; see the option\fB\-XX:InitialCodeCacheSize\fR\&. This option is equivalent to\fB\-Xmaxjitcodesize\fR\&..RE.PP\-XX:RTMAbortRatio=\fIabort_ratio\fR.RS 4The RTM abort ratio is specified as a percentage (%) of all executed RTM transactions\&. If a number of aborted transactions becomes greater than this ratio, then the compiled code will be deoptimized\&. This ratio is used when the\fB\-XX:+UseRTMDeopt\fRoption is enabled\&. The default value of this option is 50\&. This means that the compiled code will be deoptimized if 50% of all transactions are aborted\&..RE.PP\-XX:RTMRetryCount=\fInumber_of_retries\fR.RS 4RTM locking code will be retried, when it is aborted or busy, the number of times specified by this option before falling back to the normal locking mechanism\&. The default value for this option is 5\&. The\fB\-XX:UseRTMLocking\fRoption must be enabled\&..RE.PP\-XX:\-TieredCompilation.RS 4Disables the use of tiered compilation\&. By default, this option is enabled\&. Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:+UseAES.RS 4Enables hardware\-based AES intrinsics for Intel, AMD, and SPARC hardware\&. Intel Westmere (2010 and newer), AMD Bulldozer (2011 and newer), and SPARC (T4 and newer) are the supported hardware\&. UseAES is used in conjunction with UseAESIntrinsics\&..RE.PP\-XX:+UseAESIntrinsics.RS 4UseAES and UseAESIntrinsics flags are enabled by default and are supported only for Java HotSpot Server VM 32\-bit and 64\-bit\&. To disable hardware\-based AES intrinsics, specify\fB\-XX:\-UseAES \-XX:\-UseAESIntrinsics\fR\&. For example, to enable hardware AES, use the following flags:.sp.if n \{\.RS 4.\}.nf\fB\-XX:+UseAES \-XX:+UseAESIntrinsics\fR.fi.if n \{\.RE.\}To support UseAES and UseAESIntrinsics flags for 32\-bit and 64\-bit use\fB\-server\fRoption to choose Java HotSpot Server VM\&. These flags are not supported on Client VM\&..RE.PP\-XX:+UseCodeCacheFlushing.RS 4Enables 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\fB\-XX:\-UseCodeCacheFlushing\fR\&..RE.PP\-XX:+UseCondCardMark.RS 4Enables 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\&. Only the Java HotSpot Server VM supports this option\&..RE.PP\-XX:+UseRTMDeopt.RS 4Auto\-tunes RTM locking depending on the abort ratio\&. This ratio is specified by\fB\-XX:RTMAbortRatio\fRoption\&. If the number of aborted transactions exceeds the abort ratio, then the method containing the lock will be deoptimized and recompiled with all locks as normal locks\&. This option is disabled by default\&. The\fB\-XX:+UseRTMLocking\fRoption must be enabled\&..RE.PP\-XX:+UseRTMLocking.RS 4Generate Restricted Transactional Memory (RTM) locking code for all inflated locks, with the normal locking mechanism as the fallback handler\&. This option is disabled by default\&. Options related to RTM are only available for the Java HotSpot Server VM on x86 CPUs that support Transactional Synchronization Extensions (TSX)\&..spRTM is part of Intel\*(Aqs TSX, which is an x86 instruction set extension and facilitates the creation of multithreaded applications\&. RTM introduces the new instructions\fBXBEGIN\fR,\fBXABORT\fR,\fBXEND\fR, and\fBXTEST\fR\&. The\fBXBEGIN\fRand\fBXEND\fRinstructions enclose a set of instructions to run as a transaction\&. If no conflict is found when running the transaction, the memory and register modifications are committed together at the\fBXEND\fRinstruction\&. The\fBXABORT\fRinstruction can be used to explicitly abort a transaction and the\fBXEND\fRinstruction to check if a set of instructions are being run in a transaction\&..spA lock on a transaction is inflated when another thread tries to access the same transaction, thereby blocking the thread that did not originally request access to the transaction\&. RTM requires that a fallback set of operations be specified in case a transaction aborts or fails\&. An RTM lock is a lock that has been delegated to the TSX\*(Aqs system\&..spRTM improves performance for highly contended locks with low conflict in a critical region (which is code that must not be accessed by more than one thread concurrently)\&. RTM also improves the performance of coarse\-grain locking, which typically does not perform well in multithreaded applications\&. (Coarse\-grain locking is the strategy of holding locks for long periods to minimize the overhead of taking and releasing locks, while fine\-grained locking is the strategy of trying to achieve maximum parallelism by locking only when necessary and unlocking as soon as possible\&.) Also, for lightly contended locks that are used by different threads, RTM can reduce false cache line sharing, also known as cache line ping\-pong\&. This occurs when multiple threads from different processors are accessing different resources, but the resources share the same cache line\&. As a result, the processors repeatedly invalidate the cache lines of other processors, which forces them to read from main memory instead of their cache\&..RE.PP\-XX:+UseSHA.RS 4Enables hardware\-based intrinsics for SHA crypto hash functions for SPARC hardware\&.\fBUseSHA\fRis used in conjunction with the\fBUseSHA1Intrinsics\fR,\fBUseSHA256Intrinsics\fR, and\fBUseSHA512Intrinsics\fRoptions\&..spThe\fBUseSHA\fRand\fBUseSHA*Intrinsics\fRflags are enabled by default, and are supported only for Java HotSpot Server VM 64\-bit on SPARC T4 and newer\&..spThis feature is only applicable when using the\fBsun\&.security\&.provider\&.Sun\fRprovider for SHA operations\&..spTo disable all hardware\-based SHA intrinsics, specify\fB\-XX:\-UseSHA\fR\&. To disable only a particular SHA intrinsic, use the appropriate corresponding option\&. For example:\fB\-XX:\-UseSHA256Intrinsics\fR\&..RE.PP\-XX:+UseSHA1Intrinsics.RS 4Enables intrinsics for SHA\-1 crypto hash function\&..RE.PP\-XX:+UseSHA256Intrinsics.RS 4Enables intrinsics for SHA\-224 and SHA\-256 crypto hash functions\&..RE.PP\-XX:+UseSHA512Intrinsics.RS 4Enables intrinsics for SHA\-384 and SHA\-512 crypto hash functions\&..RE.PP\-XX:+UseSuperWord.RS 4Enables 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\fB\-XX:\-UseSuperWord\fR\&. Only the Java HotSpot Server VM supports this option\&..RE.SS "Advanced Serviceability Options".PPThese options provide the ability to gather system information and perform extensive debugging\&..PP\-XX:+ExtendedDTraceProbes.RS 4Enables additional\fBdtrace\fRtool probes that impact the performance\&. By default, this option is disabled and\fBdtrace\fRperforms only standard probes\&..RE.PP\-XX:+HeapDumpOnOutOfMemory.RS 4Enables the dumping of the Java heap to a file in the current directory by using the heap profiler (HPROF) when a\fBjava\&.lang\&.OutOfMemoryError\fRexception is thrown\&. You can explicitly set the heap dump file path and name using the\fB\-XX:HeapDumpPath\fRoption\&. By default, this option is disabled and the heap is not dumped when an\fBOutOfMemoryError\fRexception is thrown\&..RE.PP\-XX:HeapDumpPath=\fIpath\fR.RS 4Sets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the\fB\-XX:+HeapDumpOnOutOfMemoryError\fRoption is set\&. By default, the file is created in the current working directory, and it is named\fBjava_pid\fR\fIpid\fR\fB\&.hprof\fRwhere\fIpid\fRis the identifier of the process that caused the error\&. The following example shows how to set the default file explicitly (\fB%p\fRrepresents the current process identificator):.sp.if n \{\.RS 4.\}.nf\fB\-XX:HeapDumpPath=\&./java_pid%p\&.hprof\fR.fi.if n \{\.RE.\}The following example shows how to set the heap dump file to\fB/var/log/java/java_heapdump\&.hprof\fR:.sp.if n \{\.RS 4.\}.nf\fB\-XX:HeapDumpPath=/var/log/java/java_heapdump\&.hprof\fR.fi.if n \{\.RE.\}.RE.PP\-XX:LogFile=\fIpath\fR.RS 4Sets 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\fBhotspot\&.log\fR\&..spThe following example shows how to set the log file to\fB/var/log/java/hotspot\&.log\fR:.sp.if n \{\.RS 4.\}.nf\fB\-XX:LogFile=/var/log/java/hotspot\&.log\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+PrintClassHistogram.RS 4Enables printing of a class instance histogram after a\fBControl+C\fRevent (\fBSIGTERM\fR)\&. By default, this option is disabled\&..spSetting this option is equivalent to running the\fBjmap \-histo\fRcommand, or the\fBjcmd \fR\fIpid\fR\fB GC\&.class_histogram\fRcommand, where\fIpid\fRis the current Java process identifier\&..RE.PP\-XX:+PrintConcurrentLocks.RS 4Enables printing of locks after a event\&. By default, this option is disabled\&..spEnables printing of\fBjava\&.util\&.concurrent\fRlocks after a\fBControl+C\fRevent (\fBSIGTERM\fR)\&. By default, this option is disabled\&..spSetting this option is equivalent to running the\fBjstack \-l\fRcommand or the\fBjcmd \fR\fIpid\fR\fB Thread\&.print \-l\fRcommand, where\fIpid\fRis the current Java process identifier\&..RE.PP\-XX:+UnlockDiagnosticVMOptions.RS 4Unlocks the options intended for diagnosing the JVM\&. By default, this option is disabled and diagnostic options are not available\&..RE.SS "Advanced Garbage Collection Options".PPThese options control how garbage collection (GC) is performed by the Java HotSpot VM\&..PP\-XX:+AggressiveHeap.RS 4Enables 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\&..RE.PP\-XX:+AlwaysPreTouch.RS 4Enables touching of every page on the Java heap during JVM initialization\&. This gets all pages into the memory before entering the\fBmain()\fRmethod\&. 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\&..RE.PP\-XX:+CMSClassUnloadingEnabled.RS 4Enables 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\fB\-XX:\-CMSClassUnloadingEnabled\fR\&..RE.PP\-XX:CMSExpAvgFactor=\fIpercent\fR.RS 4Sets 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%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CMSExpAvgFactor=15\fR.fi.if n \{\.RE.\}.RE.PP\-XX:CMSInitiatingOccupancyFraction=\fIpercent\fR.RS 4Sets 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\fB\-XX:CMSTriggerRatio\fRis used to define the value of the initiating occupancy fraction\&..spThe following example shows how to set the occupancy fraction to 20%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CMSInitiatingOccupancyFraction=20\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+CMSScavengeBeforeRemark.RS 4Enables scavenging attempts before the CMS remark step\&. By default, this option is disabled\&..RE.PP\-XX:CMSTriggerRatio=\fIpercent\fR.RS 4Sets the percentage (0 to 100) of the value specified by\fB\-XX:MinHeapFreeRatio\fRthat is allocated before a CMS collection cycle commences\&. The default value is set to 80%\&..spThe following example shows how to set the occupancy fraction to 75%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:CMSTriggerRatio=75\fR.fi.if n \{\.RE.\}.RE.PP\-XX:ConcGCThreads=\fIthreads\fR.RS 4Sets the number of threads used for concurrent GC\&. The default value depends on the number of CPUs available to the JVM\&..spFor example, to set the number of threads for concurrent GC to 2, specify the following option:.sp.if n \{\.RS 4.\}.nf\fB\-XX:ConcGCThreads=2\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+DisableExplicitGC.RS 4Enables the option that disables processing of calls to\fBSystem\&.gc()\fR\&. This option is disabled by default, meaning that calls to\fBSystem\&.gc()\fRare processed\&. If processing of calls to\fBSystem\&.gc()\fRis disabled, the JVM still performs GC when necessary\&..RE.PP\-XX:+ExplicitGCInvokesConcurrent.RS 4Enables invoking of concurrent GC by using the\fBSystem\&.gc()\fRrequest\&. This option is disabled by default and can be enabled only together with the\fB\-XX:+UseConcMarkSweepGC\fRoption\&..RE.PP\-XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses.RS 4Enables invoking of concurrent GC by using the\fBSystem\&.gc()\fRrequest and unloading of classes during the concurrent GC cycle\&. This option is disabled by default and can be enabled only together with the\fB\-XX:+UseConcMarkSweepGC\fRoption\&..RE.PP\-XX:G1HeapRegionSize=\fIsize\fR.RS 4Sets 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\&..spThe following example shows how to set the size of the subdivisions to 16 MB:.sp.if n \{\.RS 4.\}.nf\fB\-XX:G1HeapRegionSize=16m\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+G1PrintHeapRegions.RS 4Enables the printing of information about which regions are allocated and which are reclaimed by the G1 collector\&. By default, this option is disabled\&..RE.PP\-XX:G1ReservePercent=\fIpercent\fR.RS 4Sets 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%\&..spThe following example shows how to set the reserved heap to 20%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:G1ReservePercent=20\fR.fi.if n \{\.RE.\}.RE.PP\-XX:InitialHeapSize=\fIsize\fR.RS 4Sets 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\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. See the section "Ergonomics" in\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fRat http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&..spThe following examples show how to set the size of allocated memory to 6 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-XX:InitialHeapSize=6291456\fR\fB\-XX:InitialHeapSize=6144k\fR\fB\-XX:InitialHeapSize=6m\fR.fi.if n \{\.RE.\}If 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\fB\-XX:NewSize\fRoption\&..RE.PP\-XX:InitialSurvivorRatio=\fIratio\fR.RS 4Sets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the\fB\-XX:+UseParallelGC\fRand/or \-\fBXX:+UseParallelOldGC\fRoptions)\&. Adaptive sizing is enabled by default with the throughput garbage collector by using the\fB\-XX:+UseParallelGC\fRand\fB\-XX:+UseParallelOldGC\fRoptions, and survivor space is resized according to the application behavior, starting with the initial value\&. If adaptive sizing is disabled (using the\fB\-XX:\-UseAdaptiveSizePolicy\fRoption), then the\fB\-XX:SurvivorRatio\fRoption should be used to set the size of the survivor space for the entire execution of the application\&..spThe 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):.sp.if n \{\.RS 4.\}.nf\fBS=Y/(R+2)\fR.fi.if n \{\.RE.\}The 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\&..spBy 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\&..spThe following example shows how to set the initial survivor space ratio to 4:.sp.if n \{\.RS 4.\}.nf\fB\-XX:InitialSurvivorRatio=4\fR.fi.if n \{\.RE.\}.RE.PP\-XX:InitiatingHeapOccupancyPercent=\fIpercent\fR.RS 4Sets 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)\&..spBy 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%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:InitiatingHeapOccupancyPercent=75\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxGCPauseMillis=\fItime\fR.RS 4Sets 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\&..spThe following example shows how to set the maximum target pause time to 500 ms:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxGCPauseMillis=500\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxHeapSize=\fIsize\fR.RS 4Sets 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\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,\fB\-XX:InitialHeapSize\fRand\fB\-XX:MaxHeapSize\fRare often set to the same value\&. See the section "Ergonomics" in\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fRat http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&..spThe following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxHeapSize=83886080\fR\fB\-XX:MaxHeapSize=81920k\fR\fB\-XX:MaxHeapSize=80m\fR.fi.if n \{\.RE.\}On 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\&..spThe\fB\-XX:MaxHeapSize\fRoption is equivalent to\fB\-Xmx\fR\&..RE.PP\-XX:MaxHeapFreeRatio=\fIpercent\fR.RS 4Sets 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%\&..spThe following example shows how to set the maximum free heap ratio to 75%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxHeapFreeRatio=75\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxMetaspaceSize=\fIsize\fR.RS 4Sets 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\&..spThe following example shows how to set the maximum class metadata size to 256 MB:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxMetaspaceSize=256m\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MaxNewSize=\fIsize\fR.RS 4Sets the maximum size (in bytes) of the heap for the young generation (nursery)\&. The default value is set ergonomically\&..RE.PP\-XX:MaxTenuringThreshold=\fIthreshold\fR.RS 4Sets 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\&..spThe following example shows how to set the maximum tenuring threshold to 10:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MaxTenuringThreshold=10\fR.fi.if n \{\.RE.\}.RE.PP\-XX:MetaspaceSize=\fIsize\fR.RS 4Sets 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\&..RE.PP\-XX:MinHeapFreeRatio=\fIpercent\fR.RS 4Sets 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%\&..spThe following example shows how to set the minimum free heap ratio to 25%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:MinHeapFreeRatio=25\fR.fi.if n \{\.RE.\}.RE.PP\-XX:NewRatio=\fIratio\fR.RS 4Sets 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:NewRatio=1\fR.fi.if n \{\.RE.\}.RE.PP\-XX:NewSize=\fIsize\fR.RS 4Sets the initial size (in bytes) of the heap for the young generation (nursery)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&..spThe 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\&..spThe following examples show how to set the initial size of young generation to 256 MB using various units:.sp.if n \{\.RS 4.\}.nf\fB\-XX:NewSize=256m\fR\fB\-XX:NewSize=262144k\fR\fB\-XX:NewSize=268435456\fR.fi.if n \{\.RE.\}The\fB\-XX:NewSize\fRoption is equivalent to\fB\-Xmn\fR\&..RE.PP\-XX:ParallelGCThreads=\fIthreads\fR.RS 4Sets 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\&..spFor example, to set the number of threads for parallel GC to 2, specify the following option:.sp.if n \{\.RS 4.\}.nf\fB\-XX:ParallelGCThreads=2\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+ParallelRefProcEnabled.RS 4Enables parallel reference processing\&. By default, this option is disabled\&..RE.PP\-XX:+PrintAdaptiveSizePolicy.RS 4Enables printing of information about adaptive generation sizing\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGC.RS 4Enables printing of messages at every GC\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCApplicationConcurrentTime.RS 4Enables printing of how much time elapsed since the last pause (for example, a GC pause)\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCApplicationStoppedTime.RS 4Enables printing of how much time the pause (for example, a GC pause) lasted\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCDateStamps.RS 4Enables printing of a date stamp at every GC\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCDetails.RS 4Enables printing of detailed messages at every GC\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCTaskTimeStamps.RS 4Enables printing of time stamps for every individual GC worker thread task\&. By default, this option is disabled\&..RE.PP\-XX:+PrintGCTimeStamps.RS 4Enables printing of time stamps at every GC\&. By default, this option is disabled\&..RE.PP\-XX:+PrintStringDeduplicationStatistics.RS 4Prints detailed deduplication statistics\&. By default, this option is disabled\&. See the\fB\-XX:+UseStringDeduplication\fRoption\&..RE.PP\-XX:+PrintTenuringDistribution.RS 4Enables printing of tenuring age information\&. The following is an example of the output:.sp.if n \{\.RS 4.\}.nf\fBDesired survivor size 48286924 bytes, new threshold 10 (max 10)\fR\fB\- age 1: 28992024 bytes, 28992024 total\fR\fB\- age 2: 1366864 bytes, 30358888 total\fR\fB\- age 3: 1425912 bytes, 31784800 total\fR\fB\&.\&.\&.\fR.fi.if n \{\.RE.\}Age 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\&..spIn 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\&..spBy default, this option is disabled\&..RE.PP\-XX:+ScavengeBeforeFullGC.RS 4Enables GC of the young generation before each full GC\&. This option is enabled by default\&. Oracle recommends that you\fIdo not\fRdisable 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\fB\-XX:\-ScavengeBeforeFullGC\fR\&..RE.PP\-XX:SoftRefLRUPolicyMSPerMB=\fItime\fR.RS 4Sets 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\fB\-XX:SoftRefLRUPolicyMSPerMB\fRoption 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\fB\-Xmx\fRoption has a significant effect on how quickly soft references are garbage collected\&..spThe following example shows how to set the value to 2\&.5 seconds:.sp.if n \{\.RS 4.\}.nf\fB\-XX:SoftRefLRUPolicyMSPerMB=2500\fR.fi.if n \{\.RE.\}.RE.PP\-XX:StringDeduplicationAgeThreshold=\fIthreshold\fR.RS 4\fBString\fRobjects reaching the specified age are considered candidates for deduplication\&. An object\*(Aqs age is a measure of how many times it has survived garbage collection\&. This is sometimes referred to as tenuring; see the\fB\-XX:+PrintTenuringDistribution\fRoption\&. Note that\fBString\fRobjects that are promoted to an old heap region before this age has been reached are always considered candidates for deduplication\&. The default value for this option is\fB3\fR\&. See the\fB\-XX:+UseStringDeduplication\fRoption\&..RE.PP\-XX:SurvivorRatio=\fIratio\fR.RS 4Sets 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:.sp.if n \{\.RS 4.\}.nf\fB\-XX:SurvivorRatio=4\fR.fi.if n \{\.RE.\}.RE.PP\-XX:TargetSurvivorRatio=\fIpercent\fR.RS 4Sets the desired percentage of survivor space (0 to 100) used after young garbage collection\&. By default, this option is set to 50%\&..spThe following example shows how to set the target survivor space ratio to 30%:.sp.if n \{\.RS 4.\}.nf\fB\-XX:TargetSurvivorRatio=30\fR.fi.if n \{\.RE.\}.RE.PP\-XX:TLABSize=\fIsize\fR.RS 4Sets the initial size (in bytes) of a thread\-local allocation buffer (TLAB)\&. Append the letter\fBk\fRor\fBK\fRto indicate kilobytes,\fBm\fRor\fBM\fRto indicate megabytes,\fBg\fRor\fBG\fRto indicate gigabytes\&. If this option is set to 0, then the JVM chooses the initial size automatically\&..spThe following example shows how to set the initial TLAB size to 512 KB:.sp.if n \{\.RS 4.\}.nf\fB\-XX:TLABSize=512k\fR.fi.if n \{\.RE.\}.RE.PP\-XX:+UseAdaptiveSizePolicy.RS 4Enables the use of adaptive generation sizing\&. This option is enabled by default\&. To disable adaptive generation sizing, specify\fB\-XX:\-UseAdaptiveSizePolicy\fRand set the size of the memory allocation pool explicitly (see the\fB\-XX:SurvivorRatio\fRoption)\&..RE.PP\-XX:+UseCMSInitiatingOccupancyOnly.RS 4Enables 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\&..RE.PP\-XX:+UseConcMarkSweepGC.RS 4Enables 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 (\fB\-XX:+UseParallelGC\fR) garbage collector\&. The G1 garbage collector (\fB\-XX:+UseG1GC\fR) is another alternative\&..spBy 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\fB\-XX:+UseParNewGC\fRoption is automatically set and you should not disable it, because the following combination of options has been deprecated in JDK 8:\fB\-XX:+UseConcMarkSweepGC \-XX:\-UseParNewGC\fR\&..RE.PP\-XX:+UseG1GC.RS 4Enables the use of the garbage\-first (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)\&..spBy default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&..RE.PP\-XX:+UseGCOverheadLimit.RS 4Enables the use of a policy that limits the proportion of time spent by the JVM on GC before an\fBOutOfMemoryError\fRexception is thrown\&. This option is enabled, by default and the parallel GC will throw an\fBOutOfMemoryError\fRif 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\fB\-XX:\-UseGCOverheadLimit\fR\&..RE.PP\-XX:+UseNUMA.RS 4Enables performance optimization of an application on a machine with nonuniform memory architecture (NUMA) by increasing the application\*(Aqs 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 (\fB\-XX:+UseParallelGC\fR)\&..RE.PP\-XX:+UseParallelGC.RS 4Enables 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\&..spBy 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\fB\-XX:+UseParallelOldGC\fRoption is automatically enabled, unless you explicitly disable it\&..RE.PP\-XX:+UseParallelOldGC.RS 4Enables the use of the parallel garbage collector for full GCs\&. By default, this option is disabled\&. Enabling it automatically enables the\fB\-XX:+UseParallelGC\fRoption\&..RE.PP\-XX:+UseParNewGC.RS 4Enables 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\fB\-XX:+UseConcMarkSweepGC\fRoption\&. Using the\fB\-XX:+UseParNewGC\fRoption without the\fB\-XX:+UseConcMarkSweepGC\fRoption was deprecated in JDK 8\&..RE.PP\-XX:+UseSerialGC.RS 4Enables 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\&..RE.PP\-XX:+UseSHM.RS 4On Linux, enables the JVM to use shared memory to setup large pages\&..spFor more information, see "Large Pages"\&..RE.PP\-XX:+UseStringDeduplication.RS 4Enables string deduplication\&. By default, this option is disabled\&. To use this option, you must enable the garbage\-first (G1) garbage collector\&. See the\fB\-XX:+UseG1GC\fRoption\&..sp\fIString deduplication\fRreduces the memory footprint of\fBString\fRobjects on the Java heap by taking advantage of the fact that many\fBString\fRobjects are identical\&. Instead of each\fBString\fRobject pointing to its own character array, identical\fBString\fRobjects can point to and share the same character array\&..RE.PP\-XX:+UseTLAB.RS 4Enables 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\fB\-XX:\-UseTLAB\fR\&..RE.SS "Deprecated and Removed Options".PPThese options were included in the previous release, but have since been considered unnecessary\&..PP\-Xincgc.RS 4Enables incremental garbage collection\&. This option was deprecated in JDK 8 with no replacement\&..RE.PP\-Xrun\fIlibname\fR.RS 4Loads the specified debugging/profiling library\&. This option was superseded by the\fB\-agentlib\fRoption\&..RE.PP\-XX:CMSIncrementalDutyCycle=\fIpercent\fR.RS 4Sets the percentage of time (0 to 100) between minor collections that the concurrent collector is allowed to run\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the\fB\-XX:+CMSIncrementalMode\fRoption\&..RE.PP\-XX:CMSIncrementalDutyCycleMin=\fIpercent\fR.RS 4Sets the percentage of time (0 to 100) between minor collections that is the lower bound for the duty cycle when\fB\-XX:+CMSIncrementalPacing\fRis enabled\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the\fB\-XX:+CMSIncrementalMode\fRoption\&..RE.PP\-XX:+CMSIncrementalMode.RS 4Enables the incremental mode for the CMS collector\&. This option was deprecated in JDK 8 with no replacement, along with other options that start with\fBCMSIncremental\fR\&..RE.PP\-XX:CMSIncrementalOffset=\fIpercent\fR.RS 4Sets 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\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the\fB\-XX:+CMSIncrementalMode\fRoption\&..RE.PP\-XX:+CMSIncrementalPacing.RS 4Enables automatic adjustment of the incremental mode duty cycle based on statistics collected while the JVM is running\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the\fB\-XX:+CMSIncrementalMode\fRoption\&..RE.PP\-XX:CMSIncrementalSafetyFactor=\fIpercent\fR.RS 4Sets the percentage of time (0 to 100) used to add conservatism when computing the duty cycle\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the\fB\-XX:+CMSIncrementalMode\fRoption\&..RE.PP\-XX:CMSInitiatingPermOccupancyFraction=\fIpercent\fR.RS 4Sets 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\&..RE.PP\-XX:MaxPermSize=\fIsize\fR.RS 4Sets the maximum permanent generation space size (in bytes)\&. This option was deprecated in JDK 8, and superseded by the\fB\-XX:MaxMetaspaceSize\fRoption\&..RE.PP\-XX:PermSize=\fIsize\fR.RS 4Sets 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\fB\-XX:MetaspaceSize\fRoption\&..RE.PP\-XX:+UseSplitVerifier.RS 4Enables 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\&..RE.PP\-XX:+UseStringCache.RS 4Enables caching of commonly allocated strings\&. This option was removed from JDK 8 with no replacement\&..RE.SH "PERFORMANCE TUNING EXAMPLES".PPThe following examples show how to use experimental tuning flags to either optimize throughput or to provide lower response time\&..PP\fBExample 1 \fRTuning for Higher Throughput.RS 4.sp.if n \{\.RS 4.\}.nf\fBjava \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g \-Xms26g \-Xmx26g\fR.fi.if n \{\.RE.\}.RE.PP\fBExample 2 \fRTuning for Lower Response Time.RS 4.sp.if n \{\.RS 4.\}.nf\fBjava \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamp\fR.fi.if n \{\.RE.\}.RE.SH "LARGE PAGES".PPAlso known as huge pages, large pages are memory pages that are significantly larger than the standard memory page size (which varies depending on the processor and operating system)\&. Large pages optimize processor Translation\-Lookaside Buffers\&..PPA Translation\-Lookaside Buffer (TLB) is a page translation cache that holds the most\-recently used virtual\-to\-physical address translations\&. TLB is a scarce system resource\&. A TLB miss can be costly as the processor must then read from the hierarchical page table, which may require multiple memory accesses\&. By using a larger memory page size, a single TLB entry can represent a larger memory range\&. There will be less pressure on TLB, and memory\-intensive applications may have better performance\&..PPHowever, large pages page memory can negatively affect system performance\&. For example, when a large mount of memory is pinned by an application, it may create a shortage of regular memory and cause excessive paging in other applications and slow down the entire system\&. Also, a system that has been up for a long time could produce excessive fragmentation, which could make it impossible to reserve enough large page memory\&. When this happens, either the OS or JVM reverts to using regular pages\&..SS "Large Pages Support".PPSolaris and Linux support large pages\&..sp.it 1 an-trap.nr an-no-space-flag 1.nr an-break-flag 1.br.ps +1\fBSolaris\fR.RS 4.PPSolaris 9 and later include Multiple Page Size Support (MPSS); no additional configuration is necessary\&. See http://www\&.oracle\&.com/technetwork/server\-storage/solaris10/overview/solaris9\-features\-scalability\-135663\&.html\&..RE.sp.it 1 an-trap.nr an-no-space-flag 1.nr an-break-flag 1.br.ps +1\fBLinux\fR.RS 4.PPThe 2\&.6 kernel supports large pages\&. Some vendors have backported the code to their 2\&.4\-based releases\&. To check if your system can support large page memory, try the following:.sp.if n \{\.RS 4.\}.nf\fB# cat /proc/meminfo | grep Huge\fR\fBHugePages_Total: 0\fR\fBHugePages_Free: 0\fR\fBHugepagesize: 2048 kB\fR.fi.if n \{\.RE.\}.PPIf the output shows the three "Huge" variables, then your system can support large page memory but it needs to be configured\&. If the command prints nothing, then your system does not support large pages\&. To configure the system to use large page memory, login as\fBroot\fR, and then follow these steps:.sp.RS 4.ie n \{\\h'-04' 1.\h'+01'\c.\}.el \{\.sp -1.IP " 1." 4.2.\}If you are using the option\fB\-XX:+UseSHM\fR(instead of\fB\-XX:+UseHugeTLBFS\fR), then increase the\fBSHMMAX\fRvalue\&. It must be larger than the Java heap size\&. On a system with 4 GB of physical RAM (or less), the following will make all the memory sharable:.sp.if n \{\.RS 4.\}.nf\fB# echo 4294967295 > /proc/sys/kernel/shmmax\fR.fi.if n \{\.RE.\}.RE.sp.RS 4.ie n \{\\h'-04' 2.\h'+01'\c.\}.el \{\.sp -1.IP " 2." 4.2.\}If you are using the option\fB\-XX:+UseSHM\fRor\fB\-XX:+UseHugeTLBFS\fR, then specify the number of large pages\&. In the following example, 3 GB of a 4 GB system are reserved for large pages (assuming a large page size of 2048kB, then 3 GB = 3 * 1024 MB = 3072 MB = 3072 * 1024 kB = 3145728 kB and 3145728 kB / 2048 kB = 1536):.sp.if n \{\.RS 4.\}.nf\fB# echo 1536 > /proc/sys/vm/nr_hugepages\fR.fi.if n \{\.RE.\}.RE.if n \{\.sp.\}.RS 4.it 1 an-trap.nr an-no-space-flag 1.nr an-break-flag 1.br.ps +1\fBNote\fR.ps -1.br.TSallbox tab(:);l.T{.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Note that the values contained in\fB/proc\fRwill reset after you reboot your system, so may want to set them in an initialization script (for example,\fBrc\&.local\fRor\fBsysctl\&.conf\fR)\&..RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}If you configure (or resize) the OS kernel parameters\fB/proc/sys/kernel/shmmax\fRor\fB/proc/sys/vm/nr_hugepages\fR, Java processes may allocate large pages for areas in addition to the Java heap\&. These steps can allocate large pages for the following areas:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Java heap.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}Code cache.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}The marking bitmap data structure for the parallel GC.RE.spConsequently, if you configure the\fBnr_hugepages\fRparameter to the size of the Java heap, then the JVM can fail in allocating the code cache areas on large pages because these areas are quite large in size\&..RET}.TE.sp 1.sp .5v.RE.RE.SH "EXIT STATUS".PPThe 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\fBSystem\&.exit(exitValue)\fR\&. The values are:.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}\fB0\fR: Successful completion.RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}\fB>0\fR: An error occurred.RE.SH "SEE ALSO".sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}javac(1).RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}jdb(1).RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}jar(1).RE.sp.RS 4.ie n \{\\h'-04'\(bu\h'+03'\c.\}.el \{\.sp -1.IP \(bu 2.3.\}jstat(1).RE.br'pl 8.5i'bp