@@ -2422,11 +2422,8 @@ dummy_func(
2422
2422
assert (next_instr [INLINE_CACHE_ENTRIES_FOR_ITER + oparg ].op .code == END_FOR ||
2423
2423
next_instr [INLINE_CACHE_ENTRIES_FOR_ITER + oparg ].op .code == INSTRUMENTED_END_FOR );
2424
2424
Py_DECREF (iter );
2425
- // STACK_SHRINK(1);
2426
- // SKIP_OVER(INLINE_CACHE_ENTRIES_FOR_ITER);
2427
2425
/* Jump forward oparg, then skip following END_FOR instruction */
2428
2426
JUMP_POP_DISPATCH (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 , 1 );
2429
- // DISPATCH();
2430
2427
}
2431
2428
// Common case: no jump, leave it to the code generator
2432
2429
}
@@ -2473,11 +2470,8 @@ dummy_func(
2473
2470
Py_DECREF (seq );
2474
2471
}
2475
2472
Py_DECREF (iter );
2476
- // STACK_SHRINK(1);
2477
- // SKIP_OVER(INLINE_CACHE_ENTRIES_FOR_ITER);
2478
2473
/* Jump forward oparg, then skip following END_FOR instruction */
2479
2474
JUMP_POP_DISPATCH (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 , 1 );
2480
- // DISPATCH();
2481
2475
end_for_iter_list :
2482
2476
// Common case: no jump, leave it to the code generator
2483
2477
}
@@ -2496,11 +2490,8 @@ dummy_func(
2496
2490
Py_DECREF (seq );
2497
2491
}
2498
2492
Py_DECREF (iter );
2499
- // STACK_SHRINK(1);
2500
- // SKIP_OVER(INLINE_CACHE_ENTRIES_FOR_ITER);
2501
2493
/* Jump forward oparg, then skip following END_FOR instruction */
2502
2494
JUMP_POP_DISPATCH (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 , 1 );
2503
- // DISPATCH();
2504
2495
end_for_iter_tuple :
2505
2496
// Common case: no jump, leave it to the code generator
2506
2497
}
@@ -2512,10 +2503,7 @@ dummy_func(
2512
2503
if (r -> len <= 0 ) {
2513
2504
// STACK_SHRINK(1);
2514
2505
Py_DECREF (r );
2515
- // SKIP_OVER(INLINE_CACHE_ENTRIES_FOR_ITER);
2516
- // Jump over END_FOR instruction.
2517
2506
JUMP_POP_DISPATCH (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 , 1 );
2518
- // DISPATCH();
2519
2507
}
2520
2508
long value = r -> start ;
2521
2509
r -> start = value + r -> step ;
0 commit comments