mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8022494: Make compilation IDs sequential
Use atomic operations to provide sequential compilation IDs Reviewed-by: kvn, twisti
This commit is contained in:
parent
0c84081c87
commit
42afc756f5
5 changed files with 59 additions and 58 deletions
|
@ -3309,21 +3309,21 @@ class CommandLineFlags {
|
|||
develop(intx, CIStart, 0, \
|
||||
"The id of the first compilation to permit") \
|
||||
\
|
||||
develop(intx, CIStop, -1, \
|
||||
develop(intx, CIStop, max_jint, \
|
||||
"The id of the last compilation to permit") \
|
||||
\
|
||||
develop(intx, CIStartOSR, 0, \
|
||||
develop(intx, CIStartOSR, 0, \
|
||||
"The id of the first osr compilation to permit " \
|
||||
"(CICountOSR must be on)") \
|
||||
\
|
||||
develop(intx, CIStopOSR, -1, \
|
||||
develop(intx, CIStopOSR, max_jint, \
|
||||
"The id of the last osr compilation to permit " \
|
||||
"(CICountOSR must be on)") \
|
||||
\
|
||||
develop(intx, CIBreakAtOSR, -1, \
|
||||
develop(intx, CIBreakAtOSR, -1, \
|
||||
"The id of osr compilation to break at") \
|
||||
\
|
||||
develop(intx, CIBreakAt, -1, \
|
||||
develop(intx, CIBreakAt, -1, \
|
||||
"The id of compilation to break at") \
|
||||
\
|
||||
product(ccstrlist, CompileOnly, "", \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue