Skip to content

Commit 2b439da

Browse files
gh-148171: convert more variadic uops to leave input on stack in JIT (#148361)
1 parent dd88e77 commit 2b439da

File tree

11 files changed

+228
-196
lines changed

11 files changed

+228
-196
lines changed

Include/internal/pycore_ceval.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,15 +445,15 @@ _Py_BuiltinCallFastWithKeywords_StackRefSteal(
445445
int total_args);
446446

447447
PyAPI_FUNC(PyObject *)
448-
_PyCallMethodDescriptorFast_StackRefSteal(
448+
_PyCallMethodDescriptorFast_StackRef(
449449
_PyStackRef callable,
450450
PyCFunctionFast cfunc,
451451
PyObject *self,
452452
_PyStackRef *arguments,
453453
int total_args);
454454

455455
PyAPI_FUNC(PyObject *)
456-
_PyCallMethodDescriptorFastWithKeywords_StackRefSteal(
456+
_PyCallMethodDescriptorFastWithKeywords_StackRef(
457457
_PyStackRef callable,
458458
PyCFunctionFastWithKeywords cfunc,
459459
PyObject *self,

Include/internal/pycore_opcode_metadata.h

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_ids.h

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_metadata.h

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/_testinternalcapi/test_cases.c.h

Lines changed: 44 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)