-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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-128682: Make PyStackRef_CLOSE
escaping.
#129404
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.
Can you bench this on Win64 as well? I suspect the _PyFrame_SetStackPointer
calls will not get inlined, and will produce a tremendous slowdown on Win64.
You should define them as a macro on that platform to be safe.
@@ -330,6 +337,16 @@ def convert_stack_item( | |||
cond = replace_op_arg_1 | |||
return StackItem(item.name, item.type, cond, item.size) | |||
|
|||
def check_unused(stack: list[StackItem], input_names: dict[str, lexer.Token]): | |||
"Unused items cannot be on the stack above used, non-peek items" |
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.
What's the rationale for this?
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.
We should probably remove any special treatment of variables named "unused" as they get skipped by the analysis, leading to some incorrect stacks. This is just avoiding one of those cases.
Benchmarking shows a 0.2% speedup on Linux (noise) and 1.2% slowdown on Windows. The slowdown on Windows includes an 8% slowdown on However, even with Looking at the generated code and the latest execution counts, the instructions changed account for 2-3% of the total instructions executed which I would expect to cause a slowdown of no more than 0.2%. |
🤖 New build scheduled with the buildbot fleet by @Fidget-Spinner for commit 5dc7977 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F30617%2Fmerge If you want to schedule another build, you need to add the 🔨 test-with-refleak-buildbots label again. |
Looks good, but worried about the close and stackref changes. Running with refleak buildbots. |
The buildbots are failing This fails on main: |
Wait did we address the slowdowns on Windows? |
Makes
PyStackRef_CLOSE
escaping.PyStackRef_CLOSE
kills the variable, and then escapes.This PR adds an
EscapingCall
dataclass to the analysis, with a newkill
attribute.PyStackRef_CLOSE
andPyStackRef_XCLOSE
set thekill
attribute, so the code generator knows to kill the argument before spilling.Doing so, means that
pop_N_error
labels no longer work as we need to adjust the stack pointer before allPyStackRef_CLOSE
rather than once at the jump to error.Performance numbers to come...