comparison src/share/vm/runtime/globals.hpp @ 6988:2cb439954abf

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 19 Nov 2012 15:36:13 +0100
parents e522a00b91aa 80e866b1d053
children 7d815d842ee0
comparison
equal deleted inserted replaced
6963:dd0dd0321e2a 6988:2cb439954abf
3202 "Read compiler commands from this file [.hotspot_compiler]") \ 3202 "Read compiler commands from this file [.hotspot_compiler]") \
3203 \ 3203 \
3204 product(ccstrlist, CompileCommand, "", \ 3204 product(ccstrlist, CompileCommand, "", \
3205 "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \ 3205 "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
3206 \ 3206 \
3207 develop(bool, ReplayCompiles, false, \
3208 "Enable replay of compilations from ReplayDataFile") \
3209 \
3210 develop(ccstr, ReplayDataFile, "replay.txt", \
3211 "file containing compilation replay information") \
3212 \
3213 develop(intx, ReplaySuppressInitializers, 2, \
3214 "Controls handling of class initialization during replay" \
3215 "0 - don't do anything special" \
3216 "1 - treat all class initializers as empty" \
3217 "2 - treat class initializers for application classes as empty" \
3218 "3 - allow all class initializers to run during bootstrap but" \
3219 " pretend they are empty after starting replay") \
3220 \
3221 develop(bool, ReplayIgnoreInitErrors, false, \
3222 "Ignore exceptions thrown during initialization for replay") \
3223 \
3224 develop(bool, DumpReplayDataOnError, true, \
3225 "record replay data for crashing compiler threads") \
3226 \
3207 product(bool, CICompilerCountPerCPU, false, \ 3227 product(bool, CICompilerCountPerCPU, false, \
3208 "1 compiler thread for log(N CPUs)") \ 3228 "1 compiler thread for log(N CPUs)") \
3209 \ 3229 \
3210 develop(intx, CIFireOOMAt, -1, \ 3230 develop(intx, CIFireOOMAt, -1, \
3211 "Fire OutOfMemoryErrors throughout CI for testing the compiler " \ 3231 "Fire OutOfMemoryErrors throughout CI for testing the compiler " \
3606 "Relax the access control checks in the verifier") \ 3626 "Relax the access control checks in the verifier") \
3607 \ 3627 \
3608 diagnostic(bool, PrintDTraceDOF, false, \ 3628 diagnostic(bool, PrintDTraceDOF, false, \
3609 "Print the DTrace DOF passed to the system for JSDT probes") \ 3629 "Print the DTrace DOF passed to the system for JSDT probes") \
3610 \ 3630 \
3611 product(uintx, StringTableSize, 1009, \ 3631 product(uintx, StringTableSize, defaultStringTableSize, \
3612 "Number of buckets in the interned String table") \ 3632 "Number of buckets in the interned String table") \
3613 \ 3633 \
3614 develop(bool, TraceDefaultMethods, false, \ 3634 develop(bool, TraceDefaultMethods, false, \
3615 "Trace the default method processing steps") \ 3635 "Trace the default method processing steps") \
3616 \ 3636 \