Searched refs:compiler_push_fblock (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Python/ |
D | compile.c | 1731 compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b, in compiler_push_fblock() function 1796 if (!compiler_push_fblock(c, POP_VALUE, NULL, NULL, NULL)) { in compiler_unwind_fblock() 2870 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_for() 2914 if (!compiler_push_fblock(c, FOR_LOOP, start, end, NULL)) { in compiler_async_for() 2959 if (!compiler_push_fblock(c, WHILE_LOOP, loop, end, NULL)) { in compiler_while() 3106 if (!compiler_push_fblock(c, FINALLY_TRY, body, end, s->v.Try.finalbody)) in compiler_try_finally() 3121 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally() 3174 if (!compiler_push_fblock(c, TRY_EXCEPT, body, NULL, NULL)) in compiler_try_except() 3183 if (!compiler_push_fblock(c, EXCEPTION_HANDLER, NULL, NULL, NULL)) in compiler_try_except() 3227 … if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name)) in compiler_try_except() [all …]
|