-
Notifications
You must be signed in to change notification settings - Fork 756
Display ignored -Xjit and -Xaot args in IGNOREDARGS list #19990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall. Please see my inline comments.
@keithc-ca Could you please review this PR too since it modifies VM files? Thanks |
70f582b
to
acb636d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Waiting for @keithc-ca approval
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the code should be reorganized so ignored options are printed in the same order they're specified on the command line. I expect that means the first new loop must be inserted before the existing loop, and the work of the second new loop must be merged into the existing loop.
c8f4627
to
878b92d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My comment about printing ignored options in command-line order remains.
878b92d
to
e037d6b
Compare
e037d6b
to
27e5685
Compare
All the comments should have been addressed now |
e68c926
to
ef53004
Compare
All the comments should have been addressed now |
ef53004
to
cfec721
Compare
Please address the failure of the line endings check. |
cfec721
to
2aa1b5f
Compare
Trailing whitespace removed |
2aa1b5f
to
ee032fc
Compare
Jenkins test sanity amac jdk17 |
The
-Xjit
and-Xaot
args being ignored because there are multiple-Xjit
or-Xaot
arguments (only the last one will be considered), or because there exists-Xnojit
,-Xnoaot
, or-Xint
(ignores the arguments before the in the command line option) will be displayed in the IGNOREDARGS list during the core dump.Fixes #19742