java.1 104.6 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 29 30 31
.\" 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.
.\"
.\" Title: java
.\" Language: English
.\" Date: 03 March 2015
.\" SectDesc: Basic Tools
.\" Software: JDK 8
.\" Arch: generic
.\" Part Number: E38207-04
.\" Doc ID: JSSON
R
rgallard 已提交
32 33
.\"
.if n .pl 99999
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
.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 已提交
55
java \- Launches a Java application\&.
56 57 58 59 60 61
.SH "SYNOPSIS"
.sp
.if n \{\
.RS 4
.\}
.nf
R
rgallard 已提交
62
\fBjava\fR [\fIoptions\fR] \fIclassname\fR [\fIargs\fR]
63 64 65 66 67 68 69 70 71
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.RS 4
.\}
.nf
R
rgallard 已提交
72
\fBjava\fR [\fIoptions\fR] \fB\-jar\fR \fIfilename\fR [\fIargs\fR]
73 74 75 76 77
.fi
.if n \{\
.RE
.\}
.PP
R
rgallard 已提交
78
\fIoptions\fR
79 80 81 82
.RS 4
Command\-line options separated by spaces\&. See Options\&.
.RE
.PP
R
rgallard 已提交
83
\fIclassname\fR
84
.RS 4
R
rgallard 已提交
85
The name of the class to be launched\&.
86 87
.RE
.PP
R
rgallard 已提交
88
\fIfilename\fR
89 90 91 92 93 94
.RS 4
The name of the Java Archive (JAR) file to be called\&. Used only with the
\fB\-jar\fR
option\&.
.RE
.PP
R
rgallard 已提交
95
\fIargs\fR
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
.RS 4
The arguments passed to the
\fBmain()\fR
method separated by spaces\&.
.RE
.SH "DESCRIPTION"
.PP
The
\fBjava\fR
command starts a Java application\&. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class\*(Aqs
\fBmain()\fR
method\&. The method must be declared
\fIpublic\fR
and
\fIstatic\fR, it must not return any value, and it must accept a
\fBString\fR
array as a parameter\&. The method declaration has the following form:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBpublic static void main(String[] args)\fR
 
.fi
.if n \{\
.RE
.\}
.PP
The
\fBjava\fR
command can be used to launch a JavaFX application by loading a class that either has a
\fBmain()\fR
method or that extends
\fBjavafx\&.application\&.Application\fR\&. In the latter case, the launcher constructs an instance of the
\fBApplication\fR
class, calls its
\fBinit()\fR
method, and then calls the
\fBstart(javafx\&.stage\&.Stage)\fR
method\&.
.PP
By default, the first argument that is not an option of the
\fBjava\fR
command is the fully qualified name of the class to be called\&. If the
\fB\-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
\fBMain\-Class\fR
manifest header in its source code\&.
R
rgallard 已提交
145 146 147
.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
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
Arguments after the class file name or the JAR file name are passed to the
\fBmain()\fR
method\&.
.SH "OPTIONS"
.PP
The
\fBjava\fR
command supports a wide range of options that can be divided into the following categories:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
165
Standard Options
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Non\-Standard Options
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
187
Advanced Runtime Options
188 189 190 191 192 193 194 195 196 197
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
198
Advanced JIT Compiler Options
199 200 201 202 203 204 205 206 207 208
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
209
Advanced Serviceability Options
210 211 212 213 214 215 216 217 218 219
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
220
Advanced Garbage Collection Options
221
.RE
R
rgallard 已提交
222 223 224
.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
225 226
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
\fB\-X\fR\&.
R
rgallard 已提交
227
.PP
228 229
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
\fB\-XX\fR\&.
R
rgallard 已提交
230 231 232
.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
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
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
\fB\-XX\fR
options are enabled using the plus sign (\fB\-XX:+\fR\fIOptionName\fR) and disabled using the minus sign (\fB\-XX:\-\fR\fIOptionName\fR)\&.
.PP
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
\fBk\fR
or
\fBK\fR
for kilobytes (KB),
\fBm\fR
or
\fBM\fR
for megabytes (MB),
\fBg\fR
or
\fBG\fR
for gigabytes (GB)\&. For example, to set the size to 8 GB, you can specify either
\fB8g\fR,
\fB8192m\fR,
\fB8388608k\fR, or
\fB8589934592\fR
as the argument\&. If you are expected to specify the percentage, use a number from 0 to 1 (for example, specify
\fB0\&.25\fR
for 25%)\&.
.SS "Standard Options"
R
rgallard 已提交
258 259
.PP
These are the most commonly used options that are supported by all implementations of the JVM\&.
260 261 262 263 264 265 266 267 268 269 270 271 272 273
.PP
\-agentlib:\fIlibname\fR[=\fIoptions\fR]
.RS 4
Loads the specified native agent library\&. After the library name, a comma\-separated list of options specific to the library can be used\&.
.sp
If the option
\fB\-agentlib:foo\fR
is specified, then the JVM attempts to load the library named
\fBlibfoo\&.so\fR
in the location specified by the
\fBLD_LIBRARY_PATH\fR
system variable (on OS X this variable is
\fBDYLD_LIBRARY_PATH\fR)\&.
.sp
R
rgallard 已提交
274
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:
275 276 277 278 279 280 281 282 283 284 285
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-agentlib:hprof=cpu=samples,interval=20,depth=3\fR
 
.fi
.if n \{\
.RE
.\}
R
rgallard 已提交
286
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:
287 288 289 290 291 292 293 294 295 296 297
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-agentlib:jdwp=transport=dt_socket,server=y,address=8000\fR
 
.fi
.if n \{\
.RE
.\}
R
rgallard 已提交
298
For more information about the native agent libraries, refer to the following:
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The
\fBjava\&.lang\&.instrument\fR
package description at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package\-summary\&.html
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
321
Agent Command Line Options in the JVM Tools Interface guide at http://docs\&.oracle\&.com/javase/8/docs/platform/jvmti/jvmti\&.html#starting
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
.RE
.RE
.PP
\-agentpath:\fIpathname\fR[=\fIoptions\fR]
.RS 4
Loads the native agent library specified by the absolute path name\&. This option is equivalent to
\fB\-agentlib\fR
but uses the full path and file name of the library\&.
.RE
.PP
\-client
.RS 4
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\&.
.sp
For default JVM selection, see Server\-Class Machine Detection at
http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html
.RE
.PP
\-D\fIproperty\fR=\fIvalue\fR
.RS 4
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
\fB\-Dfoo="foo bar"\fR)\&.
.RE
.PP
\-d32
.RS 4
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\&.
.RE
.PP
\-d64
.RS 4
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\&.
.sp
Currently only the Java HotSpot Server VM supports 64\-bit operation, and the
\fB\-server\fR
option is implicit with the use of
\fB\-d64\fR\&. The
\fB\-client\fR
option is ignored with the use of
\fB\-d64\fR\&. This is subject to change in a future release\&.
.RE
.PP
\-disableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
371
.br
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
\-da[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
.RS 4
Disables assertions\&. By default, assertions are disabled in all packages and classes\&.
.sp
With no arguments,
\fB\-disableassertions\fR
(\fB\-da\fR) disables assertions in all packages and classes\&. With the
\fIpackagename\fR
argument ending in
\fB\&.\&.\&.\fR, the switch disables assertions in the specified package and any subpackages\&. If the argument is simply
\fB\&.\&.\&.\fR, then the switch disables assertions in the unnamed package in the current working directory\&. With the
\fIclassname\fR
argument, the switch disables assertions in the specified class\&.
.sp
The
\fB\-disableassertions\fR
(\fB\-da\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to disable assertions in all classes except for system classes\&. The
\fB\-disablesystemassertions\fR
option enables you to disable assertions in all system classes\&.
.sp
To explicitly enable assertions in specific packages or classes, use the
\fB\-enableassertions\fR
(\fB\-ea\fR) option\&. Both options can be used at the same time\&. For example, to run the
\fBMyClass\fR
application with assertions enabled in package
\fBcom\&.wombat\&.fruitbat\fR
(and any subpackages) but disabled in class
\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
.sp
.if n \{\
.RS 4
.\}
404
.nf
405 406
\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR
 
407
.fi
408 409 410 411 412 413
.if n \{\
.RE
.\}
.RE
.PP
\-disablesystemassertions
R
rgallard 已提交
414
.br
415 416
\-dsa
.RS 4
R
rgallard 已提交
417
Disables assertions in all system classes\&.
418 419 420
.RE
.PP
\-enableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
421
.br
422 423
\-ea[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
.RS 4
424
Enables assertions\&. By default, assertions are disabled in all packages and classes\&.
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
.sp
With no arguments,
\fB\-enableassertions\fR
(\fB\-ea\fR) enables assertions in all packages and classes\&. With the
\fIpackagename\fR
argument ending in
\fB\&.\&.\&.\fR, the switch enables assertions in the specified package and any subpackages\&. If the argument is simply
\fB\&.\&.\&.\fR, then the switch enables assertions in the unnamed package in the current working directory\&. With the
\fIclassname\fR
argument, the switch enables assertions in the specified class\&.
.sp
The
\fB\-enableassertions\fR
(\fB\-ea\fR) option applies to all class loaders and to system classes (which do not have a class loader)\&. There is one exception to this rule: if the option is provided with no arguments, then it does not apply to system classes\&. This makes it easy to enable assertions in all classes except for system classes\&. The
\fB\-enablesystemassertions\fR
option provides a separate switch to enable assertions in all system classes\&.
.sp
To explicitly disable assertions in specific packages or classes, use the
\fB\-disableassertions\fR
(\fB\-da\fR) option\&. If a single command contains multiple instances of these switches, then they are processed in order before loading any classes\&. For example, to run the
\fBMyClass\fR
application with assertions enabled only in package
\fBcom\&.wombat\&.fruitbat\fR
(and any subpackages) but disabled in class
\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-enablesystemassertions
464
.br
465 466
\-esa
.RS 4
R
rgallard 已提交
467
Enables assertions in all system classes\&.
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
.RE
.PP
\-help
.br
\-?
.RS 4
Displays usage information for the
\fBjava\fR
command without actually running the JVM\&.
.RE
.PP
\-jar \fIfilename\fR
.RS 4
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
\fBMain\-Class:\fR\fIclassname\fR
that defines the class with the
\fBpublic static void main(String[] args)\fR
method that serves as your application\*(Aqs starting point\&.
.sp
When you use the
\fB\-jar\fR
option, the specified JAR file is the source of all user classes, and other class path settings are ignored\&.
.sp
R
rgallard 已提交
493
For more information about JAR files, see the following resources:
494 495 496 497 498 499 500 501 502
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
503
jar(1)
504 505 506 507 508 509 510 511 512 513
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
R
rgallard 已提交
514
The Java Archive (JAR) Files guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/jar/index\&.html
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Lesson: Packaging Programs in JAR Files at

http://docs\&.oracle\&.com/javase/tutorial/deployment/jar/index\&.html
.RE
.RE
.PP
\-javaagent:\fIjarpath\fR[=\fIoptions\fR]
.RS 4
Loads the specified Java programming language agent\&. For more information about instrumenting Java applications, see the
\fBjava\&.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
.RE
.PP
\-jre\-restrict\-search
.RS 4
Includes user\-private JREs in the version search\&.
.RE
.PP
\-no\-jre\-restrict\-search
.RS 4
Excludes user\-private JREs from the version search\&.
.RE
.PP
\-server
.RS 4
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\&.
.sp
For default JVM selection, see Server\-Class Machine Detection at
http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html
.RE
.PP
\-showversion
.RS 4
Displays version information and continues execution of the application\&. This option is equivalent to the
\fB\-version\fR
option except that the latter instructs the JVM to exit after displaying version information\&.
.RE
.PP
\-splash:\fIimgname\fR
.RS 4
Shows the splash screen with the image specified by
\fIimgname\fR\&. For example, to show the
\fBsplash\&.gif\fR
file from the
\fBimages\fR
directory when starting your application, use the following option:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-splash:images/splash\&.gif\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-verbose:class
.RS 4
R
rgallard 已提交
586
Displays information about each loaded class\&.
587 588 589 590
.RE
.PP
\-verbose:gc
.RS 4
R
rgallard 已提交
591
Displays information about each garbage collection (GC) event\&.
592 593 594 595
.RE
.PP
\-verbose:jni
.RS 4
R
rgallard 已提交
596
Displays information about the use of native methods and other Java Native Interface (JNI) activity\&.
597 598 599 600 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 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
.RE
.PP
\-version
.RS 4
Displays version information and then exits\&. This option is equivalent to the
\fB\-showversion\fR
option except that the latter does not instruct the JVM to exit after displaying version information\&.
.RE
.PP
\-version:\fIrelease\fR
.RS 4
Specifies the release version to be used for running the application\&. If the version of the
\fBjava\fR
command called does not meet this specification and an appropriate implementation is found on the system, then the appropriate implementation will be used\&.
.sp
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:
\fB1\&.\fR\fIx\fR\fB\&.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 (\fB+\fR) to designate this version or later, or a part of a version string followed by an asterisk (\fB*\fR) to designate any version string with a matching prefix\&. Version strings and ranges can be combined using a space for a logical
\fIOR\fR
combination, or an ampersand (\fB&\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
.if n \{\
.RS 4
.\}
.nf
\fB\-version:"1\&.6\&.0_13 1\&.6* & 1\&.6\&.0_10+"\fR
 
.fi
.if n \{\
.RE
.\}
Quotation marks are necessary only if there are spaces in the
\fIrelease\fR
parameter\&.
.sp
R
rgallard 已提交
644
For JAR files, the preference is to specify version requirements in the JAR file manifest rather than on the command line\&.
645 646 647
.RE
.SS "Non\-Standard Options"
.PP
R
rgallard 已提交
648
These options are general purpose options that are specific to the Java HotSpot Virtual Machine\&.
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
.PP
\-X
.RS 4
Displays help for all available
\fB\-X\fR
options\&.
.RE
.PP
\-Xbatch
.RS 4
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
\fB\-Xbatch\fR
flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed\&.
.sp
This option is equivalent to
\fB\-XX:\-BackgroundCompilation\fR\&.
.RE
.PP
\-Xbootclasspath:\fIpath\fR
.RS 4
R
rgallard 已提交
669
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\&.
670 671 672 673 674 675 676
.sp
Do not deploy applications that use this option to override a class in
\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
.RE
.PP
\-Xbootclasspath/a:\fIpath\fR
.RS 4
R
rgallard 已提交
677
Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to append to the end of the default bootstrap class path\&.
678 679 680 681 682 683 684
.sp
Do not deploy applications that use this option to override a class in
\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
.RE
.PP
\-Xbootclasspath/p:\fIpath\fR
.RS 4
R
rgallard 已提交
685
Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to prepend to the front of the default bootstrap class path\&.
686 687 688 689 690 691 692
.sp
Do not deploy applications that use this option to override a class in
\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
.RE
.PP
\-Xcheck:jni
.RS 4
R
rgallard 已提交
693
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\&.
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
.RE
.PP
\-Xcomp
.RS 4
Forces compilation of methods on first invocation\&. By default, the Client VM (\fB\-client\fR) performs 1,000 interpreted method invocations and the Server VM (\fB\-server\fR) performs 10,000 interpreted method invocations to gather information for efficient compilation\&. Specifying the
\fB\-Xcomp\fR
option disables interpreted method invocations to increase compilation performance at the expense of efficiency\&.
.sp
You can also change the number of interpreted method invocations before compilation using the
\fB\-XX:CompileThreshold\fR
option\&.
.RE
.PP
\-Xdebug
.RS 4
R
rgallard 已提交
709
Does nothing\&. Provided for backward compatibility\&.
710 711 712 713
.RE
.PP
\-Xdiag
.RS 4
R
rgallard 已提交
714
Shows additional diagnostic messages\&.
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
.RE
.PP
\-Xfuture
.RS 4
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\&.
.RE
.PP
\-Xint
.RS 4
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\&.
.RE
.PP
\-Xinternalversion
.RS 4
Displays more detailed JVM version information than the
\fB\-version\fR
option, and then exits\&.
.RE
.PP
\-Xloggc:\fIfilename\fR
.RS 4
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
\fB\-verbose:gc\fR
with the time elapsed since the first GC event preceding each logged event\&. The
\fB\-Xloggc\fR
option overrides
\fB\-verbose:gc\fR
if both are given with the same
\fBjava\fR
command\&.
.sp
R
rgallard 已提交
746
Example:
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 779 780 781 782 783 784 785 786 787 788 789 790 791 792
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xloggc:garbage\-collection\&.log\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-Xmaxjitcodesize=\fIsize\fR
.RS 4
Specifies the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option
\fB\-XX:\-TieredCompilation\fR, then the default size is 48 MB:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xmaxjitcodesize=240m\fR
 
.fi
.if n \{\
.RE
.\}
This option is equivalent to
\fB\-XX:ReservedCodeCacheSize\fR\&.
.RE
.PP
\-Xmixed
.RS 4
R
rgallard 已提交
793
Executes all bytecode by the interpreter except for hot methods, which are compiled to native code\&.
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
.RE
.PP
\-Xmn\fIsize\fR
.RS 4
Sets the initial and maximum size (in bytes) of the heap for the young generation (nursery)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&.
.sp
R
rgallard 已提交
812
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\&.
813
.sp
R
rgallard 已提交
814
The following examples show how to set the initial and maximum size of young generation to 256 MB using various units:
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xmn256m\fR
\fB\-Xmn262144k\fR
\fB\-Xmn268435456\fR
 
.fi
.if n \{\
.RE
.\}
Instead of the
\fB\-Xmn\fR
option to set both the initial and maximum size of the heap for the young generation, you can use
\fB\-XX:NewSize\fR
to set the initial size and
\fB\-XX:MaxNewSize\fR
to set the maximum size\&.
.RE
.PP
\-Xms\fIsize\fR
.RS 4
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
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&.
.sp
R
rgallard 已提交
853
The following examples show how to set the size of allocated memory to 6 MB using various units:
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xms6291456\fR
\fB\-Xms6144k\fR
\fB\-Xms6m\fR
 
.fi
.if n \{\
.RE
.\}
If you do not set this option, then the initial size will be set as the sum of the sizes allocated for the old generation and the young generation\&. The initial size of the heap for the young generation can be set using the
\fB\-Xmn\fR
option or the
\fB\-XX:NewSize\fR
option\&.
.RE
.PP
\-Xmx\fIsize\fR
.RS 4
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
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,
\fB\-Xms\fR
and
\fB\-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\&.
.sp
R
rgallard 已提交
896
The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xmx83886080\fR
\fB\-Xmx81920k\fR
\fB\-Xmx80m\fR
 
.fi
.if n \{\
.RE
.\}
The
\fB\-Xmx\fR
option is equivalent to
\fB\-XX:MaxHeapSize\fR\&.
.RE
.PP
\-Xnoclassgc
.RS 4
R
rgallard 已提交
918
Disables garbage collection (GC) of classes\&. This can save some GC time, which shortens interruptions during the application run\&.
919 920 921 922 923 924 925 926
.sp
When you specify
\fB\-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\&.
.RE
.PP
\-Xprof
.RS 4
R
rgallard 已提交
927
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\&.
928 929 930 931
.RE
.PP
\-Xrs
.RS 4
R
rgallard 已提交
932
Reduces the use of operating system signals by the JVM\&.
933
.sp
R
rgallard 已提交
934
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\&.
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
.sp
The JVM catches signals to implement shutdown hooks for unexpected termination\&. The JVM uses
\fBSIGHUP\fR,
\fBSIGINT\fR, and
\fBSIGTERM\fR
to initiate the running of shutdown hooks\&.
.sp
The JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes\&. The JVM uses
\fBSIGQUIT\fR
to perform thread dumps\&.
.sp
Applications embedding the JVM frequently need to trap signals such as
\fBSIGINT\fR
or
\fBSIGTERM\fR, which can lead to interference with the JVM signal handlers\&. The
\fB\-Xrs\fR
option is available to address this issue\&. When
\fB\-Xrs\fR
is used, the signal masks for
\fBSIGINT\fR,
\fBSIGTERM\fR,
\fBSIGHUP\fR, and
\fBSIGQUIT\fR
are not changed by the JVM, and signal handlers for these signals are not installed\&.
.sp
There are two consequences of specifying
\fB\-Xrs\fR:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBSIGQUIT\fR
thread dumps are not available\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
User code is responsible for causing shutdown hooks to run, for example, by calling
\fBSystem\&.exit()\fR
when the JVM is to be terminated\&.
.RE
.RE
.PP
\-Xshare:\fImode\fR
.RS 4
Sets the class data sharing (CDS) mode\&. Possible
\fImode\fR
arguments for this option include the following:
.PP
R
rgallard 已提交
995
auto
996 997 998 999
.RS 4
Use CDS if possible\&. This is the default value for Java HotSpot 32\-Bit Client VM\&.
.RE
.PP
R
rgallard 已提交
1000
on
1001 1002 1003 1004
.RS 4
Require the use of CDS\&. Print an error message and exit if class data sharing cannot be used\&.
.RE
.PP
R
rgallard 已提交
1005
off
1006 1007 1008 1009
.RS 4
Do not use CDS\&. This is the default value for Java HotSpot 32\-Bit Server VM, Java HotSpot 64\-Bit Client VM, and Java HotSpot 64\-Bit Server VM\&.
.RE
.PP
R
rgallard 已提交
1010
dump
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
.RS 4
Manually generate the CDS archive\&. Specify the application class path as described in "Setting the Class Path "\&.
.sp
You should regenerate the CDS archive with each new JDK release\&.
.RE
.RE
.PP
\-XshowSettings:\fIcategory\fR
.RS 4
Shows settings and continues\&. Possible
\fIcategory\fR
arguments for this option include the following:
.PP
R
rgallard 已提交
1024
all
1025
.RS 4
R
rgallard 已提交
1026
Shows all categories of settings\&. This is the default value\&.
1027 1028
.RE
.PP
R
rgallard 已提交
1029
locale
1030
.RS 4
R
rgallard 已提交
1031
Shows settings related to locale\&.
1032 1033
.RE
.PP
R
rgallard 已提交
1034
properties
1035
.RS 4
R
rgallard 已提交
1036
Shows settings related to system properties\&.
1037 1038
.RE
.PP
R
rgallard 已提交
1039
vm
1040
.RS 4
R
rgallard 已提交
1041
Shows the settings of the JVM\&.
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 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
.RE
.RE
.PP
\-Xss\fIsize\fR
.RS 4
Sets the thread stack size (in bytes)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate KB,
\fBm\fR
or
\fBM\fR
to indicate MB,
\fBg\fR
or
\fBG\fR
to indicate GB\&. The default value depends on the platform:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/ARM (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/i386 (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/x64 (64\-bit): 1024 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
OS X (64\-bit): 1024 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Oracle Solaris/i386 (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Oracle Solaris/x64 (64\-bit): 1024 KB
.RE
.sp
R
rgallard 已提交
1127
The following examples set the thread stack size to 1024 KB in different units:
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-Xss1m\fR
\fB\-Xss1024k\fR
\fB\-Xss1048576\fR
 
.fi
.if n \{\
.RE
.\}
This option is equivalent to
\fB\-XX:ThreadStackSize\fR\&.
.RE
.PP
\-Xusealtsigs
.RS 4
Use alternative signals instead of
\fBSIGUSR1\fR
and
\fBSIGUSR2\fR
for JVM internal signals\&. This option is equivalent to
\fB\-XX:+UseAltSigs\fR\&.
.RE
.PP
\-Xverify:\fImode\fR
.RS 4
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:
.PP
R
rgallard 已提交
1161
none
1162
.RS 4
R
rgallard 已提交
1163
Do not verify the bytecode\&. This reduces startup time and also reduces the protection provided by Java\&.
1164 1165
.RE
.PP
R
rgallard 已提交
1166
remote
1167 1168 1169 1170 1171 1172
.RS 4
Verify those classes that are not loaded by the bootstrap class loader\&. This is the default behavior if you do not specify the
\fB\-Xverify\fR
option\&.
.RE
.PP
R
rgallard 已提交
1173
all
1174
.RS 4
R
rgallard 已提交
1175
Verify all classes\&.
1176 1177 1178 1179
.RE
.RE
.SS "Advanced Runtime Options"
.PP
R
rgallard 已提交
1180
These options control the runtime behavior of the Java HotSpot VM\&.
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 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 1282 1283 1284 1285 1286 1287
.PP
\-XX:+CheckEndorsedAndExtDirs
.RS 4
Enables the option to prevent the
\fBjava\fR
command from running a Java application if it uses the endorsed\-standards override mechanism or the extension mechanism\&. This option checks if an application is using one of these mechanisms by checking the following:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The
\fBjava\&.ext\&.dirs\fR
or
\fBjava\&.endorsed\&.dirs\fR
system property is set\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The
\fBlib/endorsed\fR
directory exists and is not empty\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The
\fBlib/ext\fR
directory contains any JAR files other than those of the JDK\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
The system\-wide platform\-specific extension directory contains any JAR files\&.
.RE
.RE
.PP
\-XX:+DisableAttachMechanism
.RS 4
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
\fBjcmd\fR,
\fBjstack\fR,
\fBjmap\fR, and
\fBjinfo\fR\&.
.RE
.PP
\-XX:ErrorFile=\fIfilename\fR
.RS 4
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
\fBhs_err_pid\fR\fIpid\fR\fB\&.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
\fB%p\fR):
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:ErrorFile=\&./hs_err_pid%p\&.log\fR
 
.fi
.if n \{\
.RE
.\}
The following example shows how to set the error log to
\fB/var/log/java/java_error\&.log\fR:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:ErrorFile=/var/log/java/java_error\&.log\fR
 
.fi
.if n \{\
.RE
.\}
If the file cannot be created in the specified directory (due to insufficient space, permission problem, or another issue), then the file is created in the temporary directory for the operating system\&. The temporary directory is
\fB/tmp\fR\&.
.RE
.PP
\-XX:+FailOverToOldVerifier
.RS 4
1288
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\&.
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
.RE
.PP
\-XX:LargePageSizeInBytes=\fIsize\fR
.RS 4
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
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically\&.
.sp
R
rgallard 已提交
1309
The following example illustrates how to set the large page size to 4 megabytes (MB):
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:LargePageSizeInBytes=4m\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxDirectMemorySize=\fIsize\fR
.RS 4
Sets the maximum total size (in bytes) of the New I/O (the
\fBjava\&.nio\fR
package) direct\-buffer allocations\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\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\&.
.sp
R
rgallard 已提交
1341
The following examples illustrate how to set the NIO size to 1024 KB in different units:
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxDirectMemorySize=1m\fR
\fB\-XX:MaxDirectMemorySize=1024k\fR
\fB\-XX:MaxDirectMemorySize=1048576\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:NativeMemoryTracking=\fImode\fR
.RS 4
Specifies the mode for tracking JVM native memory usage\&. Possible
\fImode\fR
arguments for this option include the following:
.PP
R
rgallard 已提交
1363
off
1364 1365 1366 1367 1368 1369
.RS 4
Do not track JVM native memory usage\&. This is the default behavior if you do not specify the
\fB\-XX:NativeMemoryTracking\fR
option\&.
.RE
.PP
R
rgallard 已提交
1370
summary
1371
.RS 4
R
rgallard 已提交
1372
Only track memory usage by JVM subsystems, such as Java heap, class, code, and thread\&.
1373 1374
.RE
.PP
R
rgallard 已提交
1375
detail
1376 1377 1378 1379 1380 1381 1382 1383
.RS 4
In addition to tracking memory usage by JVM subsystems, track memory usage by individual
\fBCallSite\fR, individual virtual memory region and its committed regions\&.
.RE
.RE
.PP
\-XX:ObjectAlignmentInBytes=\fIalignment\fR
.RS 4
1384
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\&.
1385
.sp
1386
The heap size limit in bytes is calculated as:
1387 1388 1389
.sp
\fB4GB * ObjectAlignmentInBytes\fR
.sp
1390
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\&.
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 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
.RE
.PP
\-XX:OnError=\fIstring\fR
.RS 4
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\&.
.sp
The following example shows how the
\fB\-XX:OnError\fR
option can be used to run the
\fBgcore\fR
command to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the
\fB%p\fR
designates the current process):
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:OnError="gcore %p;dbx \- %p"\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:OnOutOfMemoryError=\fIstring\fR
.RS 4
Sets a custom command or a series of semicolon\-separated commands to run when an
\fBOutOfMemoryError\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
\fB\-XX:OnError\fR
option\&.
.RE
.PP
\-XX:+PerfDataSaveToFile
.RS 4
If enabled, saves
jstat(1) binary data when the Java application exits\&. This binary data is saved in a file named
\fBhsperfdata_\fR\fI<pid>\fR, where
\fI<pid>\fR
is the process identifier of the Java application you ran\&. Use
\fBjstat\fR
to display the performance data contained in this file as follows:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBjstat \-class file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR
\fBjstat \-gc file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+PrintCommandLineFlags
.RS 4
1450
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\&.
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
.RE
.PP
\-XX:+PrintNMTStatistics
.RS 4
Enables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see
\fB\-XX:NativeMemoryTracking\fR)\&. By default, this option is disabled and native memory tracking data is not printed\&.
.RE
.PP
\-XX:+RelaxAccessControlCheck
.RS 4
1461
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\&.
1462 1463 1464 1465
.RE
.PP
\-XX:+ShowMessageBoxOnError
.RS 4
R
rgallard 已提交
1466
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\&.
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
.RE
.PP
\-XX:ThreadStackSize=\fIsize\fR
.RS 4
Sets the thread stack size (in bytes)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default value depends on the platform:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/ARM (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/i386 (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Linux/x64 (64\-bit): 1024 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
OS X (64\-bit): 1024 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Oracle Solaris/i386 (32\-bit): 320 KB
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Oracle Solaris/x64 (64\-bit): 1024 KB
.RE
.sp
R
rgallard 已提交
1551
The following examples show how to set the thread stack size to 1024 KB in different units:
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:ThreadStackSize=1m\fR
\fB\-XX:ThreadStackSize=1024k\fR
\fB\-XX:ThreadStackSize=1048576\fR
 
.fi
.if n \{\
.RE
.\}
This option is equivalent to
\fB\-Xss\fR\&.
.RE
.PP
\-XX:+TraceClassLoading
.RS 4
R
rgallard 已提交
1571
Enables tracing of classes as they are loaded\&. By default, this option is disabled and classes are not traced\&.
1572 1573 1574 1575
.RE
.PP
\-XX:+TraceClassLoadingPreorder
.RS 4
R
rgallard 已提交
1576
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\&.
1577 1578 1579 1580
.RE
.PP
\-XX:+TraceClassResolution
.RS 4
R
rgallard 已提交
1581
Enables tracing of constant pool resolutions\&. By default, this option is disabled and constant pool resolutions are not traced\&.
1582 1583 1584 1585
.RE
.PP
\-XX:+TraceClassUnloading
.RS 4
R
rgallard 已提交
1586
Enables tracing of classes as they are unloaded\&. By default, this option is disabled and classes are not traced\&.
1587 1588 1589 1590
.RE
.PP
\-XX:+TraceLoaderConstraints
.RS 4
1591
Enables tracing of the loader constraints recording\&. By default, this option is disabled and loader constraints recording is not traced\&.
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
.RE
.PP
\-XX:+UseAltSigs
.RS 4
Enables the use of alternative signals instead of
\fBSIGUSR1\fR
and
\fBSIGUSR2\fR
for JVM internal signals\&. By default, this option is disabled and alternative signals are not used\&. This option is equivalent to
\fB\-Xusealtsigs\fR\&.
.RE
.PP
\-XX:\-UseBiasedLocking
.RS 4
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
.sp
1608
By default, this option is enabled\&.
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
.RE
.PP
\-XX:\-UseCompressedOops
.RS 4
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\&.
.sp
It is also possible to use compressed pointers when Java heap sizes are greater than 32GB\&. See the
\fB\-XX:ObjectAlignmentInBytes\fR
option\&.
.RE
.PP
\-XX:+UseHugeTLBFS
.RS 4
This option for Linux is the equivalent of specifying
\fB\-XX:+UseLargePages\fR\&. This option is disabled by default\&. This option pre\-allocates all large pages up\-front, when memory is reserved; consequently the JVM cannot dynamically grow or shrink large pages memory areas; see
\fB\-XX:UseTransparentHugePages\fR
if you want this behavior\&.
.sp
For more information, see "Large Pages"\&.
.RE
.PP
\-XX:+UseLargePages
.RS 4
1632
Enables the use of large page memory\&. By default, this option is disabled and large page memory is not used\&.
1633 1634 1635 1636 1637 1638
.sp
For more information, see "Large Pages"\&.
.RE
.PP
\-XX:+UseMembar
.RS 4
1639
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\&.)
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655
.RE
.PP
\-XX:+UsePerfData
.RS 4
Enables the
\fBperfdata\fR
feature\&. This option is enabled by default to allow JVM monitoring and performance testing\&. Disabling it suppresses the creation of the
\fBhsperfdata_userid\fR
directories\&. To disable the
\fBperfdata\fR
feature, specify
\fB\-XX:\-UsePerfData\fR\&.
.RE
.PP
\-XX:+UseTransparentHugePages
.RS 4
1656
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\&.
1657 1658 1659 1660 1661 1662
.sp
For more information, see "Large Pages"\&.
.RE
.PP
\-XX:+AllowUserSignalHandlers
.RS 4
R
rgallard 已提交
1663
Enables installation of signal handlers by the application\&. By default, this option is disabled and the application is not allowed to install signal handlers\&.
1664 1665 1666 1667 1668 1669 1670
.RE
.SS "Advanced JIT Compiler Options"
.PP
These options control the dynamic just\-in\-time (JIT) compilation performed by the Java HotSpot VM\&.
.PP
\-XX:+AggressiveOpts
.RS 4
R
rgallard 已提交
1671
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\&.
1672 1673 1674 1675
.RE
.PP
\-XX:AllocateInstancePrefetchLines=\fIlines\fR
.RS 4
R
rgallard 已提交
1676
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:
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:AllocateInstancePrefetchLines=1\fR
 
.fi
.if n \{\
.RE
.\}
1688
Only the Java HotSpot Server VM supports this option\&.
1689 1690 1691 1692
.RE
.PP
\-XX:AllocatePrefetchDistance=\fIsize\fR
.RS 4
1693
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\&.
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
.sp
Negative values denote that prefetch distance is chosen based on the platform\&. Positive values are bytes to prefetch\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default value is set to \-1\&.
.sp
1709
The following example shows how to set the prefetch distance to 1024 bytes:
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:AllocatePrefetchDistance=1024\fR
 
.fi
.if n \{\
.RE
.\}
1721
Only the Java HotSpot Server VM supports this option\&.
1722 1723 1724 1725
.RE
.PP
\-XX:AllocatePrefetchInstr=\fIinstruction\fR
.RS 4
1726
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:
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:AllocatePrefetchInstr=0\fR
 
.fi
.if n \{\
.RE
.\}
1738
Only the Java HotSpot Server VM supports this option\&.
1739 1740 1741 1742
.RE
.PP
\-XX:AllocatePrefetchLines=\fIlines\fR
.RS 4
1743
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\&.
1744
.sp
1745
The following example shows how to set the number of loaded cache lines to 5:
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:AllocatePrefetchLines=5\fR
 
.fi
.if n \{\
.RE
.\}
1757
Only the Java HotSpot Server VM supports this option\&.
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
.RE
.PP
\-XX:AllocatePrefetchStepSize=\fIsize\fR
.RS 4
Sets the step size (in bytes) for sequential prefetch instructions\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. By default, the step size is set to 16 bytes:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:AllocatePrefetchStepSize=16\fR
 
.fi
.if n \{\
.RE
.\}
1786
Only the Java HotSpot Server VM supports this option\&.
1787 1788 1789 1790 1791 1792 1793 1794
.RE
.PP
\-XX:AllocatePrefetchStyle=\fIstyle\fR
.RS 4
Sets the generated code style for prefetch instructions\&. The
\fIstyle\fR
argument is an integer from 0 to 3:
.PP
1795
0
1796
.RS 4
1797
Do not generate prefetch instructions\&.
1798 1799
.RE
.PP
1800
1
1801
.RS 4
1802
Execute prefetch instructions after each allocation\&. This is the default parameter\&.
1803 1804
.RE
.PP
1805
2
1806 1807 1808 1809
.RS 4
Use the thread\-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed\&.
.RE
.PP
1810
3
1811
.RS 4
1812
Use BIS instruction on SPARC for allocation prefetch\&.
1813 1814
.RE
.sp
1815
Only the Java HotSpot Server VM supports this option\&.
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827
.RE
.PP
\-XX:+BackgroundCompilation
.RS 4
Enables background compilation\&. This option is enabled by default\&. To disable background compilation, specify
\fB\-XX:\-BackgroundCompilation\fR
(this is equivalent to specifying
\fB\-Xbatch\fR)\&.
.RE
.PP
\-XX:CICompilerCount=\fIthreads\fR
.RS 4
R
rgallard 已提交
1828
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:
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CICompilerCount=2\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:CodeCacheMinimumFreeSpace=\fIsize\fR
.RS 4
Sets the minimum free space (in bytes) required for compilation\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\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
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CodeCacheMinimumFreeSpace=1024m\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:CompileCommand=\fIcommand\fR,\fImethod\fR[,\fIoption\fR]
.RS 4
Specifies a command to perform on a method\&. For example, to exclude the
\fBindexOf()\fR
method of the
\fBString\fR
class from being compiled, use the following:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand=exclude,java/lang/String\&.indexOf\fR
 
.fi
.if n \{\
.RE
.\}
Note that the full class name is specified, including all packages and subpackages separated by a slash (\fB/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the
\fB\-XX:+PrintCompilation\fR
and
\fB\-XX:+LogCompilation\fR
options:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand=exclude,java\&.lang\&.String::indexOf\fR
 
.fi
.if n \{\
.RE
.\}
If the method is specified without the signature, the command will be applied to all methods with the specified name\&. However, you can also specify the signature of the method in the class file format\&. In this case, you should enclose the arguments in quotation marks, because otherwise the shell treats the semicolon as command end\&. For example, if you want to exclude only the
\fBindexOf(String)\fR
method of the
\fBString\fR
class from being compiled, use the following:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand="exclude,java/lang/String\&.indexOf,(Ljava/lang/String;)I"\fR
 
.fi
.if n \{\
.RE
.\}
You can also use the asterisk (*) as a wildcard for class and method names\&. For example, to exclude all
\fBindexOf()\fR
methods in all classes from being compiled, use the following:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand=exclude,*\&.indexOf\fR
 
.fi
.if n \{\
.RE
.\}
The commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell\&. You can pass arguments to
\fB\-XX:CompileCommand\fR
using spaces as separators by enclosing the argument in quotation marks:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand="exclude java/lang/String indexOf"\fR
 
.fi
.if n \{\
.RE
.\}
Note that after parsing the commands passed on the command line using the
\fB\-XX:CompileCommand\fR
options, the JIT compiler then reads commands from the
\fB\&.hotspot_compiler\fR
file\&. You can add commands to this file or specify a different file using the
\fB\-XX:CompileCommandFile\fR
option\&.
.sp
To add several commands, either specify the
\fB\-XX:CompileCommand\fR
option multiple times, or separate each argument with the newline separator (\fB\en\fR)\&. The following commands are available:
.PP
1960
break
1961
.RS 4
1962
Set a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method\&.
1963 1964
.RE
.PP
R
rgallard 已提交
1965
compileonly
1966 1967 1968 1969 1970 1971
.RS 4
Exclude all methods from compilation except for the specified method\&. As an alternative, you can use the
\fB\-XX:CompileOnly\fR
option, which allows to specify several methods\&.
.RE
.PP
R
rgallard 已提交
1972
dontinline
1973
.RS 4
R
rgallard 已提交
1974
Prevent inlining of the specified method\&.
1975 1976
.RE
.PP
R
rgallard 已提交
1977
exclude
1978
.RS 4
R
rgallard 已提交
1979
Exclude the specified method from compilation\&.
1980 1981
.RE
.PP
R
rgallard 已提交
1982
help
1983 1984 1985 1986 1987 1988
.RS 4
Print a help message for the
\fB\-XX:CompileCommand\fR
option\&.
.RE
.PP
R
rgallard 已提交
1989
inline
1990
.RS 4
R
rgallard 已提交
1991
Attempt to inline the specified method\&.
1992 1993
.RE
.PP
R
rgallard 已提交
1994
log
1995 1996 1997 1998 1999 2000
.RS 4
Exclude compilation logging (with the
\fB\-XX:+LogCompilation\fR
option) for all methods except for the specified method\&. By default, logging is performed for all compiled methods\&.
.RE
.PP
2001
option
2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
.RS 4
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
\fBBlockLayoutByFrequency\fR
option for the
\fBappend()\fR
method of the
\fBStringBuffer\fR
class, use the following:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileCommand=option,java/lang/StringBuffer\&.append,BlockLayoutByFrequency\fR
 
.fi
.if n \{\
.RE
.\}
2021
You can specify multiple compilation options, separated by commas or spaces\&.
2022 2023
.RE
.PP
R
rgallard 已提交
2024
print
2025
.RS 4
R
rgallard 已提交
2026
Print generated assembler code after compilation of the specified method\&.
2027 2028
.RE
.PP
R
rgallard 已提交
2029
quiet
2030 2031 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 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 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
.RS 4
Do not print the compile commands\&. By default, the commands that you specify with the \-\fBXX:CompileCommand\fR
option are printed; for example, if you exclude from compilation the
\fBindexOf()\fR
method of the
\fBString\fR
class, then the following will be printed to standard output:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBCompilerOracle: exclude java/lang/String\&.indexOf\fR
 
.fi
.if n \{\
.RE
.\}
You can suppress this by specifying the
\fB\-XX:CompileCommand=quiet\fR
option before other
\fB\-XX:CompileCommand\fR
options\&.
.RE
.RE
.PP
\-XX:CompileCommandFile=\fIfilename\fR
.RS 4
Sets the file from which JIT compiler commands are read\&. By default, the
\fB\&.hotspot_compiler\fR
file is used to store commands performed by the JIT compiler\&.
.sp
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
\fBtoString()\fR
method of the
\fBString\fR
class:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBprint java/lang/String toString\fR
 
.fi
.if n \{\
.RE
.\}
For more information about specifying the commands for the JIT compiler to perform on methods, see the
\fB\-XX:CompileCommand\fR
option\&.
.RE
.PP
\-XX:CompileOnly=\fImethods\fR
.RS 4
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
\fBlength()\fR
method of the
\fBString\fR
class and the
\fBsize()\fR
method of the
\fBList\fR
class, use the following:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileOnly=java/lang/String\&.length,java/util/List\&.size\fR
 
.fi
.if n \{\
.RE
.\}
Note that the full class name is specified, including all packages and subpackages separated by a slash (\fB/\fR)\&. For easier cut and paste operations, it is also possible to use the method name format produced by the
\fB\-XX:+PrintCompilation\fR
and
\fB\-XX:+LogCompilation\fR
options:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileOnly=java\&.lang\&.String::length,java\&.util\&.List::size\fR
 
.fi
.if n \{\
.RE
.\}
2121
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:
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 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileOnly=java/lang/String\fR
\fB\-XX:CompileOnly=java/lang\fR
\fB\-XX:CompileOnly=\&.length\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:CompileThreshold=\fIinvocations\fR
.RS 4
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
\fB\-XX:+TieredCompilation\fR\&. The following example shows how to set the number of interpreted method invocations to 5,000:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CompileThreshold=5000\fR
 
.fi
.if n \{\
.RE
.\}
You can completely disable interpretation of Java methods before compilation by specifying the
\fB\-Xcomp\fR
option\&.
.RE
.PP
\-XX:+DoEscapeAnalysis
.RS 4
Enables the use of escape analysis\&. This option is enabled by default\&. To disable the use of escape analysis, specify
\fB\-XX:\-DoEscapeAnalysis\fR\&. Only the Java HotSpot Server VM supports this option\&.
.RE
.PP
\-XX:InitialCodeCacheSize=\fIsize\fR
.RS 4
Sets the initial code cache size (in bytes)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default value is set to 500 KB\&. The initial code cache size should be not less than the system\*(Aqs minimal memory page size\&. The following example shows how to set the initial code cache size to 32 KB:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:InitialCodeCacheSize=32k\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+Inline
.RS 4
Enables method inlining\&. This option is enabled by default to increase performance\&. To disable method inlining, specify
\fB\-XX:\-Inline\fR\&.
.RE
.PP
\-XX:InlineSmallCode=\fIsize\fR
.RS 4
Sets the maximum code size (in bytes) for compiled methods that should be inlined\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\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
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:InlineSmallCode=1000\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+LogCompilation
.RS 4
Enables logging of compilation activity to a file named
\fBhotspot\&.log\fR
in the current working directory\&. You can specify a different log file path and name using the
\fB\-XX:LogFile\fR
option\&.
.sp
By default, this option is disabled and compilation activity is not logged\&. The
\fB\-XX:+LogCompilation\fR
option has to be used together with the
\fB\-XX:UnlockDiagnosticVMOptions\fR
option that unlocks diagnostic JVM options\&.
.sp
You can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the
\fB\-XX:+PrintCompilation\fR
option\&.
.RE
.PP
\-XX:MaxInlineSize=\fIsize\fR
.RS 4
Sets the maximum bytecode size (in bytes) of a method to be inlined\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. By default, the maximum bytecode size is set to 35 bytes:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxInlineSize=35\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxNodeLimit=\fInodes\fR
.RS 4
R
rgallard 已提交
2274
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:
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxNodeLimit=65000\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxTrivialSize=\fIsize\fR
.RS 4
Sets the maximum bytecode size (in bytes) of a trivial method to be inlined\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. By default, the maximum bytecode size of a trivial method is set to 6 bytes:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxTrivialSize=6\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+OptimizeStringConcat
.RS 4
Enables the optimization of
\fBString\fR
concatenation operations\&. This option is enabled by default\&. To disable the optimization of
\fBString\fR
concatenation operations, specify
\fB\-XX:\-OptimizeStringConcat\fR\&. Only the Java HotSpot Server VM supports this option\&.
.RE
.PP
\-XX:+PrintAssembly
.RS 4
Enables printing of assembly code for bytecoded and native methods by using the external
\fBdisassembler\&.so\fR
library\&. This enables you to see the generated code, which may help you to diagnose performance issues\&.
.sp
By default, this option is disabled and assembly code is not printed\&. The
\fB\-XX:+PrintAssembly\fR
option has to be used together with the
\fB\-XX:UnlockDiagnosticVMOptions\fR
option that unlocks diagnostic JVM options\&.
.RE
.PP
\-XX:+PrintCompilation
.RS 4
R
rgallard 已提交
2341
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\&.
2342 2343 2344 2345 2346 2347 2348 2349
.sp
You can also log compilation activity to a file by using the
\fB\-XX:+LogCompilation\fR
option\&.
.RE
.PP
\-XX:+PrintInlining
.RS 4
R
rgallard 已提交
2350
Enables printing of inlining decisions\&. This enables you to see which methods are getting inlined\&.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
.sp
By default, this option is disabled and inlining information is not printed\&. The
\fB\-XX:+PrintInlining\fR
option has to be used together with the
\fB\-XX:+UnlockDiagnosticVMOptions\fR
option that unlocks diagnostic JVM options\&.
.RE
.PP
\-XX:ReservedCodeCacheSize=\fIsize\fR
.RS 4
Sets the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option
\fB\-XX:\-TieredCompilation\fR, then the default size is 48 MB\&. This option has a limit of 2 GB; otherwise, an error is generated\&. The maximum code cache size should not be less than the initial code cache size; see the option
\fB\-XX:InitialCodeCacheSize\fR\&. This option is equivalent to
\fB\-Xmaxjitcodesize\fR\&.
.RE
.PP
\-XX:RTMAbortRatio=\fIabort_ratio\fR
.RS 4
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
\fB\-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\&.
.RE
.PP
\-XX:RTMRetryCount=\fInumber_of_retries\fR
.RS 4
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
\fB\-XX:UseRTMLocking\fR
option must be enabled\&.
.RE
.PP
\-XX:\-TieredCompilation
.RS 4
Disables the use of tiered compilation\&. By default, this option is enabled\&. Only the Java HotSpot Server VM supports this option\&.
.RE
.PP
\-XX:+UseAES
.RS 4
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\&.
.RE
.PP
\-XX:+UseAESIntrinsics
.RS 4
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
\fB\-XX:\-UseAES \-XX:\-UseAESIntrinsics\fR\&. For example, to enable hardware AES, use the following flags:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:+UseAES \-XX:+UseAESIntrinsics\fR
 
.fi
.if n \{\
.RE
.\}
To support UseAES and UseAESIntrinsics flags for 32\-bit and 64\-bit use
\fB\-server\fR
option to choose Java HotSpot Server VM\&. These flags are not supported on Client VM\&.
.RE
.PP
\-XX:+UseCodeCacheFlushing
.RS 4
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
\fB\-XX:\-UseCodeCacheFlushing\fR\&.
.RE
.PP
\-XX:+UseCondCardMark
.RS 4
2431
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\&.
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
.RE
.PP
\-XX:+UseRTMDeopt
.RS 4
Auto\-tunes RTM locking depending on the abort ratio\&. This ratio is specified by
\fB\-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
\fB\-XX:+UseRTMLocking\fR
option must be enabled\&.
.RE
.PP
\-XX:+UseRTMLocking
.RS 4
2445
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)\&.
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
.sp
RTM is part of Intel\*(Aqs TSX, which is an x86 instruction set extension and facilitates the creation of multithreaded applications\&. RTM introduces the new instructions
\fBXBEGIN\fR,
\fBXABORT\fR,
\fBXEND\fR, and
\fBXTEST\fR\&. The
\fBXBEGIN\fR
and
\fBXEND\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
\fBXEND\fR
instruction\&. The
\fBXABORT\fR
instruction can be used to explicitly abort a transaction and the
\fBXEND\fR
instruction to check if a set of instructions are being run in a transaction\&.
.sp
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\*(Aqs system\&.
.sp
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\&.
.RE
.PP
\-XX:+UseSHA
.RS 4
Enables hardware\-based intrinsics for SHA crypto hash functions for SPARC hardware\&.
\fBUseSHA\fR
is used in conjunction with the
\fBUseSHA1Intrinsics\fR,
\fBUseSHA256Intrinsics\fR, and
\fBUseSHA512Intrinsics\fR
options\&.
.sp
The
\fBUseSHA\fR
and
\fBUseSHA*Intrinsics\fR
flags are enabled by default, and are supported only for Java HotSpot Server VM 64\-bit on SPARC T4 and newer\&.
.sp
This feature is only applicable when using the
\fBsun\&.security\&.provider\&.Sun\fR
provider for SHA operations\&.
.sp
To disable all hardware\-based SHA intrinsics, specify
\fB\-XX:\-UseSHA\fR\&. To disable only a particular SHA intrinsic, use the appropriate corresponding option\&. For example:
\fB\-XX:\-UseSHA256Intrinsics\fR\&.
.RE
.PP
\-XX:+UseSHA1Intrinsics
.RS 4
Enables intrinsics for SHA\-1 crypto hash function\&.
.RE
.PP
\-XX:+UseSHA256Intrinsics
.RS 4
Enables intrinsics for SHA\-224 and SHA\-256 crypto hash functions\&.
.RE
.PP
\-XX:+UseSHA512Intrinsics
.RS 4
Enables intrinsics for SHA\-384 and SHA\-512 crypto hash functions\&.
.RE
.PP
\-XX:+UseSuperWord
.RS 4
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
\fB\-XX:\-UseSuperWord\fR\&. Only the Java HotSpot Server VM supports this option\&.
.RE
.SS "Advanced Serviceability Options"
.PP
R
rgallard 已提交
2515
These options provide the ability to gather system information and perform extensive debugging\&.
2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
.PP
\-XX:+ExtendedDTraceProbes
.RS 4
Enables additional
\fBdtrace\fR
tool probes that impact the performance\&. By default, this option is disabled and
\fBdtrace\fR
performs only standard probes\&.
.RE
.PP
\-XX:+HeapDumpOnOutOfMemory
.RS 4
Enables the dumping of the Java heap to a file in the current directory by using the heap profiler (HPROF) when a
\fBjava\&.lang\&.OutOfMemoryError\fR
exception is thrown\&. You can explicitly set the heap dump file path and name using the
\fB\-XX:HeapDumpPath\fR
option\&. By default, this option is disabled and the heap is not dumped when an
\fBOutOfMemoryError\fR
exception is thrown\&.
.RE
.PP
\-XX:HeapDumpPath=\fIpath\fR
.RS 4
Sets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the
\fB\-XX:+HeapDumpOnOutOfMemoryError\fR
option is set\&. By default, the file is created in the current working directory, and it is named
\fBjava_pid\fR\fIpid\fR\fB\&.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 (\fB%p\fR
represents the current process identificator):
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:HeapDumpPath=\&./java_pid%p\&.hprof\fR
 
.fi
.if n \{\
.RE
.\}
The following example shows how to set the heap dump file to
\fB/var/log/java/java_heapdump\&.hprof\fR:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:HeapDumpPath=/var/log/java/java_heapdump\&.hprof\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:LogFile=\fIpath\fR
.RS 4
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
\fBhotspot\&.log\fR\&.
.sp
The following example shows how to set the log file to
\fB/var/log/java/hotspot\&.log\fR:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:LogFile=/var/log/java/hotspot\&.log\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+PrintClassHistogram
.RS 4
Enables printing of a class instance histogram after a
\fBControl+C\fR
event (\fBSIGTERM\fR)\&. By default, this option is disabled\&.
.sp
Setting this option is equivalent to running the
\fBjmap \-histo\fR
command, or the
\fBjcmd \fR\fIpid\fR\fB GC\&.class_histogram\fR
command, where
\fIpid\fR
is the current Java process identifier\&.
.RE
.PP
\-XX:+PrintConcurrentLocks
.RS 4
Enables printing of locks after a event\&. By default, this option is disabled\&.
.sp
Enables printing of
\fBjava\&.util\&.concurrent\fR
locks after a
\fBControl+C\fR
event (\fBSIGTERM\fR)\&. By default, this option is disabled\&.
.sp
Setting this option is equivalent to running the
\fBjstack \-l\fR
command or the
\fBjcmd \fR\fIpid\fR\fB Thread\&.print \-l\fR
command, where
\fIpid\fR
is the current Java process identifier\&.
.RE
.PP
\-XX:+UnlockDiagnosticVMOptions
.RS 4
R
rgallard 已提交
2629
Unlocks the options intended for diagnosing the JVM\&. By default, this option is disabled and diagnostic options are not available\&.
2630 2631 2632
.RE
.SS "Advanced Garbage Collection Options"
.PP
2633
These options control how garbage collection (GC) is performed by the Java HotSpot VM\&.
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
.PP
\-XX:+AggressiveHeap
.RS 4
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\&.
.RE
.PP
\-XX:+AlwaysPreTouch
.RS 4
Enables touching of every page on the Java heap during JVM initialization\&. This gets all pages into the memory before entering the
\fBmain()\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\&.
.RE
.PP
\-XX:+CMSClassUnloadingEnabled
.RS 4
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
\fB\-XX:\-CMSClassUnloadingEnabled\fR\&.
.RE
.PP
\-XX:CMSExpAvgFactor=\fIpercent\fR
.RS 4
R
rgallard 已提交
2655
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%:
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CMSExpAvgFactor=15\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:CMSInitiatingOccupancyFraction=\fIpercent\fR
.RS 4
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
\fB\-XX:CMSTriggerRatio\fR
is used to define the value of the initiating occupancy fraction\&.
.sp
The following example shows how to set the occupancy fraction to 20%:
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CMSInitiatingOccupancyFraction=20\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+CMSScavengeBeforeRemark
.RS 4
R
rgallard 已提交
2691
Enables scavenging attempts before the CMS remark step\&. By default, this option is disabled\&.
2692 2693 2694 2695 2696 2697 2698 2699
.RE
.PP
\-XX:CMSTriggerRatio=\fIpercent\fR
.RS 4
Sets the percentage (0 to 100) of the value specified by
\fB\-XX:MinHeapFreeRatio\fR
that is allocated before a CMS collection cycle commences\&. The default value is set to 80%\&.
.sp
R
rgallard 已提交
2700
The following example shows how to set the occupancy fraction to 75%:
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:CMSTriggerRatio=75\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:ConcGCThreads=\fIthreads\fR
.RS 4
R
rgallard 已提交
2716
Sets the number of threads used for concurrent GC\&. The default value depends on the number of CPUs available to the JVM\&.
2717
.sp
R
rgallard 已提交
2718
For example, to set the number of threads for concurrent GC to 2, specify the following option:
2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:ConcGCThreads=2\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+DisableExplicitGC
.RS 4
Enables the option that disables processing of calls to
\fBSystem\&.gc()\fR\&. This option is disabled by default, meaning that calls to
\fBSystem\&.gc()\fR
are processed\&. If processing of calls to
\fBSystem\&.gc()\fR
is disabled, the JVM still performs GC when necessary\&.
.RE
.PP
\-XX:+ExplicitGCInvokesConcurrent
.RS 4
Enables invoking of concurrent GC by using the
\fBSystem\&.gc()\fR
request\&. This option is disabled by default and can be enabled only together with the
\fB\-XX:+UseConcMarkSweepGC\fR
option\&.
.RE
.PP
\-XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
.RS 4
Enables invoking of concurrent GC by using the
\fBSystem\&.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
\fB\-XX:+UseConcMarkSweepGC\fR
option\&.
.RE
.PP
\-XX:G1HeapRegionSize=\fIsize\fR
.RS 4
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\&.
.sp
R
rgallard 已提交
2764
The following example shows how to set the size of the subdivisions to 16 MB:
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:G1HeapRegionSize=16m\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+G1PrintHeapRegions
.RS 4
R
rgallard 已提交
2780
Enables the printing of information about which regions are allocated and which are reclaimed by the G1 collector\&. By default, this option is disabled\&.
2781 2782 2783 2784
.RE
.PP
\-XX:G1ReservePercent=\fIpercent\fR
.RS 4
R
rgallard 已提交
2785
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%\&.
2786
.sp
R
rgallard 已提交
2787
The following example shows how to set the reserved heap to 20%:
2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:G1ReservePercent=20\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:InitialHeapSize=\fIsize\fR
.RS 4
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
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\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\&.
.sp
R
rgallard 已提交
2819
The following examples show how to set the size of allocated memory to 6 MB using various units:
2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:InitialHeapSize=6291456\fR
\fB\-XX:InitialHeapSize=6144k\fR
\fB\-XX:InitialHeapSize=6m\fR
 
.fi
.if n \{\
.RE
.\}
If you set this option to 0, then the initial size will be set as the sum of the sizes allocated for the old generation and the young generation\&. The size of the heap for the young generation can be set using the
\fB\-XX:NewSize\fR
option\&.
.RE
.PP
\-XX:InitialSurvivorRatio=\fIratio\fR
.RS 4
Sets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the
\fB\-XX:+UseParallelGC\fR
and/or \-\fBXX:+UseParallelOldGC\fR
options)\&. Adaptive sizing is enabled by default with the throughput garbage collector by using the
\fB\-XX:+UseParallelGC\fR
and
\fB\-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
\fB\-XX:\-UseAdaptiveSizePolicy\fR
option), then the
\fB\-XX:SurvivorRatio\fR
option should be used to set the size of the survivor space for the entire execution of the application\&.
.sp
R
rgallard 已提交
2853
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):
2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864
.sp
.if n \{\
.RS 4
.\}
.nf
\fBS=Y/(R+2)\fR
 
.fi
.if n \{\
.RE
.\}
R
rgallard 已提交
2865
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\&.
2866
.sp
R
rgallard 已提交
2867
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\&.
2868
.sp
R
rgallard 已提交
2869
The following example shows how to set the initial survivor space ratio to 4:
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:InitialSurvivorRatio=4\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:InitiatingHeapOccupancyPercent=\fIpercent\fR
.RS 4
R
rgallard 已提交
2885
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)\&.
2886
.sp
2887
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%:
2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:InitiatingHeapOccupancyPercent=75\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxGCPauseMillis=\fItime\fR
.RS 4
R
rgallard 已提交
2903
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\&.
2904
.sp
R
rgallard 已提交
2905
The following example shows how to set the maximum target pause time to 500 ms:
2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxGCPauseMillis=500\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxHeapSize=\fIsize\fR
.RS 4
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
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,
\fB\-XX:InitialHeapSize\fR
and
\fB\-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\&.
.sp
R
rgallard 已提交
2941
The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxHeapSize=83886080\fR
\fB\-XX:MaxHeapSize=81920k\fR
\fB\-XX:MaxHeapSize=80m\fR
 
.fi
.if n \{\
.RE
.\}
R
rgallard 已提交
2955
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\&.
2956 2957 2958 2959 2960 2961 2962 2963 2964
.sp
The
\fB\-XX:MaxHeapSize\fR
option is equivalent to
\fB\-Xmx\fR\&.
.RE
.PP
\-XX:MaxHeapFreeRatio=\fIpercent\fR
.RS 4
R
rgallard 已提交
2965
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%\&.
2966
.sp
R
rgallard 已提交
2967
The following example shows how to set the maximum free heap ratio to 75%:
2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxHeapFreeRatio=75\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxMetaspaceSize=\fIsize\fR
.RS 4
R
rgallard 已提交
2983
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\&.
2984
.sp
R
rgallard 已提交
2985
The following example shows how to set the maximum class metadata size to 256 MB:
2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxMetaspaceSize=256m\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MaxNewSize=\fIsize\fR
.RS 4
R
rgallard 已提交
3001
Sets the maximum size (in bytes) of the heap for the young generation (nursery)\&. The default value is set ergonomically\&.
3002 3003 3004 3005
.RE
.PP
\-XX:MaxTenuringThreshold=\fIthreshold\fR
.RS 4
R
rgallard 已提交
3006
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\&.
3007
.sp
R
rgallard 已提交
3008
The following example shows how to set the maximum tenuring threshold to 10:
3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MaxTenuringThreshold=10\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:MetaspaceSize=\fIsize\fR
.RS 4
R
rgallard 已提交
3024
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\&.
3025 3026 3027 3028
.RE
.PP
\-XX:MinHeapFreeRatio=\fIpercent\fR
.RS 4
R
rgallard 已提交
3029
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%\&.
3030
.sp
R
rgallard 已提交
3031
The following example shows how to set the minimum free heap ratio to 25%:
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:MinHeapFreeRatio=25\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:NewRatio=\fIratio\fR
.RS 4
R
rgallard 已提交
3047
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:
3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:NewRatio=1\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:NewSize=\fIsize\fR
.RS 4
Sets the initial size (in bytes) of the heap for the young generation (nursery)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&.
.sp
R
rgallard 已提交
3077
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\&.
3078
.sp
R
rgallard 已提交
3079
The following examples show how to set the initial size of young generation to 256 MB using various units:
3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:NewSize=256m\fR
\fB\-XX:NewSize=262144k\fR
\fB\-XX:NewSize=268435456\fR
 
.fi
.if n \{\
.RE
.\}
The
\fB\-XX:NewSize\fR
option is equivalent to
\fB\-Xmn\fR\&.
.RE
.PP
\-XX:ParallelGCThreads=\fIthreads\fR
.RS 4
R
rgallard 已提交
3101
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\&.
3102
.sp
R
rgallard 已提交
3103
For example, to set the number of threads for parallel GC to 2, specify the following option:
3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:ParallelGCThreads=2\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+ParallelRefProcEnabled
.RS 4
R
rgallard 已提交
3119
Enables parallel reference processing\&. By default, this option is disabled\&.
3120 3121 3122 3123
.RE
.PP
\-XX:+PrintAdaptiveSizePolicy
.RS 4
R
rgallard 已提交
3124
Enables printing of information about adaptive generation sizing\&. By default, this option is disabled\&.
3125 3126 3127 3128
.RE
.PP
\-XX:+PrintGC
.RS 4
R
rgallard 已提交
3129
Enables printing of messages at every GC\&. By default, this option is disabled\&.
3130 3131 3132 3133
.RE
.PP
\-XX:+PrintGCApplicationConcurrentTime
.RS 4
R
rgallard 已提交
3134
Enables printing of how much time elapsed since the last pause (for example, a GC pause)\&. By default, this option is disabled\&.
3135 3136 3137 3138
.RE
.PP
\-XX:+PrintGCApplicationStoppedTime
.RS 4
R
rgallard 已提交
3139
Enables printing of how much time the pause (for example, a GC pause) lasted\&. By default, this option is disabled\&.
3140 3141 3142 3143
.RE
.PP
\-XX:+PrintGCDateStamps
.RS 4
R
rgallard 已提交
3144
Enables printing of a date stamp at every GC\&. By default, this option is disabled\&.
3145 3146 3147 3148
.RE
.PP
\-XX:+PrintGCDetails
.RS 4
R
rgallard 已提交
3149
Enables printing of detailed messages at every GC\&. By default, this option is disabled\&.
3150 3151 3152 3153
.RE
.PP
\-XX:+PrintGCTaskTimeStamps
.RS 4
R
rgallard 已提交
3154
Enables printing of time stamps for every individual GC worker thread task\&. By default, this option is disabled\&.
3155 3156 3157 3158
.RE
.PP
\-XX:+PrintGCTimeStamps
.RS 4
R
rgallard 已提交
3159
Enables printing of time stamps at every GC\&. By default, this option is disabled\&.
3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
.RE
.PP
\-XX:+PrintStringDeduplicationStatistics
.RS 4
Prints detailed deduplication statistics\&. By default, this option is disabled\&. See the
\fB\-XX:+UseStringDeduplication\fR
option\&.
.RE
.PP
\-XX:+PrintTenuringDistribution
.RS 4
R
rgallard 已提交
3171
Enables printing of tenuring age information\&. The following is an example of the output:
3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186
.sp
.if n \{\
.RS 4
.\}
.nf
\fBDesired survivor size 48286924 bytes, new threshold 10 (max 10)\fR
\fB\- age 1: 28992024 bytes, 28992024 total\fR
\fB\- age 2: 1366864 bytes, 30358888 total\fR
\fB\- age 3: 1425912 bytes, 31784800 total\fR
\fB\&.\&.\&.\fR
 
.fi
.if n \{\
.RE
.\}
R
rgallard 已提交
3187
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\&.
3188
.sp
R
rgallard 已提交
3189
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\&.
3190
.sp
R
rgallard 已提交
3191
By default, this option is disabled\&.
3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209
.RE
.PP
\-XX:+ScavengeBeforeFullGC
.RS 4
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
\fB\-XX:\-ScavengeBeforeFullGC\fR\&.
.RE
.PP
\-XX:SoftRefLRUPolicyMSPerMB=\fItime\fR
.RS 4
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
\fB\-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
\fB\-Xmx\fR
option has a significant effect on how quickly soft references are garbage collected\&.
.sp
R
rgallard 已提交
3210
The following example shows how to set the value to 2\&.5 seconds:
3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:SoftRefLRUPolicyMSPerMB=2500\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:StringDeduplicationAgeThreshold=\fIthreshold\fR
.RS 4
\fBString\fR
objects reaching the specified age are considered candidates for deduplication\&. An object\*(Aqs age is a measure of how many times it has survived garbage collection\&. This is sometimes referred to as tenuring; see the
\fB\-XX:+PrintTenuringDistribution\fR
option\&. Note that
\fBString\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
\fB3\fR\&. See the
\fB\-XX:+UseStringDeduplication\fR
option\&.
.RE
.PP
\-XX:SurvivorRatio=\fIratio\fR
.RS 4
R
rgallard 已提交
3239
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:
3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:SurvivorRatio=4\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:TargetSurvivorRatio=\fIpercent\fR
.RS 4
R
rgallard 已提交
3255
Sets the desired percentage of survivor space (0 to 100) used after young garbage collection\&. By default, this option is set to 50%\&.
3256
.sp
R
rgallard 已提交
3257
The following example shows how to set the target survivor space ratio to 30%:
3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:TargetSurvivorRatio=30\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:TLABSize=\fIsize\fR
.RS 4
Sets the initial size (in bytes) of a thread\-local allocation buffer (TLAB)\&. Append the letter
\fBk\fR
or
\fBK\fR
to indicate kilobytes,
\fBm\fR
or
\fBM\fR
to indicate megabytes,
\fBg\fR
or
\fBG\fR
to indicate gigabytes\&. If this option is set to 0, then the JVM chooses the initial size automatically\&.
.sp
R
rgallard 已提交
3287
The following example shows how to set the initial TLAB size to 512 KB:
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311
.sp
.if n \{\
.RS 4
.\}
.nf
\fB\-XX:TLABSize=512k\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.PP
\-XX:+UseAdaptiveSizePolicy
.RS 4
Enables the use of adaptive generation sizing\&. This option is enabled by default\&. To disable adaptive generation sizing, specify
\fB\-XX:\-UseAdaptiveSizePolicy\fR
and set the size of the memory allocation pool explicitly (see the
\fB\-XX:SurvivorRatio\fR
option)\&.
.RE
.PP
\-XX:+UseCMSInitiatingOccupancyOnly
.RS 4
R
rgallard 已提交
3312
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\&.
3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328
.RE
.PP
\-XX:+UseConcMarkSweepGC
.RS 4
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 (\fB\-XX:+UseParallelGC\fR) garbage collector\&. The G1 garbage collector (\fB\-XX:+UseG1GC\fR) is another alternative\&.
.sp
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
\fB\-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:
\fB\-XX:+UseConcMarkSweepGC \-XX:\-UseParNewGC\fR\&.
.RE
.PP
\-XX:+UseG1GC
.RS 4
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)\&.
.sp
R
rgallard 已提交
3329
By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&.
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348
.RE
.PP
\-XX:+UseGCOverheadLimit
.RS 4
Enables the use of a policy that limits the proportion of time spent by the JVM on GC before an
\fBOutOfMemoryError\fR
exception is thrown\&. This option is enabled, by default and the parallel GC will throw an
\fBOutOfMemoryError\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
\fB\-XX:\-UseGCOverheadLimit\fR\&.
.RE
.PP
\-XX:+UseNUMA
.RS 4
Enables performance optimization of an application on a machine with nonuniform memory architecture (NUMA) by increasing the application\*(Aqs use of lower latency memory\&. By default, this option is disabled and no optimization for NUMA is made\&. The option is only available when the parallel garbage collector is used (\fB\-XX:+UseParallelGC\fR)\&.
.RE
.PP
\-XX:+UseParallelGC
.RS 4
R
rgallard 已提交
3349
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\&.
3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375
.sp
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
\fB\-XX:+UseParallelOldGC\fR
option is automatically enabled, unless you explicitly disable it\&.
.RE
.PP
\-XX:+UseParallelOldGC
.RS 4
Enables the use of the parallel garbage collector for full GCs\&. By default, this option is disabled\&. Enabling it automatically enables the
\fB\-XX:+UseParallelGC\fR
option\&.
.RE
.PP
\-XX:+UseParNewGC
.RS 4
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
\fB\-XX:+UseConcMarkSweepGC\fR
option\&. Using the
\fB\-XX:+UseParNewGC\fR
option without the
\fB\-XX:+UseConcMarkSweepGC\fR
option was deprecated in JDK 8\&.
.RE
.PP
\-XX:+UseSerialGC
.RS 4
R
rgallard 已提交
3376
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\&.
3377 3378 3379 3380
.RE
.PP
\-XX:+UseSHM
.RS 4
3381
On Linux, enables the JVM to use shared memory to setup large pages\&.
3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410
.sp
For more information, see "Large Pages"\&.
.RE
.PP
\-XX:+UseStringDeduplication
.RS 4
Enables string deduplication\&. By default, this option is disabled\&. To use this option, you must enable the garbage\-first (G1) garbage collector\&. See the
\fB\-XX:+UseG1GC\fR
option\&.
.sp
\fIString deduplication\fR
reduces the memory footprint of
\fBString\fR
objects on the Java heap by taking advantage of the fact that many
\fBString\fR
objects are identical\&. Instead of each
\fBString\fR
object pointing to its own character array, identical
\fBString\fR
objects can point to and share the same character array\&.
.RE
.PP
\-XX:+UseTLAB
.RS 4
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
\fB\-XX:\-UseTLAB\fR\&.
.RE
.SS "Deprecated and Removed Options"
.PP
R
rgallard 已提交
3411
These options were included in the previous release, but have since been considered unnecessary\&.
3412 3413 3414
.PP
\-Xincgc
.RS 4
3415
Enables incremental garbage collection\&. This option was deprecated in JDK 8 with no replacement\&.
3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469
.RE
.PP
\-Xrun\fIlibname\fR
.RS 4
Loads the specified debugging/profiling library\&. This option was superseded by the
\fB\-agentlib\fR
option\&.
.RE
.PP
\-XX:CMSIncrementalDutyCycle=\fIpercent\fR
.RS 4
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
\fB\-XX:+CMSIncrementalMode\fR
option\&.
.RE
.PP
\-XX:CMSIncrementalDutyCycleMin=\fIpercent\fR
.RS 4
Sets the percentage of time (0 to 100) between minor collections that is the lower bound for the duty cycle when
\fB\-XX:+CMSIncrementalPacing\fR
is enabled\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the
\fB\-XX:+CMSIncrementalMode\fR
option\&.
.RE
.PP
\-XX:+CMSIncrementalMode
.RS 4
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
\fBCMSIncremental\fR\&.
.RE
.PP
\-XX:CMSIncrementalOffset=\fIpercent\fR
.RS 4
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
\fB\-XX:+CMSIncrementalMode\fR
option\&.
.RE
.PP
\-XX:+CMSIncrementalPacing
.RS 4
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
\fB\-XX:+CMSIncrementalMode\fR
option\&.
.RE
.PP
\-XX:CMSIncrementalSafetyFactor=\fIpercent\fR
.RS 4
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
\fB\-XX:+CMSIncrementalMode\fR
option\&.
.RE
.PP
\-XX:CMSInitiatingPermOccupancyFraction=\fIpercent\fR
.RS 4
R
rgallard 已提交
3470
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\&.
3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488
.RE
.PP
\-XX:MaxPermSize=\fIsize\fR
.RS 4
Sets the maximum permanent generation space size (in bytes)\&. This option was deprecated in JDK 8, and superseded by the
\fB\-XX:MaxMetaspaceSize\fR
option\&.
.RE
.PP
\-XX:PermSize=\fIsize\fR
.RS 4
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
\fB\-XX:MetaspaceSize\fR
option\&.
.RE
.PP
\-XX:+UseSplitVerifier
.RS 4
3489
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\&.
3490 3491 3492 3493
.RE
.PP
\-XX:+UseStringCache
.RS 4
3494
Enables caching of commonly allocated strings\&. This option was removed from JDK 8 with no replacement\&.
3495 3496 3497
.RE
.SH "PERFORMANCE TUNING EXAMPLES"
.PP
3498
The following examples show how to use experimental tuning flags to either optimize throughput or to provide lower response time\&.
3499
.PP
3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513
\fBExample 1 \fRTuning for Higher Throughput
.RS 4
.sp
.if n \{\
.RS 4
.\}
.nf
\fBjava \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g  \-Xms26g \-Xmx26g\fR
 
.fi
.if n \{\
.RE
.\}
.RE
3514
.PP
3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529
\fBExample 2 \fRTuning for Lower Response Time
.RS 4
.sp
.if n \{\
.RS 4
.\}
.nf
\fBjava \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamp\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.SH "LARGE PAGES"
3530
.PP
3531
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\&.
3532
.PP
3533
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\&.
3534
.PP
3535 3536
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"
3537
.PP
3538 3539 3540 3541 3542 3543 3544 3545 3546
Solaris and Linux support large pages\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBSolaris\fR
.RS 4
3547
.PP
3548 3549 3550 3551 3552 3553 3554 3555 3556 3557
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBLinux\fR
.RS 4
R
rgallard 已提交
3558
.PP
3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573
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
.if n \{\
.RS 4
.\}
.nf
\fB# cat /proc/meminfo | grep Huge\fR
\fBHugePages_Total: 0\fR
\fBHugePages_Free: 0\fR
\fBHugepagesize: 2048 kB\fR
 
.fi
.if n \{\
.RE
.\}
3574
.PP
3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693
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
\fBroot\fR, and then follow these steps:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  1." 4.2
.\}
If you are using the option
\fB\-XX:+UseSHM\fR
(instead of
\fB\-XX:+UseHugeTLBFS\fR), then increase the
\fBSHMMAX\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
.if n \{\
.RS 4
.\}
.nf
\fB# echo 4294967295 > /proc/sys/kernel/shmmax\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  2." 4.2
.\}
If you are using the option
\fB\-XX:+UseSHM\fR
or
\fB\-XX:+UseHugeTLBFS\fR, then specify the number of large pages\&. In the following example, 3 GB of a 4 GB system are reserved for large pages (assuming a large page size of 2048kB, then 3 GB = 3 * 1024 MB = 3072 MB = 3072 * 1024 kB = 3145728 kB and 3145728 kB / 2048 kB = 1536):
.sp
.if n \{\
.RS 4
.\}
.nf
\fB# echo 1536 > /proc/sys/vm/nr_hugepages\fR
 
.fi
.if n \{\
.RE
.\}
.RE
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
.TS
allbox tab(:);
l.
T{
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Note that the values contained in
\fB/proc\fR
will reset after you reboot your system, so may want to set them in an initialization script (for example,
\fBrc\&.local\fR
or
\fBsysctl\&.conf\fR)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
If you configure (or resize) the OS kernel parameters
\fB/proc/sys/kernel/shmmax\fR
or
\fB/proc/sys/vm/nr_hugepages\fR, Java processes may allocate large pages for areas in addition to the Java heap\&. These steps can allocate large pages for the following areas:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Java heap
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3694
Code cache
3695 3696 3697 3698 3699 3700 3701 3702 3703 3704
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3705
The marking bitmap data structure for the parallel GC
3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718
.RE
.sp
Consequently, if you configure the
\fBnr_hugepages\fR
parameter to the size of the Java heap, then the JVM can fail in allocating the code cache areas on large pages because these areas are quite large in size\&.
.RE
T}
.TE
.sp 1
.sp .5v
.RE
.RE
.SH "EXIT STATUS"
3719
.PP
3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753
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
\fBSystem\&.exit(exitValue)\fR\&. The values are:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fB0\fR: Successful completion
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fB>0\fR: An error occurred
.RE
.SH "SEE ALSO"
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3754
javac(1)
3755 3756 3757 3758 3759 3760 3761 3762 3763 3764
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3765
jdb(1)
3766 3767 3768 3769 3770 3771 3772 3773 3774 3775
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3776
javah(1)
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3787
jar(1)
3788 3789 3790 3791 3792 3793 3794 3795 3796 3797
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
3798
jstat(1)
3799 3800 3801 3802
.RE
.br
'pl 8.5i
'bp