-
-
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
_Py_Dealloc
is an escaping call
#124483
Comments
Doing this correctly is actually pretty tricky:
After talking it through with @markshannon, one possible approach to making this work could be:
That should give us a good path forward here. Fewer stack adjustments is also very nice for top-of-stack caching. |
Note: the above example doesn't crash anymore as we've increased the thresholds. Increasing 999 to 9999 produces a crash. |
Fixing the crash is actually quite straightforward. All the stuff around keeping the stack consistent is potentially important for the GC, but we don't rely on it at the moment. |
Leaving this open because of #128678 (comment). |
Crash report
We like to pretend that
_Py_Dealloc
(and, by extension,Py_DECREF
,Py_XDECREF
,Py_CLEAR
,PyStackRef_CLOSE
,PyStackRef_CLEAR
, etc...) isn't an escaping call in tier two. However, it's perfectly capable of invalidating the world. For example, the following code crashes when run under the JIT:Longer term, we're hoping that removing refcounting operations in tier two will help us out here. Fortunately, the
_SET_IP
and_CHECK_VALIDITY
instructions necessary to fix this issue aren't expensive enough to show up on benchmarks when added back (for now).Linked PRs
_Py_Dealloc
as an escaping call in tier two #124615Py_DECREF
, etc. as escaping for the JIT #128678The text was updated successfully, but these errors were encountered: