blob: bd259654d708624965e47334a689ad1a324fc4ee [file] [log] [blame]
rgallardb6435452013-11-25 20:19:02 -08001'\" t
rgallardf71f2512015-02-02 10:12:21 -08002.\" Copyright (c) 1994, 2015, Oracle and/or its affiliates. All rights reserved.
3.\"
4.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5.\"
6.\" This code is free software; you can redistribute it and/or modify it
7.\" under the terms of the GNU General Public License version 2 only, as
8.\" published by the Free Software Foundation.
9.\"
10.\" This code is distributed in the hope that it will be useful, but WITHOUT
11.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13.\" version 2 for more details (a copy is included in the LICENSE file that
14.\" accompanied this code).
15.\"
16.\" You should have received a copy of the GNU General Public License version
17.\" 2 along with this work; if not, write to the Free Software Foundation,
18.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19.\"
20.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21.\" or visit www.oracle.com if you need additional information or have any
22.\" questions.
23.\"
24.\" Title: java
25.\" Language: English
26.\" Date: 03 March 2015
27.\" SectDesc: Basic Tools
28.\" Software: JDK 8
29.\" Arch: generic
30.\" Part Number: E38207-04
31.\" Doc ID: JSSON
rgallardb6435452013-11-25 20:19:02 -080032.\"
33.if n .pl 99999
rgallardf71f2512015-02-02 10:12:21 -080034.TH "java" "1" "03 March 2015" "JDK 8" "Basic Tools"
35.\" -----------------------------------------------------------------
36.\" * Define some portability stuff
37.\" -----------------------------------------------------------------
38.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39.\" http://bugs.debian.org/507673
40.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
41.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
42.ie \n(.g .ds Aq \(aq
43.el .ds Aq '
44.\" -----------------------------------------------------------------
45.\" * set default formatting
46.\" -----------------------------------------------------------------
47.\" disable hyphenation
48.nh
49.\" disable justification (adjust text to left margin only)
50.ad l
51.\" -----------------------------------------------------------------
52.\" * MAIN CONTENT STARTS HERE *
53.\" -----------------------------------------------------------------
54.SH "NAME"
rgallardb6435452013-11-25 20:19:02 -080055java \- Launches a Java application\&.
rgallardf71f2512015-02-02 10:12:21 -080056.SH "SYNOPSIS"
57.sp
58.if n \{\
59.RS 4
60.\}
61.nf
rgallardb6435452013-11-25 20:19:02 -080062\fBjava\fR [\fIoptions\fR] \fIclassname\fR [\fIargs\fR]
rgallardf71f2512015-02-02 10:12:21 -080063.fi
64.if n \{\
65.RE
66.\}
67.sp
68.if n \{\
69.RS 4
70.\}
71.nf
rgallardb6435452013-11-25 20:19:02 -080072\fBjava\fR [\fIoptions\fR] \fB\-jar\fR \fIfilename\fR [\fIargs\fR]
rgallardf71f2512015-02-02 10:12:21 -080073.fi
74.if n \{\
75.RE
76.\}
rgallard36ba8532014-06-06 15:45:48 -070077.PP
rgallardf71f2512015-02-02 10:12:21 -080078\fIoptions\fR
79.RS 4
80Command\-line options separated by spaces\&. See Options\&.
81.RE
82.PP
83\fIclassname\fR
84.RS 4
85The name of the class to be launched\&.
86.RE
87.PP
88\fIfilename\fR
89.RS 4
90The name of the Java Archive (JAR) file to be called\&. Used only with the
91\fB\-jar\fR
92option\&.
93.RE
94.PP
95\fIargs\fR
96.RS 4
97The arguments passed to the
98\fBmain()\fR
99method separated by spaces\&.
100.RE
101.SH "DESCRIPTION"
102.PP
103The
104\fBjava\fR
105command starts a Java application\&. It does this by starting the Java Runtime Environment (JRE), loading the specified class, and calling that class\*(Aqs
106\fBmain()\fR
107method\&. The method must be declared
108\fIpublic\fR
109and
110\fIstatic\fR, it must not return any value, and it must accept a
111\fBString\fR
112array as a parameter\&. The method declaration has the following form:
113.sp
114.if n \{\
115.RS 4
116.\}
117.nf
118\fBpublic static void main(String[] args)\fR
119
120.fi
121.if n \{\
122.RE
123.\}
124.PP
125The
126\fBjava\fR
127command can be used to launch a JavaFX application by loading a class that either has a
128\fBmain()\fR
129method or that extends
130\fBjavafx\&.application\&.Application\fR\&. In the latter case, the launcher constructs an instance of the
131\fBApplication\fR
132class, calls its
133\fBinit()\fR
134method, and then calls the
135\fBstart(javafx\&.stage\&.Stage)\fR
136method\&.
137.PP
138By default, the first argument that is not an option of the
139\fBjava\fR
140command is the fully qualified name of the class to be called\&. If the
141\fB\-jar\fR
142option 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
143\fBMain\-Class\fR
144manifest header in its source code\&.
rgallardb6435452013-11-25 20:19:02 -0800145.PP
146The 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\&.
147.PP
rgallardf71f2512015-02-02 10:12:21 -0800148Arguments after the class file name or the JAR file name are passed to the
149\fBmain()\fR
150method\&.
151.SH "OPTIONS"
152.PP
153The
154\fBjava\fR
155command supports a wide range of options that can be divided into the following categories:
156.sp
157.RS 4
158.ie n \{\
159\h'-04'\(bu\h'+03'\c
160.\}
161.el \{\
162.sp -1
163.IP \(bu 2.3
164.\}
rgallardb6435452013-11-25 20:19:02 -0800165Standard Options
rgallardf71f2512015-02-02 10:12:21 -0800166.RE
167.sp
168.RS 4
169.ie n \{\
170\h'-04'\(bu\h'+03'\c
171.\}
172.el \{\
173.sp -1
174.IP \(bu 2.3
175.\}
176Non\-Standard Options
177.RE
178.sp
179.RS 4
180.ie n \{\
181\h'-04'\(bu\h'+03'\c
182.\}
183.el \{\
184.sp -1
185.IP \(bu 2.3
186.\}
rgallardb6435452013-11-25 20:19:02 -0800187Advanced Runtime Options
rgallardf71f2512015-02-02 10:12:21 -0800188.RE
189.sp
190.RS 4
191.ie n \{\
192\h'-04'\(bu\h'+03'\c
193.\}
194.el \{\
195.sp -1
196.IP \(bu 2.3
197.\}
rgallardb6435452013-11-25 20:19:02 -0800198Advanced JIT Compiler Options
rgallardf71f2512015-02-02 10:12:21 -0800199.RE
200.sp
201.RS 4
202.ie n \{\
203\h'-04'\(bu\h'+03'\c
204.\}
205.el \{\
206.sp -1
207.IP \(bu 2.3
208.\}
rgallardb6435452013-11-25 20:19:02 -0800209Advanced Serviceability Options
rgallardf71f2512015-02-02 10:12:21 -0800210.RE
211.sp
212.RS 4
213.ie n \{\
214\h'-04'\(bu\h'+03'\c
215.\}
216.el \{\
217.sp -1
218.IP \(bu 2.3
219.\}
rgallardb6435452013-11-25 20:19:02 -0800220Advanced Garbage Collection Options
rgallardf71f2512015-02-02 10:12:21 -0800221.RE
rgallardb6435452013-11-25 20:19:02 -0800222.PP
223Standard 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\&.
224.PP
rgallardf71f2512015-02-02 10:12:21 -0800225Non\-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
226\fB\-X\fR\&.
rgallardb6435452013-11-25 20:19:02 -0800227.PP
rgallardf71f2512015-02-02 10:12:21 -0800228Advanced 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
229\fB\-XX\fR\&.
rgallardb6435452013-11-25 20:19:02 -0800230.PP
231To 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\&.
232.PP
rgallardf71f2512015-02-02 10:12:21 -0800233Boolean 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
234\fB\-XX\fR
235options are enabled using the plus sign (\fB\-XX:+\fR\fIOptionName\fR) and disabled using the minus sign (\fB\-XX:\-\fR\fIOptionName\fR)\&.
rgallardb6435452013-11-25 20:19:02 -0800236.PP
rgallardf71f2512015-02-02 10:12:21 -0800237For 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
238\fBk\fR
239or
240\fBK\fR
241for kilobytes (KB),
242\fBm\fR
243or
244\fBM\fR
245for megabytes (MB),
246\fBg\fR
247or
248\fBG\fR
249for gigabytes (GB)\&. For example, to set the size to 8 GB, you can specify either
250\fB8g\fR,
251\fB8192m\fR,
252\fB8388608k\fR, or
253\fB8589934592\fR
254as the argument\&. If you are expected to specify the percentage, use a number from 0 to 1 (for example, specify
255\fB0\&.25\fR
256for 25%)\&.
257.SS "Standard Options"
258.PP
rgallardb6435452013-11-25 20:19:02 -0800259These are the most commonly used options that are supported by all implementations of the JVM\&.
rgallardf71f2512015-02-02 10:12:21 -0800260.PP
261\-agentlib:\fIlibname\fR[=\fIoptions\fR]
262.RS 4
263Loads the specified native agent library\&. After the library name, a comma\-separated list of options specific to the library can be used\&.
264.sp
265If the option
266\fB\-agentlib:foo\fR
267is specified, then the JVM attempts to load the library named
268\fBlibfoo\&.so\fR
269in the location specified by the
270\fBLD_LIBRARY_PATH\fR
271system variable (on OS X this variable is
272\fBDYLD_LIBRARY_PATH\fR)\&.
273.sp
rgallardb6435452013-11-25 20:19:02 -0800274The 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:
rgallardf71f2512015-02-02 10:12:21 -0800275.sp
276.if n \{\
277.RS 4
278.\}
279.nf
280\fB\-agentlib:hprof=cpu=samples,interval=20,depth=3\fR
281
282.fi
283.if n \{\
284.RE
285.\}
rgallardb6435452013-11-25 20:19:02 -0800286The 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:
rgallardf71f2512015-02-02 10:12:21 -0800287.sp
288.if n \{\
289.RS 4
290.\}
291.nf
292\fB\-agentlib:jdwp=transport=dt_socket,server=y,address=8000\fR
293
294.fi
295.if n \{\
296.RE
297.\}
rgallardb6435452013-11-25 20:19:02 -0800298For more information about the native agent libraries, refer to the following:
rgallardf71f2512015-02-02 10:12:21 -0800299.sp
300.RS 4
301.ie n \{\
302\h'-04'\(bu\h'+03'\c
303.\}
304.el \{\
305.sp -1
306.IP \(bu 2.3
307.\}
308The
309\fBjava\&.lang\&.instrument\fR
310package description at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package\-summary\&.html
311.RE
312.sp
313.RS 4
314.ie n \{\
315\h'-04'\(bu\h'+03'\c
316.\}
317.el \{\
318.sp -1
319.IP \(bu 2.3
320.\}
rgallardb6435452013-11-25 20:19:02 -0800321Agent Command Line Options in the JVM Tools Interface guide at http://docs\&.oracle\&.com/javase/8/docs/platform/jvmti/jvmti\&.html#starting
rgallardf71f2512015-02-02 10:12:21 -0800322.RE
323.RE
324.PP
325\-agentpath:\fIpathname\fR[=\fIoptions\fR]
326.RS 4
327Loads the native agent library specified by the absolute path name\&. This option is equivalent to
328\fB\-agentlib\fR
329but uses the full path and file name of the library\&.
330.RE
331.PP
332\-client
333.RS 4
334Selects 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\&.
335.sp
336For default JVM selection, see Server\-Class Machine Detection at
337http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html
338.RE
339.PP
340\-D\fIproperty\fR=\fIvalue\fR
341.RS 4
342Sets a system property value\&. The
343\fIproperty\fR
344variable is a string with no spaces that represents the name of the property\&. The
345\fIvalue\fR
346variable is a string that represents the value of the property\&. If
347\fIvalue\fR
348is a string with spaces, then enclose it in quotation marks (for example
349\fB\-Dfoo="foo bar"\fR)\&.
350.RE
351.PP
352\-d32
353.RS 4
354Runs 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\&.
355.RE
356.PP
357\-d64
358.RS 4
359Runs 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\&.
360.sp
361Currently only the Java HotSpot Server VM supports 64\-bit operation, and the
362\fB\-server\fR
363option is implicit with the use of
364\fB\-d64\fR\&. The
365\fB\-client\fR
366option is ignored with the use of
367\fB\-d64\fR\&. This is subject to change in a future release\&.
368.RE
369.PP
370\-disableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
rgallardb6435452013-11-25 20:19:02 -0800371.br
rgallardf71f2512015-02-02 10:12:21 -0800372\-da[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
373.RS 4
rgallardb6435452013-11-25 20:19:02 -0800374Disables assertions\&. By default, assertions are disabled in all packages and classes\&.
rgallardf71f2512015-02-02 10:12:21 -0800375.sp
376With no arguments,
377\fB\-disableassertions\fR
378(\fB\-da\fR) disables assertions in all packages and classes\&. With the
379\fIpackagename\fR
380argument ending in
381\fB\&.\&.\&.\fR, the switch disables assertions in the specified package and any subpackages\&. If the argument is simply
382\fB\&.\&.\&.\fR, then the switch disables assertions in the unnamed package in the current working directory\&. With the
383\fIclassname\fR
384argument, the switch disables assertions in the specified class\&.
385.sp
386The
387\fB\-disableassertions\fR
388(\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
389\fB\-disablesystemassertions\fR
390option enables you to disable assertions in all system classes\&.
391.sp
392To explicitly enable assertions in specific packages or classes, use the
393\fB\-enableassertions\fR
394(\fB\-ea\fR) option\&. Both options can be used at the same time\&. For example, to run the
395\fBMyClass\fR
396application with assertions enabled in package
397\fBcom\&.wombat\&.fruitbat\fR
398(and any subpackages) but disabled in class
399\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
400.sp
401.if n \{\
402.RS 4
403.\}
rgallard04b0ca42014-10-17 11:33:22 -0700404.nf
rgallardf71f2512015-02-02 10:12:21 -0800405\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR
406
rgallard04b0ca42014-10-17 11:33:22 -0700407.fi
rgallardf71f2512015-02-02 10:12:21 -0800408.if n \{\
409.RE
410.\}
411.RE
412.PP
413\-disablesystemassertions
414.br
415\-dsa
416.RS 4
417Disables assertions in all system classes\&.
418.RE
419.PP
420\-enableassertions[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
421.br
422\-ea[:[\fIpackagename\fR]\&.\&.\&.|:\fIclassname\fR]
423.RS 4
rgallardb6435452013-11-25 20:19:02 -0800424Enables assertions\&. By default, assertions are disabled in all packages and classes\&.
rgallardf71f2512015-02-02 10:12:21 -0800425.sp
426With no arguments,
427\fB\-enableassertions\fR
428(\fB\-ea\fR) enables assertions in all packages and classes\&. With the
429\fIpackagename\fR
430argument ending in
431\fB\&.\&.\&.\fR, the switch enables assertions in the specified package and any subpackages\&. If the argument is simply
432\fB\&.\&.\&.\fR, then the switch enables assertions in the unnamed package in the current working directory\&. With the
433\fIclassname\fR
434argument, the switch enables assertions in the specified class\&.
435.sp
436The
437\fB\-enableassertions\fR
438(\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
439\fB\-enablesystemassertions\fR
440option provides a separate switch to enable assertions in all system classes\&.
441.sp
442To explicitly disable assertions in specific packages or classes, use the
443\fB\-disableassertions\fR
444(\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
445\fBMyClass\fR
446application with assertions enabled only in package
447\fBcom\&.wombat\&.fruitbat\fR
448(and any subpackages) but disabled in class
449\fBcom\&.wombat\&.fruitbat\&.Brickbat\fR, use the following command:
450.sp
451.if n \{\
452.RS 4
453.\}
454.nf
455\fBjava \-ea:com\&.wombat\&.fruitbat\&.\&.\&. \-da:com\&.wombat\&.fruitbat\&.Brickbat MyClass\fR
456
457.fi
458.if n \{\
459.RE
460.\}
461.RE
462.PP
463\-enablesystemassertions
rgallardb6435452013-11-25 20:19:02 -0800464.br
rgallardf71f2512015-02-02 10:12:21 -0800465\-esa
466.RS 4
rgallardb6435452013-11-25 20:19:02 -0800467Enables assertions in all system classes\&.
rgallardf71f2512015-02-02 10:12:21 -0800468.RE
469.PP
470\-help
rgallardb6435452013-11-25 20:19:02 -0800471.br
rgallardf71f2512015-02-02 10:12:21 -0800472\-?
473.RS 4
474Displays usage information for the
475\fBjava\fR
476command without actually running the JVM\&.
477.RE
478.PP
479\-jar \fIfilename\fR
480.RS 4
481Executes a program encapsulated in a JAR file\&. The
482\fIfilename\fR
483argument is the name of a JAR file with a manifest that contains a line in the form
484\fBMain\-Class:\fR\fIclassname\fR
485that defines the class with the
486\fBpublic static void main(String[] args)\fR
487method that serves as your application\*(Aqs starting point\&.
488.sp
489When you use the
490\fB\-jar\fR
491option, the specified JAR file is the source of all user classes, and other class path settings are ignored\&.
492.sp
rgallardb6435452013-11-25 20:19:02 -0800493For more information about JAR files, see the following resources:
rgallardf71f2512015-02-02 10:12:21 -0800494.sp
495.RS 4
496.ie n \{\
497\h'-04'\(bu\h'+03'\c
498.\}
499.el \{\
500.sp -1
501.IP \(bu 2.3
502.\}
rgallardb6435452013-11-25 20:19:02 -0800503jar(1)
rgallardf71f2512015-02-02 10:12:21 -0800504.RE
505.sp
506.RS 4
507.ie n \{\
508\h'-04'\(bu\h'+03'\c
509.\}
510.el \{\
511.sp -1
512.IP \(bu 2.3
513.\}
rgallardb6435452013-11-25 20:19:02 -0800514The Java Archive (JAR) Files guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/jar/index\&.html
rgallardf71f2512015-02-02 10:12:21 -0800515.RE
516.sp
517.RS 4
518.ie n \{\
519\h'-04'\(bu\h'+03'\c
520.\}
521.el \{\
522.sp -1
523.IP \(bu 2.3
524.\}
525Lesson: Packaging Programs in JAR Files at
rgallardb6435452013-11-25 20:19:02 -0800526
rgallardf71f2512015-02-02 10:12:21 -0800527http://docs\&.oracle\&.com/javase/tutorial/deployment/jar/index\&.html
528.RE
529.RE
530.PP
531\-javaagent:\fIjarpath\fR[=\fIoptions\fR]
532.RS 4
533Loads the specified Java programming language agent\&. For more information about instrumenting Java applications, see the
534\fBjava\&.lang\&.instrument\fR
535package description in the Java API documentation at http://docs\&.oracle\&.com/javase/8/docs/api/java/lang/instrument/package\-summary\&.html
536.RE
537.PP
538\-jre\-restrict\-search
539.RS 4
540Includes user\-private JREs in the version search\&.
541.RE
542.PP
543\-no\-jre\-restrict\-search
544.RS 4
545Excludes user\-private JREs from the version search\&.
546.RE
547.PP
548\-server
549.RS 4
550Selects 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\&.
551.sp
552For default JVM selection, see Server\-Class Machine Detection at
553http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/server\-class\&.html
554.RE
555.PP
556\-showversion
557.RS 4
558Displays version information and continues execution of the application\&. This option is equivalent to the
559\fB\-version\fR
560option except that the latter instructs the JVM to exit after displaying version information\&.
561.RE
562.PP
563\-splash:\fIimgname\fR
564.RS 4
565Shows the splash screen with the image specified by
566\fIimgname\fR\&. For example, to show the
567\fBsplash\&.gif\fR
568file from the
569\fBimages\fR
570directory when starting your application, use the following option:
571.sp
572.if n \{\
573.RS 4
574.\}
575.nf
576\fB\-splash:images/splash\&.gif\fR
577
578.fi
579.if n \{\
580.RE
581.\}
582.RE
583.PP
584\-verbose:class
585.RS 4
rgallardb6435452013-11-25 20:19:02 -0800586Displays information about each loaded class\&.
rgallardf71f2512015-02-02 10:12:21 -0800587.RE
588.PP
589\-verbose:gc
590.RS 4
rgallardb6435452013-11-25 20:19:02 -0800591Displays information about each garbage collection (GC) event\&.
rgallardf71f2512015-02-02 10:12:21 -0800592.RE
593.PP
594\-verbose:jni
595.RS 4
rgallardb6435452013-11-25 20:19:02 -0800596Displays information about the use of native methods and other Java Native Interface (JNI) activity\&.
rgallardf71f2512015-02-02 10:12:21 -0800597.RE
598.PP
599\-version
600.RS 4
601Displays version information and then exits\&. This option is equivalent to the
602\fB\-showversion\fR
603option except that the latter does not instruct the JVM to exit after displaying version information\&.
604.RE
605.PP
606\-version:\fIrelease\fR
607.RS 4
608Specifies the release version to be used for running the application\&. If the version of the
609\fBjava\fR
610command called does not meet this specification and an appropriate implementation is found on the system, then the appropriate implementation will be used\&.
611.sp
612The
613\fIrelease\fR
614argument specifies either the exact version string, or a list of version strings and ranges separated by spaces\&. A
615\fIversion string\fR
616is the developer designation of the version number in the following form:
617\fB1\&.\fR\fIx\fR\fB\&.0_\fR\fIu\fR
618(where
619\fIx\fR
620is the major version number, and
621\fIu\fR
622is the update version number)\&. A
623\fIversion range\fR
624is 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
625\fIOR\fR
626combination, or an ampersand (\fB&\fR) for a logical
627\fIAND\fR
628combination 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:
629.sp
630.if n \{\
631.RS 4
632.\}
633.nf
634\fB\-version:"1\&.6\&.0_13 1\&.6* & 1\&.6\&.0_10+"\fR
635
636.fi
637.if n \{\
638.RE
639.\}
640Quotation marks are necessary only if there are spaces in the
641\fIrelease\fR
642parameter\&.
643.sp
rgallardb6435452013-11-25 20:19:02 -0800644For JAR files, the preference is to specify version requirements in the JAR file manifest rather than on the command line\&.
rgallardf71f2512015-02-02 10:12:21 -0800645.RE
646.SS "Non\-Standard Options"
647.PP
rgallardb6435452013-11-25 20:19:02 -0800648These options are general purpose options that are specific to the Java HotSpot Virtual Machine\&.
rgallardf71f2512015-02-02 10:12:21 -0800649.PP
650\-X
651.RS 4
652Displays help for all available
653\fB\-X\fR
654options\&.
655.RE
656.PP
657\-Xbatch
658.RS 4
659Disables 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
660\fB\-Xbatch\fR
661flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed\&.
662.sp
663This option is equivalent to
664\fB\-XX:\-BackgroundCompilation\fR\&.
665.RE
666.PP
667\-Xbootclasspath:\fIpath\fR
668.RS 4
rgallardb6435452013-11-25 20:19:02 -0800669Specifies 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\&.
rgallardf71f2512015-02-02 10:12:21 -0800670.sp
671Do not deploy applications that use this option to override a class in
672\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
673.RE
674.PP
675\-Xbootclasspath/a:\fIpath\fR
676.RS 4
rgallardb6435452013-11-25 20:19:02 -0800677Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to append to the end of the default bootstrap class path\&.
rgallardf71f2512015-02-02 10:12:21 -0800678.sp
679Do not deploy applications that use this option to override a class in
680\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
681.RE
682.PP
683\-Xbootclasspath/p:\fIpath\fR
684.RS 4
rgallardb6435452013-11-25 20:19:02 -0800685Specifies a list of directories, JAR files, and ZIP archives separated by colons (:) to prepend to the front of the default bootstrap class path\&.
rgallardf71f2512015-02-02 10:12:21 -0800686.sp
687Do not deploy applications that use this option to override a class in
688\fBrt\&.jar\fR, because this violates the JRE binary code license\&.
689.RE
690.PP
691\-Xcheck:jni
692.RS 4
rgallardb6435452013-11-25 20:19:02 -0800693Performs 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\&.
rgallardf71f2512015-02-02 10:12:21 -0800694.RE
695.PP
696\-Xcomp
697.RS 4
698Forces 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
699\fB\-Xcomp\fR
700option disables interpreted method invocations to increase compilation performance at the expense of efficiency\&.
701.sp
702You can also change the number of interpreted method invocations before compilation using the
703\fB\-XX:CompileThreshold\fR
704option\&.
705.RE
706.PP
707\-Xdebug
708.RS 4
rgallardb6435452013-11-25 20:19:02 -0800709Does nothing\&. Provided for backward compatibility\&.
rgallardf71f2512015-02-02 10:12:21 -0800710.RE
711.PP
712\-Xdiag
713.RS 4
rgallardb6435452013-11-25 20:19:02 -0800714Shows additional diagnostic messages\&.
rgallardf71f2512015-02-02 10:12:21 -0800715.RE
716.PP
717\-Xfuture
718.RS 4
719Enables 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\&.
720.RE
721.PP
722\-Xint
723.RS 4
724Runs 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\&.
725.RE
726.PP
727\-Xinternalversion
728.RS 4
729Displays more detailed JVM version information than the
730\fB\-version\fR
731option, and then exits\&.
732.RE
733.PP
734\-Xloggc:\fIfilename\fR
735.RS 4
736Sets 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
737\fB\-verbose:gc\fR
738with the time elapsed since the first GC event preceding each logged event\&. The
739\fB\-Xloggc\fR
740option overrides
741\fB\-verbose:gc\fR
742if both are given with the same
743\fBjava\fR
744command\&.
745.sp
rgallardb6435452013-11-25 20:19:02 -0800746Example:
rgallardf71f2512015-02-02 10:12:21 -0800747.sp
748.if n \{\
749.RS 4
750.\}
751.nf
752\fB\-Xloggc:garbage\-collection\&.log\fR
753
754.fi
755.if n \{\
756.RE
757.\}
758.RE
759.PP
760\-Xmaxjitcodesize=\fIsize\fR
761.RS 4
762Specifies the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter
763\fBk\fR
764or
765\fBK\fR
766to indicate kilobytes,
767\fBm\fR
768or
769\fBM\fR
770to indicate megabytes,
771\fBg\fR
772or
773\fBG\fR
774to indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option
775\fB\-XX:\-TieredCompilation\fR, then the default size is 48 MB:
776.sp
777.if n \{\
778.RS 4
779.\}
780.nf
781\fB\-Xmaxjitcodesize=240m\fR
782
783.fi
784.if n \{\
785.RE
786.\}
787This option is equivalent to
788\fB\-XX:ReservedCodeCacheSize\fR\&.
789.RE
790.PP
791\-Xmixed
792.RS 4
rgallardb6435452013-11-25 20:19:02 -0800793Executes all bytecode by the interpreter except for hot methods, which are compiled to native code\&.
rgallardf71f2512015-02-02 10:12:21 -0800794.RE
795.PP
796\-Xmn\fIsize\fR
797.RS 4
798Sets the initial and maximum size (in bytes) of the heap for the young generation (nursery)\&. Append the letter
799\fBk\fR
800or
801\fBK\fR
802to indicate kilobytes,
803\fBm\fR
804or
805\fBM\fR
806to indicate megabytes,
807\fBg\fR
808or
809\fBG\fR
810to indicate gigabytes\&.
811.sp
rgallardb6435452013-11-25 20:19:02 -0800812The 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\&.
rgallardf71f2512015-02-02 10:12:21 -0800813.sp
rgallardb6435452013-11-25 20:19:02 -0800814The following examples show how to set the initial and maximum size of young generation to 256 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -0800815.sp
816.if n \{\
817.RS 4
818.\}
819.nf
820\fB\-Xmn256m\fR
821\fB\-Xmn262144k\fR
822\fB\-Xmn268435456\fR
823
824.fi
825.if n \{\
826.RE
827.\}
828Instead of the
829\fB\-Xmn\fR
830option to set both the initial and maximum size of the heap for the young generation, you can use
831\fB\-XX:NewSize\fR
832to set the initial size and
833\fB\-XX:MaxNewSize\fR
834to set the maximum size\&.
835.RE
836.PP
837\-Xms\fIsize\fR
838.RS 4
839Sets the initial size (in bytes) of the heap\&. This value must be a multiple of 1024 and greater than 1 MB\&. Append the letter
840\fBk\fR
841or
842\fBK\fR
843to indicate kilobytes,
844\fBm\fR
845or
846\fBM\fR
847to indicate megabytes,
848\fBg\fR
849or
850\fBG\fR
851to indicate gigabytes\&.
852.sp
rgallardb6435452013-11-25 20:19:02 -0800853The following examples show how to set the size of allocated memory to 6 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -0800854.sp
855.if n \{\
856.RS 4
857.\}
858.nf
859\fB\-Xms6291456\fR
860\fB\-Xms6144k\fR
861\fB\-Xms6m\fR
862
863.fi
864.if n \{\
865.RE
866.\}
867If 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
868\fB\-Xmn\fR
869option or the
870\fB\-XX:NewSize\fR
871option\&.
872.RE
873.PP
874\-Xmx\fIsize\fR
875.RS 4
876Specifies 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
877\fBk\fR
878or
879\fBK\fR
880to indicate kilobytes,
881\fBm\fR
882or
883\fBM\fR
884to indicate megabytes,
885\fBg\fR
886or
887\fBG\fR
888to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,
889\fB\-Xms\fR
890and
891\fB\-Xmx\fR
892are often set to the same value\&. See the section "Ergonomics" in
893\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR
894at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.
895.sp
rgallardb6435452013-11-25 20:19:02 -0800896The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -0800897.sp
898.if n \{\
899.RS 4
900.\}
901.nf
902\fB\-Xmx83886080\fR
903\fB\-Xmx81920k\fR
904\fB\-Xmx80m\fR
905
906.fi
907.if n \{\
908.RE
909.\}
910The
911\fB\-Xmx\fR
912option is equivalent to
913\fB\-XX:MaxHeapSize\fR\&.
914.RE
915.PP
916\-Xnoclassgc
917.RS 4
rgallardb6435452013-11-25 20:19:02 -0800918Disables garbage collection (GC) of classes\&. This can save some GC time, which shortens interruptions during the application run\&.
rgallardf71f2512015-02-02 10:12:21 -0800919.sp
920When you specify
921\fB\-Xnoclassgc\fR
922at 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\&.
923.RE
924.PP
925\-Xprof
926.RS 4
rgallardb6435452013-11-25 20:19:02 -0800927Profiles 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\&.
rgallardf71f2512015-02-02 10:12:21 -0800928.RE
929.PP
930\-Xrs
931.RS 4
rgallardb6435452013-11-25 20:19:02 -0800932Reduces the use of operating system signals by the JVM\&.
rgallardf71f2512015-02-02 10:12:21 -0800933.sp
rgallardb6435452013-11-25 20:19:02 -0800934Shutdown 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\&.
rgallardf71f2512015-02-02 10:12:21 -0800935.sp
936The JVM catches signals to implement shutdown hooks for unexpected termination\&. The JVM uses
937\fBSIGHUP\fR,
938\fBSIGINT\fR, and
939\fBSIGTERM\fR
940to initiate the running of shutdown hooks\&.
941.sp
942The JVM uses a similar mechanism to implement the feature of dumping thread stacks for debugging purposes\&. The JVM uses
943\fBSIGQUIT\fR
944to perform thread dumps\&.
945.sp
946Applications embedding the JVM frequently need to trap signals such as
947\fBSIGINT\fR
948or
949\fBSIGTERM\fR, which can lead to interference with the JVM signal handlers\&. The
950\fB\-Xrs\fR
951option is available to address this issue\&. When
952\fB\-Xrs\fR
953is used, the signal masks for
954\fBSIGINT\fR,
955\fBSIGTERM\fR,
956\fBSIGHUP\fR, and
957\fBSIGQUIT\fR
958are not changed by the JVM, and signal handlers for these signals are not installed\&.
959.sp
960There are two consequences of specifying
961\fB\-Xrs\fR:
962.sp
963.RS 4
964.ie n \{\
965\h'-04'\(bu\h'+03'\c
966.\}
967.el \{\
968.sp -1
969.IP \(bu 2.3
970.\}
971\fBSIGQUIT\fR
972thread dumps are not available\&.
973.RE
974.sp
975.RS 4
976.ie n \{\
977\h'-04'\(bu\h'+03'\c
978.\}
979.el \{\
980.sp -1
981.IP \(bu 2.3
982.\}
983User code is responsible for causing shutdown hooks to run, for example, by calling
984\fBSystem\&.exit()\fR
985when the JVM is to be terminated\&.
986.RE
987.RE
988.PP
989\-Xshare:\fImode\fR
990.RS 4
991Sets the class data sharing (CDS) mode\&. Possible
992\fImode\fR
993arguments for this option include the following:
994.PP
rgallardb6435452013-11-25 20:19:02 -0800995auto
rgallardf71f2512015-02-02 10:12:21 -0800996.RS 4
997Use CDS if possible\&. This is the default value for Java HotSpot 32\-Bit Client VM\&.
998.RE
999.PP
rgallardb6435452013-11-25 20:19:02 -08001000on
rgallardf71f2512015-02-02 10:12:21 -08001001.RS 4
1002Require the use of CDS\&. Print an error message and exit if class data sharing cannot be used\&.
1003.RE
1004.PP
rgallardb6435452013-11-25 20:19:02 -08001005off
rgallardf71f2512015-02-02 10:12:21 -08001006.RS 4
1007Do 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\&.
1008.RE
1009.PP
rgallardb6435452013-11-25 20:19:02 -08001010dump
rgallardf71f2512015-02-02 10:12:21 -08001011.RS 4
1012Manually generate the CDS archive\&. Specify the application class path as described in "Setting the Class Path "\&.
1013.sp
1014You should regenerate the CDS archive with each new JDK release\&.
1015.RE
1016.RE
1017.PP
1018\-XshowSettings:\fIcategory\fR
1019.RS 4
1020Shows settings and continues\&. Possible
1021\fIcategory\fR
1022arguments for this option include the following:
1023.PP
rgallardb6435452013-11-25 20:19:02 -08001024all
rgallardf71f2512015-02-02 10:12:21 -08001025.RS 4
rgallardb6435452013-11-25 20:19:02 -08001026Shows all categories of settings\&. This is the default value\&.
rgallardf71f2512015-02-02 10:12:21 -08001027.RE
1028.PP
rgallardb6435452013-11-25 20:19:02 -08001029locale
rgallardf71f2512015-02-02 10:12:21 -08001030.RS 4
rgallardb6435452013-11-25 20:19:02 -08001031Shows settings related to locale\&.
rgallardf71f2512015-02-02 10:12:21 -08001032.RE
1033.PP
rgallardb6435452013-11-25 20:19:02 -08001034properties
rgallardf71f2512015-02-02 10:12:21 -08001035.RS 4
rgallardb6435452013-11-25 20:19:02 -08001036Shows settings related to system properties\&.
rgallardf71f2512015-02-02 10:12:21 -08001037.RE
1038.PP
rgallardb6435452013-11-25 20:19:02 -08001039vm
rgallardf71f2512015-02-02 10:12:21 -08001040.RS 4
rgallardb6435452013-11-25 20:19:02 -08001041Shows the settings of the JVM\&.
rgallardf71f2512015-02-02 10:12:21 -08001042.RE
1043.RE
1044.PP
1045\-Xss\fIsize\fR
1046.RS 4
1047Sets the thread stack size (in bytes)\&. Append the letter
1048\fBk\fR
1049or
1050\fBK\fR
1051to indicate KB,
1052\fBm\fR
1053or
1054\fBM\fR
1055to indicate MB,
1056\fBg\fR
1057or
1058\fBG\fR
1059to indicate GB\&. The default value depends on the platform:
1060.sp
1061.RS 4
1062.ie n \{\
1063\h'-04'\(bu\h'+03'\c
1064.\}
1065.el \{\
1066.sp -1
1067.IP \(bu 2.3
1068.\}
1069Linux/ARM (32\-bit): 320 KB
1070.RE
1071.sp
1072.RS 4
1073.ie n \{\
1074\h'-04'\(bu\h'+03'\c
1075.\}
1076.el \{\
1077.sp -1
1078.IP \(bu 2.3
1079.\}
1080Linux/i386 (32\-bit): 320 KB
1081.RE
1082.sp
1083.RS 4
1084.ie n \{\
1085\h'-04'\(bu\h'+03'\c
1086.\}
1087.el \{\
1088.sp -1
1089.IP \(bu 2.3
1090.\}
1091Linux/x64 (64\-bit): 1024 KB
1092.RE
1093.sp
1094.RS 4
1095.ie n \{\
1096\h'-04'\(bu\h'+03'\c
1097.\}
1098.el \{\
1099.sp -1
1100.IP \(bu 2.3
1101.\}
1102OS X (64\-bit): 1024 KB
1103.RE
1104.sp
1105.RS 4
1106.ie n \{\
1107\h'-04'\(bu\h'+03'\c
1108.\}
1109.el \{\
1110.sp -1
1111.IP \(bu 2.3
1112.\}
1113Oracle Solaris/i386 (32\-bit): 320 KB
1114.RE
1115.sp
1116.RS 4
1117.ie n \{\
1118\h'-04'\(bu\h'+03'\c
1119.\}
1120.el \{\
1121.sp -1
1122.IP \(bu 2.3
1123.\}
1124Oracle Solaris/x64 (64\-bit): 1024 KB
1125.RE
1126.sp
rgallardb6435452013-11-25 20:19:02 -08001127The following examples set the thread stack size to 1024 KB in different units:
rgallardf71f2512015-02-02 10:12:21 -08001128.sp
1129.if n \{\
1130.RS 4
1131.\}
1132.nf
1133\fB\-Xss1m\fR
1134\fB\-Xss1024k\fR
1135\fB\-Xss1048576\fR
1136
1137.fi
1138.if n \{\
1139.RE
1140.\}
1141This option is equivalent to
1142\fB\-XX:ThreadStackSize\fR\&.
1143.RE
1144.PP
1145\-Xusealtsigs
1146.RS 4
1147Use alternative signals instead of
1148\fBSIGUSR1\fR
1149and
1150\fBSIGUSR2\fR
1151for JVM internal signals\&. This option is equivalent to
1152\fB\-XX:+UseAltSigs\fR\&.
1153.RE
1154.PP
1155\-Xverify:\fImode\fR
1156.RS 4
1157Sets the mode of the bytecode verifier\&. Bytecode verification helps to troubleshoot some problems, but it also adds overhead to the running application\&. Possible
1158\fImode\fR
1159arguments for this option include the following:
1160.PP
rgallardb6435452013-11-25 20:19:02 -08001161none
rgallardf71f2512015-02-02 10:12:21 -08001162.RS 4
rgallardb6435452013-11-25 20:19:02 -08001163Do not verify the bytecode\&. This reduces startup time and also reduces the protection provided by Java\&.
rgallardf71f2512015-02-02 10:12:21 -08001164.RE
1165.PP
rgallardb6435452013-11-25 20:19:02 -08001166remote
rgallardf71f2512015-02-02 10:12:21 -08001167.RS 4
1168Verify those classes that are not loaded by the bootstrap class loader\&. This is the default behavior if you do not specify the
1169\fB\-Xverify\fR
1170option\&.
1171.RE
1172.PP
rgallardb6435452013-11-25 20:19:02 -08001173all
rgallardf71f2512015-02-02 10:12:21 -08001174.RS 4
rgallardb6435452013-11-25 20:19:02 -08001175Verify all classes\&.
rgallardf71f2512015-02-02 10:12:21 -08001176.RE
1177.RE
1178.SS "Advanced Runtime Options"
1179.PP
rgallardb6435452013-11-25 20:19:02 -08001180These options control the runtime behavior of the Java HotSpot VM\&.
rgallardf71f2512015-02-02 10:12:21 -08001181.PP
1182\-XX:+CheckEndorsedAndExtDirs
1183.RS 4
1184Enables the option to prevent the
1185\fBjava\fR
1186command 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:
1187.sp
1188.RS 4
1189.ie n \{\
1190\h'-04'\(bu\h'+03'\c
1191.\}
1192.el \{\
1193.sp -1
1194.IP \(bu 2.3
1195.\}
1196The
1197\fBjava\&.ext\&.dirs\fR
1198or
1199\fBjava\&.endorsed\&.dirs\fR
1200system property is set\&.
1201.RE
1202.sp
1203.RS 4
1204.ie n \{\
1205\h'-04'\(bu\h'+03'\c
1206.\}
1207.el \{\
1208.sp -1
1209.IP \(bu 2.3
1210.\}
1211The
1212\fBlib/endorsed\fR
1213directory exists and is not empty\&.
1214.RE
1215.sp
1216.RS 4
1217.ie n \{\
1218\h'-04'\(bu\h'+03'\c
1219.\}
1220.el \{\
1221.sp -1
1222.IP \(bu 2.3
1223.\}
1224The
1225\fBlib/ext\fR
1226directory contains any JAR files other than those of the JDK\&.
1227.RE
1228.sp
1229.RS 4
1230.ie n \{\
1231\h'-04'\(bu\h'+03'\c
1232.\}
1233.el \{\
1234.sp -1
1235.IP \(bu 2.3
1236.\}
1237The system\-wide platform\-specific extension directory contains any JAR files\&.
1238.RE
1239.RE
1240.PP
1241\-XX:+DisableAttachMechanism
1242.RS 4
1243Enables 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
1244\fBjcmd\fR,
1245\fBjstack\fR,
1246\fBjmap\fR, and
1247\fBjinfo\fR\&.
1248.RE
1249.PP
1250\-XX:ErrorFile=\fIfilename\fR
1251.RS 4
1252Specifies 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
1253\fBhs_err_pid\fR\fIpid\fR\fB\&.log\fR
1254where
1255\fIpid\fR
1256is 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
1257\fB%p\fR):
1258.sp
1259.if n \{\
1260.RS 4
1261.\}
1262.nf
1263\fB\-XX:ErrorFile=\&./hs_err_pid%p\&.log\fR
1264
1265.fi
1266.if n \{\
1267.RE
1268.\}
1269The following example shows how to set the error log to
1270\fB/var/log/java/java_error\&.log\fR:
1271.sp
1272.if n \{\
1273.RS 4
1274.\}
1275.nf
1276\fB\-XX:ErrorFile=/var/log/java/java_error\&.log\fR
1277
1278.fi
1279.if n \{\
1280.RE
1281.\}
1282If 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
1283\fB/tmp\fR\&.
1284.RE
1285.PP
1286\-XX:+FailOverToOldVerifier
1287.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001288Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001289.RE
1290.PP
1291\-XX:LargePageSizeInBytes=\fIsize\fR
1292.RS 4
1293On Solaris, sets the maximum size (in bytes) for large pages used for Java heap\&. The
1294\fIsize\fR
1295argument must be a power of 2 (2, 4, 8, 16, \&.\&.\&.)\&. Append the letter
1296\fBk\fR
1297or
1298\fBK\fR
1299to indicate kilobytes,
1300\fBm\fR
1301or
1302\fBM\fR
1303to indicate megabytes,
1304\fBg\fR
1305or
1306\fBG\fR
1307to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for large pages automatically\&.
1308.sp
rgallardb6435452013-11-25 20:19:02 -08001309The following example illustrates how to set the large page size to 4 megabytes (MB):
rgallardf71f2512015-02-02 10:12:21 -08001310.sp
1311.if n \{\
1312.RS 4
1313.\}
1314.nf
1315\fB\-XX:LargePageSizeInBytes=4m\fR
1316
1317.fi
1318.if n \{\
1319.RE
1320.\}
1321.RE
1322.PP
1323\-XX:MaxDirectMemorySize=\fIsize\fR
1324.RS 4
1325Sets the maximum total size (in bytes) of the New I/O (the
1326\fBjava\&.nio\fR
1327package) direct\-buffer allocations\&. Append the letter
1328\fBk\fR
1329or
1330\fBK\fR
1331to indicate kilobytes,
1332\fBm\fR
1333or
1334\fBM\fR
1335to indicate megabytes,
1336\fBg\fR
1337or
1338\fBG\fR
1339to indicate gigabytes\&. By default, the size is set to 0, meaning that the JVM chooses the size for NIO direct\-buffer allocations automatically\&.
1340.sp
rgallardb6435452013-11-25 20:19:02 -08001341The following examples illustrate how to set the NIO size to 1024 KB in different units:
rgallardf71f2512015-02-02 10:12:21 -08001342.sp
1343.if n \{\
1344.RS 4
1345.\}
1346.nf
1347\fB\-XX:MaxDirectMemorySize=1m\fR
1348\fB\-XX:MaxDirectMemorySize=1024k\fR
1349\fB\-XX:MaxDirectMemorySize=1048576\fR
1350
1351.fi
1352.if n \{\
1353.RE
1354.\}
1355.RE
1356.PP
1357\-XX:NativeMemoryTracking=\fImode\fR
1358.RS 4
1359Specifies the mode for tracking JVM native memory usage\&. Possible
1360\fImode\fR
1361arguments for this option include the following:
1362.PP
rgallardb6435452013-11-25 20:19:02 -08001363off
rgallardf71f2512015-02-02 10:12:21 -08001364.RS 4
1365Do not track JVM native memory usage\&. This is the default behavior if you do not specify the
1366\fB\-XX:NativeMemoryTracking\fR
1367option\&.
1368.RE
1369.PP
rgallardb6435452013-11-25 20:19:02 -08001370summary
rgallardf71f2512015-02-02 10:12:21 -08001371.RS 4
rgallardb6435452013-11-25 20:19:02 -08001372Only track memory usage by JVM subsystems, such as Java heap, class, code, and thread\&.
rgallardf71f2512015-02-02 10:12:21 -08001373.RE
1374.PP
rgallardb6435452013-11-25 20:19:02 -08001375detail
rgallardf71f2512015-02-02 10:12:21 -08001376.RS 4
1377In addition to tracking memory usage by JVM subsystems, track memory usage by individual
1378\fBCallSite\fR, individual virtual memory region and its committed regions\&.
1379.RE
1380.RE
1381.PP
1382\-XX:ObjectAlignmentInBytes=\fIalignment\fR
1383.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07001384Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001385.sp
rgallard04b0ca42014-10-17 11:33:22 -07001386The heap size limit in bytes is calculated as:
rgallardf71f2512015-02-02 10:12:21 -08001387.sp
1388\fB4GB * ObjectAlignmentInBytes\fR
1389.sp
rgallard04b0ca42014-10-17 11:33:22 -07001390Note: 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001391.RE
1392.PP
1393\-XX:OnError=\fIstring\fR
1394.RS 4
1395Sets 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\&.
1396.sp
1397The following example shows how the
1398\fB\-XX:OnError\fR
1399option can be used to run the
1400\fBgcore\fR
1401command to create the core image, and the debugger is started to attach to the process in case of an irrecoverable error (the
1402\fB%p\fR
1403designates the current process):
1404.sp
1405.if n \{\
1406.RS 4
1407.\}
1408.nf
1409\fB\-XX:OnError="gcore %p;dbx \- %p"\fR
1410
1411.fi
1412.if n \{\
1413.RE
1414.\}
1415.RE
1416.PP
1417\-XX:OnOutOfMemoryError=\fIstring\fR
1418.RS 4
1419Sets a custom command or a series of semicolon\-separated commands to run when an
1420\fBOutOfMemoryError\fR
1421exception 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
1422\fB\-XX:OnError\fR
1423option\&.
1424.RE
1425.PP
1426\-XX:+PerfDataSaveToFile
1427.RS 4
1428If enabled, saves
1429jstat(1) binary data when the Java application exits\&. This binary data is saved in a file named
1430\fBhsperfdata_\fR\fI<pid>\fR, where
1431\fI<pid>\fR
1432is the process identifier of the Java application you ran\&. Use
1433\fBjstat\fR
1434to display the performance data contained in this file as follows:
1435.sp
1436.if n \{\
1437.RS 4
1438.\}
1439.nf
1440\fBjstat \-class file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR
1441\fBjstat \-gc file:///\fR\fB\fI<path>\fR\fR\fB/hsperfdata_\fR\fB\fI<pid>\fR\fR
1442.fi
1443.if n \{\
1444.RE
1445.\}
1446.RE
1447.PP
1448\-XX:+PrintCommandLineFlags
1449.RS 4
rgallardb6435452013-11-25 20:19:02 -08001450Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001451.RE
1452.PP
1453\-XX:+PrintNMTStatistics
1454.RS 4
1455Enables printing of collected native memory tracking data at JVM exit when native memory tracking is enabled (see
1456\fB\-XX:NativeMemoryTracking\fR)\&. By default, this option is disabled and native memory tracking data is not printed\&.
1457.RE
1458.PP
1459\-XX:+RelaxAccessControlCheck
1460.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001461Decreases 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001462.RE
1463.PP
1464\-XX:+ShowMessageBoxOnError
1465.RS 4
rgallardb6435452013-11-25 20:19:02 -08001466Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001467.RE
1468.PP
1469\-XX:ThreadStackSize=\fIsize\fR
1470.RS 4
1471Sets the thread stack size (in bytes)\&. Append the letter
1472\fBk\fR
1473or
1474\fBK\fR
1475to indicate kilobytes,
1476\fBm\fR
1477or
1478\fBM\fR
1479to indicate megabytes,
1480\fBg\fR
1481or
1482\fBG\fR
1483to indicate gigabytes\&. The default value depends on the platform:
1484.sp
1485.RS 4
1486.ie n \{\
1487\h'-04'\(bu\h'+03'\c
1488.\}
1489.el \{\
1490.sp -1
1491.IP \(bu 2.3
1492.\}
1493Linux/ARM (32\-bit): 320 KB
1494.RE
1495.sp
1496.RS 4
1497.ie n \{\
1498\h'-04'\(bu\h'+03'\c
1499.\}
1500.el \{\
1501.sp -1
1502.IP \(bu 2.3
1503.\}
1504Linux/i386 (32\-bit): 320 KB
1505.RE
1506.sp
1507.RS 4
1508.ie n \{\
1509\h'-04'\(bu\h'+03'\c
1510.\}
1511.el \{\
1512.sp -1
1513.IP \(bu 2.3
1514.\}
1515Linux/x64 (64\-bit): 1024 KB
1516.RE
1517.sp
1518.RS 4
1519.ie n \{\
1520\h'-04'\(bu\h'+03'\c
1521.\}
1522.el \{\
1523.sp -1
1524.IP \(bu 2.3
1525.\}
1526OS X (64\-bit): 1024 KB
1527.RE
1528.sp
1529.RS 4
1530.ie n \{\
1531\h'-04'\(bu\h'+03'\c
1532.\}
1533.el \{\
1534.sp -1
1535.IP \(bu 2.3
1536.\}
1537Oracle Solaris/i386 (32\-bit): 320 KB
1538.RE
1539.sp
1540.RS 4
1541.ie n \{\
1542\h'-04'\(bu\h'+03'\c
1543.\}
1544.el \{\
1545.sp -1
1546.IP \(bu 2.3
1547.\}
1548Oracle Solaris/x64 (64\-bit): 1024 KB
1549.RE
1550.sp
rgallardb6435452013-11-25 20:19:02 -08001551The following examples show how to set the thread stack size to 1024 KB in different units:
rgallardf71f2512015-02-02 10:12:21 -08001552.sp
1553.if n \{\
1554.RS 4
1555.\}
1556.nf
1557\fB\-XX:ThreadStackSize=1m\fR
1558\fB\-XX:ThreadStackSize=1024k\fR
1559\fB\-XX:ThreadStackSize=1048576\fR
1560
1561.fi
1562.if n \{\
1563.RE
1564.\}
1565This option is equivalent to
1566\fB\-Xss\fR\&.
1567.RE
1568.PP
1569\-XX:+TraceClassLoading
1570.RS 4
rgallardb6435452013-11-25 20:19:02 -08001571Enables tracing of classes as they are loaded\&. By default, this option is disabled and classes are not traced\&.
rgallardf71f2512015-02-02 10:12:21 -08001572.RE
1573.PP
1574\-XX:+TraceClassLoadingPreorder
1575.RS 4
rgallardb6435452013-11-25 20:19:02 -08001576Enables tracing of all loaded classes in the order in which they are referenced\&. By default, this option is disabled and classes are not traced\&.
rgallardf71f2512015-02-02 10:12:21 -08001577.RE
1578.PP
1579\-XX:+TraceClassResolution
1580.RS 4
rgallardb6435452013-11-25 20:19:02 -08001581Enables tracing of constant pool resolutions\&. By default, this option is disabled and constant pool resolutions are not traced\&.
rgallardf71f2512015-02-02 10:12:21 -08001582.RE
1583.PP
1584\-XX:+TraceClassUnloading
1585.RS 4
rgallardb6435452013-11-25 20:19:02 -08001586Enables tracing of classes as they are unloaded\&. By default, this option is disabled and classes are not traced\&.
rgallardf71f2512015-02-02 10:12:21 -08001587.RE
1588.PP
1589\-XX:+TraceLoaderConstraints
1590.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001591Enables tracing of the loader constraints recording\&. By default, this option is disabled and loader constraints recording is not traced\&.
rgallardf71f2512015-02-02 10:12:21 -08001592.RE
1593.PP
1594\-XX:+UseAltSigs
1595.RS 4
1596Enables the use of alternative signals instead of
1597\fBSIGUSR1\fR
1598and
1599\fBSIGUSR2\fR
1600for JVM internal signals\&. By default, this option is disabled and alternative signals are not used\&. This option is equivalent to
1601\fB\-Xusealtsigs\fR\&.
1602.RE
1603.PP
1604\-XX:\-UseBiasedLocking
1605.RS 4
1606Disables 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
1607.sp
rgallard36ba8532014-06-06 15:45:48 -07001608By default, this option is enabled\&.
rgallardf71f2512015-02-02 10:12:21 -08001609.RE
1610.PP
1611\-XX:\-UseCompressedOops
1612.RS 4
1613Disables 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\&.
1614.sp
1615It is also possible to use compressed pointers when Java heap sizes are greater than 32GB\&. See the
1616\fB\-XX:ObjectAlignmentInBytes\fR
1617option\&.
1618.RE
1619.PP
1620\-XX:+UseHugeTLBFS
1621.RS 4
1622This option for Linux is the equivalent of specifying
1623\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
1624\fB\-XX:UseTransparentHugePages\fR
1625if you want this behavior\&.
1626.sp
1627For more information, see "Large Pages"\&.
1628.RE
1629.PP
1630\-XX:+UseLargePages
1631.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07001632Enables the use of large page memory\&. By default, this option is disabled and large page memory is not used\&.
rgallardf71f2512015-02-02 10:12:21 -08001633.sp
1634For more information, see "Large Pages"\&.
1635.RE
1636.PP
1637\-XX:+UseMembar
1638.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001639Enables 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\&.)
rgallardf71f2512015-02-02 10:12:21 -08001640.RE
1641.PP
1642\-XX:+UsePerfData
1643.RS 4
1644Enables the
1645\fBperfdata\fR
1646feature\&. This option is enabled by default to allow JVM monitoring and performance testing\&. Disabling it suppresses the creation of the
1647\fBhsperfdata_userid\fR
1648directories\&. To disable the
1649\fBperfdata\fR
1650feature, specify
1651\fB\-XX:\-UsePerfData\fR\&.
1652.RE
1653.PP
1654\-XX:+UseTransparentHugePages
1655.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07001656On 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001657.sp
1658For more information, see "Large Pages"\&.
1659.RE
1660.PP
1661\-XX:+AllowUserSignalHandlers
1662.RS 4
rgallardb6435452013-11-25 20:19:02 -08001663Enables installation of signal handlers by the application\&. By default, this option is disabled and the application is not allowed to install signal handlers\&.
rgallardf71f2512015-02-02 10:12:21 -08001664.RE
1665.SS "Advanced JIT Compiler Options"
1666.PP
1667These options control the dynamic just\-in\-time (JIT) compilation performed by the Java HotSpot VM\&.
1668.PP
1669\-XX:+AggressiveOpts
1670.RS 4
rgallardb6435452013-11-25 20:19:02 -08001671Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001672.RE
1673.PP
1674\-XX:AllocateInstancePrefetchLines=\fIlines\fR
1675.RS 4
rgallardb6435452013-11-25 20:19:02 -08001676Sets the number of lines to prefetch ahead of the instance allocation pointer\&. By default, the number of lines to prefetch is set to 1:
rgallardf71f2512015-02-02 10:12:21 -08001677.sp
1678.if n \{\
1679.RS 4
1680.\}
1681.nf
1682\fB\-XX:AllocateInstancePrefetchLines=1\fR
1683
1684.fi
1685.if n \{\
1686.RE
1687.\}
rgallard36ba8532014-06-06 15:45:48 -07001688Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001689.RE
1690.PP
1691\-XX:AllocatePrefetchDistance=\fIsize\fR
1692.RS 4
rgallardb6435452013-11-25 20:19:02 -08001693Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001694.sp
1695Negative values denote that prefetch distance is chosen based on the platform\&. Positive values are bytes to prefetch\&. Append the letter
1696\fBk\fR
1697or
1698\fBK\fR
1699to indicate kilobytes,
1700\fBm\fR
1701or
1702\fBM\fR
1703to indicate megabytes,
1704\fBg\fR
1705or
1706\fBG\fR
1707to indicate gigabytes\&. The default value is set to \-1\&.
1708.sp
rgallardb6435452013-11-25 20:19:02 -08001709The following example shows how to set the prefetch distance to 1024 bytes:
rgallardf71f2512015-02-02 10:12:21 -08001710.sp
1711.if n \{\
1712.RS 4
1713.\}
1714.nf
1715\fB\-XX:AllocatePrefetchDistance=1024\fR
1716
1717.fi
1718.if n \{\
1719.RE
1720.\}
rgallard36ba8532014-06-06 15:45:48 -07001721Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001722.RE
1723.PP
1724\-XX:AllocatePrefetchInstr=\fIinstruction\fR
1725.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001726Sets 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:
rgallardf71f2512015-02-02 10:12:21 -08001727.sp
1728.if n \{\
1729.RS 4
1730.\}
1731.nf
1732\fB\-XX:AllocatePrefetchInstr=0\fR
1733
1734.fi
1735.if n \{\
1736.RE
1737.\}
rgallard36ba8532014-06-06 15:45:48 -07001738Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001739.RE
1740.PP
1741\-XX:AllocatePrefetchLines=\fIlines\fR
1742.RS 4
rgallardb6435452013-11-25 20:19:02 -08001743Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08001744.sp
rgallardb6435452013-11-25 20:19:02 -08001745The following example shows how to set the number of loaded cache lines to 5:
rgallardf71f2512015-02-02 10:12:21 -08001746.sp
1747.if n \{\
1748.RS 4
1749.\}
1750.nf
1751\fB\-XX:AllocatePrefetchLines=5\fR
1752
1753.fi
1754.if n \{\
1755.RE
1756.\}
rgallard36ba8532014-06-06 15:45:48 -07001757Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001758.RE
1759.PP
1760\-XX:AllocatePrefetchStepSize=\fIsize\fR
1761.RS 4
1762Sets the step size (in bytes) for sequential prefetch instructions\&. Append the letter
1763\fBk\fR
1764or
1765\fBK\fR
1766to indicate kilobytes,
1767\fBm\fR
1768or
1769\fBM\fR
1770to indicate megabytes,
1771\fBg\fR
1772or
1773\fBG\fR
1774to indicate gigabytes\&. By default, the step size is set to 16 bytes:
1775.sp
1776.if n \{\
1777.RS 4
1778.\}
1779.nf
1780\fB\-XX:AllocatePrefetchStepSize=16\fR
1781
1782.fi
1783.if n \{\
1784.RE
1785.\}
rgallard36ba8532014-06-06 15:45:48 -07001786Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001787.RE
1788.PP
1789\-XX:AllocatePrefetchStyle=\fIstyle\fR
1790.RS 4
1791Sets the generated code style for prefetch instructions\&. The
1792\fIstyle\fR
1793argument is an integer from 0 to 3:
1794.PP
rgallardb6435452013-11-25 20:19:02 -080017950
rgallardf71f2512015-02-02 10:12:21 -08001796.RS 4
rgallardb6435452013-11-25 20:19:02 -08001797Do not generate prefetch instructions\&.
rgallardf71f2512015-02-02 10:12:21 -08001798.RE
1799.PP
rgallardb6435452013-11-25 20:19:02 -080018001
rgallardf71f2512015-02-02 10:12:21 -08001801.RS 4
rgallardb6435452013-11-25 20:19:02 -08001802Execute prefetch instructions after each allocation\&. This is the default parameter\&.
rgallardf71f2512015-02-02 10:12:21 -08001803.RE
1804.PP
rgallardb6435452013-11-25 20:19:02 -080018052
rgallardf71f2512015-02-02 10:12:21 -08001806.RS 4
1807Use the thread\-local allocation block (TLAB) watermark pointer to determine when prefetch instructions are executed\&.
1808.RE
1809.PP
rgallardb6435452013-11-25 20:19:02 -080018103
rgallardf71f2512015-02-02 10:12:21 -08001811.RS 4
rgallardb6435452013-11-25 20:19:02 -08001812Use BIS instruction on SPARC for allocation prefetch\&.
rgallardf71f2512015-02-02 10:12:21 -08001813.RE
1814.sp
rgallard36ba8532014-06-06 15:45:48 -07001815Only the Java HotSpot Server VM supports this option\&.
rgallardf71f2512015-02-02 10:12:21 -08001816.RE
1817.PP
1818\-XX:+BackgroundCompilation
1819.RS 4
1820Enables background compilation\&. This option is enabled by default\&. To disable background compilation, specify
1821\fB\-XX:\-BackgroundCompilation\fR
1822(this is equivalent to specifying
1823\fB\-Xbatch\fR)\&.
1824.RE
1825.PP
1826\-XX:CICompilerCount=\fIthreads\fR
1827.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001828Sets 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:
rgallardf71f2512015-02-02 10:12:21 -08001829.sp
1830.if n \{\
1831.RS 4
1832.\}
1833.nf
1834\fB\-XX:CICompilerCount=2\fR
1835
1836.fi
1837.if n \{\
1838.RE
1839.\}
1840.RE
1841.PP
1842\-XX:CodeCacheMinimumFreeSpace=\fIsize\fR
1843.RS 4
1844Sets the minimum free space (in bytes) required for compilation\&. Append the letter
1845\fBk\fR
1846or
1847\fBK\fR
1848to indicate kilobytes,
1849\fBm\fR
1850or
1851\fBM\fR
1852to indicate megabytes,
1853\fBg\fR
1854or
1855\fBG\fR
1856to 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:
1857.sp
1858.if n \{\
1859.RS 4
1860.\}
1861.nf
1862\fB\-XX:CodeCacheMinimumFreeSpace=1024m\fR
1863
1864.fi
1865.if n \{\
1866.RE
1867.\}
1868.RE
1869.PP
1870\-XX:CompileCommand=\fIcommand\fR,\fImethod\fR[,\fIoption\fR]
1871.RS 4
1872Specifies a command to perform on a method\&. For example, to exclude the
1873\fBindexOf()\fR
1874method of the
1875\fBString\fR
1876class from being compiled, use the following:
1877.sp
1878.if n \{\
1879.RS 4
1880.\}
1881.nf
1882\fB\-XX:CompileCommand=exclude,java/lang/String\&.indexOf\fR
1883
1884.fi
1885.if n \{\
1886.RE
1887.\}
1888Note 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
1889\fB\-XX:+PrintCompilation\fR
1890and
1891\fB\-XX:+LogCompilation\fR
1892options:
1893.sp
1894.if n \{\
1895.RS 4
1896.\}
1897.nf
1898\fB\-XX:CompileCommand=exclude,java\&.lang\&.String::indexOf\fR
1899
1900.fi
1901.if n \{\
1902.RE
1903.\}
1904If 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
1905\fBindexOf(String)\fR
1906method of the
1907\fBString\fR
1908class from being compiled, use the following:
1909.sp
1910.if n \{\
1911.RS 4
1912.\}
1913.nf
1914\fB\-XX:CompileCommand="exclude,java/lang/String\&.indexOf,(Ljava/lang/String;)I"\fR
1915
1916.fi
1917.if n \{\
1918.RE
1919.\}
1920You can also use the asterisk (*) as a wildcard for class and method names\&. For example, to exclude all
1921\fBindexOf()\fR
1922methods in all classes from being compiled, use the following:
1923.sp
1924.if n \{\
1925.RS 4
1926.\}
1927.nf
1928\fB\-XX:CompileCommand=exclude,*\&.indexOf\fR
1929
1930.fi
1931.if n \{\
1932.RE
1933.\}
1934The commas and periods are aliases for spaces, making it easier to pass compiler commands through a shell\&. You can pass arguments to
1935\fB\-XX:CompileCommand\fR
1936using spaces as separators by enclosing the argument in quotation marks:
1937.sp
1938.if n \{\
1939.RS 4
1940.\}
1941.nf
1942\fB\-XX:CompileCommand="exclude java/lang/String indexOf"\fR
1943
1944.fi
1945.if n \{\
1946.RE
1947.\}
1948Note that after parsing the commands passed on the command line using the
1949\fB\-XX:CompileCommand\fR
1950options, the JIT compiler then reads commands from the
1951\fB\&.hotspot_compiler\fR
1952file\&. You can add commands to this file or specify a different file using the
1953\fB\-XX:CompileCommandFile\fR
1954option\&.
1955.sp
1956To add several commands, either specify the
1957\fB\-XX:CompileCommand\fR
1958option multiple times, or separate each argument with the newline separator (\fB\en\fR)\&. The following commands are available:
1959.PP
rgallard36ba8532014-06-06 15:45:48 -07001960break
rgallardf71f2512015-02-02 10:12:21 -08001961.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001962Set a breakpoint when debugging the JVM to stop at the beginning of compilation of the specified method\&.
rgallardf71f2512015-02-02 10:12:21 -08001963.RE
1964.PP
rgallard36ba8532014-06-06 15:45:48 -07001965compileonly
rgallardf71f2512015-02-02 10:12:21 -08001966.RS 4
1967Exclude all methods from compilation except for the specified method\&. As an alternative, you can use the
1968\fB\-XX:CompileOnly\fR
1969option, which allows to specify several methods\&.
1970.RE
1971.PP
rgallard36ba8532014-06-06 15:45:48 -07001972dontinline
rgallardf71f2512015-02-02 10:12:21 -08001973.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001974Prevent inlining of the specified method\&.
rgallardf71f2512015-02-02 10:12:21 -08001975.RE
1976.PP
rgallard36ba8532014-06-06 15:45:48 -07001977exclude
rgallardf71f2512015-02-02 10:12:21 -08001978.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001979Exclude the specified method from compilation\&.
rgallardf71f2512015-02-02 10:12:21 -08001980.RE
1981.PP
rgallard36ba8532014-06-06 15:45:48 -07001982help
rgallardf71f2512015-02-02 10:12:21 -08001983.RS 4
1984Print a help message for the
1985\fB\-XX:CompileCommand\fR
1986option\&.
1987.RE
1988.PP
rgallard36ba8532014-06-06 15:45:48 -07001989inline
rgallardf71f2512015-02-02 10:12:21 -08001990.RS 4
rgallard36ba8532014-06-06 15:45:48 -07001991Attempt to inline the specified method\&.
rgallardf71f2512015-02-02 10:12:21 -08001992.RE
1993.PP
rgallard36ba8532014-06-06 15:45:48 -07001994log
rgallardf71f2512015-02-02 10:12:21 -08001995.RS 4
1996Exclude compilation logging (with the
1997\fB\-XX:+LogCompilation\fR
1998option) for all methods except for the specified method\&. By default, logging is performed for all compiled methods\&.
1999.RE
2000.PP
rgallard36ba8532014-06-06 15:45:48 -07002001option
rgallardf71f2512015-02-02 10:12:21 -08002002.RS 4
2003This 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
2004\fBBlockLayoutByFrequency\fR
2005option for the
2006\fBappend()\fR
2007method of the
2008\fBStringBuffer\fR
2009class, use the following:
2010.sp
2011.if n \{\
2012.RS 4
2013.\}
2014.nf
2015\fB\-XX:CompileCommand=option,java/lang/StringBuffer\&.append,BlockLayoutByFrequency\fR
2016
2017.fi
2018.if n \{\
2019.RE
2020.\}
rgallard36ba8532014-06-06 15:45:48 -07002021You can specify multiple compilation options, separated by commas or spaces\&.
rgallardf71f2512015-02-02 10:12:21 -08002022.RE
2023.PP
rgallard36ba8532014-06-06 15:45:48 -07002024print
rgallardf71f2512015-02-02 10:12:21 -08002025.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002026Print generated assembler code after compilation of the specified method\&.
rgallardf71f2512015-02-02 10:12:21 -08002027.RE
2028.PP
rgallard36ba8532014-06-06 15:45:48 -07002029quiet
rgallardf71f2512015-02-02 10:12:21 -08002030.RS 4
2031Do not print the compile commands\&. By default, the commands that you specify with the \-\fBXX:CompileCommand\fR
2032option are printed; for example, if you exclude from compilation the
2033\fBindexOf()\fR
2034method of the
2035\fBString\fR
2036class, then the following will be printed to standard output:
2037.sp
2038.if n \{\
2039.RS 4
2040.\}
2041.nf
2042\fBCompilerOracle: exclude java/lang/String\&.indexOf\fR
2043
2044.fi
2045.if n \{\
2046.RE
2047.\}
2048You can suppress this by specifying the
2049\fB\-XX:CompileCommand=quiet\fR
2050option before other
2051\fB\-XX:CompileCommand\fR
2052options\&.
2053.RE
2054.RE
2055.PP
2056\-XX:CompileCommandFile=\fIfilename\fR
2057.RS 4
2058Sets the file from which JIT compiler commands are read\&. By default, the
2059\fB\&.hotspot_compiler\fR
2060file is used to store commands performed by the JIT compiler\&.
2061.sp
2062Each 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
2063\fBtoString()\fR
2064method of the
2065\fBString\fR
2066class:
2067.sp
2068.if n \{\
2069.RS 4
2070.\}
2071.nf
2072\fBprint java/lang/String toString\fR
2073
2074.fi
2075.if n \{\
2076.RE
2077.\}
2078For more information about specifying the commands for the JIT compiler to perform on methods, see the
2079\fB\-XX:CompileCommand\fR
2080option\&.
2081.RE
2082.PP
2083\-XX:CompileOnly=\fImethods\fR
2084.RS 4
2085Sets 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
2086\fBlength()\fR
2087method of the
2088\fBString\fR
2089class and the
2090\fBsize()\fR
2091method of the
2092\fBList\fR
2093class, use the following:
2094.sp
2095.if n \{\
2096.RS 4
2097.\}
2098.nf
2099\fB\-XX:CompileOnly=java/lang/String\&.length,java/util/List\&.size\fR
2100
2101.fi
2102.if n \{\
2103.RE
2104.\}
2105Note 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
2106\fB\-XX:+PrintCompilation\fR
2107and
2108\fB\-XX:+LogCompilation\fR
2109options:
2110.sp
2111.if n \{\
2112.RS 4
2113.\}
2114.nf
2115\fB\-XX:CompileOnly=java\&.lang\&.String::length,java\&.util\&.List::size\fR
2116
2117.fi
2118.if n \{\
2119.RE
2120.\}
rgallard36ba8532014-06-06 15:45:48 -07002121Although 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:
rgallardf71f2512015-02-02 10:12:21 -08002122.sp
2123.if n \{\
2124.RS 4
2125.\}
2126.nf
2127\fB\-XX:CompileOnly=java/lang/String\fR
2128\fB\-XX:CompileOnly=java/lang\fR
2129\fB\-XX:CompileOnly=\&.length\fR
2130
2131.fi
2132.if n \{\
2133.RE
2134.\}
2135.RE
2136.PP
2137\-XX:CompileThreshold=\fIinvocations\fR
2138.RS 4
2139Sets 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
2140\fB\-XX:+TieredCompilation\fR\&. The following example shows how to set the number of interpreted method invocations to 5,000:
2141.sp
2142.if n \{\
2143.RS 4
2144.\}
2145.nf
2146\fB\-XX:CompileThreshold=5000\fR
2147
2148.fi
2149.if n \{\
2150.RE
2151.\}
2152You can completely disable interpretation of Java methods before compilation by specifying the
2153\fB\-Xcomp\fR
2154option\&.
2155.RE
2156.PP
2157\-XX:+DoEscapeAnalysis
2158.RS 4
2159Enables the use of escape analysis\&. This option is enabled by default\&. To disable the use of escape analysis, specify
2160\fB\-XX:\-DoEscapeAnalysis\fR\&. Only the Java HotSpot Server VM supports this option\&.
2161.RE
2162.PP
2163\-XX:InitialCodeCacheSize=\fIsize\fR
2164.RS 4
2165Sets the initial code cache size (in bytes)\&. Append the letter
2166\fBk\fR
2167or
2168\fBK\fR
2169to indicate kilobytes,
2170\fBm\fR
2171or
2172\fBM\fR
2173to indicate megabytes,
2174\fBg\fR
2175or
2176\fBG\fR
2177to 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:
2178.sp
2179.if n \{\
2180.RS 4
2181.\}
2182.nf
2183\fB\-XX:InitialCodeCacheSize=32k\fR
2184
2185.fi
2186.if n \{\
2187.RE
2188.\}
2189.RE
2190.PP
2191\-XX:+Inline
2192.RS 4
2193Enables method inlining\&. This option is enabled by default to increase performance\&. To disable method inlining, specify
2194\fB\-XX:\-Inline\fR\&.
2195.RE
2196.PP
2197\-XX:InlineSmallCode=\fIsize\fR
2198.RS 4
2199Sets the maximum code size (in bytes) for compiled methods that should be inlined\&. Append the letter
2200\fBk\fR
2201or
2202\fBK\fR
2203to indicate kilobytes,
2204\fBm\fR
2205or
2206\fBM\fR
2207to indicate megabytes,
2208\fBg\fR
2209or
2210\fBG\fR
2211to 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:
2212.sp
2213.if n \{\
2214.RS 4
2215.\}
2216.nf
2217\fB\-XX:InlineSmallCode=1000\fR
2218
2219.fi
2220.if n \{\
2221.RE
2222.\}
2223.RE
2224.PP
2225\-XX:+LogCompilation
2226.RS 4
2227Enables logging of compilation activity to a file named
2228\fBhotspot\&.log\fR
2229in the current working directory\&. You can specify a different log file path and name using the
2230\fB\-XX:LogFile\fR
2231option\&.
2232.sp
2233By default, this option is disabled and compilation activity is not logged\&. The
2234\fB\-XX:+LogCompilation\fR
2235option has to be used together with the
2236\fB\-XX:UnlockDiagnosticVMOptions\fR
2237option that unlocks diagnostic JVM options\&.
2238.sp
2239You can enable verbose diagnostic output with a message printed to the console every time a method is compiled by using the
2240\fB\-XX:+PrintCompilation\fR
2241option\&.
2242.RE
2243.PP
2244\-XX:MaxInlineSize=\fIsize\fR
2245.RS 4
2246Sets the maximum bytecode size (in bytes) of a method to be inlined\&. Append the letter
2247\fBk\fR
2248or
2249\fBK\fR
2250to indicate kilobytes,
2251\fBm\fR
2252or
2253\fBM\fR
2254to indicate megabytes,
2255\fBg\fR
2256or
2257\fBG\fR
2258to indicate gigabytes\&. By default, the maximum bytecode size is set to 35 bytes:
2259.sp
2260.if n \{\
2261.RS 4
2262.\}
2263.nf
2264\fB\-XX:MaxInlineSize=35\fR
2265
2266.fi
2267.if n \{\
2268.RE
2269.\}
2270.RE
2271.PP
2272\-XX:MaxNodeLimit=\fInodes\fR
2273.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002274Sets the maximum number of nodes to be used during single method compilation\&. By default, the maximum number of nodes is set to 65,000:
rgallardf71f2512015-02-02 10:12:21 -08002275.sp
2276.if n \{\
2277.RS 4
2278.\}
2279.nf
2280\fB\-XX:MaxNodeLimit=65000\fR
2281
2282.fi
2283.if n \{\
2284.RE
2285.\}
2286.RE
2287.PP
2288\-XX:MaxTrivialSize=\fIsize\fR
2289.RS 4
2290Sets the maximum bytecode size (in bytes) of a trivial method to be inlined\&. Append the letter
2291\fBk\fR
2292or
2293\fBK\fR
2294to indicate kilobytes,
2295\fBm\fR
2296or
2297\fBM\fR
2298to indicate megabytes,
2299\fBg\fR
2300or
2301\fBG\fR
2302to indicate gigabytes\&. By default, the maximum bytecode size of a trivial method is set to 6 bytes:
2303.sp
2304.if n \{\
2305.RS 4
2306.\}
2307.nf
2308\fB\-XX:MaxTrivialSize=6\fR
2309
2310.fi
2311.if n \{\
2312.RE
2313.\}
2314.RE
2315.PP
2316\-XX:+OptimizeStringConcat
2317.RS 4
2318Enables the optimization of
2319\fBString\fR
2320concatenation operations\&. This option is enabled by default\&. To disable the optimization of
2321\fBString\fR
2322concatenation operations, specify
2323\fB\-XX:\-OptimizeStringConcat\fR\&. Only the Java HotSpot Server VM supports this option\&.
2324.RE
2325.PP
2326\-XX:+PrintAssembly
2327.RS 4
2328Enables printing of assembly code for bytecoded and native methods by using the external
2329\fBdisassembler\&.so\fR
2330library\&. This enables you to see the generated code, which may help you to diagnose performance issues\&.
2331.sp
2332By default, this option is disabled and assembly code is not printed\&. The
2333\fB\-XX:+PrintAssembly\fR
2334option has to be used together with the
2335\fB\-XX:UnlockDiagnosticVMOptions\fR
2336option that unlocks diagnostic JVM options\&.
2337.RE
2338.PP
2339\-XX:+PrintCompilation
2340.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002341Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002342.sp
2343You can also log compilation activity to a file by using the
2344\fB\-XX:+LogCompilation\fR
2345option\&.
2346.RE
2347.PP
2348\-XX:+PrintInlining
2349.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002350Enables printing of inlining decisions\&. This enables you to see which methods are getting inlined\&.
rgallardf71f2512015-02-02 10:12:21 -08002351.sp
2352By default, this option is disabled and inlining information is not printed\&. The
2353\fB\-XX:+PrintInlining\fR
2354option has to be used together with the
2355\fB\-XX:+UnlockDiagnosticVMOptions\fR
2356option that unlocks diagnostic JVM options\&.
2357.RE
2358.PP
2359\-XX:ReservedCodeCacheSize=\fIsize\fR
2360.RS 4
2361Sets the maximum code cache size (in bytes) for JIT\-compiled code\&. Append the letter
2362\fBk\fR
2363or
2364\fBK\fR
2365to indicate kilobytes,
2366\fBm\fR
2367or
2368\fBM\fR
2369to indicate megabytes,
2370\fBg\fR
2371or
2372\fBG\fR
2373to indicate gigabytes\&. The default maximum code cache size is 240 MB; if you disable tiered compilation with the option
2374\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
2375\fB\-XX:InitialCodeCacheSize\fR\&. This option is equivalent to
2376\fB\-Xmaxjitcodesize\fR\&.
2377.RE
2378.PP
2379\-XX:RTMAbortRatio=\fIabort_ratio\fR
2380.RS 4
2381The 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
2382\fB\-XX:+UseRTMDeopt\fR
2383option 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\&.
2384.RE
2385.PP
2386\-XX:RTMRetryCount=\fInumber_of_retries\fR
2387.RS 4
2388RTM 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
2389\fB\-XX:UseRTMLocking\fR
2390option must be enabled\&.
2391.RE
2392.PP
2393\-XX:\-TieredCompilation
2394.RS 4
2395Disables the use of tiered compilation\&. By default, this option is enabled\&. Only the Java HotSpot Server VM supports this option\&.
2396.RE
2397.PP
2398\-XX:+UseAES
2399.RS 4
2400Enables 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\&.
2401.RE
2402.PP
2403\-XX:+UseAESIntrinsics
2404.RS 4
2405UseAES 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
2406\fB\-XX:\-UseAES \-XX:\-UseAESIntrinsics\fR\&. For example, to enable hardware AES, use the following flags:
2407.sp
2408.if n \{\
2409.RS 4
2410.\}
2411.nf
2412\fB\-XX:+UseAES \-XX:+UseAESIntrinsics\fR
2413
2414.fi
2415.if n \{\
2416.RE
2417.\}
2418To support UseAES and UseAESIntrinsics flags for 32\-bit and 64\-bit use
2419\fB\-server\fR
2420option to choose Java HotSpot Server VM\&. These flags are not supported on Client VM\&.
2421.RE
2422.PP
2423\-XX:+UseCodeCacheFlushing
2424.RS 4
2425Enables 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
2426\fB\-XX:\-UseCodeCacheFlushing\fR\&.
2427.RE
2428.PP
2429\-XX:+UseCondCardMark
2430.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002431Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002432.RE
2433.PP
2434\-XX:+UseRTMDeopt
2435.RS 4
2436Auto\-tunes RTM locking depending on the abort ratio\&. This ratio is specified by
2437\fB\-XX:RTMAbortRatio\fR
2438option\&. 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
2439\fB\-XX:+UseRTMLocking\fR
2440option must be enabled\&.
2441.RE
2442.PP
2443\-XX:+UseRTMLocking
2444.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07002445Generate 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)\&.
rgallardf71f2512015-02-02 10:12:21 -08002446.sp
2447RTM 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
2448\fBXBEGIN\fR,
2449\fBXABORT\fR,
2450\fBXEND\fR, and
2451\fBXTEST\fR\&. The
2452\fBXBEGIN\fR
2453and
2454\fBXEND\fR
2455instructions 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
2456\fBXEND\fR
2457instruction\&. The
2458\fBXABORT\fR
2459instruction can be used to explicitly abort a transaction and the
2460\fBXEND\fR
2461instruction to check if a set of instructions are being run in a transaction\&.
2462.sp
2463A 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\&.
2464.sp
2465RTM 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\&.
2466.RE
2467.PP
2468\-XX:+UseSHA
2469.RS 4
2470Enables hardware\-based intrinsics for SHA crypto hash functions for SPARC hardware\&.
2471\fBUseSHA\fR
2472is used in conjunction with the
2473\fBUseSHA1Intrinsics\fR,
2474\fBUseSHA256Intrinsics\fR, and
2475\fBUseSHA512Intrinsics\fR
2476options\&.
2477.sp
2478The
2479\fBUseSHA\fR
2480and
2481\fBUseSHA*Intrinsics\fR
2482flags are enabled by default, and are supported only for Java HotSpot Server VM 64\-bit on SPARC T4 and newer\&.
2483.sp
2484This feature is only applicable when using the
2485\fBsun\&.security\&.provider\&.Sun\fR
2486provider for SHA operations\&.
2487.sp
2488To disable all hardware\-based SHA intrinsics, specify
2489\fB\-XX:\-UseSHA\fR\&. To disable only a particular SHA intrinsic, use the appropriate corresponding option\&. For example:
2490\fB\-XX:\-UseSHA256Intrinsics\fR\&.
2491.RE
2492.PP
2493\-XX:+UseSHA1Intrinsics
2494.RS 4
2495Enables intrinsics for SHA\-1 crypto hash function\&.
2496.RE
2497.PP
2498\-XX:+UseSHA256Intrinsics
2499.RS 4
2500Enables intrinsics for SHA\-224 and SHA\-256 crypto hash functions\&.
2501.RE
2502.PP
2503\-XX:+UseSHA512Intrinsics
2504.RS 4
2505Enables intrinsics for SHA\-384 and SHA\-512 crypto hash functions\&.
2506.RE
2507.PP
2508\-XX:+UseSuperWord
2509.RS 4
2510Enables 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
2511\fB\-XX:\-UseSuperWord\fR\&. Only the Java HotSpot Server VM supports this option\&.
2512.RE
2513.SS "Advanced Serviceability Options"
2514.PP
rgallard36ba8532014-06-06 15:45:48 -07002515These options provide the ability to gather system information and perform extensive debugging\&.
rgallardf71f2512015-02-02 10:12:21 -08002516.PP
2517\-XX:+ExtendedDTraceProbes
2518.RS 4
2519Enables additional
2520\fBdtrace\fR
2521tool probes that impact the performance\&. By default, this option is disabled and
2522\fBdtrace\fR
2523performs only standard probes\&.
2524.RE
2525.PP
2526\-XX:+HeapDumpOnOutOfMemory
2527.RS 4
2528Enables the dumping of the Java heap to a file in the current directory by using the heap profiler (HPROF) when a
2529\fBjava\&.lang\&.OutOfMemoryError\fR
2530exception is thrown\&. You can explicitly set the heap dump file path and name using the
2531\fB\-XX:HeapDumpPath\fR
2532option\&. By default, this option is disabled and the heap is not dumped when an
2533\fBOutOfMemoryError\fR
2534exception is thrown\&.
2535.RE
2536.PP
2537\-XX:HeapDumpPath=\fIpath\fR
2538.RS 4
2539Sets the path and file name for writing the heap dump provided by the heap profiler (HPROF) when the
2540\fB\-XX:+HeapDumpOnOutOfMemoryError\fR
2541option is set\&. By default, the file is created in the current working directory, and it is named
2542\fBjava_pid\fR\fIpid\fR\fB\&.hprof\fR
2543where
2544\fIpid\fR
2545is the identifier of the process that caused the error\&. The following example shows how to set the default file explicitly (\fB%p\fR
2546represents the current process identificator):
2547.sp
2548.if n \{\
2549.RS 4
2550.\}
2551.nf
2552\fB\-XX:HeapDumpPath=\&./java_pid%p\&.hprof\fR
2553
2554.fi
2555.if n \{\
2556.RE
2557.\}
2558The following example shows how to set the heap dump file to
2559\fB/var/log/java/java_heapdump\&.hprof\fR:
2560.sp
2561.if n \{\
2562.RS 4
2563.\}
2564.nf
2565\fB\-XX:HeapDumpPath=/var/log/java/java_heapdump\&.hprof\fR
2566
2567.fi
2568.if n \{\
2569.RE
2570.\}
2571.RE
2572.PP
2573\-XX:LogFile=\fIpath\fR
2574.RS 4
2575Sets 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
2576\fBhotspot\&.log\fR\&.
2577.sp
2578The following example shows how to set the log file to
2579\fB/var/log/java/hotspot\&.log\fR:
2580.sp
2581.if n \{\
2582.RS 4
2583.\}
2584.nf
2585\fB\-XX:LogFile=/var/log/java/hotspot\&.log\fR
2586
2587.fi
2588.if n \{\
2589.RE
2590.\}
2591.RE
2592.PP
2593\-XX:+PrintClassHistogram
2594.RS 4
2595Enables printing of a class instance histogram after a
2596\fBControl+C\fR
2597event (\fBSIGTERM\fR)\&. By default, this option is disabled\&.
2598.sp
2599Setting this option is equivalent to running the
2600\fBjmap \-histo\fR
2601command, or the
2602\fBjcmd \fR\fIpid\fR\fB GC\&.class_histogram\fR
2603command, where
2604\fIpid\fR
2605is the current Java process identifier\&.
2606.RE
2607.PP
2608\-XX:+PrintConcurrentLocks
2609.RS 4
2610Enables printing of locks after a event\&. By default, this option is disabled\&.
2611.sp
2612Enables printing of
2613\fBjava\&.util\&.concurrent\fR
2614locks after a
2615\fBControl+C\fR
2616event (\fBSIGTERM\fR)\&. By default, this option is disabled\&.
2617.sp
2618Setting this option is equivalent to running the
2619\fBjstack \-l\fR
2620command or the
2621\fBjcmd \fR\fIpid\fR\fB Thread\&.print \-l\fR
2622command, where
2623\fIpid\fR
2624is the current Java process identifier\&.
2625.RE
2626.PP
2627\-XX:+UnlockDiagnosticVMOptions
2628.RS 4
rgallard36ba8532014-06-06 15:45:48 -07002629Unlocks the options intended for diagnosing the JVM\&. By default, this option is disabled and diagnostic options are not available\&.
rgallardf71f2512015-02-02 10:12:21 -08002630.RE
2631.SS "Advanced Garbage Collection Options"
2632.PP
rgallard36ba8532014-06-06 15:45:48 -07002633These options control how garbage collection (GC) is performed by the Java HotSpot VM\&.
rgallardf71f2512015-02-02 10:12:21 -08002634.PP
2635\-XX:+AggressiveHeap
2636.RS 4
2637Enables 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\&.
2638.RE
2639.PP
2640\-XX:+AlwaysPreTouch
2641.RS 4
2642Enables touching of every page on the Java heap during JVM initialization\&. This gets all pages into the memory before entering the
2643\fBmain()\fR
2644method\&. 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\&.
2645.RE
2646.PP
2647\-XX:+CMSClassUnloadingEnabled
2648.RS 4
2649Enables 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
2650\fB\-XX:\-CMSClassUnloadingEnabled\fR\&.
2651.RE
2652.PP
2653\-XX:CMSExpAvgFactor=\fIpercent\fR
2654.RS 4
rgallardb6435452013-11-25 20:19:02 -08002655Sets 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%:
rgallardf71f2512015-02-02 10:12:21 -08002656.sp
2657.if n \{\
2658.RS 4
2659.\}
2660.nf
2661\fB\-XX:CMSExpAvgFactor=15\fR
2662
2663.fi
2664.if n \{\
2665.RE
2666.\}
2667.RE
2668.PP
2669\-XX:CMSInitiatingOccupancyFraction=\fIpercent\fR
2670.RS 4
2671Sets 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
2672\fB\-XX:CMSTriggerRatio\fR
2673is used to define the value of the initiating occupancy fraction\&.
2674.sp
rgallardb6435452013-11-25 20:19:02 -08002675The following example shows how to set the occupancy fraction to 20%:
rgallardf71f2512015-02-02 10:12:21 -08002676.sp
2677.if n \{\
2678.RS 4
2679.\}
2680.nf
2681\fB\-XX:CMSInitiatingOccupancyFraction=20\fR
2682
2683.fi
2684.if n \{\
2685.RE
2686.\}
2687.RE
2688.PP
2689\-XX:+CMSScavengeBeforeRemark
2690.RS 4
rgallardb6435452013-11-25 20:19:02 -08002691Enables scavenging attempts before the CMS remark step\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08002692.RE
2693.PP
2694\-XX:CMSTriggerRatio=\fIpercent\fR
2695.RS 4
2696Sets the percentage (0 to 100) of the value specified by
2697\fB\-XX:MinHeapFreeRatio\fR
2698that is allocated before a CMS collection cycle commences\&. The default value is set to 80%\&.
2699.sp
rgallardb6435452013-11-25 20:19:02 -08002700The following example shows how to set the occupancy fraction to 75%:
rgallardf71f2512015-02-02 10:12:21 -08002701.sp
2702.if n \{\
2703.RS 4
2704.\}
2705.nf
2706\fB\-XX:CMSTriggerRatio=75\fR
2707
2708.fi
2709.if n \{\
2710.RE
2711.\}
2712.RE
2713.PP
2714\-XX:ConcGCThreads=\fIthreads\fR
2715.RS 4
rgallardb6435452013-11-25 20:19:02 -08002716Sets the number of threads used for concurrent GC\&. The default value depends on the number of CPUs available to the JVM\&.
rgallardf71f2512015-02-02 10:12:21 -08002717.sp
rgallardb6435452013-11-25 20:19:02 -08002718For example, to set the number of threads for concurrent GC to 2, specify the following option:
rgallardf71f2512015-02-02 10:12:21 -08002719.sp
2720.if n \{\
2721.RS 4
2722.\}
2723.nf
2724\fB\-XX:ConcGCThreads=2\fR
2725
2726.fi
2727.if n \{\
2728.RE
2729.\}
2730.RE
2731.PP
2732\-XX:+DisableExplicitGC
2733.RS 4
2734Enables the option that disables processing of calls to
2735\fBSystem\&.gc()\fR\&. This option is disabled by default, meaning that calls to
2736\fBSystem\&.gc()\fR
2737are processed\&. If processing of calls to
2738\fBSystem\&.gc()\fR
2739is disabled, the JVM still performs GC when necessary\&.
2740.RE
2741.PP
2742\-XX:+ExplicitGCInvokesConcurrent
2743.RS 4
2744Enables invoking of concurrent GC by using the
2745\fBSystem\&.gc()\fR
2746request\&. This option is disabled by default and can be enabled only together with the
2747\fB\-XX:+UseConcMarkSweepGC\fR
2748option\&.
2749.RE
2750.PP
2751\-XX:+ExplicitGCInvokesConcurrentAndUnloadsClasses
2752.RS 4
2753Enables invoking of concurrent GC by using the
2754\fBSystem\&.gc()\fR
2755request and unloading of classes during the concurrent GC cycle\&. This option is disabled by default and can be enabled only together with the
2756\fB\-XX:+UseConcMarkSweepGC\fR
2757option\&.
2758.RE
2759.PP
2760\-XX:G1HeapRegionSize=\fIsize\fR
2761.RS 4
2762Sets 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\&.
2763.sp
rgallardb6435452013-11-25 20:19:02 -08002764The following example shows how to set the size of the subdivisions to 16 MB:
rgallardf71f2512015-02-02 10:12:21 -08002765.sp
2766.if n \{\
2767.RS 4
2768.\}
2769.nf
2770\fB\-XX:G1HeapRegionSize=16m\fR
2771
2772.fi
2773.if n \{\
2774.RE
2775.\}
2776.RE
2777.PP
2778\-XX:+G1PrintHeapRegions
2779.RS 4
rgallardb6435452013-11-25 20:19:02 -08002780Enables the printing of information about which regions are allocated and which are reclaimed by the G1 collector\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08002781.RE
2782.PP
2783\-XX:G1ReservePercent=\fIpercent\fR
2784.RS 4
rgallardb6435452013-11-25 20:19:02 -08002785Sets 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%\&.
rgallardf71f2512015-02-02 10:12:21 -08002786.sp
rgallardb6435452013-11-25 20:19:02 -08002787The following example shows how to set the reserved heap to 20%:
rgallardf71f2512015-02-02 10:12:21 -08002788.sp
2789.if n \{\
2790.RS 4
2791.\}
2792.nf
2793\fB\-XX:G1ReservePercent=20\fR
2794
2795.fi
2796.if n \{\
2797.RE
2798.\}
2799.RE
2800.PP
2801\-XX:InitialHeapSize=\fIsize\fR
2802.RS 4
2803Sets 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
2804\fBk\fR
2805or
2806\fBK\fR
2807to indicate kilobytes,
2808\fBm\fR
2809or
2810\fBM\fR
2811to indicate megabytes,
2812\fBg\fR
2813or
2814\fBG\fR
2815to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. See the section "Ergonomics" in
2816\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR
2817at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.
2818.sp
rgallardb6435452013-11-25 20:19:02 -08002819The following examples show how to set the size of allocated memory to 6 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -08002820.sp
2821.if n \{\
2822.RS 4
2823.\}
2824.nf
2825\fB\-XX:InitialHeapSize=6291456\fR
2826\fB\-XX:InitialHeapSize=6144k\fR
2827\fB\-XX:InitialHeapSize=6m\fR
2828
2829.fi
2830.if n \{\
2831.RE
2832.\}
2833If 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
2834\fB\-XX:NewSize\fR
2835option\&.
2836.RE
2837.PP
2838\-XX:InitialSurvivorRatio=\fIratio\fR
2839.RS 4
2840Sets the initial survivor space ratio used by the throughput garbage collector (which is enabled by the
2841\fB\-XX:+UseParallelGC\fR
2842and/or \-\fBXX:+UseParallelOldGC\fR
2843options)\&. Adaptive sizing is enabled by default with the throughput garbage collector by using the
2844\fB\-XX:+UseParallelGC\fR
2845and
2846\fB\-XX:+UseParallelOldGC\fR
2847options, and survivor space is resized according to the application behavior, starting with the initial value\&. If adaptive sizing is disabled (using the
2848\fB\-XX:\-UseAdaptiveSizePolicy\fR
2849option), then the
2850\fB\-XX:SurvivorRatio\fR
2851option should be used to set the size of the survivor space for the entire execution of the application\&.
2852.sp
rgallardb6435452013-11-25 20:19:02 -08002853The 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):
rgallardf71f2512015-02-02 10:12:21 -08002854.sp
2855.if n \{\
2856.RS 4
2857.\}
2858.nf
2859\fBS=Y/(R+2)\fR
2860
2861.fi
2862.if n \{\
2863.RE
2864.\}
rgallardb6435452013-11-25 20:19:02 -08002865The 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002866.sp
rgallardb6435452013-11-25 20:19:02 -08002867By 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002868.sp
rgallardb6435452013-11-25 20:19:02 -08002869The following example shows how to set the initial survivor space ratio to 4:
rgallardf71f2512015-02-02 10:12:21 -08002870.sp
2871.if n \{\
2872.RS 4
2873.\}
2874.nf
2875\fB\-XX:InitialSurvivorRatio=4\fR
2876
2877.fi
2878.if n \{\
2879.RE
2880.\}
2881.RE
2882.PP
2883\-XX:InitiatingHeapOccupancyPercent=\fIpercent\fR
2884.RS 4
rgallardb6435452013-11-25 20:19:02 -08002885Sets 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)\&.
rgallardf71f2512015-02-02 10:12:21 -08002886.sp
rgallardb6435452013-11-25 20:19:02 -08002887By 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%:
rgallardf71f2512015-02-02 10:12:21 -08002888.sp
2889.if n \{\
2890.RS 4
2891.\}
2892.nf
2893\fB\-XX:InitiatingHeapOccupancyPercent=75\fR
2894
2895.fi
2896.if n \{\
2897.RE
2898.\}
2899.RE
2900.PP
2901\-XX:MaxGCPauseMillis=\fItime\fR
2902.RS 4
rgallardb6435452013-11-25 20:19:02 -08002903Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002904.sp
rgallardb6435452013-11-25 20:19:02 -08002905The following example shows how to set the maximum target pause time to 500 ms:
rgallardf71f2512015-02-02 10:12:21 -08002906.sp
2907.if n \{\
2908.RS 4
2909.\}
2910.nf
2911\fB\-XX:MaxGCPauseMillis=500\fR
2912
2913.fi
2914.if n \{\
2915.RE
2916.\}
2917.RE
2918.PP
2919\-XX:MaxHeapSize=\fIsize\fR
2920.RS 4
2921Sets 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
2922\fBk\fR
2923or
2924\fBK\fR
2925to indicate kilobytes,
2926\fBm\fR
2927or
2928\fBM\fR
2929to indicate megabytes,
2930\fBg\fR
2931or
2932\fBG\fR
2933to indicate gigabytes\&. The default value is chosen at runtime based on system configuration\&. For server deployments,
2934\fB\-XX:InitialHeapSize\fR
2935and
2936\fB\-XX:MaxHeapSize\fR
2937are often set to the same value\&. See the section "Ergonomics" in
2938\fIJava SE HotSpot Virtual Machine Garbage Collection Tuning Guide\fR
2939at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/vm/gctuning/index\&.html\&.
2940.sp
rgallardb6435452013-11-25 20:19:02 -08002941The following examples show how to set the maximum allowed size of allocated memory to 80 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -08002942.sp
2943.if n \{\
2944.RS 4
2945.\}
2946.nf
2947\fB\-XX:MaxHeapSize=83886080\fR
2948\fB\-XX:MaxHeapSize=81920k\fR
2949\fB\-XX:MaxHeapSize=80m\fR
2950
2951.fi
2952.if n \{\
2953.RE
2954.\}
rgallardb6435452013-11-25 20:19:02 -08002955On 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002956.sp
2957The
2958\fB\-XX:MaxHeapSize\fR
2959option is equivalent to
2960\fB\-Xmx\fR\&.
2961.RE
2962.PP
2963\-XX:MaxHeapFreeRatio=\fIpercent\fR
2964.RS 4
rgallardb6435452013-11-25 20:19:02 -08002965Sets 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%\&.
rgallardf71f2512015-02-02 10:12:21 -08002966.sp
rgallardb6435452013-11-25 20:19:02 -08002967The following example shows how to set the maximum free heap ratio to 75%:
rgallardf71f2512015-02-02 10:12:21 -08002968.sp
2969.if n \{\
2970.RS 4
2971.\}
2972.nf
2973\fB\-XX:MaxHeapFreeRatio=75\fR
2974
2975.fi
2976.if n \{\
2977.RE
2978.\}
2979.RE
2980.PP
2981\-XX:MaxMetaspaceSize=\fIsize\fR
2982.RS 4
rgallardb6435452013-11-25 20:19:02 -08002983Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08002984.sp
rgallardb6435452013-11-25 20:19:02 -08002985The following example shows how to set the maximum class metadata size to 256 MB:
rgallardf71f2512015-02-02 10:12:21 -08002986.sp
2987.if n \{\
2988.RS 4
2989.\}
2990.nf
2991\fB\-XX:MaxMetaspaceSize=256m\fR
2992
2993.fi
2994.if n \{\
2995.RE
2996.\}
2997.RE
2998.PP
2999\-XX:MaxNewSize=\fIsize\fR
3000.RS 4
rgallardb6435452013-11-25 20:19:02 -08003001Sets the maximum size (in bytes) of the heap for the young generation (nursery)\&. The default value is set ergonomically\&.
rgallardf71f2512015-02-02 10:12:21 -08003002.RE
3003.PP
3004\-XX:MaxTenuringThreshold=\fIthreshold\fR
3005.RS 4
rgallardb6435452013-11-25 20:19:02 -08003006Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003007.sp
rgallardb6435452013-11-25 20:19:02 -08003008The following example shows how to set the maximum tenuring threshold to 10:
rgallardf71f2512015-02-02 10:12:21 -08003009.sp
3010.if n \{\
3011.RS 4
3012.\}
3013.nf
3014\fB\-XX:MaxTenuringThreshold=10\fR
3015
3016.fi
3017.if n \{\
3018.RE
3019.\}
3020.RE
3021.PP
3022\-XX:MetaspaceSize=\fIsize\fR
3023.RS 4
rgallardb6435452013-11-25 20:19:02 -08003024Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003025.RE
3026.PP
3027\-XX:MinHeapFreeRatio=\fIpercent\fR
3028.RS 4
rgallardb6435452013-11-25 20:19:02 -08003029Sets 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%\&.
rgallardf71f2512015-02-02 10:12:21 -08003030.sp
rgallardb6435452013-11-25 20:19:02 -08003031The following example shows how to set the minimum free heap ratio to 25%:
rgallardf71f2512015-02-02 10:12:21 -08003032.sp
3033.if n \{\
3034.RS 4
3035.\}
3036.nf
3037\fB\-XX:MinHeapFreeRatio=25\fR
3038
3039.fi
3040.if n \{\
3041.RE
3042.\}
3043.RE
3044.PP
3045\-XX:NewRatio=\fIratio\fR
3046.RS 4
rgallardb6435452013-11-25 20:19:02 -08003047Sets 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:
rgallardf71f2512015-02-02 10:12:21 -08003048.sp
3049.if n \{\
3050.RS 4
3051.\}
3052.nf
3053\fB\-XX:NewRatio=1\fR
3054
3055.fi
3056.if n \{\
3057.RE
3058.\}
3059.RE
3060.PP
3061\-XX:NewSize=\fIsize\fR
3062.RS 4
3063Sets the initial size (in bytes) of the heap for the young generation (nursery)\&. Append the letter
3064\fBk\fR
3065or
3066\fBK\fR
3067to indicate kilobytes,
3068\fBm\fR
3069or
3070\fBM\fR
3071to indicate megabytes,
3072\fBg\fR
3073or
3074\fBG\fR
3075to indicate gigabytes\&.
3076.sp
rgallardb6435452013-11-25 20:19:02 -08003077The 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003078.sp
rgallardb6435452013-11-25 20:19:02 -08003079The following examples show how to set the initial size of young generation to 256 MB using various units:
rgallardf71f2512015-02-02 10:12:21 -08003080.sp
3081.if n \{\
3082.RS 4
3083.\}
3084.nf
3085\fB\-XX:NewSize=256m\fR
3086\fB\-XX:NewSize=262144k\fR
3087\fB\-XX:NewSize=268435456\fR
3088
3089.fi
3090.if n \{\
3091.RE
3092.\}
3093The
3094\fB\-XX:NewSize\fR
3095option is equivalent to
3096\fB\-Xmn\fR\&.
3097.RE
3098.PP
3099\-XX:ParallelGCThreads=\fIthreads\fR
3100.RS 4
rgallardb6435452013-11-25 20:19:02 -08003101Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003102.sp
rgallardb6435452013-11-25 20:19:02 -08003103For example, to set the number of threads for parallel GC to 2, specify the following option:
rgallardf71f2512015-02-02 10:12:21 -08003104.sp
3105.if n \{\
3106.RS 4
3107.\}
3108.nf
3109\fB\-XX:ParallelGCThreads=2\fR
3110
3111.fi
3112.if n \{\
3113.RE
3114.\}
3115.RE
3116.PP
3117\-XX:+ParallelRefProcEnabled
3118.RS 4
rgallardb6435452013-11-25 20:19:02 -08003119Enables parallel reference processing\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003120.RE
3121.PP
3122\-XX:+PrintAdaptiveSizePolicy
3123.RS 4
rgallardb6435452013-11-25 20:19:02 -08003124Enables printing of information about adaptive generation sizing\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003125.RE
3126.PP
3127\-XX:+PrintGC
3128.RS 4
rgallardb6435452013-11-25 20:19:02 -08003129Enables printing of messages at every GC\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003130.RE
3131.PP
3132\-XX:+PrintGCApplicationConcurrentTime
3133.RS 4
rgallardb6435452013-11-25 20:19:02 -08003134Enables printing of how much time elapsed since the last pause (for example, a GC pause)\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003135.RE
3136.PP
3137\-XX:+PrintGCApplicationStoppedTime
3138.RS 4
rgallardb6435452013-11-25 20:19:02 -08003139Enables printing of how much time the pause (for example, a GC pause) lasted\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003140.RE
3141.PP
3142\-XX:+PrintGCDateStamps
3143.RS 4
rgallardb6435452013-11-25 20:19:02 -08003144Enables printing of a date stamp at every GC\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003145.RE
3146.PP
3147\-XX:+PrintGCDetails
3148.RS 4
rgallardb6435452013-11-25 20:19:02 -08003149Enables printing of detailed messages at every GC\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003150.RE
3151.PP
3152\-XX:+PrintGCTaskTimeStamps
3153.RS 4
rgallardb6435452013-11-25 20:19:02 -08003154Enables printing of time stamps for every individual GC worker thread task\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003155.RE
3156.PP
3157\-XX:+PrintGCTimeStamps
3158.RS 4
rgallardb6435452013-11-25 20:19:02 -08003159Enables printing of time stamps at every GC\&. By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003160.RE
3161.PP
3162\-XX:+PrintStringDeduplicationStatistics
3163.RS 4
3164Prints detailed deduplication statistics\&. By default, this option is disabled\&. See the
3165\fB\-XX:+UseStringDeduplication\fR
3166option\&.
3167.RE
3168.PP
3169\-XX:+PrintTenuringDistribution
3170.RS 4
rgallardb6435452013-11-25 20:19:02 -08003171Enables printing of tenuring age information\&. The following is an example of the output:
rgallardf71f2512015-02-02 10:12:21 -08003172.sp
3173.if n \{\
3174.RS 4
3175.\}
3176.nf
3177\fBDesired survivor size 48286924 bytes, new threshold 10 (max 10)\fR
3178\fB\- age 1: 28992024 bytes, 28992024 total\fR
3179\fB\- age 2: 1366864 bytes, 30358888 total\fR
3180\fB\- age 3: 1425912 bytes, 31784800 total\fR
3181\fB\&.\&.\&.\fR
3182
3183.fi
3184.if n \{\
3185.RE
3186.\}
rgallardb6435452013-11-25 20:19:02 -08003187Age 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003188.sp
rgallardb6435452013-11-25 20:19:02 -08003189In 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003190.sp
rgallardb6435452013-11-25 20:19:02 -08003191By default, this option is disabled\&.
rgallardf71f2512015-02-02 10:12:21 -08003192.RE
3193.PP
3194\-XX:+ScavengeBeforeFullGC
3195.RS 4
3196Enables GC of the young generation before each full GC\&. This option is enabled by default\&. Oracle recommends that you
3197\fIdo not\fR
3198disable 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
3199\fB\-XX:\-ScavengeBeforeFullGC\fR\&.
3200.RE
3201.PP
3202\-XX:SoftRefLRUPolicyMSPerMB=\fItime\fR
3203.RS 4
3204Sets 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
3205\fB\-XX:SoftRefLRUPolicyMSPerMB\fR
3206option 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
3207\fB\-Xmx\fR
3208option has a significant effect on how quickly soft references are garbage collected\&.
3209.sp
rgallardb6435452013-11-25 20:19:02 -08003210The following example shows how to set the value to 2\&.5 seconds:
rgallardf71f2512015-02-02 10:12:21 -08003211.sp
3212.if n \{\
3213.RS 4
3214.\}
3215.nf
3216\fB\-XX:SoftRefLRUPolicyMSPerMB=2500\fR
3217
3218.fi
3219.if n \{\
3220.RE
3221.\}
3222.RE
3223.PP
3224\-XX:StringDeduplicationAgeThreshold=\fIthreshold\fR
3225.RS 4
3226\fBString\fR
3227objects 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
3228\fB\-XX:+PrintTenuringDistribution\fR
3229option\&. Note that
3230\fBString\fR
3231objects 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
3232\fB3\fR\&. See the
3233\fB\-XX:+UseStringDeduplication\fR
3234option\&.
3235.RE
3236.PP
3237\-XX:SurvivorRatio=\fIratio\fR
3238.RS 4
rgallardb6435452013-11-25 20:19:02 -08003239Sets 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:
rgallardf71f2512015-02-02 10:12:21 -08003240.sp
3241.if n \{\
3242.RS 4
3243.\}
3244.nf
3245\fB\-XX:SurvivorRatio=4\fR
3246
3247.fi
3248.if n \{\
3249.RE
3250.\}
3251.RE
3252.PP
3253\-XX:TargetSurvivorRatio=\fIpercent\fR
3254.RS 4
rgallardb6435452013-11-25 20:19:02 -08003255Sets the desired percentage of survivor space (0 to 100) used after young garbage collection\&. By default, this option is set to 50%\&.
rgallardf71f2512015-02-02 10:12:21 -08003256.sp
rgallardb6435452013-11-25 20:19:02 -08003257The following example shows how to set the target survivor space ratio to 30%:
rgallardf71f2512015-02-02 10:12:21 -08003258.sp
3259.if n \{\
3260.RS 4
3261.\}
3262.nf
3263\fB\-XX:TargetSurvivorRatio=30\fR
3264
3265.fi
3266.if n \{\
3267.RE
3268.\}
3269.RE
3270.PP
3271\-XX:TLABSize=\fIsize\fR
3272.RS 4
3273Sets the initial size (in bytes) of a thread\-local allocation buffer (TLAB)\&. Append the letter
3274\fBk\fR
3275or
3276\fBK\fR
3277to indicate kilobytes,
3278\fBm\fR
3279or
3280\fBM\fR
3281to indicate megabytes,
3282\fBg\fR
3283or
3284\fBG\fR
3285to indicate gigabytes\&. If this option is set to 0, then the JVM chooses the initial size automatically\&.
3286.sp
rgallardb6435452013-11-25 20:19:02 -08003287The following example shows how to set the initial TLAB size to 512 KB:
rgallardf71f2512015-02-02 10:12:21 -08003288.sp
3289.if n \{\
3290.RS 4
3291.\}
3292.nf
3293\fB\-XX:TLABSize=512k\fR
3294
3295.fi
3296.if n \{\
3297.RE
3298.\}
3299.RE
3300.PP
3301\-XX:+UseAdaptiveSizePolicy
3302.RS 4
3303Enables the use of adaptive generation sizing\&. This option is enabled by default\&. To disable adaptive generation sizing, specify
3304\fB\-XX:\-UseAdaptiveSizePolicy\fR
3305and set the size of the memory allocation pool explicitly (see the
3306\fB\-XX:SurvivorRatio\fR
3307option)\&.
3308.RE
3309.PP
3310\-XX:+UseCMSInitiatingOccupancyOnly
3311.RS 4
rgallardb6435452013-11-25 20:19:02 -08003312Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003313.RE
3314.PP
3315\-XX:+UseConcMarkSweepGC
3316.RS 4
3317Enables 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\&.
3318.sp
3319By 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
3320\fB\-XX:+UseParNewGC\fR
3321option is automatically set and you should not disable it, because the following combination of options has been deprecated in JDK 8:
3322\fB\-XX:+UseConcMarkSweepGC \-XX:\-UseParNewGC\fR\&.
3323.RE
3324.PP
3325\-XX:+UseG1GC
3326.RS 4
3327Enables 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)\&.
3328.sp
rgallardb6435452013-11-25 20:19:02 -08003329By default, this option is disabled and the collector is chosen automatically based on the configuration of the machine and type of the JVM\&.
rgallardf71f2512015-02-02 10:12:21 -08003330.RE
3331.PP
3332\-XX:+UseGCOverheadLimit
3333.RS 4
3334Enables the use of a policy that limits the proportion of time spent by the JVM on GC before an
3335\fBOutOfMemoryError\fR
3336exception is thrown\&. This option is enabled, by default and the parallel GC will throw an
3337\fBOutOfMemoryError\fR
3338if 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
3339\fB\-XX:\-UseGCOverheadLimit\fR\&.
3340.RE
3341.PP
3342\-XX:+UseNUMA
3343.RS 4
3344Enables 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)\&.
3345.RE
3346.PP
3347\-XX:+UseParallelGC
3348.RS 4
rgallardb6435452013-11-25 20:19:02 -08003349Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003350.sp
3351By 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
3352\fB\-XX:+UseParallelOldGC\fR
3353option is automatically enabled, unless you explicitly disable it\&.
3354.RE
3355.PP
3356\-XX:+UseParallelOldGC
3357.RS 4
3358Enables the use of the parallel garbage collector for full GCs\&. By default, this option is disabled\&. Enabling it automatically enables the
3359\fB\-XX:+UseParallelGC\fR
3360option\&.
3361.RE
3362.PP
3363\-XX:+UseParNewGC
3364.RS 4
3365Enables 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
3366\fB\-XX:+UseConcMarkSweepGC\fR
3367option\&. Using the
3368\fB\-XX:+UseParNewGC\fR
3369option without the
3370\fB\-XX:+UseConcMarkSweepGC\fR
3371option was deprecated in JDK 8\&.
3372.RE
3373.PP
3374\-XX:+UseSerialGC
3375.RS 4
rgallardb6435452013-11-25 20:19:02 -08003376Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003377.RE
3378.PP
3379\-XX:+UseSHM
3380.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07003381On Linux, enables the JVM to use shared memory to setup large pages\&.
rgallardf71f2512015-02-02 10:12:21 -08003382.sp
3383For more information, see "Large Pages"\&.
3384.RE
3385.PP
3386\-XX:+UseStringDeduplication
3387.RS 4
3388Enables string deduplication\&. By default, this option is disabled\&. To use this option, you must enable the garbage\-first (G1) garbage collector\&. See the
3389\fB\-XX:+UseG1GC\fR
3390option\&.
3391.sp
3392\fIString deduplication\fR
3393reduces the memory footprint of
3394\fBString\fR
3395objects on the Java heap by taking advantage of the fact that many
3396\fBString\fR
3397objects are identical\&. Instead of each
3398\fBString\fR
3399object pointing to its own character array, identical
3400\fBString\fR
3401objects can point to and share the same character array\&.
3402.RE
3403.PP
3404\-XX:+UseTLAB
3405.RS 4
3406Enables 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
3407\fB\-XX:\-UseTLAB\fR\&.
3408.RE
3409.SS "Deprecated and Removed Options"
3410.PP
rgallardb6435452013-11-25 20:19:02 -08003411These options were included in the previous release, but have since been considered unnecessary\&.
rgallardf71f2512015-02-02 10:12:21 -08003412.PP
3413\-Xincgc
3414.RS 4
rgallard1cc205c2014-01-09 16:10:24 -08003415Enables incremental garbage collection\&. This option was deprecated in JDK 8 with no replacement\&.
rgallardf71f2512015-02-02 10:12:21 -08003416.RE
3417.PP
3418\-Xrun\fIlibname\fR
3419.RS 4
3420Loads the specified debugging/profiling library\&. This option was superseded by the
3421\fB\-agentlib\fR
3422option\&.
3423.RE
3424.PP
3425\-XX:CMSIncrementalDutyCycle=\fIpercent\fR
3426.RS 4
3427Sets 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
3428\fB\-XX:+CMSIncrementalMode\fR
3429option\&.
3430.RE
3431.PP
3432\-XX:CMSIncrementalDutyCycleMin=\fIpercent\fR
3433.RS 4
3434Sets the percentage of time (0 to 100) between minor collections that is the lower bound for the duty cycle when
3435\fB\-XX:+CMSIncrementalPacing\fR
3436is enabled\&. This option was deprecated in JDK 8 with no replacement, following the deprecation of the
3437\fB\-XX:+CMSIncrementalMode\fR
3438option\&.
3439.RE
3440.PP
3441\-XX:+CMSIncrementalMode
3442.RS 4
3443Enables the incremental mode for the CMS collector\&. This option was deprecated in JDK 8 with no replacement, along with other options that start with
3444\fBCMSIncremental\fR\&.
3445.RE
3446.PP
3447\-XX:CMSIncrementalOffset=\fIpercent\fR
3448.RS 4
3449Sets 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
3450\fB\-XX:+CMSIncrementalMode\fR
3451option\&.
3452.RE
3453.PP
3454\-XX:+CMSIncrementalPacing
3455.RS 4
3456Enables 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
3457\fB\-XX:+CMSIncrementalMode\fR
3458option\&.
3459.RE
3460.PP
3461\-XX:CMSIncrementalSafetyFactor=\fIpercent\fR
3462.RS 4
3463Sets 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
3464\fB\-XX:+CMSIncrementalMode\fR
3465option\&.
3466.RE
3467.PP
3468\-XX:CMSInitiatingPermOccupancyFraction=\fIpercent\fR
3469.RS 4
rgallardb6435452013-11-25 20:19:02 -08003470Sets 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003471.RE
3472.PP
3473\-XX:MaxPermSize=\fIsize\fR
3474.RS 4
3475Sets the maximum permanent generation space size (in bytes)\&. This option was deprecated in JDK 8, and superseded by the
3476\fB\-XX:MaxMetaspaceSize\fR
3477option\&.
3478.RE
3479.PP
3480\-XX:PermSize=\fIsize\fR
3481.RS 4
3482Sets 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
3483\fB\-XX:MetaspaceSize\fR
3484option\&.
3485.RE
3486.PP
3487\-XX:+UseSplitVerifier
3488.RS 4
rgallardb6435452013-11-25 20:19:02 -08003489Enables 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003490.RE
3491.PP
3492\-XX:+UseStringCache
3493.RS 4
rgallardb6435452013-11-25 20:19:02 -08003494Enables caching of commonly allocated strings\&. This option was removed from JDK 8 with no replacement\&.
rgallardf71f2512015-02-02 10:12:21 -08003495.RE
3496.SH "PERFORMANCE TUNING EXAMPLES"
3497.PP
rgallardb6435452013-11-25 20:19:02 -08003498The following examples show how to use experimental tuning flags to either optimize throughput or to provide lower response time\&.
3499.PP
rgallardf71f2512015-02-02 10:12:21 -08003500\fBExample 1 \fRTuning for Higher Throughput
3501.RS 4
3502.sp
3503.if n \{\
3504.RS 4
3505.\}
3506.nf
3507\fBjava \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g \-Xms26g \-Xmx26g\fR
3508
3509.fi
3510.if n \{\
3511.RE
3512.\}
3513.RE
rgallard36ba8532014-06-06 15:45:48 -07003514.PP
rgallardf71f2512015-02-02 10:12:21 -08003515\fBExample 2 \fRTuning for Lower Response Time
3516.RS 4
3517.sp
3518.if n \{\
3519.RS 4
3520.\}
3521.nf
3522\fBjava \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamp\fR
3523
3524.fi
3525.if n \{\
3526.RE
3527.\}
3528.RE
3529.SH "LARGE PAGES"
3530.PP
3531Also 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
3533A 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\&.
rgallard36ba8532014-06-06 15:45:48 -07003534.PP
rgallard04b0ca42014-10-17 11:33:22 -07003535However, 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\&.
rgallardf71f2512015-02-02 10:12:21 -08003536.SS "Large Pages Support"
3537.PP
rgallard04b0ca42014-10-17 11:33:22 -07003538Solaris and Linux support large pages\&.
rgallardf71f2512015-02-02 10:12:21 -08003539.sp
3540.it 1 an-trap
3541.nr an-no-space-flag 1
3542.nr an-break-flag 1
3543.br
3544.ps +1
3545\fBSolaris\fR
3546.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07003547.PP
rgallardf71f2512015-02-02 10:12:21 -08003548Solaris 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\&.
3549.RE
3550.sp
3551.it 1 an-trap
3552.nr an-no-space-flag 1
3553.nr an-break-flag 1
3554.br
3555.ps +1
3556\fBLinux\fR
3557.RS 4
rgallard04b0ca42014-10-17 11:33:22 -07003558.PP
rgallardf71f2512015-02-02 10:12:21 -08003559The 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:
3560.sp
3561.if n \{\
3562.RS 4
3563.\}
3564.nf
3565\fB# cat /proc/meminfo | grep Huge\fR
3566\fBHugePages_Total: 0\fR
3567\fBHugePages_Free: 0\fR
3568\fBHugepagesize: 2048 kB\fR
3569
3570.fi
3571.if n \{\
3572.RE
3573.\}
rgallard04b0ca42014-10-17 11:33:22 -07003574.PP
rgallardf71f2512015-02-02 10:12:21 -08003575If 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
3576\fBroot\fR, and then follow these steps:
3577.sp
3578.RS 4
3579.ie n \{\
3580\h'-04' 1.\h'+01'\c
3581.\}
3582.el \{\
3583.sp -1
3584.IP " 1." 4.2
3585.\}
3586If you are using the option
3587\fB\-XX:+UseSHM\fR
3588(instead of
3589\fB\-XX:+UseHugeTLBFS\fR), then increase the
3590\fBSHMMAX\fR
3591value\&. 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:
3592.sp
3593.if n \{\
3594.RS 4
3595.\}
3596.nf
3597\fB# echo 4294967295 > /proc/sys/kernel/shmmax\fR
3598
3599.fi
3600.if n \{\
3601.RE
3602.\}
3603.RE
3604.sp
3605.RS 4
3606.ie n \{\
3607\h'-04' 2.\h'+01'\c
3608.\}
3609.el \{\
3610.sp -1
3611.IP " 2." 4.2
3612.\}
3613If you are using the option
3614\fB\-XX:+UseSHM\fR
3615or
3616\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):
3617.sp
3618.if n \{\
3619.RS 4
3620.\}
3621.nf
3622\fB# echo 1536 > /proc/sys/vm/nr_hugepages\fR
3623
3624.fi
3625.if n \{\
3626.RE
3627.\}
3628.RE
3629.if n \{\
3630.sp
3631.\}
3632.RS 4
3633.it 1 an-trap
3634.nr an-no-space-flag 1
3635.nr an-break-flag 1
3636.br
3637.ps +1
3638\fBNote\fR
3639.ps -1
3640.br
3641.TS
3642allbox tab(:);
3643l.
3644T{
3645.sp
3646.RS 4
3647.ie n \{\
3648\h'-04'\(bu\h'+03'\c
3649.\}
3650.el \{\
3651.sp -1
3652.IP \(bu 2.3
3653.\}
3654Note that the values contained in
3655\fB/proc\fR
3656will reset after you reboot your system, so may want to set them in an initialization script (for example,
3657\fBrc\&.local\fR
3658or
3659\fBsysctl\&.conf\fR)\&.
3660.RE
3661.sp
3662.RS 4
3663.ie n \{\
3664\h'-04'\(bu\h'+03'\c
3665.\}
3666.el \{\
3667.sp -1
3668.IP \(bu 2.3
3669.\}
3670If you configure (or resize) the OS kernel parameters
3671\fB/proc/sys/kernel/shmmax\fR
3672or
3673\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:
3674.sp
3675.RS 4
3676.ie n \{\
3677\h'-04'\(bu\h'+03'\c
3678.\}
3679.el \{\
3680.sp -1
3681.IP \(bu 2.3
3682.\}
rgallard04b0ca42014-10-17 11:33:22 -07003683Java heap
rgallardf71f2512015-02-02 10:12:21 -08003684.RE
3685.sp
3686.RS 4
3687.ie n \{\
3688\h'-04'\(bu\h'+03'\c
3689.\}
3690.el \{\
3691.sp -1
3692.IP \(bu 2.3
3693.\}
rgallard04b0ca42014-10-17 11:33:22 -07003694Code cache
rgallardf71f2512015-02-02 10:12:21 -08003695.RE
3696.sp
3697.RS 4
3698.ie n \{\
3699\h'-04'\(bu\h'+03'\c
3700.\}
3701.el \{\
3702.sp -1
3703.IP \(bu 2.3
3704.\}
rgallard04b0ca42014-10-17 11:33:22 -07003705The marking bitmap data structure for the parallel GC
rgallardf71f2512015-02-02 10:12:21 -08003706.RE
3707.sp
3708Consequently, if you configure the
3709\fBnr_hugepages\fR
3710parameter 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\&.
3711.RE
3712T}
3713.TE
3714.sp 1
3715.sp .5v
3716.RE
3717.RE
3718.SH "EXIT STATUS"
rgallard04b0ca42014-10-17 11:33:22 -07003719.PP
rgallardf71f2512015-02-02 10:12:21 -08003720The 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
3721\fBSystem\&.exit(exitValue)\fR\&. The values are:
3722.sp
3723.RS 4
3724.ie n \{\
3725\h'-04'\(bu\h'+03'\c
3726.\}
3727.el \{\
3728.sp -1
3729.IP \(bu 2.3
3730.\}
3731\fB0\fR: Successful completion
3732.RE
3733.sp
3734.RS 4
3735.ie n \{\
3736\h'-04'\(bu\h'+03'\c
3737.\}
3738.el \{\
3739.sp -1
3740.IP \(bu 2.3
3741.\}
3742\fB>0\fR: An error occurred
3743.RE
3744.SH "SEE ALSO"
3745.sp
3746.RS 4
3747.ie n \{\
3748\h'-04'\(bu\h'+03'\c
3749.\}
3750.el \{\
3751.sp -1
3752.IP \(bu 2.3
3753.\}
rgallardb6435452013-11-25 20:19:02 -08003754javac(1)
rgallardf71f2512015-02-02 10:12:21 -08003755.RE
3756.sp
3757.RS 4
3758.ie n \{\
3759\h'-04'\(bu\h'+03'\c
3760.\}
3761.el \{\
3762.sp -1
3763.IP \(bu 2.3
3764.\}
rgallardb6435452013-11-25 20:19:02 -08003765jdb(1)
rgallardf71f2512015-02-02 10:12:21 -08003766.RE
3767.sp
3768.RS 4
3769.ie n \{\
3770\h'-04'\(bu\h'+03'\c
3771.\}
3772.el \{\
3773.sp -1
3774.IP \(bu 2.3
3775.\}
rgallardb6435452013-11-25 20:19:02 -08003776javah(1)
rgallardf71f2512015-02-02 10:12:21 -08003777.RE
3778.sp
3779.RS 4
3780.ie n \{\
3781\h'-04'\(bu\h'+03'\c
3782.\}
3783.el \{\
3784.sp -1
3785.IP \(bu 2.3
3786.\}
rgallardb6435452013-11-25 20:19:02 -08003787jar(1)
rgallardf71f2512015-02-02 10:12:21 -08003788.RE
3789.sp
3790.RS 4
3791.ie n \{\
3792\h'-04'\(bu\h'+03'\c
3793.\}
3794.el \{\
3795.sp -1
3796.IP \(bu 2.3
3797.\}
rgallard04b0ca42014-10-17 11:33:22 -07003798jstat(1)
rgallardf71f2512015-02-02 10:12:21 -08003799.RE
3800.br
3801'pl 8.5i
3802'bp