Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-131798: JIT: Narrow the return type of_GET_LEN
to int#133345
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
cabe8f1
1f8a607
f2f71d9
1662b47
52ce698
b1640ed
cf17d92
c401539
619a846
9adefc3
9c6efcb
69b929b
d1e3a2b
e0e3745
81c4996
93e1e86
6b5282f
2eefeb3
9c58f2c
f9822e9
6a06aff
6d92614
5cfbad4
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1925,6 +1925,50 @@ def testfunc(n): | ||
self.assertNotIn("_GUARD_NOS_INT", uops) | ||
self.assertNotIn("_GUARD_TOS_INT", uops) | ||
def test_get_len_with_const_tuple(self): | ||
def testfunc(n): | ||
x = 0.0 | ||
for _ in range(n): | ||
match (1, 2, 3, 4): | ||
case [_, _, _, _]: | ||
x += 1.0 | ||
return x | ||
res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) | ||
self.assertEqual(int(res), TIER2_THRESHOLD) | ||
uops = get_opnames(ex) | ||
self.assertNotIn("_GUARD_NOS_INT", uops) | ||
Zheaoli marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
self.assertNotIn("_GET_LEN", uops) | ||
self.assertIn("_LOAD_CONST_INLINE_BORROW", uops) | ||
def test_get_len_with_non_const_tuple(self): | ||
def testfunc(n): | ||
x = 0.0 | ||
for _ in range(n): | ||
match object(), object(): | ||
case [_, _]: | ||
x += 1.0 | ||
return x | ||
res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) | ||
self.assertEqual(int(res), TIER2_THRESHOLD) | ||
uops = get_opnames(ex) | ||
self.assertNotIn("_GUARD_NOS_INT", uops) | ||
self.assertNotIn("_GET_LEN", uops) | ||
self.assertIn("_LOAD_CONST_INLINE_BORROW", uops) | ||
def test_get_len_with_non_tuple(self): | ||
def testfunc(n): | ||
x = 0.0 | ||
for _ in range(n): | ||
match [1, 2, 3, 4]: | ||
case [_, _, _, _]: | ||
x += 1.0 | ||
return x | ||
res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) | ||
self.assertEqual(int(res), TIER2_THRESHOLD) | ||
uops = get_opnames(ex) | ||
self.assertNotIn("_GUARD_NOS_INT", uops) | ||
self.assertIn("_GET_LEN", uops) | ||
def test_binary_op_subscr_tuple_int(self): | ||
def testfunc(n): | ||
x = 0 | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Allow the JIT to remove int guards after ``_GET_LEN`` by setting the return | ||
type to int. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1116,6 +1116,25 @@ dummy_func(void) { | ||
res = sym_new_type(ctx, &PyLong_Type); | ||
} | ||
op(_GET_LEN, (obj -- obj, len)) { | ||
int tuple_length = sym_tuple_length(obj); | ||
if (tuple_length == -1) { | ||
len = sym_new_type(ctx, &PyLong_Type); | ||
Zheaoli marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
else { | ||
assert(tuple_length >= 0); | ||
PyObject *temp = PyLong_FromLong(tuple_length); | ||
if (temp == NULL) { | ||
goto error; | ||
} | ||
if (_Py_IsImmortal(temp)) { | ||
REPLACE_OP(this_instr, _LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)temp); | ||
} | ||
len = sym_new_const(ctx, temp); | ||
Zheaoli marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
Py_DECREF(temp); | ||
} | ||
} | ||
op(_GUARD_CALLABLE_LEN, (callable, unused, unused -- callable, unused, unused)) { | ||
PyObject *len = _PyInterpreterState_GET()->callable_cache.len; | ||
if (sym_get_const(ctx, callable) == len) { | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.