Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
GH-91432: Remove the
iterator_exhausted_no_error
label #96517GH-91432: Remove the
iterator_exhausted_no_error
label #96517Changes from 1 commit
83e7223
49deea4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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 believe this can be
NOTRACE_DISPATCH()
now, right? Likewise in FOR_ITER_RANGEThere 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 honestly have a hunch that a bunch of the existing
NOTRACE_DISPATCH()
usage is incorrect and could trigger assertion failures (but haven't had time to look into it yet). I don't thinkNOTRACE_DISPATCH()
is safe if we decref an untrusted value (like a list containing arbitrary elements) since the finalizer could start tracing. Right?So in the
range
case it's safe, but probably not thelist
case (if my hunch is correct). What do you think?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'm curious how much perf win we're getting from the
NOTRACE_DISPATCH()
stuff. It seems really tricky to get right, and it only saves one arithmetic operation onoparg
.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 thought we were assuming that
__del__
methods execute at an unspecified time, so if they turn on tracing, it shouldn't matter whether we actually start tracing a few instructions later.I guess the unfortunate scenario would be where a
__del__
method turns on tracing, then sees a few instructions traced, then returns to the Py_DECREF call site, and then can take a couple of instructions before it starts tracing that caller. I'm not sure whether that is acceptable.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.
Hm, well in that case we should at least remove all those assertions at the start of the quickened instructions. I also want to try benchmarking a branch were we just use
DISPATCH()
for everything, and see how much slower that is. If it's not much slower, it may just make sense to keep the tracing logic consistent for all instructions.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.
Want to make a new issue to review our use of
NOTRACE_DISPATCH()
?I found a ~1% slowdown replacing all uses of it with
DISPATCH()
.If PEP 669 is accepted it will no longer be needed, as
DISPATCH()
will become the same asNOTRACE_DISPATCH()
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.
#96636