Searched refs:FOR_ITER (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test__opcode.py | 40 FOR_ITER = dis.opmap['FOR_ITER'] 41 self.assertEqual(stack_effect(FOR_ITER, 0), 1) 42 self.assertEqual(stack_effect(FOR_ITER, 0, jump=True), -1) 43 self.assertEqual(stack_effect(FOR_ITER, 0, jump=False), 1)
|
/third_party/python/Include/internal/ |
H A D | pycore_opcode.h | 110 [FOR_ITER] = FOR_ITER, 335 [FOR_ITER] = "FOR_ITER",
|
/third_party/python/Include/ |
H A D | opcode.h | 53 #define FOR_ITER 93 macro
|
/third_party/python/Objects/ |
H A D | frameobject.c | 381 case FOR_ITER: in mark_stacks()
|
/third_party/python/Python/ |
H A D | ceval.c | 4299 PREDICT(FOR_ITER); 4332 TARGET(FOR_ITER) { 4333 PREDICTED(FOR_ITER); 4338 _py_stats.opcode_stats[FOR_ITER].specialization.failure++; 4339 _py_stats.opcode_stats[FOR_ITER].specialization.failure_kinds[_PySpecialization_ClassifyIterator(iter)]++;
|
H A D | compile.c | 1009 case FOR_ITER: in stack_effect() 3117 ADDOP_JUMP(c, FOR_ITER, cleanup); in compiler_for() 5294 ADDOP_JUMP(c, FOR_ITER, anchor); in compiler_sync_comprehension_generator() 9006 case FOR_ITER: in optimize_basic_block() 9009 * be forward or backward and FOR_ITER only jumps forward. We in optimize_basic_block() 9011 * of FOR_ITER. in optimize_basic_block() 9014 i -= jump_thread(inst, target, FOR_ITER); in optimize_basic_block() 9164 case FOR_ITER: in normalize_basic_block()
|
H A D | specialize.c | 144 fprintf(out, "opcode[%d].specializable : 1\n", FOR_ITER); in print_spec_stats() 463 /* FOR_ITER */
|
Completed in 28 milliseconds