8000 gh-131798: JIT: Split `CALL_TYPE_1` into several uops by tomasr8 · Pull Request #132419 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-131798: JIT: Split CALL_TYPE_1 into several uops #132419

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

Merged
merged 16 commits into from
Apr 22, 2025
Merged
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
tomasr8 committed Apr 12, 2025
commit 8984add1d4bbe449b26354a5e557dd5f2cc5a894
2 changes: 1 addition & 1 deletion Lib/test/test_capi/test_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,7 @@ def testfunc(n):
uops = get_opnames(ex)
self.assertIn("_CALL_TYPE_1", uops)
self.assertNotIn("_GUARD_NOS_NULL", uops)
self.assertNotIn("_GUARD_NOS_TYPE", uops)
self.assertNotIn("_GUARD_CALLABLE_TYPE_1", uops)


def global_identity(x):
Expand Down
Loading
0