comparison src/share/vm/runtime/globals.hpp @ 17625:7b9127b17b7a

8022494: Make compilation IDs sequential Summary: Use atomic operations to provide sequential compilation IDs Reviewed-by: kvn, twisti
author anoll
date Fri, 10 Jan 2014 06:36:18 +0100
parents 849eb7bfceac
children db1ff6781ab4 a034dc5e910b a9becfeecd1b
comparison
equal deleted inserted replaced
17624:9f4f77ef2706 17625:7b9127b17b7a
3307 \ 3307 \
3308 /* compiler interface */ \ 3308 /* compiler interface */ \
3309 develop(intx, CIStart, 0, \ 3309 develop(intx, CIStart, 0, \
3310 "The id of the first compilation to permit") \ 3310 "The id of the first compilation to permit") \
3311 \ 3311 \
3312 develop(intx, CIStop, -1, \ 3312 develop(intx, CIStop, max_jint, \
3313 "The id of the last compilation to permit") \ 3313 "The id of the last compilation to permit") \
3314 \ 3314 \
3315 develop(intx, CIStartOSR, 0, \ 3315 develop(intx, CIStartOSR, 0, \
3316 "The id of the first osr compilation to permit " \ 3316 "The id of the first osr compilation to permit " \
3317 "(CICountOSR must be on)") \ 3317 "(CICountOSR must be on)") \
3318 \ 3318 \
3319 develop(intx, CIStopOSR, -1, \ 3319 develop(intx, CIStopOSR, max_jint, \
3320 "The id of the last osr compilation to permit " \ 3320 "The id of the last osr compilation to permit " \
3321 "(CICountOSR must be on)") \ 3321 "(CICountOSR must be on)") \
3322 \ 3322 \
3323 develop(intx, CIBreakAtOSR, -1, \ 3323 develop(intx, CIBreakAtOSR, -1, \
3324 "The id of osr compilation to break at") \ 3324 "The id of osr compilation to break at") \
3325 \ 3325 \
3326 develop(intx, CIBreakAt, -1, \ 3326 develop(intx, CIBreakAt, -1, \
3327 "The id of compilation to break at") \ 3327 "The id of compilation to break at") \
3328 \ 3328 \
3329 product(ccstrlist, CompileOnly, "", \ 3329 product(ccstrlist, CompileOnly, "", \
3330 "List of methods (pkg/class.name) to restrict compilation to") \ 3330 "List of methods (pkg/class.name) to restrict compilation to") \
3331 \ 3331 \