comparison src/share/vm/runtime/globals.hpp @ 10208:9ce110b1d14a

Merge
author kvn
date Thu, 02 May 2013 18:50:05 -0700
parents b06ac540229e 0cfa93c2fcc4
children d17700c82d7d
comparison
equal deleted inserted replaced
10194:cbd4ce58f1f3 10208:9ce110b1d14a
3180 "Min number of seconds between code cache cleaning sessions") \ 3180 "Min number of seconds between code cache cleaning sessions") \
3181 \ 3181 \
3182 product(uintx, CodeCacheFlushingMinimumFreeSpace, 1500*K, \ 3182 product(uintx, CodeCacheFlushingMinimumFreeSpace, 1500*K, \
3183 "When less than X space left, start code cache cleaning") \ 3183 "When less than X space left, start code cache cleaning") \
3184 \ 3184 \
3185 product(uintx, CodeCacheFlushingFraction, 2, \
3186 "Fraction of the code cache that is flushed when full") \
3187 \
3185 /* interpreter debugging */ \ 3188 /* interpreter debugging */ \
3186 develop(intx, BinarySwitchThreshold, 5, \ 3189 develop(intx, BinarySwitchThreshold, 5, \
3187 "Minimal number of lookupswitch entries for rewriting to binary " \ 3190 "Minimal number of lookupswitch entries for rewriting to binary " \
3188 "switch") \ 3191 "switch") \
3189 \ 3192 \
3224 "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \ 3227 "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
3225 \ 3228 \
3226 develop(bool, ReplayCompiles, false, \ 3229 develop(bool, ReplayCompiles, false, \
3227 "Enable replay of compilations from ReplayDataFile") \ 3230 "Enable replay of compilations from ReplayDataFile") \
3228 \ 3231 \
3229 develop(ccstr, ReplayDataFile, "replay.txt", \ 3232 product(ccstr, ReplayDataFile, NULL, \
3230 "file containing compilation replay information") \ 3233 "File containing compilation replay information" \
3234 "[default: ./replay_pid%p.log] (%p replaced with pid)") \
3231 \ 3235 \
3232 develop(intx, ReplaySuppressInitializers, 2, \ 3236 develop(intx, ReplaySuppressInitializers, 2, \
3233 "Controls handling of class initialization during replay" \ 3237 "Controls handling of class initialization during replay" \
3234 "0 - don't do anything special" \ 3238 "0 - don't do anything special" \
3235 "1 - treat all class initializers as empty" \ 3239 "1 - treat all class initializers as empty" \
3238 " pretend they are empty after starting replay") \ 3242 " pretend they are empty after starting replay") \
3239 \ 3243 \
3240 develop(bool, ReplayIgnoreInitErrors, false, \ 3244 develop(bool, ReplayIgnoreInitErrors, false, \
3241 "Ignore exceptions thrown during initialization for replay") \ 3245 "Ignore exceptions thrown during initialization for replay") \
3242 \ 3246 \
3243 develop(bool, DumpReplayDataOnError, true, \ 3247 product(bool, DumpReplayDataOnError, true, \
3244 "record replay data for crashing compiler threads") \ 3248 "Record replay data for crashing compiler threads") \
3245 \ 3249 \
3246 product(bool, CICompilerCountPerCPU, false, \ 3250 product(bool, CICompilerCountPerCPU, false, \
3247 "1 compiler thread for log(N CPUs)") \ 3251 "1 compiler thread for log(N CPUs)") \
3248 \ 3252 \
3249 develop(intx, CIFireOOMAt, -1, \ 3253 develop(intx, CIFireOOMAt, -1, \
3250 "Fire OutOfMemoryErrors throughout CI for testing the compiler " \ 3254 "Fire OutOfMemoryErrors throughout CI for testing the compiler " \
3251 "(non-negative value throws OOM after this many CI accesses " \ 3255 "(non-negative value throws OOM after this many CI accesses " \
3252 "in each compile)") \ 3256 "in each compile)") \
3253 \ 3257 notproduct(intx, CICrashAt, -1, \
3258 "id of compilation to trigger assert in compiler thread for " \
3259 "the purpose of testing, e.g. generation of replay data") \
3254 notproduct(bool, CIObjectFactoryVerify, false, \ 3260 notproduct(bool, CIObjectFactoryVerify, false, \
3255 "enable potentially expensive verification in ciObjectFactory") \ 3261 "enable potentially expensive verification in ciObjectFactory") \
3256 \ 3262 \
3257 /* Priorities */ \ 3263 /* Priorities */ \
3258 product_pd(bool, UseThreadPriorities, "Use native thread priorities") \ 3264 product_pd(bool, UseThreadPriorities, "Use native thread priorities") \