-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
gh-137838: Fix JIT trace buffer overrun by increasing possible exit stubs #138177
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
base: main
Are you sure you want to change the base?
Conversation
Might be better approach than #138173, but issue is that max_length will be shorter than current, not sure that this apporach will be fine. |
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.
Nice!
// Need space for _DEOPT | ||
max_length--; | ||
|
||
max_length-=2; |
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.
Needs comment on why 2:
// One for possible _DEOPT, one because _CHECK_VALIDITY itself might _DEOPT
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. Will wait for Mark to agree.
Uh oh!
There was an error while loading. Please reload this page.