Lines Matching refs:cleanup_body
3093 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3096 cleanup_body = compiler_new_block(c); in compiler_try_except()
3097 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3117 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3118 … if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name)) in compiler_try_except()
3123 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3143 basicblock *cleanup_body; in compiler_try_except() local
3145 cleanup_body = compiler_new_block(c); in compiler_try_except()
3146 if (!cleanup_body) in compiler_try_except()
3151 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3152 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, NULL)) in compiler_try_except()
3155 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()