java.1 99.9 KB
Newer Older
R
rgallard 已提交
1
'\" t
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
.\"  Copyright (c) 1994, 2015, 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.
.\"
.\"     Arch: generic
.\"     Software: JDK 8
.\"     Date: 03 March 2015
.\"     SectDesc: Basic Tools
.\"     Title: java.1
R
rgallard 已提交
29 30
.\"
.if n .pl 99999
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
.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    
R
rgallard 已提交
53
java \- Launches a Java application\&.
54 55 56 57
.SH SYNOPSIS    
.sp     
.nf     

R
rgallard 已提交
58
\fBjava\fR [\fIoptions\fR] \fIclassname\fR [\fIargs\fR]
59 60 61
.fi     
.nf     

R
rgallard 已提交
62
\fBjava\fR [\fIoptions\fR] \fB\-jar\fR \fIfilename\fR [\fIargs\fR]
63 64 65
.fi     
.sp     
.TP     
R
rgallard 已提交
66
\fIoptions\fR
67 68
Command-line options separated by spaces\&. See Options\&.
.TP     
R
rgallard 已提交
69 70
\fIclassname\fR
The name of the class to be launched\&.
71
.TP     
R
rgallard 已提交
72
\fIfilename\fR
73 74
The name of the Java Archive (JAR) file to be called\&. Used only with the \f3-jar\fR option\&.
.TP     
R
rgallard 已提交
75
\fIargs\fR
76 77 78 79 80 81 82 83 84 85 86 87 88 89
The arguments passed to the \f3main()\fR method separated by spaces\&.
.SH DESCRIPTION    
The \f3java\fR command starts a Java application\&. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class\&'s \f3main()\fR method\&. The method must be declared \fIpublic\fR and \fIstatic\fR, it must not return any value, and it must accept a \f3String\fR array as a parameter\&. The method declaration has the following form:
.sp     
.nf     
\f3public static void main(String[] args)\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
The \f3java\fR command can be used to launch a JavaFX application by loading a class that either has a \f3main()\fR method or that extends \f3javafx\&.application\&.Application\fR\&. In the latter case, the launcher constructs an instance of the \f3Application\fR class, calls its \f3init()\fR method, and then calls the \f3start(javafx\&.stage\&.Stage)\fR method\&.
.PP
By default, the first argument that is not an option of the \f3java\fR command is the fully qualified name of the class to be called\&. If the \f3-jar\fR option is specified, its argument is the name of the JAR file containing class and resource files for the application\&. The startup class must be indicated by the \f3Main-Class\fR manifest header in its source code\&.
R
rgallard 已提交
90 91 92
.PP
The 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\&.
.PP
93 94 95 96 97
Arguments after the class file name or the JAR file name are passed to the \f3main()\fR method\&.
.SH OPTIONS    
The \f3java\fR command supports a wide range of options that can be divided into the following categories:
.TP 0.2i    
\(bu
R
rgallard 已提交
98
Standard Options
99 100 101 102 103
.TP 0.2i    
\(bu
Non-Standard Options
.TP 0.2i    
\(bu
R
rgallard 已提交
104
Advanced Runtime Options
105 106
.TP 0.2i    
\(bu
R
rgallard 已提交
107
Advanced JIT Compiler Options
108 109
.TP 0.2i    
\(bu
R
rgallard 已提交
110
Advanced Serviceability Options
111 112
.TP 0.2i    
\(bu
R
rgallard 已提交
113 114 115 116
Advanced Garbage Collection Options
.PP
Standard 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\&.
.PP
117
Non-standard options are general purpose options that are specific to the Java HotSpot Virtual Machine, so they are not guaranteed to be supported by all JVM implementations, and are subject to change\&. These options start with \f3-X\fR\&.
R
rgallard 已提交
118
.PP
119
Advanced options are not recommended for casual use\&. These are developer options used for tuning specific areas of the Java HotSpot Virtual Machine operation that often have specific system requirements and may require privileged access to system configuration parameters\&. They are also not guaranteed to be supported by all JVM implementations, and are subject to change\&. Advanced options start with \f3-XX\fR\&.
R
rgallard 已提交
120 121 122
.PP
To 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\&.
.PP
123
Boolean options are used to either enable a feature that is disabled by default or disable a feature that is enabled by default\&. Such options do not require a parameter\&. Boolean \f3-XX\fR options are enabled using the plus sign (\f3-XX:+\fR\fIOptionName\fR) and disabled using the minus sign (\f3-XX:-\fR\fIOptionName\fR)\&.
R
rgallard 已提交
124
.PP
125 126
For options that require an argument, the argument may be separated from the option name by a space, a colon (:), or an equal sign (=), or the argument may directly follow the option (the exact syntax differs for each option)\&. If you are expected to specify the size in bytes, you can use no suffix, or use the suffix \f3k\fR or \f3K\fR for kilobytes (KB), \f3m\fR or \f3M\fR for megabytes (MB), \f3g\fR or \f3G\fR for gigabytes (GB)\&. For example, to set the size to 8 GB, you can specify either \f38g\fR, \f38192m\fR, \f38388608k\fR, or \f38589934592\fR as the argument\&. If you are expected to specify the percentage, use a number from 0 to 1 (for example, specify \f30\&.25\fR for 25%)\&.
.SS STANDARD\ OPTIONS    
R
rgallard 已提交
127
These are the most commonly used options that are supported by all implementations of the JVM\&.
128 129 130 131 132 133 134
.TP
-agentlib:\fIlibname\fR[=\fIoptions\fR]
.br
Loads the specified native agent library\&. After the library name, a comma-separated list of options specific to the library can be used\&.

If the option \f3-agentlib:foo\fR is specified, then the JVM attempts to load the library named \f3libfoo\&.so\fR in the location specified by the \f3LD_LIBRARY_PATH\fR system variable (on OS X this variable is \f3DYLD_LIBRARY_PATH\fR)\&.

R
rgallard 已提交
135
The following example shows how to load the heap profiling tool (HPROF) library and get sample CPU information every 20 ms, with a stack depth of 3:
136 137 138 139 140 141 142 143 144 145
.sp     
.nf     
\f3\-agentlib:hprof=cpu=samples,interval=20,depth=3\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


R
rgallard 已提交
146
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:
147 148 149 150 151 152 153 154 155 156
.sp     
.nf     
\f3\-agentlib:jdwp=transport=dt_socket,server=y,address=8000\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


R
rgallard 已提交
157
For more information about the native agent libraries, refer to the following:
158 159 160 161 162 163
.RS     
.TP 0.2i    
\(bu
The \f3java\&.lang\&.instrument\fR package description at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package-summary\&.html
.TP 0.2i    
\(bu
R
rgallard 已提交
164
Agent Command Line Options in the JVM Tools Interface guide at http://docs\&.oracle\&.com/javase/8/docs/platform/jvmti/jvmti\&.html#starting
165 166 167 168
.RE     

.TP
-agentpath:\fIpathname\fR[=\fIoptions\fR]
R
rgallard 已提交
169
.br
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
Loads the native agent library specified by the absolute path name\&. This option is equivalent to \f3-agentlib\fR but uses the full path and file name of the library\&.
.TP
-client
.br
Selects 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\&.

For default JVM selection, see Server-Class Machine Detection at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server-class\&.html
.TP
-D\fIproperty\fR=\fIvalue\fR
.br
Sets a system property value\&. The \fIproperty\fR variable is a string with no spaces that represents the name of the property\&. The \fIvalue\fR variable is a string that represents the value of the property\&. If \fIvalue\fR is a string with spaces, then enclose it in quotation marks (for example \f3-Dfoo="foo bar"\fR)\&.
.TP
-d32
.br
Runs 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\&.
.TP
-d64
.br
Runs 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\&.

Currently only the Java HotSpot Server VM supports 64-bit operation, and the \f3-server\fR option is implicit with the use of \f3-d64\fR\&. The \f3-client\fR option is ignored with the use of \f3-d64\fR\&. This is subject to change in a future release\&.
.TP
D
duke 已提交
192
.nf
193 194
-disableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR], -da[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
.br
D
duke 已提交
195
.fi
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
Disables assertions\&. By default, assertions are disabled in all packages and classes\&.

With no arguments, \f3-disableassertions\fR (\f3-da\fR) disables assertions in all packages and classes\&. With the \fIpackagename\fR argument ending in \f3\&.\&.\&.\fR, the switch disables assertions in the specified package and any subpackages\&. If the argument is simply \f3\&.\&.\&.\fR, then the switch disables assertions in the unnamed package in the current working directory\&. With the \fIclassname\fR argument\f3\fR, the switch disables assertions in the specified class\&.

The \f3-disableassertions\fR (\f3-da\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to disable assertions in all classes except for system classes\&. The \f3-disablesystemassertions\fR option enables you to disable assertions in all system classes\&.

To explicitly enable assertions in specific packages or classes, use the \f3-enableassertions\fR (\f3-ea\fR) option\&. Both options can be used at the same time\&. For example, to run the \f3MyClass\fR application with assertions enabled in package \f3com\&.wombat\&.fruitbat\fR (and any subpackages) but disabled in class \f3com\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
.sp     
.nf     
\f3java \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-disablesystemassertions, -dsa
R
rgallard 已提交
214 215
.br
Disables assertions in all system classes\&.
216
.TP
217
.nf
218 219
-enableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR], -ea[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
.br
220
.fi
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
Enables assertions\&. By default, assertions are disabled in all packages and classes\&.

With no arguments, \f3-enableassertions\fR (\f3-ea\fR) enables assertions in all packages and classes\&. With the \fIpackagename\fR argument ending in \f3\&.\&.\&.\fR, the switch enables assertions in the specified package and any subpackages\&. If the argument is simply \f3\&.\&.\&.\fR, then the switch enables assertions in the unnamed package in the current working directory\&. With the \fIclassname\fR argument\f3\fR, the switch enables assertions in the specified class\&.

The \f3-enableassertions\fR (\f3-ea\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to enable assertions in all classes except for system classes\&. The \f3-enablesystemassertions\fR option provides a separate switch to enable assertions in all system classes\&.

To explicitly disable assertions in specific packages or classes, use the \f3-disableassertions\fR (\f3-da\fR) option\&. If a single command contains multiple instances of these switches, then they are processed in order before loading any classes\&. For example, to run the \f3MyClass\fR application with assertions enabled only in package \f3com\&.wombat\&.fruitbat\fR (and any subpackages) but disabled in class \f3com\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
.sp     
.nf     
\f3java \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-enablesystemassertions, -esa
239
.br
R
rgallard 已提交
240
Enables assertions in all system classes\&.
241 242 243 244 245 246 247 248 249 250 251
.TP
-help, -?
.br
Displays usage information for the \f3java\fR command without actually running the JVM\&.
.TP
-jar \fIfilename\fR
.br
Executes a program encapsulated in a JAR file\&. The \fIfilename\fR argument is the name of a JAR file with a manifest that contains a line in the form \f3Main-Class:\fR\fIclassname\fR that defines the class with the \f3public static void main(String[] args)\fR method that serves as your application\&'s starting point\&.

When you use the \f3-jar\fR option, the specified JAR file is the source of all user classes, and other class path settings are ignored\&.

R
rgallard 已提交
252
For more information about JAR files, see the following resources:
253 254 255
.RS     
.TP 0.2i    
\(bu
R
rgallard 已提交
256
jar(1)
257 258
.TP 0.2i    
\(bu
R
rgallard 已提交
259
The Java Archive (JAR) Files guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/jar/index\&.html
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
.TP 0.2i    
\(bu
Lesson: Packaging Programs in JAR Files at http://docs\&.oracle\&.com/javase/tutorial/deployment/jar/index\&.html
.RE     

.TP
-javaagent:\fIjarpath\fR[=\fIoptions\fR]
.br
Loads the specified Java programming language agent\&. For more information about instrumenting Java applications, see the \f3java\&.lang\&.instrument\fR package description in the Java API documentation at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package-summary\&.html
.TP
-jre-restrict-search
.br
Includes user-private JREs in the version search\&.
.TP
-no-jre-restrict-search
.br
Excludes user-private JREs from the version search\&.
.TP
-server
.br
Selects 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\&.

For default JVM selection, see Server-Class Machine Detection at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server-class\&.html
.TP
-showversion
.br
Displays version information and continues execution of the application\&. This option is equivalent to the \f3-version\fR option except that the latter instructs the JVM to exit after displaying version information\&.
.TP
-splash:\fIimgname\fR
.br
Shows the splash screen with the image specified by \fIimgname\fR\&. For example, to show the \f3splash\&.gif\fR file from the \f3images\fR directory when starting your application, use the following option:
.sp     
.nf     
\f3\-splash:images/splash\&.gif\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-verbose:class
.br
R
rgallard 已提交
303
Displays information about each loaded class\&.
304 305 306
.TP
-verbose:gc
.br
R
rgallard 已提交
307
Displays information about each garbage collection (GC) event\&.
308 309 310
.TP
-verbose:jni
.br
R
rgallard 已提交
311
Displays information about the use of native methods and other Java Native Interface (JNI) activity\&.
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
.TP
-version
.br
Displays version information and then exits\&. This option is equivalent to the \f3-showversion\fR option except that the latter does not instruct the JVM to exit after displaying version information\&.
.TP
-version:\fIrelease\fR
.br
Specifies the release version to be used for running the application\&. If the version of the \f3java\fR command called does not meet this specification and an appropriate implementation is found on the system, then the appropriate implementation will be used\&.

The \fIrelease\fR argument specifies either the exact version string, or a list of version strings and ranges separated by spaces\&. A \fIversion string\fR is the developer designation of the version number in the following form: \f31\&.\fR\fIx\fR\f3\&.0_\fR\fIu\fR (where \fIx\fR is the major version number, and \fIu\fR is the update version number)\&. A \fIversion range\fR is made up of a version string followed by a plus sign (\f3+\fR) to designate this version or later, or a part of a version string followed by an asterisk (\f3*\fR) to designate any version string with a matching prefix\&. Version strings and ranges can be combined using a space for a logical \fIOR\fR combination, or an ampersand (\f3&\fR) for a logical \fIAND\fR combination of two version strings/ranges\&. For example, if running the class or JAR file requires either JRE 6u13 (1\&.6\&.0_13), or any JRE 6 starting from 6u10 (1\&.6\&.0_10), specify the following:
.sp     
.nf     
\f3\-version:"1\&.6\&.0_13 1\&.6* & 1\&.6\&.0_10+"\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


Quotation marks are necessary only if there are spaces in the \fIrelease\fR parameter\&.

R
rgallard 已提交
334
For JAR files, the preference is to specify version requirements in the JAR file manifest rather than on the command line\&.
335
.SS NON-STANDARD\ OPTIONS    
R
rgallard 已提交
336
These options are general purpose options that are specific to the Java HotSpot Virtual Machine\&.
337 338 339 340 341 342 343 344 345 346 347 348 349
.TP
-X
.br
Displays help for all available \f3-X\fR options\&.
.TP
-Xbatch
.br
Disables background compilation\&. By default, the JVM compiles the method as a background task, running the method in interpreter mode until the background compilation is finished\&. The \f3-Xbatch\fR flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed\&.

This option is equivalent to \f3-XX:-BackgroundCompilation\fR\&.
.TP
-Xbootclasspath:\fIpath\fR
.br
R
rgallard 已提交
350
Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to search for boot class files\&. These are used in place of the boot class files included in the JDK\&.
351 352 353 354 355

\fI\fRDo not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
.TP
-Xbootclasspath/a:\fIpath\fR
.br
R
rgallard 已提交
356
Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to append to the end of the default bootstrap class path\&.
357 358 359 360 361

Do not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
.TP
-Xbootclasspath/p:\fIpath\fR
.br
R
rgallard 已提交
362
Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to prepend to the front of the default bootstrap class path\&.
363 364 365 366 367

Do not deploy applications that use this option to override a class in \f3rt\&.jar\fR, because this violates the JRE binary code license\&.
.TP
-Xcheck:jni
.br
R
rgallard 已提交
368
Performs 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\&.
369 370 371 372 373 374 375 376 377
.TP
-Xcomp
.br
Forces compilation of methods on first invocation\&. By default, the Client VM (\f3-client\fR) performs 1,000 interpreted method invocations and the Server VM (\f3-server\fR) performs 10,000 interpreted method invocations to gather information for efficient compilation\&. Specifying the \f3-Xcomp\fR option disables interpreted method invocations to increase compilation performance at the expense of efficiency\&.

You can also change the number of interpreted method invocations before compilation using the \f3-XX:CompileThreshold\fR option\&.
.TP
-Xdebug
.br
R
rgallard 已提交
378
Does nothing\&. Provided for backward compatibility\&.
379 380 381
.TP
-Xdiag
.br
R
rgallard 已提交
382
Shows additional diagnostic messages\&.
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
.TP
-Xfuture
.br
Enables 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\&.
.TP
-Xint
.br
Runs 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\&.
.TP
-Xinternalversion
.br
Displays more detailed JVM version information than the \f3-version\fR option, and then exits\&.
.TP
-Xloggc:\fIfilename\fR
.br
Sets the file to which verbose GC events information should be redirected for logging\&. The information written to this file is similar to the output of \f3-verbose:gc\fR with the time elapsed since the first GC event preceding each logged event\&. The \f3-Xloggc\fR option overrides \f3-verbose:gc\fR if both are given with the same \f3java\fR command\&.

R
rgallard 已提交
400
Example:
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
.sp     
.nf     
\f3\-Xloggc:garbage\-collection\&.log\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-Xmaxjitcodesize=\fIsize\fR
.br
Specifies the maximum code cache size (in bytes) for JIT-compiled code\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the value is set to 48 MB:
.sp     
.nf     
\f3\-Xmaxjitcodesize=48m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


This option is equivalent to \f3-XX:ReservedCodeCacheSize\fR\&.
.TP
-Xmixed
.br
R
rgallard 已提交
428
Executes all bytecode by the interpreter except for hot methods, which are compiled to native code\&.
429 430 431 432 433
.TP
-Xmn\fIsize\fR
.br
Sets the initial and maximum size (in bytes) of the heap for the young generation (nursery)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.

R
rgallard 已提交
434
The 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\&.
435

R
rgallard 已提交
436
The following examples show how to set the initial and maximum size of young generation to 256 MB using various units:
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
.sp     
.nf     
\f3\-Xmn256m\fP
.fi     
.nf     
\f3\-Xmn262144k\fP
.fi     
.nf     
\f3\-Xmn268435456\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


Instead of the \f3-Xmn\fR option to set both the initial and maximum size of the heap for the young generation, you can use \f3-XX:NewSize\fR to set the initial size and \f3-XX:MaxNewSize\fR to set the maximum size\&.
.TP
-Xms\fIsize\fR
.br
Sets the initial size (in bytes) of the heap\&. This value must be a multiple of 1024 and greater than 1 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.

R
rgallard 已提交
459
The following examples show how to set the size of allocated memory to 6 MB using various units:
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
.sp     
.nf     
\f3\-Xms6291456\fP
.fi     
.nf     
\f3\-Xms6144k\fP
.fi     
.nf     
\f3\-Xms6m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


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 \f3-Xmn\fR option or the \f3-XX:NewSize\fR option\&.
.TP
-Xmx\fIsize\fR
.br
Specifies the maximum size (in bytes) of the memory allocation pool in bytes\&. This value must be a multiple of 1024 and greater than 2 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments, \f3-Xms\fR and \f3-Xmx\fR are often set to the same value\&. See the section "Ergonomics" in \fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.

R
rgallard 已提交
482
The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
.sp     
.nf     
\f3\-Xmx83886080\fP
.fi     
.nf     
\f3\-Xmx81920k\fP
.fi     
.nf     
\f3\-Xmx80m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


The \f3-Xmx\fR option is equivalent to \f3-XX:MaxHeapSize\fR\&.
.TP
-Xnoclassgc
.br
R
rgallard 已提交
503
Disables garbage collection (GC) of classes\&. This can save some GC time, which shortens interruptions during the application run\&.
504 505 506 507 508

When you specify \f3-Xnoclassgc\fR at startup, the class objects in the application will be left untouched during GC and will always be considered live\&. This can result in more memory being permanently occupied which, if not used carefully, will throw an out of memory exception\&.
.TP
-Xprof
.br
R
rgallard 已提交
509
Profiles the running program and sends profiling data to standard output\&. This option is provided as a utility that is useful in program development and is not intended to be used in production systems\&.
510 511 512
.TP
-Xrs
.br
R
rgallard 已提交
513
Reduces the use of operating system signals by the JVM\&.
514

R
rgallard 已提交
515
Shutdown 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\&.
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538

The JVM catches signals to implement shutdown hooks for unexpected termination\&. The JVM uses \f3SIGHUP\fR, \f3SIGINT\fR, and \f3SIGTERM\fR to initiate the running of shutdown hooks\&.

The JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes\&. The JVM uses \f3SIGQUIT\fR to perform thread dumps\&.

Applications embedding the JVM frequently need to trap signals such as \f3SIGINT\fR or \f3SIGTERM\fR, which can lead to interference with the JVM signal handlers\&. The \f3-Xrs\fR option is available to address this issue\&. When \f3-Xrs\fR is used, the signal masks for \f3SIGINT\fR, \f3SIGTERM\fR, \f3SIGHUP\fR, and \f3SIGQUIT\fR are not changed by the JVM, and signal handlers for these signals are not installed\&.

There are two consequences of specifying \f3-Xrs\fR:
.RS     
.TP 0.2i    
\(bu
\f3SIGQUIT\fR thread dumps are not available\&.
.TP 0.2i    
\(bu
User code is responsible for causing shutdown hooks to run, for example, by calling \f3System\&.exit()\fR when the JVM is to be terminated\&.
.RE     

.TP
-Xshare:\fImode\fR
.br
Sets the class data sharing mode\&. Possible \fImode\fR arguments for this option include the following:
.RS     
.TP     
R
rgallard 已提交
539
auto
540 541
Use shared class data if possible\&. This is the default value for Java HotSpot 32-Bit Client VM\&.
.TP     
R
rgallard 已提交
542 543
on
Require the use of class data sharing\&. Print an error message and exit if class data sharing cannot be used\&.
544
.TP     
R
rgallard 已提交
545
off
546 547
Do not use shared class data\&. This is the default value for Java HotSpot 32-Bit Server VM, Java HotSpot 64-Bit Client VM, and Java HotSpot 64-Bit Server VM\&.
.TP     
R
rgallard 已提交
548 549
dump
Manually generate the class data sharing archive\&.
550 551 552 553 554 555 556 557
.RE     

.TP
-XshowSettings:\fIcategory\fR
.br
Shows settings and continues\&. Possible \fIcategory\fR arguments for this option include the following:
.RS     
.TP     
R
rgallard 已提交
558 559
all
Shows all categories of settings\&. This is the default value\&.
560
.TP     
R
rgallard 已提交
561 562
locale
Shows settings related to locale\&.
563
.TP     
R
rgallard 已提交
564 565
properties
Shows settings related to system properties\&.
566
.TP     
R
rgallard 已提交
567 568
vm
Shows the settings of the JVM\&.
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
.RE     

.TP
-Xss\fIsize\fR
.br
Sets the thread stack size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate KB, \f3m\fR or \f3M\fR to indicate MB, \f3g\fR or \f3G\fR to indicate GB\&. The default value depends on the platform:
.RS     
.TP 0.2i    
\(bu
Linux/ARM (32-bit): 320 KB
.TP 0.2i    
\(bu
Linux/i386 (32-bit): 320 KB
.TP 0.2i    
\(bu
Linux/x64 (64-bit): 1024 KB
.TP 0.2i    
\(bu
OS X (64-bit): 1024 KB
.TP 0.2i    
\(bu
Oracle Solaris/i386 (32-bit): 320 KB
.TP 0.2i    
\(bu
Oracle Solaris/x64 (64-bit): 1024 KB
.TP 0.2i    
\(bu
R
rgallard 已提交
596
Windows: depends on virtual memory
597 598 599
.RE     


R
rgallard 已提交
600
The following examples set the thread stack size to 1024 KB in different units:
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
.sp     
.nf     
\f3\-Xss1m\fP
.fi     
.nf     
\f3\-Xss1024k\fP
.fi     
.nf     
\f3\-Xss1048576\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


This option is equivalent to \f3-XX:ThreadStackSize\fR\&.
.TP
-Xusealtsigs
.br
Use alternative signals instead of \f3SIGUSR1\fR and \f3SIGUSR2\fR for JVM internal signals\&. This option is equivalent to \f3-XX:+UseAltSigs\fR\&.
.TP
-Xverify:\fImode\fR
.br
Sets the mode of the bytecode verifier\&. Bytecode verification helps to troubleshoot some problems, but it also adds overhead to the running application\&. Possible \fImode\fR arguments for this option include the following:
.RS     
.TP     
R
rgallard 已提交
628 629
none
Do not verify the bytecode\&. This reduces startup time and also reduces the protection provided by Java\&.
630
.TP     
R
rgallard 已提交
631
remote
632 633
Verify those classes that are not loaded by the bootstrap class loader\&. This is the default behavior if you do not specify the \f3-Xverify\fR option\&.
.TP     
R
rgallard 已提交
634 635
all
Verify all classes\&.
636 637 638
.RE     

.SS ADVANCED\ RUNTIME\ OPTIONS    
R
rgallard 已提交
639
These options control the runtime behavior of the Java HotSpot VM\&.
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
.TP
-XX:+DisableAttachMechanism
.br
Enables the option that disables the mechanism that lets tools attach to the JVM\&. By default, this option is disabled, meaning that the attach mechanism is enabled and you can use tools such as \f3jcmd\fR, \f3jstack\fR, \f3jmap\fR, and \f3jinfo\fR\&.
.TP
-XX:ErrorFile=\fIfilename\fR
.br
Specifies the path and file name to which error data is written when an irrecoverable error occurs\&. By default, this file is created in the current working directory and named \f3hs_err_pid\fR\fIpid\fR\f3\&.log\fR where \fIpid\fR is the identifier of the process that caused the error\&. The following example shows how to set the default log file (note that the identifier of the process is specified as \f3%p\fR):
.sp     
.nf     
\f3\-XX:ErrorFile=\&./hs_err_pid%p\&.log\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


The following example shows how to set the error log to \f3/var/log/java/java_error\&.log\fR:
.sp     
.nf     
\f3\-XX:ErrorFile=/var/log/java/java_error\&.log\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


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 \f3/tmp\fR\&.
.TP
-XX:+FailOverToOldVerifier
.br
673
Enables 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\&.
674 675 676 677 678
.TP
-XX:LargePageSizeInBytes=\fIsize\fR
.br
On Solaris, sets the maximum size (in bytes) for large pages used for Java heap\&. The \fIsize\fR argument must be a power of 2 (2, 4, 8, 16, \&.\&.\&.)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically\&.

R
rgallard 已提交
679
The following example illustrates how to set the large page size to 4 megabytes (MB):
680 681 682 683 684 685 686 687 688 689 690 691 692 693
.sp     
.nf     
\f3\-XX:LargePageSizeInBytes=4m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxDirectMemorySize=\fIsize\fR
.br
Sets the maximum total size (in bytes) of the New I/O (the \f3java\&.nio\fR package) direct-buffer allocations\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for NIO direct-buffer allocations automatically\&.

R
rgallard 已提交
694
The following examples illustrate how to set the NIO size to 1024 KB in different units:
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
.sp     
.nf     
\f3\-XX:MaxDirectMemorySize=1m\fP
.fi     
.nf     
\f3\-XX:MaxDirectMemorySize=1024k\fP
.fi     
.nf     
\f3\-XX:MaxDirectMemorySize=1048576\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:NativeMemoryTracking=\fImode\fR
.br
Specifies the mode for tracking JVM native memory usage\&. Possible \fImode\fR arguments for this option include the following:
.RS     
.TP     
R
rgallard 已提交
716
off
717 718
Do not track JVM native memory usage\&. This is the default behavior if you do not specify the \f3-XX:NativeMemoryTracking\fR option\&.
.TP     
R
rgallard 已提交
719 720
summary
Only track memory usage by JVM subsystems, such as Java heap, class, code, and thread\&.
721
.TP     
R
rgallard 已提交
722
detail
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
In addition to tracking memory usage by JVM subsystems, track memory usage by individual \f3CallSite\fR, individual virtual memory region and its committed regions\&.
.RE     

.TP
-XX:ObjectAlignmentInBytes=\fIalignment\fR
.br
Sets 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\&.

The heap size limit in bytes is calculated as:

\f34GB * ObjectAlignmentInBytes\fR

Note: 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\&.
.TP
-XX:OnError=\fIstring\fR
.br
Sets 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\&.

\fI\fRThe following example shows how the \f3-XX:OnError\fR option can be used to run the \f3gcore\fR command to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the \f3%p\fR designates the current process):
.sp     
.nf     
\f3\-XX:OnError="gcore %p;dbx \- %p"\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:OnOutOfMemoryError=\fIstring\fR
.br
Sets a custom command or a series of semicolon-separated commands to run when an \f3OutOfMemoryError\fR exception is first thrown\&. If the string contains spaces, then it must be enclosed in quotation marks\&. For an example of a command string, see the description of the \f3-XX:OnError\fR option\&.
.TP
-XX:+PerfDataSaveToFile
.br
If enabled, saves jstat(1) binary data when the Java application exits\&. This binary data is saved in a file named \f3hsperfdata_\fR\fI<pid>\fR, where \fI<pid>\fR is the process identifier of the Java application you ran\&. Use \f3jstat\fR to display the performance data contained in this file as follows:
.sp     
.nf     
\f3jstat \-class file:///\fI<path>\fR/hsperfdata_\fI<pid>\fR\fP
.fi     
.nf     
\f3jstat \-gc file:///\fI<path>\fR/hsperfdata_\fI<pid>\fR\fP
.fi     
.sp     

.TP
-XX:+PrintCommandLineFlags
.br
Enables 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\&.
.TP
-XX:+PrintNMTStatistics
.br
Enables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see \f3-XX:NativeMemoryTracking\fR)\&. By default, this option is disabled and native memory tracking data is not printed\&.
.TP
-XX:+RelaxAccessControlCheck
.br
779
Decreases 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\&.
780 781 782
.TP
-XX:+ShowMessageBoxOnError
.br
R
rgallard 已提交
783
Enables 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\&.
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
.TP
-XX:ThreadStackSize=\fIsize\fR
.br
Sets the thread stack size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value depends on the platform:
.RS     
.TP 0.2i    
\(bu
Linux/ARM (32-bit): 320 KB
.TP 0.2i    
\(bu
Linux/i386 (32-bit): 320 KB
.TP 0.2i    
\(bu
Linux/x64 (64-bit): 1024 KB
.TP 0.2i    
\(bu
OS X (64-bit): 1024 KB
.TP 0.2i    
\(bu
Oracle Solaris/i386 (32-bit): 320 KB
.TP 0.2i    
\(bu
Oracle Solaris/x64 (64-bit): 1024 KB
.TP 0.2i    
\(bu
R
rgallard 已提交
809
Windows: depends on virtual memory
810 811 812
.RE     


R
rgallard 已提交
813
The following examples show how to set the thread stack size to 1024 KB in different units:
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
.sp     
.nf     
\f3\-XX:ThreadStackSize=1m\fP
.fi     
.nf     
\f3\-XX:ThreadStackSize=1024k\fP
.fi     
.nf     
\f3\-XX:ThreadStackSize=1048576\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


This option is equivalent to \f3-Xss\fR\&.
.TP
-XX:+TraceClassLoading
.br
R
rgallard 已提交
834
Enables tracing of classes as they are loaded\&. By default, this option is disabled and classes are not traced\&.
835 836 837
.TP
-XX:+TraceClassLoadingPreorder
.br
R
rgallard 已提交
838
Enables tracing of all loaded classes in the order in which they are referenced\&. By default, this option is disabled and classes are not traced\&.
839 840 841
.TP
-XX:+TraceClassResolution
.br
R
rgallard 已提交
842
Enables tracing of constant pool resolutions\&. By default, this option is disabled and constant pool resolutions are not traced\&.
843 844 845
.TP
-XX:+TraceClassUnloading
.br
R
rgallard 已提交
846
Enables tracing of classes as they are unloaded\&. By default, this option is disabled and classes are not traced\&.
847 848 849
.TP
-XX:+TraceLoaderConstraints
.br
850
Enables tracing of the loader constraints recording\&. By default, this option is disabled and loader constraints recording is not traced\&.
851 852 853 854 855 856 857 858 859
.TP
-XX:+UseAltSigs
.br
Enables the use of alternative signals instead of \f3SIGUSR1\fR and \f3SIGUSR2\fR for JVM internal signals\&. By default, this option is disabled and alternative signals are not used\&. This option is equivalent to \f3-Xusealtsigs\fR\&.
.TP
-XX:-UseBiasedLocking
.br
Disables 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

860
By default, this option is enabled\&.
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
.TP
-XX:-UseCompressedOops
.br
Disables 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\&.

It is also possible to use compressed pointers when Java heap sizes are greater than 32GB\&. See the \f3-XX:ObjectAlignmentInBytes\fR option\&.
.TP
-XX:+UseHugeTLBFS
.br
This option for Linux is the equivalent of specifying \f3-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 \f3-XX:UseTransparentHugePages\fR if you want this behavior\&.

For more information, see Large Pages\&.
.TP
-XX:+UseLargePages
.br
Enables the use of large page memory\&. By default, this option is disabled and large page memory is not used\&.

For more information, see Large Pages\&.
.TP
-XX:+UseMembar
.br
882
Enables 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\&.)
883 884 885 886 887 888 889 890 891 892 893 894 895
.TP
-XX:+UsePerfData
.br
Enables the \f3perfdata\fR feature\&. This option is enabled by default to allow JVM monitoring and performance testing\&. Disabling it suppresses the creation of the \f3hsperfdata_userid\fR directories\&. To disable the \f3perfdata\fR feature, specify \f3-XX:-UsePerfData\fR\&.
.TP
-XX:+UseTransparentHugePages
.br
On 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\&.

For more information, see Large Pages\&.
.TP
-XX:+AllowUserSignalHandlers
.br
R
rgallard 已提交
896
Enables installation of signal handlers by the application\&. By default, this option is disabled and the application is not allowed to install signal handlers\&.
897 898 899 900 901
.SS ADVANCED\ JIT\ COMPILER\ OPTIONS    
These options control the dynamic just-in-time (JIT) compilation performed by the Java HotSpot VM\&.
.TP
-XX:+AggressiveOpts
.br
R
rgallard 已提交
902
Enables 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\&.
903 904 905
.TP
-XX:AllocateInstancePrefetchLines=\fIlines\fR
.br
R
rgallard 已提交
906
Sets the number of lines to prefetch ahead of the instance allocation pointer\&. By default, the number of lines to prefetch is set to 1:
907 908 909 910 911 912 913 914 915 916
.sp     
.nf     
\f3\-XX:AllocateInstancePrefetchLines=1\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


917
Only the Java HotSpot Server VM supports this option\&.
918 919 920
.TP
-XX:AllocatePrefetchDistance=\fIsize\fR
.br
921
Sets 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\&.
922 923 924

Negative values denote that prefetch distance is chosen based on the platform\&. Positive values are bytes to prefetch\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is set to -1\&.

925
The following example shows how to set the prefetch distance to 1024 bytes:
926 927 928 929 930 931 932 933 934 935
.sp     
.nf     
\f3\-XX:AllocatePrefetchDistance=1024\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


936
Only the Java HotSpot Server VM supports this option\&.
937 938 939
.TP
-XX:AllocatePrefetchInstr=\fIinstruction\fR
.br
940
Sets 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:
941 942 943 944 945 946 947 948 949 950
.sp     
.nf     
\f3\-XX:AllocatePrefetchInstr=0\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


951
Only the Java HotSpot Server VM supports this option\&.
952 953 954
.TP
-XX:AllocatePrefetchLines=\fIlines\fR
.br
955
Sets 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\&.
956

957
The following example shows how to set the number of loaded cache lines to 5:
958 959 960 961 962 963 964 965 966 967
.sp     
.nf     
\f3\-XX:AllocatePrefetchLines=5\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


968
Only the Java HotSpot Server VM supports this option\&.
969 970 971 972 973 974 975 976 977 978 979 980 981 982
.TP
-XX:AllocatePrefetchStepSize=\fIsize\fR
.br
Sets the step size (in bytes) for sequential prefetch instructions\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the step size is set to 16 bytes:
.sp     
.nf     
\f3\-XX:AllocatePrefetchStepSize=16\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


983
Only the Java HotSpot Server VM supports this option\&.
984 985 986 987 988 989
.TP
-XX:AllocatePrefetchStyle=\fIstyle\fR
.br
Sets the generated code style for prefetch instructions\&. The \fIstyle\fR argument is an integer from 0 to 3:
.RS     
.TP     
990 991
0
Do not generate prefetch instructions\&.
992
.TP     
993 994
1
Execute prefetch instructions after each allocation\&. This is the default parameter\&.
995
.TP     
996
2
997 998
Use the thread-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed\&.
.TP     
999 1000
3
Use BIS instruction on SPARC for allocation prefetch\&.
1001 1002 1003
.RE     


1004
Only the Java HotSpot Server VM supports this option\&.
1005 1006 1007 1008 1009 1010 1011
.TP
-XX:+BackgroundCompilation
.br
Enables background compilation\&. This option is enabled by default\&. To disable background compilation, specify \f3-XX:-BackgroundCompilation\fR (this is equivalent to specifying \f3-Xbatch\fR)\&.
.TP
-XX:CICompilerCount=\fIthreads\fR
.br
R
rgallard 已提交
1012
Sets 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:
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
.sp     
.nf     
\f3\-XX:CICompilerCount=2\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:CodeCacheMinimumFreeSpace=\fIsize\fR
.br
Sets the minimum free space (in bytes) required for compilation\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. When less than the minimum free space remains, compiling stops\&. By default, this option is set to 500 KB\&. The following example shows how to set the minimum free space to 1024 MB:
.sp     
.nf     
\f3\-XX:CodeCacheMinimumFreeSpace=1024m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:CompileCommand=\fIcommand\fR,\fImethod\fR[,\fIoption\fR]
.br
Specifies a command to perform on a method\&. For example, to exclude the \f3indexOf()\fR method of the \f3String\fR class from being compiled, use the following:
.sp     
.nf     
\f3\-XX:CompileCommand=exclude,java/lang/String\&.indexOf\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


Note that the full class name is specified, including all packages and subpackages separated by a slash (\f3/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the \f3-XX:+PrintCompilation\fR and \f3-XX:+LogCompilation\fR options:
.sp     
.nf     
\f3\-XX:CompileCommand=exclude,java\&.lang\&.String::indexOf\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


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 \f3indexOf(String)\fR method of the \f3String\fR class from being compiled, use the following:
.sp     
.nf     
\f3\-XX:CompileCommand="exclude,java/lang/String\&.indexOf,(Ljava/lang/String;)I"\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


You can also use the asterisk (*) as a wildcard for class and method names\&. For example, to exclude all \f3indexOf()\fR methods in all classes from being compiled, use the following:
.sp     
.nf     
\f3\-XX:CompileCommand=exclude,*\&.indexOf\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


The commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell\&. You can pass arguments to \f3-XX:CompileCommand\fR using spaces as separators by enclosing the argument in quotation marks:
.sp     
.nf     
\f3\-XX:CompileCommand="exclude java/lang/String indexOf"\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


Note that after parsing the commands passed on the command line using the \f3-XX:CompileCommand\fR options, the JIT compiler then reads commands from the \f3\&.hotspot_compiler\fR file\&. You can add commands to this file or specify a different file using the \f3-XX:CompileCommandFile\fR option\&.

To add several commands, either specify the \f3-XX:CompileCommand\fR option multiple times, or separate each argument with the newline separator (\f3\en\fR)\&. The following commands are available:
.RS     
.TP     
1098 1099
break
Set a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method\&.
1100
.TP     
R
rgallard 已提交
1101
compileonly
1102 1103
Exclude all methods from compilation except for the specified method\&. As an alternative, you can use the \f3-XX:CompileOnly\fR option, which allows to specify several methods\&.
.TP     
R
rgallard 已提交
1104 1105
dontinline
Prevent inlining of the specified method\&.
1106
.TP     
R
rgallard 已提交
1107 1108
exclude
Exclude the specified method from compilation\&.
1109
.TP     
R
rgallard 已提交
1110
help
1111 1112
Print a help message for the \f3-XX:CompileCommand\fR option\&.
.TP     
R
rgallard 已提交
1113 1114
inline
Attempt to inline the specified method\&.
1115
.TP     
R
rgallard 已提交
1116
log
1117 1118
Exclude compilation logging (with the \f3-XX:+LogCompilation\fR option) for all methods except for the specified method\&. By default, logging is performed for all compiled methods\&.
.TP     
1119
option
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
This command can be used to pass a JIT compilation option to the specified method in place of the last argument (\fIoption\fR)\&. The compilation option is set at the end, after the method name\&. For example, to enable the \f3BlockLayoutByFrequency\fR option for the \f3append()\fR method of the \f3StringBuffer\fR class, use the following:
.sp     
.nf     
\f3\-XX:CompileCommand=option,java/lang/StringBuffer\&.append,BlockLayoutByFrequency\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


1131
You can specify multiple compilation options, separated by commas or spaces\&.
1132
.TP     
R
rgallard 已提交
1133 1134
print
Print generated assembler code after compilation of the specified method\&.
1135
.TP     
R
rgallard 已提交
1136
quiet
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
Do not print the compile commands\&. By default, the commands that you specify with the -\f3XX:CompileCommand\fR option are printed; for example, if you exclude from compilation the \f3indexOf()\fR method of the \f3String\fR class, then the following will be printed to standard output:
.sp     
.nf     
\f3CompilerOracle: exclude java/lang/String\&.indexOf\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


You can suppress this by specifying the \f3-XX:CompileCommand=quiet\fR option before other \f3-XX:CompileCommand\fR options\&.
.RE     

.TP
-XX:CompileCommandFile=\fIfilename\fR
.br
Sets the file from which JIT compiler commands are read\&. By default, the \f3\&.hotspot_compiler\fR file is used to store commands performed by the JIT compiler\&.

Each line in the command file represents a command, a class name, and a method name for which the command is used\&. For example, this line prints assembly code for the \f3toString()\fR method of the \f3String\fR class:
.sp     
.nf     
\f3print java/lang/String toString\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


For more information about specifying the commands for the JIT compiler to perform on methods, see the \f3-XX:CompileCommand\fR option\&.
.TP
-XX:CompileOnly=\fImethods\fR
.br
Sets the list of methods (separated by commas) to which compilation should be restricted\&. Only the specified methods will be compiled\&. Specify each method with the full class name (including the packages and subpackages)\&. For example, to compile only the \f3length()\fR method of the \f3String\fR class and the \f3size()\fR method of the \f3List\fR class, use the following:
.sp     
.nf     
\f3\-XX:CompileOnly=java/lang/String\&.length,java/util/List\&.size\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


Note that the full class name is specified, including all packages and subpackages separated by a slash (\f3/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the \f3-XX:+PrintCompilation\fR and \f3-XX:+LogCompilation\fR options:
.sp     
.nf     
\f3\-XX:CompileOnly=java\&.lang\&.String::length,java\&.util\&.List::size\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


1193
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:
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
.sp     
.nf     
\f3\-XX:CompileOnly=java/lang/String\fP
.fi     
.nf     
\f3\-XX:CompileOnly=java/lang\fP
.fi     
.nf     
\f3\-XX:CompileOnly=\&.length\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:CompileThreshold=\fIinvocations\fR
.br
Sets 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 \f3-XX:+TieredCompilation\fR\&. The following example shows how to set the number of interpreted method invocations to 5,000:
.sp     
.nf     
\f3\-XX:CompileThreshold=5000\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


You can completely disable interpretation of Java methods before compilation by specifying the \f3-Xcomp\fR option\&.
.TP
-XX:+DoEscapeAnalysis
.br
Enables the use of escape analysis\&. This option is enabled by default\&. To disable the use of escape analysis, specify \f3-XX:-DoEscapeAnalysis\fR\&. Only the Java HotSpot Server VM supports this option\&.
.TP
-XX:InitialCodeCacheSize=\fIsize\fR
.br
Sets the initial code cache size (in bytes)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is set to 500 KB\&. The initial code cache size should be not less than the system\&'s minimal memory page size\&. The following example shows how to set the initial code cache size to 32 KB:
.sp     
.nf     
\f3\-XX:InitialCodeCacheSize=32k\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+Inline
.br
Enables method inlining\&. This option is enabled by default to increase performance\&. To disable method inlining, specify \f3-XX:-Inline\fR\&.
.TP
-XX:InlineSmallCode=\fIsize\fR
.br
Sets the maximum code size (in bytes) for compiled methods that should be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. Only compiled methods with the size smaller than the specified size will be inlined\&. By default, the maximum code size is set to 1000 bytes:
.sp     
.nf     
\f3\-XX:InlineSmallCode=1000\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+LogCompilation
.br
Enables logging of compilation activity to a file named \f3hotspot\&.log\fR in the current working directory\&. You can specify a different log file path and name using the \f3-XX:LogFile\fR option\&.

By default, this option is disabled and compilation activity is not logged\&. The \f3-XX:+LogCompilation\fR option has to be used together with the \f3-XX:UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.

You can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the \f3-XX:+PrintCompilation\fR option\&.
.TP
-XX:MaxInlineSize=\fIsize\fR
.br
Sets the maximum bytecode size (in bytes) of a method to be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the maximum bytecode size is set to 35 bytes:
.sp     
.nf     
\f3\-XX:MaxInlineSize=35\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxNodeLimit=\fInodes\fR
.br
R
rgallard 已提交
1282
Sets the maximum number of nodes to be used during single method compilation\&. By default, the maximum number of nodes is set to 65,000:
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
.sp     
.nf     
\f3\-XX:MaxNodeLimit=65000\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxTrivialSize=\fIsize\fR
.br
Sets the maximum bytecode size (in bytes) of a trivial method to be inlined\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. By default, the maximum bytecode size of a trivial method is set to 6 bytes:
.sp     
.nf     
\f3\-XX:MaxTrivialSize=6\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+OptimizeStringConcat
.br
Enables the optimization of \f3String\fR concatenation operations\&. This option is enabled by default\&. To disable the optimization of \f3String\fR concatenation operations, specify \f3-XX:-OptimizeStringConcat\fR\&. Only the Java HotSpot Server VM supports this option\&.
.TP
-XX:+PrintAssembly
.br
Enables printing of assembly code for bytecoded and native methods by using the external \f3disassembler\&.so\fR library\&. This enables you to see the generated code, which may help you to diagnose performance issues\&.

By default, this option is disabled and assembly code is not printed\&. The \f3-XX:+PrintAssembly\fR option has to be used together with the \f3-XX:UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.
.TP
-XX:+PrintCompilation
.br
R
rgallard 已提交
1318
Enables 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\&.
1319 1320 1321 1322 1323

You can also log compilation activity to a file by using the \f3-XX:+LogCompilation\fR option\&.
.TP
-XX:+PrintInlining
.br
R
rgallard 已提交
1324
Enables printing of inlining decisions\&. This enables you to see which methods are getting inlined\&.
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341

By default, this option is disabled and inlining information is not printed\&. The \f3-XX:+PrintInlining\fR option has to be used together with the \f3-XX:+UnlockDiagnosticVMOptions\fR option that unlocks diagnostic JVM options\&.
.TP
-XX:ReservedCodeCacheSize=\fIsize\fR
.br
Sets the maximum code cache size (in bytes) for JIT-compiled code\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. This option 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 \f3-XX:InitialCodeCacheSize\fR\&. This option is equivalent to \f3-Xmaxjitcodesize\fR\&.
.TP
-XX:RTMAbortRatio=\fIabort_ratio\fR
.br
The 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 \f3-XX:+UseRTMDeopt\fR option 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\&.
.TP
-XX:RTMRetryCount=\fInumber_of_retries\fR
.br
RTM 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 \f3-XX:UseRTMLocking\fR option must be enabled\&.
.TP
-XX:+TieredCompilation
.br
1342
Enables the use of tiered compilation\&. By default, this option is enabled\&. Only the Java HotSpot Server VM supports this option\&.
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
.TP
-XX:+UseAES
.br
Enables 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\&.
.TP
-XX:+UseAESIntrinsics
.br
UseAES 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 \f3-XX:-UseAES -XX:-UseAESIntrinsics\fR\&. For example, to enable hardware AES, use the following flags:
.sp     
.nf     
\f3\-XX:+UseAES \-XX:+UseAESIntrinsics\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


To support UseAES and UseAESIntrinsics flags for 32-bit and 64-bit use \f3-server\fR option to choose Java HotSpot Server VM\&. These flags are not supported on Client VM\&.
.TP
-XX:+UseCodeCacheFlushing
.br
Enables flushing of the code cache before shutting down the compiler\&. This option is enabled by default\&. To disable flushing of the code cache before shutting down the compiler, specify \f3-XX:-UseCodeCacheFlushing\fR\&.
.TP
-XX:+UseCondCardMark
.br
1369
Enables 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\&.
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
.TP
-XX:+UseRTMDeopt
.br
Auto-tunes RTM locking depending on the abort ratio\&. This ratio is specified by \f3-XX:RTMAbortRatio\fR option\&. 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 \f3-XX:+UseRTMLocking\fR option must be enabled\&.
.TP
-XX:+UseRTMLocking
.br
Generate 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)\&.

RTM is part of Intel\&'s TSX, which is an x86 instruction set extension and facilitates the creation of multithreaded applications\&. RTM introduces the new instructions \f3XBEGIN\fR, \f3XABORT\fR, \f3XEND\fR, and \f3XTEST\fR\&. The \f3XBEGIN\fR and \f3XEND\fR instructions 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 \f3XEND\fR instruction\&. The \f3XABORT\fR instruction can be used to explicitly abort a transaction and the \f3XEND\fR instruction to check if a set of instructions are being run in a transaction\&.

A 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\&'s system\&.

RTM 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\&.
.TP
-XX:+UseSHA
.br
Enables hardware-based intrinsics for SHA crypto hash functions for SPARC hardware\&. \f3UseSHA\fR is used in conjunction with the \f3UseSHA1Intrinsics\fR, \f3UseSHA256Intrinsics\fR, and \f3UseSHA512Intrinsics\fR options\&.

The \f3UseSHA\fR and \f3UseSHA*Intrinsics\fR flags are enabled by default, and are supported only for Java HotSpot Server VM 64-bit on SPARC T4 and newer\&.

This feature is only applicable when using the \f3sun\&.security\&.provider\&.Sun\fR provider for SHA operations\&.

To disable all hardware-based SHA intrinsics, specify \f3-XX:-UseSHA\fR\&. To disable only a particular SHA intrinsic, use the appropriate corresponding option\&. For example: \f3-XX:-UseSHA256Intrinsics\fR\&.
.TP
-XX:+UseSHA1Intrinsics
.br
Enables intrinsics for SHA-1 crypto hash function\&.
.TP
-XX:+UseSHA256Intrinsics
.br
Enables intrinsics for SHA-224 and SHA-256 crypto hash functions\&.
.TP
-XX:+UseSHA512Intrinsics
.br
Enables intrinsics for SHA-384 and SHA-512 crypto hash functions\&.
.TP
-XX:+UseSuperWord
.br
Enables the transformation of scalar operations into superword operations\&. This option is enabled by default\&. To disable the transformation of scalar operations into superword operations, specify \f3-XX:-UseSuperWord\fR\&. Only the Java HotSpot Server VM supports this option\&.
.SS ADVANCED\ SERVICEABILITY\ OPTIONS    
R
rgallard 已提交
1411
These options provide the ability to gather system information and perform extensive debugging\&.
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
.TP
-XX:+ExtendedDTraceProbes
.br
Enables additional \f3dtrace\fR tool probes that impact the performance\&. By default, this option is disabled and \f3dtrace\fR performs only standard probes\&.
.TP
-XX:+HeapDumpOnOutOfMemory
.br
Enables the dumping of the Java heap to a file in the current directory by using the heap profiler (HPROF) when a \f3java\&.lang\&.OutOfMemoryError\fR exception is thrown\&. You can explicitly set the heap dump file path and name using the \f3-XX:HeapDumpPath\fR option\&. By default, this option is disabled and the heap is not dumped when an \f3OutOfMemoryError\fR exception is thrown\&.
.TP
-XX:HeapDumpPath=\fIpath\fR
.br
Sets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the \f3-XX:+HeapDumpOnOutOfMemoryError\fR option is set\&. By default, the file is created in the current working directory, and it is named \f3java_pid\fR\fIpid\fR\f3\&.hprof\fR where \fIpid\fR is the identifier of the process that caused the error\&. The following example shows how to set the default file explicitly (\f3%p\fR represents the current process identificator):
.sp     
.nf     
\f3\-XX:HeapDumpPath=\&./java_pid%p\&.hprof\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


\fI\fRThe following example shows how to set the heap dump file to \f3/var/log/java/java_heapdump\&.hprof\fR:
.sp     
.nf     
\f3\-XX:HeapDumpPath=/var/log/java/java_heapdump\&.hprof\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:LogFile=\fIpath\fR
.br
Sets the path and file name where log data is written\&. By default, the file is created in the current working directory, and it is named \f3hotspot\&.log\fR\&.

\fI\fRThe following example shows how to set the log file to \f3/var/log/java/hotspot\&.log\fR:
.sp     
.nf     
\f3\-XX:LogFile=/var/log/java/hotspot\&.log\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+PrintClassHistogram
.br
\fI\fREnables printing of a class instance histogram after a \f3Control+C\fR event (\f3SIGTERM\fR)\&. By default, this option is disabled\&.

Setting this option is equivalent to running the \f3jmap -histo\fR command, or the \f3jcmd\fR\fIpid\fR\f3GC\&.class_histogram\fR command, where \fIpid\fR is the current Java process identifier\&.
.TP     
-XX:+PrintConcurrentLocks


Enables printing of \f3java\&.util\&.concurrent\fR locks after a \f3Control+C\fR event (\f3SIGTERM\fR)\&. By default, this option is disabled\&.

Setting this option is equivalent to running the \f3jstack -l\fR command or the \f3jcmd\fR\fIpid\fR\f3Thread\&.print -l\fR command, where \fIpid\fR is the current Java process identifier\&.
.TP
-XX:+UnlockDiagnosticVMOptions
.br
R
rgallard 已提交
1475
Unlocks the options intended for diagnosing the JVM\&. By default, this option is disabled and diagnostic options are not available\&.
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
.SS ADVANCED\ GARBAGE\ COLLECTION\ OPTIONS    
These options control how garbage collection (GC) is performed by the Java HotSpot VM\&.
.TP
-XX:+AggressiveHeap
.br
Enables 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\&.
.TP
-XX:+AlwaysPreTouch
.br
Enables touching of every page on the Java heap during JVM initialization\&. This gets all pages into the memory before entering the \f3main()\fR method\&. The option can be used in testing to simulate a long-running system with all virtual memory mapped to physical memory\&. By default, this option is disabled and all pages are committed as JVM heap space fills\&.
.TP
-XX:+CMSClassUnloadingEnabled
.br
Enables class unloading when using the concurrent mark-sweep (CMS) garbage collector\&. This option is enabled by default\&. To disable class unloading for the CMS garbage collector, specify \f3-XX:-CMSClassUnloadingEnabled\fR\&.
.TP
-XX:CMSExpAvgFactor=\fIpercent\fR
.br
R
rgallard 已提交
1493
Sets 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%:
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
.sp     
.nf     
\f3\-XX:CMSExpAvgFactor=15\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:CMSInitiatingOccupancyFraction=\fIpercent\fR
.br
Sets the percentage of the old generation occupancy (0 to 100) at which to start a CMS collection cycle\&. The default value is set to -1\&. Any negative value (including the default) implies that \f3-XX:CMSTriggerRatio\fR is used to define the value of the initiating occupancy fraction\&.

R
rgallard 已提交
1508
The following example shows how to set the occupancy fraction to 20%:
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
.sp     
.nf     
\f3\-XX:CMSInitiatingOccupancyFraction=20\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+CMSScavengeBeforeRemark
.br
R
rgallard 已提交
1521
Enables scavenging attempts before the CMS remark step\&. By default, this option is disabled\&.
1522 1523 1524 1525 1526
.TP
-XX:CMSTriggerRatio=\fIpercent\fR
.br
Sets the percentage (0 to 100) of the value specified by \f3-XX:MinHeapFreeRatio\fR that is allocated before a CMS collection cycle commences\&. The default value is set to 80%\&.

R
rgallard 已提交
1527
The following example shows how to set the occupancy fraction to 75%:
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
.sp     
.nf     
\f3\-XX:CMSTriggerRatio=75\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:ConcGCThreads=\fIthreads\fR
.br
R
rgallard 已提交
1540
Sets the number of threads used for concurrent GC\&. The default value depends on the number of CPUs available to the JVM\&.
1541

R
rgallard 已提交
1542
For example, to set the number of threads for concurrent GC to 2, specify the following option:
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
.sp     
.nf     
\f3\-XX:ConcGCThreads=2\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+DisableExplicitGC
.br
Enables the option that disables processing of calls to \f3System\&.gc()\fR\&. This option is disabled by default, meaning that calls to \f3System\&.gc()\fR are processed\&. If processing of calls to \f3System\&.gc()\fR is disabled, the JVM still performs GC when necessary\&.
.TP
-XX:+ExplicitGCInvokesConcurrent
.br
Enables invoking of concurrent GC by using the \f3System\&.gc()\fR request\&. This option is disabled by default and can be enabled only together with the \f3-XX:+UseConcMarkSweepGC\fR option\&.
.TP
-XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
.br
Enables invoking of concurrent GC by using the \f3System\&.gc()\fR request and unloading of classes during the concurrent GC cycle\&. This option is disabled by default and can be enabled only together with the \f3-XX:+UseConcMarkSweepGC\fR option\&.
.TP
-XX:G1HeapRegionSize=\fIsize\fR
.br
Sets 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\&.

R
rgallard 已提交
1569
The following example shows how to set the size of the subdivisions to 16 MB:
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
.sp     
.nf     
\f3\-XX:G1HeapRegionSize=16m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+G1PrintHeapRegions
.br
R
rgallard 已提交
1582
Enables the printing of information about which regions are allocated and which are reclaimed by the G1 collector\&. By default, this option is disabled\&.
1583 1584 1585
.TP
-XX:G1ReservePercent=\fIpercent\fR
.br
R
rgallard 已提交
1586
Sets 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%\&.
1587

R
rgallard 已提交
1588
The following example shows how to set the reserved heap to 20%:
1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
.sp     
.nf     
\f3\-XX:G1ReservePercent=20\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:InitialHeapSize=\fIsize\fR
.br
Sets the initial size (in bytes) of the memory allocation pool\&. This value must be either 0, or a multiple of 1024 and greater than 1 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. See the section "Ergonomics" in \fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.

R
rgallard 已提交
1603
The following examples show how to set the size of allocated memory to 6 MB using various units:
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
.sp     
.nf     
\f3\-XX:InitialHeapSize=6291456\fP
.fi     
.nf     
\f3\-XX:InitialHeapSize=6144k\fP
.fi     
.nf     
\f3\-XX:InitialHeapSize=6m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


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 \f3-XX:NewSize\fR option\&.
.TP
-XX:InitialSurvivorRatio=\fIratio\fR
.br
Sets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the \f3-XX:+UseParallelGC\fR and/or -\f3XX:+UseParallelOldGC\fR options)\&. Adaptive sizing is enabled by default with the throughput garbage collector by using the \f3-XX:+UseParallelGC\fR and \f3-XX:+UseParallelOldGC\fR options, and survivor space is resized according to the application behavior, starting with the initial value\&. If adaptive sizing is disabled (using the \f3-XX:-UseAdaptiveSizePolicy\fR option), then the \f3-XX:SurvivorRatio\fR option should be used to set the size of the survivor space for the entire execution of the application\&.

R
rgallard 已提交
1626
The 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):
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
.sp     
.nf     
\f3S=Y/(R+2)\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


R
rgallard 已提交
1637
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\&.
1638

R
rgallard 已提交
1639
By 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\&.
1640

R
rgallard 已提交
1641
The following example shows how to set the initial survivor space ratio to 4:
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
.sp     
.nf     
\f3\-XX:InitialSurvivorRatio=4\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:InitiatingHeapOccupancyPercent=\fIpercent\fR
.br
R
rgallard 已提交
1654
Sets 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)\&.
1655

1656
By 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%:
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
.sp     
.nf     
\f3\-XX:InitiatingHeapOccupancyPercent=75\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxGCPauseMillis=\fItime\fR
.br
R
rgallard 已提交
1669
Sets 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\&.
1670

R
rgallard 已提交
1671
The following example shows how to set the maximum target pause time to 500 ms:
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
.sp     
.nf     
\f3\-XX:MaxGCPauseMillis=500\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxHeapSize=\fIsize\fR
.br
Sets the maximum size (in byes) of the memory allocation pool\&. This value must be a multiple of 1024 and greater than 2 MB\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments, \f3-XX:InitialHeapSize\fR and \f3-XX:MaxHeapSize\fR are often set to the same value\&. See the section "Ergonomics" in \fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.

R
rgallard 已提交
1686
The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
.sp     
.nf     
\f3\-XX:MaxHeapSize=83886080\fP
.fi     
.nf     
\f3\-XX:MaxHeapSize=81920k\fP
.fi     
.nf     
\f3\-XX:MaxHeapSize=80m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


R
rgallard 已提交
1703
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\&.
1704 1705 1706 1707 1708

The \f3-XX:MaxHeapSize\fR option is equivalent to \f3-Xmx\fR\&.
.TP
-XX:MaxHeapFreeRatio=\fIpercent\fR
.br
R
rgallard 已提交
1709
Sets 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%\&.
1710

R
rgallard 已提交
1711
The following example shows how to set the maximum free heap ratio to 75%:
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
.sp     
.nf     
\f3\-XX:MaxHeapFreeRatio=75\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxMetaspaceSize=\fIsize\fR
.br
R
rgallard 已提交
1724
Sets 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\&.
1725

R
rgallard 已提交
1726
The following example shows how to set the maximum class metadata size to 256 MB:
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
.sp     
.nf     
\f3\-XX:MaxMetaspaceSize=256m\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MaxNewSize=\fIsize\fR
.br
R
rgallard 已提交
1739
Sets the maximum size (in bytes) of the heap for the young generation (nursery)\&. The default value is set ergonomically\&.
1740 1741 1742
.TP
-XX:MaxTenuringThreshold=\fIthreshold\fR
.br
R
rgallard 已提交
1743
Sets 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\&.
1744

R
rgallard 已提交
1745
The following example shows how to set the maximum tenuring threshold to 10:
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
.sp     
.nf     
\f3\-XX:MaxTenuringThreshold=10\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:MetaspaceSize=\fIsize\fR
.br
R
rgallard 已提交
1758
Sets 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\&.
1759 1760 1761
.TP
-XX:MinHeapFreeRatio=\fIpercent\fR
.br
R
rgallard 已提交
1762
Sets 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%\&.
1763

R
rgallard 已提交
1764
The following example shows how to set the minimum free heap ratio to 25%:
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
.sp     
.nf     
\f3\-XX:MinHeapFreeRatio=25\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:NewRatio=\fIratio\fR
.br
R
rgallard 已提交
1777
Sets 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:
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
.sp     
.nf     
\f3\-XX:NewRatio=1\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:NewSize=\fIsize\fR
.br
Sets the initial size (in bytes) of the heap for the young generation (nursery)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&.

R
rgallard 已提交
1792
The 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\&.
1793

R
rgallard 已提交
1794
The following examples show how to set the initial size of young generation to 256 MB using various units:
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
.sp     
.nf     
\f3\-XX:NewSize=256m\fP
.fi     
.nf     
\f3\-XX:NewSize=262144k\fP
.fi     
.nf     
\f3\-XX:NewSize=268435456\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


The \f3-XX:NewSize\fR option is equivalent to \f3-Xmn\fR\&.
.TP
-XX:ParallelGCThreads=\fIthreads\fR
.br
R
rgallard 已提交
1815
Sets 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\&.
1816

R
rgallard 已提交
1817
For example, to set the number of threads for parallel GC to 2, specify the following option:
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
.sp     
.nf     
\f3\-XX:ParallelGCThreads=2\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+ParallelRefProcEnabled
.br
R
rgallard 已提交
1830
Enables parallel reference processing\&. By default, this option is disabled\&.
1831 1832 1833
.TP
-XX:+PrintAdaptiveSizePolicy
.br
R
rgallard 已提交
1834
Enables printing of information about adaptive generation sizing\&. By default, this option is disabled\&.
1835 1836 1837
.TP
-XX:+PrintGC
.br
R
rgallard 已提交
1838
Enables printing of messages at every GC\&. By default, this option is disabled\&.
1839 1840 1841
.TP
-XX:+PrintGCApplicationConcurrentTime
.br
R
rgallard 已提交
1842
Enables printing of how much time elapsed since the last pause (for example, a GC pause)\&. By default, this option is disabled\&.
1843 1844 1845
.TP
-XX:+PrintGCApplicationStoppedTime
.br
R
rgallard 已提交
1846
Enables printing of how much time the pause (for example, a GC pause) lasted\&. By default, this option is disabled\&.
1847 1848 1849
.TP
-XX:+PrintGCDateStamps
.br
R
rgallard 已提交
1850
Enables printing of a date stamp at every GC\&. By default, this option is disabled\&.
1851 1852 1853
.TP
-XX:+PrintGCDetails
.br
R
rgallard 已提交
1854
Enables printing of detailed messages at every GC\&. By default, this option is disabled\&.
1855 1856 1857
.TP
-XX:+PrintGCTaskTimeStamps
.br
R
rgallard 已提交
1858
Enables printing of time stamps for every individual GC worker thread task\&. By default, this option is disabled\&.
1859 1860 1861
.TP
-XX:+PrintGCTimeStamps
.br
R
rgallard 已提交
1862
Enables printing of time stamps at every GC\&. By default, this option is disabled\&.
1863 1864 1865 1866 1867 1868 1869
.TP
-XX:+PrintStringDeduplicationStatistics
.br
Prints detailed deduplication statistics\&. By default, this option is disabled\&. See the \f3-XX:+UseStringDeduplication\fR option\&.
.TP
-XX:+PrintTenuringDistribution
.br
R
rgallard 已提交
1870
Enables printing of tenuring age information\&. The following is an example of the output:
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
.sp     
.nf     
\f3Desired survivor size 48286924 bytes, new threshold 10 (max 10)\fP
.fi     
.nf     
\f3\- age 1: 28992024 bytes, 28992024 total\fP
.fi     
.nf     
\f3\- age 2: 1366864 bytes, 30358888 total\fP
.fi     
.nf     
\f3\- age 3: 1425912 bytes, 31784800 total\fP
.fi     
.nf     
\f3\&.\&.\&.\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     


R
rgallard 已提交
1893
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\&.
1894

R
rgallard 已提交
1895
In 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\&.
1896

R
rgallard 已提交
1897
By default, this option is disabled\&.
1898 1899 1900 1901 1902 1903 1904 1905 1906
.TP
-XX:+ScavengeBeforeFullGC
.br
Enables GC of the young generation before each full GC\&. This option is enabled by default\&. Oracle recommends that you \fIdo not\fR disable it, because scavenging the young generation before a full GC can reduce the number of objects reachable from the old generation space into the young generation space\&. To disable GC of the young generation before each full GC, specify \f3-XX:-ScavengeBeforeFullGC\fR\&.
.TP
-XX:SoftRefLRUPolicyMSPerMB=\fItime\fR
.br
Sets the amount of time (in milliseconds) a softly reachable object is kept active on the heap after the last time it was referenced\&. The default value is one second of lifetime per free megabyte in the heap\&. The \f3-XX:SoftRefLRUPolicyMSPerMB\fR option accepts integer values representing milliseconds per one megabyte of the current heap size (for Java HotSpot Client VM) or the maximum possible heap size (for Java HotSpot Server VM)\&. This difference means that the Client VM tends to flush soft references rather than grow the heap, whereas the Server VM tends to grow the heap rather than flush soft references\&. In the latter case, the value of the \f3-Xmx\fR option has a significant effect on how quickly soft references are garbage collected\&.

R
rgallard 已提交
1907
The following example shows how to set the value to 2\&.5 seconds:
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
.sp     
.nf     
\f3\-XX:SoftRefLRUPolicyMSPerMB=2500\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:StringDeduplicationAgeThreshold=\fIthreshold\fR
.br
\f3String\fR objects reaching the specified age are considered candidates for deduplication\&. An object\&'s age is a measure of how many times it has survived garbage collection\&. This is sometimes referred to as tenuring; see the \f3-XX:+PrintTenuringDistribution\fR option\&. Note that \f3String\fR objects 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 \f33\fR\&. See the \f3-XX:+UseStringDeduplication\fR option\&.
.TP
-XX:SurvivorRatio=\fIratio\fR
.br
R
rgallard 已提交
1924
Sets 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:
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
.sp     
.nf     
\f3\-XX:SurvivorRatio=4\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:TargetSurvivorRatio=\fIpercent\fR
.br
R
rgallard 已提交
1937
Sets the desired percentage of survivor space (0 to 100) used after young garbage collection\&. By default, this option is set to 50%\&.
1938

R
rgallard 已提交
1939
The following example shows how to set the target survivor space ratio to 30%:
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
.sp     
.nf     
\f3\-XX:TargetSurvivorRatio=30\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:TLABSize=\fIsize\fR
.br
Sets the initial size (in bytes) of a thread-local allocation buffer (TLAB)\&. Append the letter \f3k\fR or \f3K\fR to indicate kilobytes, \f3m\fR or \f3M\fR to indicate megabytes, \f3g\fR or \f3G\fR to indicate gigabytes\&. If this option is set to 0, then the JVM chooses the initial size automatically\&.

R
rgallard 已提交
1954
The following example shows how to set the initial TLAB size to 512 KB:
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
.sp     
.nf     
\f3\-XX:TLABSize=512k\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP
-XX:+UseAdaptiveSizePolicy
.br
Enables the use of adaptive generation sizing\&. This option is enabled by default\&. To disable adaptive generation sizing, specify \f3-XX:-UseAdaptiveSizePolicy\fR and set the size of the memory allocation pool explicitly (see the \f3-XX:SurvivorRatio\fR option)\&.
.TP
-XX:+UseCMSInitiatingOccupancyOnly
.br
R
rgallard 已提交
1971
Enables 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\&.
1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
.TP
-XX:+UseConcMarkSweepGC
.br
Enables the use of the CMS garbage collector for the old generation\&. Oracle recommends that you use the CMS garbage collector when application latency requirements cannot be met by the throughput (\f3-XX:+UseParallelGC\fR) garbage collector\&. The G1 garbage collector (\f3-XX:+UseG1GC\fR) is another alternative\&.

By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&. When this option is enabled, the \f3-XX:+UseParNewGC\fR option is automatically set and you should not disable it, because the following combination of options has been deprecated in JDK 8: \f3-XX:+UseConcMarkSweepGC -XX:-UseParNewGC\fR\&.
.TP
-XX:+UseG1GC
.br
Enables 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)\&.

R
rgallard 已提交
1983
By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&.
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
.TP
-XX:+UseGCOverheadLimit
.br
Enables the use of a policy that limits the proportion of time spent by the JVM on GC before an \f3OutOfMemoryError\fR exception is thrown\&. This option is enabled, by default and the parallel GC will throw an \f3OutOfMemoryError\fR if more than 98% of the total time is spent on garbage collection and less than 2% of the heap is recovered\&. When the heap is small, this feature can be used to prevent applications from running for long periods of time with little or no progress\&. To disable this option, specify \f3-XX:-UseGCOverheadLimit\fR\&.
.TP
-XX:+UseNUMA
.br
Enables performance optimization of an application on a machine with nonuniform memory architecture (NUMA) by increasing the application\&'s use of lower latency memory\&. By default, this option is disabled and no optimization for NUMA is made\&. The option is only available when the parallel garbage collector is used (\f3-XX:+UseParallelGC\fR)\&.
.TP
-XX:+UseParallelGC
.br
R
rgallard 已提交
1995
Enables 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\&.
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008

By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&. If it is enabled, then the \f3-XX:+UseParallelOldGC\fR option is automatically enabled, unless you explicitly disable it\&.
.TP
-XX:+UseParallelOldGC
.br
Enables the use of the parallel garbage collector for full GCs\&. By default, this option is disabled\&. Enabling it automatically enables the \f3-XX:+UseParallelGC\fR option\&.
.TP
-XX:+UseParNewGC
.br
Enables the use of parallel threads for collection in the young generation\&. By default, this option is disabled\&. It is automatically enabled when you set the \f3-XX:+UseConcMarkSweepGC\fR option\&. Using the \f3-XX:+UseParNewGC\fR option without the \f3-XX:+UseConcMarkSweepGC\fR option was deprecated in JDK 8\&.
.TP
-XX:+UseSerialGC
.br
R
rgallard 已提交
2009
Enables 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\&.
2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
.TP
-XX:+UseSHM
.br
On Linux, enables the JVM to use shared memory to setup large pages\&.

For more information, see Large Pages\&.
.TP
-XX:+UseStringDeduplication
.br
Enables string deduplication\&. By default, this option is disabled\&. To use this option, you must enable the garbage-first (G1) garbage collector\&. See the \f3-XX:+UseG1GC\fR option\&.

\fIString deduplication\fR reduces the memory footprint of \f3String\fR objects on the Java heap by taking advantage of the fact that many \f3String\fR objects are identical\&. Instead of each \f3String\fR object pointing to its own character array, identical \f3String\fR objects can point to and share the same character array\&.
.TP
-XX:+UseTLAB
.br
Enables the use of thread-local allocation blocks (TLABs) in the young generation space\&. This option is enabled by default\&. To disable the use of TLABs, specify \f3-XX:-UseTLAB\fR\&.
.SS DEPRECATED\ AND\ REMOVED\ OPTIONS    
R
rgallard 已提交
2027
These options were included in the previous release, but have since been considered unnecessary\&.
2028 2029 2030
.TP
-Xincgc
.br
2031
Enables incremental garbage collection\&. This option was deprecated in JDK 8 with no replacement\&.
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062
.TP
-Xrun\fIlibname\fR
.br
Loads the specified debugging/profiling library\&. This option was superseded by the \f3-agentlib\fR option\&.
.TP
-XX:CMSIncrementalDutyCycle=\fIpercent\fR
.br
Sets 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 \f3-XX:+CMSIncrementalMode\fR option\&.
.TP
-XX:CMSIncrementalDutyCycleMin=\fIpercent\fR
.br
Sets the percentage of time (0 to 100) between minor collections that is the lower bound for the duty cycle when \f3-XX:+CMSIncrementalPacing\fR is enabled\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the \f3-XX:+CMSIncrementalMode\fR option\&.
.TP
-XX:+CMSIncrementalMode
.br
Enables the incremental mode for the CMS collector\&. This option was deprecated in JDK 8 with no replacement, along with other options that start with \f3CMSIncremental\fR\&.
.TP
-XX:CMSIncrementalOffset=\fIpercent\fR
.br
Sets 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 \f3-XX:+CMSIncrementalMode\fR option\&.
.TP
-XX:+CMSIncrementalPacing
.br
Enables 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 \f3-XX:+CMSIncrementalMode\fR option\&.
.TP
-XX:CMSIncrementalSafetyFactor=\fIpercent\fR
.br
Sets 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 \f3-XX:+CMSIncrementalMode\fR option\&.
.TP
-XX:CMSInitiatingPermOccupancyFraction=\fIpercent\fR
.br
R
rgallard 已提交
2063
Sets 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\&.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
.TP
-XX:MaxPermSize=\fIsize\fR
.br
Sets the maximum permanent generation space size (in bytes)\&. This option was deprecated in JDK 8, and superseded by the \f3-XX:MaxMetaspaceSize\fR option\&.
.TP
-XX:PermSize=\fIsize\fR
.br
Sets the space (in bytes) allocated to the permanent generation that triggers a garbage collection if it is exceeded\&. This option was deprecated un JDK 8, and superseded by the \f3-XX:MetaspaceSize\fR option\&.
.TP
-XX:+UseSplitVerifier
.br
Enables 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\&.
.TP
-XX:+UseStringCache
.br
Enables caching of commonly allocated strings\&. This option was removed from JDK 8 with no replacement\&.
.SH PERFORMANCE\ TUNING\ EXAMPLES    
The following examples show how to use experimental tuning flags to either optimize throughput or to provide lower response time\&.
2082
.PP
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
\f3Example 1 Tuning for Higher Throughput\fR
.sp     
.nf     
\f3java \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g  \-Xms26g \-Xmx26g\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
\f3Example 2 Tuning for Lower Response Time\fR
.sp     
.nf     
\f3java \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamp\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
.SH LARGE\ PAGES    
Also 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\&.
.PP
A 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\&.
.PP
However, 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    
Solaris and Linux support large pages\&.
.PP
Solaris 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\&.
.PP
The 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     
.nf     
\f3# cat /proc/meminfo | grep Huge\fP
.fi     
.nf     
\f3HugePages_Total: 0\fP
.fi     
.nf     
\f3HugePages_Free: 0\fP
.fi     
.nf     
\f3Hugepagesize: 2048 kB\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
If 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 \f3root\fR, and then follow these steps:
.TP 0.4i    
1\&.
If you are using the option \f3-XX:+UseSHM\fR (instead of \f3-XX:+UseHugeTLBFS\fR), then increase the \f3SHMMAX\fR value\&. 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     
.nf     
\f3# echo 4294967295 > /proc/sys/kernel/shmmax\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

.TP 0.4i    
2\&.
If you are using the option \f3-XX:+UseSHM\fR or \f3-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     
.nf     
\f3# echo 1536 > /proc/sys/vm/nr_hugepages\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     

2155
.PP
2156
Note
2157
.PP
2158
Note that the values contained in \f3/proc\fR will reset after you reboot your system, so may want to set them in an initialization script (for example, \f3rc\&.local\fR or \f3sysctl\&.conf\fR)\&.
2159
.PP
2160
If you configure (or resize) the OS kernel parameters \f3/proc/sys/kernel/shmmax\fR or \f3/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:
2161
.PP
2162
Java heap
R
rgallard 已提交
2163
.PP
2164
Permanent generation
2165
.PP
2166
Code cache
2167
.PP
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181
The marking bitmap data structure for the parallel GC
.PP
Consequently, if you configure the \f3nr_hugepages\fR parameter to the size of the Java heap, then the JVM can fail in allocating the permanent generation and code cache areas on large pages because these areas are quite large in size\&.
.SH EXIT\ STATUS    
The following exit values are typically returned by the launcher when the launcher is called with the wrong arguments, serious errors, or exceptions thrown by the JVM\&. However, a Java application may choose to return any value by using the API call \f3System\&.exit(exitValue)\fR\&. The values are:
.TP 0.2i    
\(bu
\f30\fR: Successful completion
.TP 0.2i    
\(bu
\f3>0\fR: An error occurred
.SH SEE\ ALSO    
.TP 0.2i    
\(bu
R
rgallard 已提交
2182
javac(1)
2183 2184
.TP 0.2i    
\(bu
R
rgallard 已提交
2185
jdb(1)
2186 2187
.TP 0.2i    
\(bu
R
rgallard 已提交
2188
javah(1)
2189 2190
.TP 0.2i    
\(bu
R
rgallard 已提交
2191
jar(1)
2192 2193 2194 2195 2196 2197 2198
.TP 0.2i    
\(bu
jstat(1)
.RE
.br
'pl 8.5i
'bp