Thanks to visit codestin.com
Credit goes to github.com

Skip to content

gh-93554: add test for quickening of code in loops ending with conditional statement #119485

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 2 commits into from
May 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions Lib/test/test_dis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,6 +1207,36 @@ def test_loop_quicken(self):
expected = dis_loop_test_quickened_code
self.do_disassembly_compare(got, expected)

@cpython_only
@requires_specialization
def test_loop_with_conditional_at_end_is_quickened(self):
def for_loop_true(x):
for i in range(10):
if x:
pass

for_loop_true(True)
self.assertIn('FOR_ITER_RANGE',
self.get_disassembly(for_loop_true, adaptive=True))

def for_loop_false(x):
for i in range(10):
if x:
pass

for_loop_false(False)
self.assertIn('FOR_ITER_RANGE',
self.get_disassembly(for_loop_false, adaptive=True))

def while_loop():
i = 0
while i < 10:
i += 1

while_loop()
self.assertIn('COMPARE_OP_INT',
self.get_disassembly(while_loop, adaptive=True))

@cpython_only
def test_extended_arg_quick(self):
got = self.get_disassembly(extended_arg_quick)
Expand Down
Loading