Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2501488
  • 博文数量: 709
  • 博客积分: 12251
  • 博客等级: 上将
  • 技术积分: 7905
  • 用 户 组: 普通用户
  • 注册时间: 2005-07-17 00:00
个人简介

实现有价值的IT服务

文章存档

2012年(7)

2011年(147)

2009年(3)

2008年(5)

2007年(74)

2006年(431)

2005年(42)

分类: Java

2006-04-12 23:29:29

Categories of Java HotSpot VM Options
Standard options recognized by the Java HotSpot VM are described on the Java Application Launcher reference pages for Windows, Solaris and Linux. This document deals exclusively with non-standard options recognized by the Java HotSpot VM:
Options that begin with -X are non-standard (not guaranteed to be supported on all VM implementations), and are subject to change without notice in subsequent releases of the Java 2 SDK.
Because the -XX options have specific system requirements for correct operation and may require privileged access to system configuration parameters, they are not recommended for casual use. These options are also subject to change without notice.
Java HotSpot VM Equivalents of Exact VM Options
This section is of interest primarily to users of J2SE 1.3 and 1.4 on Solaris.

Prior to version 1.3.0, the production releases of the Java 2 SDK for Solaris shipped with a virtual-machine implementation known as the Exact VM (EVM). Beginning with version 1.3.0, the Exact VM is replaced by the Java HotSpot VM.

Some options supported by the Exact VM have changed names or become obsolete in the Java HotSpot VM. These EVM options and their Java HotSpot VM equivalents are given in the following table.

EVM Option Description Java HotSpot equivalent
-Xt Instruction tracing None (obsolete option)
-Xtm Method tracing None (obsolete option)
-Xoss Maximum java stack size None (HotSpot doesn't have separate native and Java stacks)
-Xverifyheap Verify heap integrity -XX:+VerifyBeforeGC -XX:+VerifyAfterGC -XX:+VerifyTLE (-XX:+VerifyTLAB in J2SE 1.4) -XX:+VerifyBeforeScavenge -XX:+VerifyAfterScavenge (all debug only)
-Xmaxjitcodesize Maximum Comiled code size -Xmaxjitcodesize (used to be -Xmaxjitcodesize=32m, now -Xmaxjitcodesize32m)
-Xgenconfig Configure the heap (See section on Xgenconfig below)
-Xoptimize Use optimizing JIT Compiler -server
-Xconcgc Use concurrent garbage collector (1.2.2_07+) -XX:+UseConcMarkSweepGC (available beginning with J2SE 1.4.1)


The Java HotSpot VM currently recognizes the following -X options that were not supported by the Exact VM.

Option Description
-Xincgc Use Train GC
-Xnoincgc Do not use Train Garbage Collection (default)
-XX:MaxHeapFreeRatio= heap free percentage (default 70)
-X:MinHeapFreeRation= heap free percentage (default 40)
-Xint Intepreter only (no JIT Compilation)
-XX:+UseBoundThreads Bind user level threads (Solaris only)
-Xmn Set the size of the young generation (available beginning in J2SE 1.4.0)
-XX:+UseParallelGC Use parallel garbage collection (available beginning in J2SE 1.4.1)
-XX:+UseAltSigs On the Solaris operating environment, the VM uses SIGUSR1 by default, which can sometimes conflict with applications that signal-chain SIGUSR1. -XX:+UseAltSigs will cause the VM to use signals other than SIGUSR1 and SIGUSR2 as the default. Available beginning in J2SE 1.4.1 on the Solaris operating environment.

Java HotSpot VM Equivalents to _JIT_ARGS Environment Variables
Most _JIT_ARGS environment variables are internal debugging options only and have no corresponding Java HotSpot options. Most simply turn off some form of optimization which may have caused instability when first introduced and could be used by the internal testing group to track down problems.

_JIT_ARGS Environment HotSpot Option Description
jit/jbe -client/-server jbe is the same as -Xoptimize in 1.2 based systems, jit is the default. Use -server in 1.3 to replace -Xoptimize (or jbe) in 1.2.
trace -XX:+PrintCompilation traces methods as compiled
V8/V9 -XX:+UseV8InstrsOnly Done autmatically on both systems, force architecture using these flags (Sparc/debug only)

Java HotSpot VM Equivalents _JVM_ARGS Environment Variables
_JVM_ARGS Environment HotSpot Option Description
bound_threads -XX:+UseBoundThreads This option forces all threads to be created as bound threads.
fixed_size_young_gen -XX:NewSize=
-XX:MaxNewSize= for 1.3
-Xmn for 1.4 Disable young generation resizing. To do this on HotSpot, simply set the size of the young generation to a constant.
gc_stats -verbose:gc Turns on various forms of gc statistics gathering.
ims_concurrent none  
inline_instrs -XX:MaxInlineSize= Integer specifying maximum number of bytecode instructions in a method which gets inlined.
-XX:FreqInlineSize= Integer specifying maximum number of bytecode instructions in a frequently executed method which gets inlined.
inline_print -XX:+PrintInlining Print message about inlined methods (debug only)
no_parallel_gc none  
sync_final none  
yield_interval -XX:DontYieldALotInterval= (debug only) Interval in milliseconds between yields.
monitor_order none  

Additional Java HotSpot arguments
Numbers can include 'm' or 'M' for megabytes, 'k' or 'K' for kilobytes, and 'g' or 'G' for gigabytes (for example, 32k is the same as 32768). Turn on a boolean flag with -XX:+
阅读(722) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~