Lines Matching refs:exit

281     /* (optional) type-specific exit or cleanup block */
296 /* The following items change on entry and exit of code blocks.
1933 basicblock *exit, void *datum)
1942 f->fb_exit = exit;
1970 basicblock *start, *resume, *exit;
1973 exit = compiler_new_block(c);
1974 if (start == NULL || resume == NULL || exit == NULL) {
1978 ADDOP_JUMP(c, SEND, exit);
1983 compiler_use_next_block(c, exit);
2078 /* The exit block should appear to execute after the
3351 basicblock *body, *end, *exit, *cleanup;
3355 exit = compiler_new_block(c);
3357 if (body == NULL || end == NULL || exit == NULL || cleanup == NULL) {
3375 ADDOP_JUMP_NOLINE(c, JUMP, exit);
3389 compiler_use_next_block(c, exit);
3404 basicblock *exit = compiler_new_block(c);
3405 if (!exit) {
3429 ADDOP_JUMP_NOLINE(c, JUMP, exit);
3444 compiler_use_next_block(c, exit);
5604 basicblock *exit;
5605 exit = compiler_new_block(c);
5606 if (exit == NULL)
5608 ADDOP_JUMP(c, POP_JUMP_IF_TRUE, exit);
5612 compiler_use_next_block(c, exit);
5632 exit = context.__aexit__ # not calling it
5642 if not (await exit(*exc)):
5648 basicblock *block, *final, *exit, *cleanup;
5660 exit = compiler_new_block(c);
5662 if (!block || !final || !exit || !cleanup)
5712 ADDOP_JUMP(c, JUMP, exit);
5725 compiler_use_next_block(c, exit);
5754 basicblock *block, *final, *exit, *cleanup;
5761 exit = compiler_new_block(c);
5763 if (!block || !final || !exit || !cleanup)
5808 ADDOP_JUMP(c, JUMP, exit);
5818 compiler_use_next_block(c, exit);
6185 goto exit;
6188 exit:
8120 /* Duplicates exit BBs, so that line numbers can be propagated to them */
9057 /* If this block ends with an unconditional jump to an exit block,
9143 /* Mark blocks as exit and/or nofallthrough.
9242 * This ensures that all exit blocks (with one predecessor) receive a line number.
9397 * We can do this by duplicating the exit blocks without line number
9404 /* Copy all exit blocks without line number that are targets of a jump.
9429 /* Any remaining reachable exit blocks without line number can only be reached by