annotate src/share/vm/Xusage.txt @ 9126:bc26f978b0ce

HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly don't use the (wrong) cached value, but ask the runtime on each request. Fixes regression on xml.* benchmarks @ specjvm2008. The problem was: After the constructor of Object was deoptimized due to an assumption violation, it was recompiled again after some time. However, on recompilation, the value of hasFinalizeSubclass for the class was not updated and it was compiled again with a, now wrong, assumption, which then triggers deoptimization again. This was repeated until it hit the recompilation limit (defined by PerMethodRecompilationCutoff), and therefore only executed by the interpreter from now on, causing the performance regression.
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 15 Apr 2013 19:54:58 +0200
parents a61af66fc99e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 -Xmixed mixed mode execution (default)
a61af66fc99e Initial load
duke
parents:
diff changeset
2 -Xint interpreted mode execution only
a61af66fc99e Initial load
duke
parents:
diff changeset
3 -Xbootclasspath:<directories and zip/jar files separated by ;>
a61af66fc99e Initial load
duke
parents:
diff changeset
4 set search path for bootstrap classes and resources
a61af66fc99e Initial load
duke
parents:
diff changeset
5 -Xbootclasspath/a:<directories and zip/jar files separated by ;>
a61af66fc99e Initial load
duke
parents:
diff changeset
6 append to end of bootstrap class path
a61af66fc99e Initial load
duke
parents:
diff changeset
7 -Xbootclasspath/p:<directories and zip/jar files separated by ;>
a61af66fc99e Initial load
duke
parents:
diff changeset
8 prepend in front of bootstrap class path
a61af66fc99e Initial load
duke
parents:
diff changeset
9 -Xnoclassgc disable class garbage collection
a61af66fc99e Initial load
duke
parents:
diff changeset
10 -Xincgc enable incremental garbage collection
a61af66fc99e Initial load
duke
parents:
diff changeset
11 -Xloggc:<file> log GC status to a file with time stamps
a61af66fc99e Initial load
duke
parents:
diff changeset
12 -Xbatch disable background compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
13 -Xms<size> set initial Java heap size
a61af66fc99e Initial load
duke
parents:
diff changeset
14 -Xmx<size> set maximum Java heap size
a61af66fc99e Initial load
duke
parents:
diff changeset
15 -Xss<size> set java thread stack size
a61af66fc99e Initial load
duke
parents:
diff changeset
16 -Xprof output cpu profiling data
a61af66fc99e Initial load
duke
parents:
diff changeset
17 -Xfuture enable strictest checks, anticipating future default
a61af66fc99e Initial load
duke
parents:
diff changeset
18 -Xrs reduce use of OS signals by Java/VM (see documentation)
a61af66fc99e Initial load
duke
parents:
diff changeset
19 -Xcheck:jni perform additional checks for JNI functions
a61af66fc99e Initial load
duke
parents:
diff changeset
20 -Xshare:off do not attempt to use shared class data
a61af66fc99e Initial load
duke
parents:
diff changeset
21 -Xshare:auto use shared class data if possible (default)
a61af66fc99e Initial load
duke
parents:
diff changeset
22 -Xshare:on require using shared class data, otherwise fail.
a61af66fc99e Initial load
duke
parents:
diff changeset
23
a61af66fc99e Initial load
duke
parents:
diff changeset
24 The -X options are non-standard and subject to change without notice.