comparison src/share/vm/runtime/globals.hpp @ 17795:a9becfeecd1b

Merge
author kvn
date Wed, 22 Jan 2014 17:42:23 -0800
parents 1174c8abbdb6 7b9127b17b7a
children f040cf9fc9c0
comparison
equal deleted inserted replaced
17794:3514ee402842 17795:a9becfeecd1b
2549 "Print when methods are replaced do to recompilation") \ 2549 "Print when methods are replaced do to recompilation") \
2550 \ 2550 \
2551 develop(bool, PrintMethodFlushing, false, \ 2551 develop(bool, PrintMethodFlushing, false, \
2552 "Print the nmethods being flushed") \ 2552 "Print the nmethods being flushed") \
2553 \ 2553 \
2554 diagnostic(bool, PrintMethodFlushingStatistics, false, \
2555 "print statistics about method flushing") \
2556 \
2554 develop(bool, UseRelocIndex, false, \ 2557 develop(bool, UseRelocIndex, false, \
2555 "Use an index to speed random access to relocations") \ 2558 "Use an index to speed random access to relocations") \
2556 \ 2559 \
2557 develop(bool, StressCodeBuffers, false, \ 2560 develop(bool, StressCodeBuffers, false, \
2558 "Exercise code buffer expansion and other rare state changes") \ 2561 "Exercise code buffer expansion and other rare state changes") \
3330 \ 3333 \
3331 /* compiler interface */ \ 3334 /* compiler interface */ \
3332 develop(intx, CIStart, 0, \ 3335 develop(intx, CIStart, 0, \
3333 "The id of the first compilation to permit") \ 3336 "The id of the first compilation to permit") \
3334 \ 3337 \
3335 develop(intx, CIStop, -1, \ 3338 develop(intx, CIStop, max_jint, \
3336 "The id of the last compilation to permit") \ 3339 "The id of the last compilation to permit") \
3337 \ 3340 \
3338 develop(intx, CIStartOSR, 0, \ 3341 develop(intx, CIStartOSR, 0, \
3339 "The id of the first osr compilation to permit " \ 3342 "The id of the first osr compilation to permit " \
3340 "(CICountOSR must be on)") \ 3343 "(CICountOSR must be on)") \
3341 \ 3344 \
3342 develop(intx, CIStopOSR, -1, \ 3345 develop(intx, CIStopOSR, max_jint, \
3343 "The id of the last osr compilation to permit " \ 3346 "The id of the last osr compilation to permit " \
3344 "(CICountOSR must be on)") \ 3347 "(CICountOSR must be on)") \
3345 \ 3348 \
3346 develop(intx, CIBreakAtOSR, -1, \ 3349 develop(intx, CIBreakAtOSR, -1, \
3347 "The id of osr compilation to break at") \ 3350 "The id of osr compilation to break at") \
3348 \ 3351 \
3349 develop(intx, CIBreakAt, -1, \ 3352 develop(intx, CIBreakAt, -1, \
3350 "The id of compilation to break at") \ 3353 "The id of compilation to break at") \
3351 \ 3354 \
3352 product(ccstrlist, CompileOnly, "", \ 3355 product(ccstrlist, CompileOnly, "", \
3353 "List of methods (pkg/class.name) to restrict compilation to") \ 3356 "List of methods (pkg/class.name) to restrict compilation to") \
3354 \ 3357 \
3362 "Enable replay of compilations from ReplayDataFile") \ 3365 "Enable replay of compilations from ReplayDataFile") \
3363 \ 3366 \
3364 product(ccstr, ReplayDataFile, NULL, \ 3367 product(ccstr, ReplayDataFile, NULL, \
3365 "File containing compilation replay information" \ 3368 "File containing compilation replay information" \
3366 "[default: ./replay_pid%p.log] (%p replaced with pid)") \ 3369 "[default: ./replay_pid%p.log] (%p replaced with pid)") \
3370 \
3371 product(ccstr, InlineDataFile, NULL, \
3372 "File containing inlining replay information" \
3373 "[default: ./inline_pid%p.log] (%p replaced with pid)") \
3367 \ 3374 \
3368 develop(intx, ReplaySuppressInitializers, 2, \ 3375 develop(intx, ReplaySuppressInitializers, 2, \
3369 "Control handling of class initialization during replay: " \ 3376 "Control handling of class initialization during replay: " \
3370 "0 - don't do anything special; " \ 3377 "0 - don't do anything special; " \
3371 "1 - treat all class initializers as empty; " \ 3378 "1 - treat all class initializers as empty; " \