Lines Matching defs:cleanup_body
3525 basicblock *cleanup_end, *cleanup_body;
3528 cleanup_body = compiler_new_block(c);
3529 if (cleanup_end == NULL || cleanup_body == NULL) {
3548 compiler_use_next_block(c, cleanup_body);
3549 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name))
3554 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
3578 basicblock *cleanup_body;
3580 cleanup_body = compiler_new_block(c);
3581 if (!cleanup_body)
3585 compiler_use_next_block(c, cleanup_body);
3586 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, NULL))
3589 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
3752 basicblock *cleanup_body = compiler_new_block(c);
3753 if (cleanup_body == NULL) {
3776 compiler_use_next_block(c, cleanup_body);
3777 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name))
3782 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);