comparison src/share/vm/runtime/globals.hpp @ 14237:db1ff6781ab4

Merge
author morris
date Fri, 10 Jan 2014 12:54:08 -0800
parents 6c583aa36bc9 7c0122ed05fb
children 234d576115b5 63a4eb8bcd23 abec000618bf
comparison
equal deleted inserted replaced
14196:c8907928a976 14237:db1ff6781ab4
2531 "Print when methods are replaced do to recompilation") \ 2531 "Print when methods are replaced do to recompilation") \
2532 \ 2532 \
2533 develop(bool, PrintMethodFlushing, false, \ 2533 develop(bool, PrintMethodFlushing, false, \
2534 "Print the nmethods being flushed") \ 2534 "Print the nmethods being flushed") \
2535 \ 2535 \
2536 diagnostic(bool, PrintMethodFlushingStatistics, false, \
2537 "print statistics about method flushing") \
2538 \
2536 develop(bool, UseRelocIndex, false, \ 2539 develop(bool, UseRelocIndex, false, \
2537 "Use an index to speed random access to relocations") \ 2540 "Use an index to speed random access to relocations") \
2538 \ 2541 \
2539 develop(bool, StressCodeBuffers, false, \ 2542 develop(bool, StressCodeBuffers, false, \
2540 "Exercise code buffer expansion and other rare state changes") \ 2543 "Exercise code buffer expansion and other rare state changes") \
3306 \ 3309 \
3307 /* compiler interface */ \ 3310 /* compiler interface */ \
3308 develop(intx, CIStart, 0, \ 3311 develop(intx, CIStart, 0, \
3309 "The id of the first compilation to permit") \ 3312 "The id of the first compilation to permit") \
3310 \ 3313 \
3311 develop(intx, CIStop, -1, \ 3314 develop(intx, CIStop, max_jint, \
3312 "The id of the last compilation to permit") \ 3315 "The id of the last compilation to permit") \
3313 \ 3316 \
3314 develop(intx, CIStartOSR, 0, \ 3317 develop(intx, CIStartOSR, 0, \
3315 "The id of the first osr compilation to permit " \ 3318 "The id of the first osr compilation to permit " \
3316 "(CICountOSR must be on)") \ 3319 "(CICountOSR must be on)") \
3317 \ 3320 \
3318 develop(intx, CIStopOSR, -1, \ 3321 develop(intx, CIStopOSR, max_jint, \
3319 "The id of the last osr compilation to permit " \ 3322 "The id of the last osr compilation to permit " \
3320 "(CICountOSR must be on)") \ 3323 "(CICountOSR must be on)") \
3321 \ 3324 \
3322 develop(intx, CIBreakAtOSR, -1, \ 3325 develop(intx, CIBreakAtOSR, -1, \
3323 "The id of osr compilation to break at") \ 3326 "The id of osr compilation to break at") \
3324 \ 3327 \
3325 develop(intx, CIBreakAt, -1, \ 3328 develop(intx, CIBreakAt, -1, \
3326 "The id of compilation to break at") \ 3329 "The id of compilation to break at") \
3327 \ 3330 \
3328 product(ccstrlist, CompileOnly, "", \ 3331 product(ccstrlist, CompileOnly, "", \
3329 "List of methods (pkg/class.name) to restrict compilation to") \ 3332 "List of methods (pkg/class.name) to restrict compilation to") \
3330 \ 3333 \
3338 "Enable replay of compilations from ReplayDataFile") \ 3341 "Enable replay of compilations from ReplayDataFile") \
3339 \ 3342 \
3340 product(ccstr, ReplayDataFile, NULL, \ 3343 product(ccstr, ReplayDataFile, NULL, \
3341 "File containing compilation replay information" \ 3344 "File containing compilation replay information" \
3342 "[default: ./replay_pid%p.log] (%p replaced with pid)") \ 3345 "[default: ./replay_pid%p.log] (%p replaced with pid)") \
3346 \
3347 product(ccstr, InlineDataFile, NULL, \
3348 "File containing inlining replay information" \
3349 "[default: ./inline_pid%p.log] (%p replaced with pid)") \
3343 \ 3350 \
3344 develop(intx, ReplaySuppressInitializers, 2, \ 3351 develop(intx, ReplaySuppressInitializers, 2, \
3345 "Control handling of class initialization during replay: " \ 3352 "Control handling of class initialization during replay: " \
3346 "0 - don't do anything special; " \ 3353 "0 - don't do anything special; " \
3347 "1 - treat all class initializers as empty; " \ 3354 "1 - treat all class initializers as empty; " \