Lines Matching refs:orelse
1478 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
1581 if (s->v.If.orelse) in compiler_if()
1582 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1586 if (s->v.If.orelse) { in compiler_if()
1597 if (s->v.If.orelse) { in compiler_if()
1599 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1629 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
1637 basicblock *loop, *orelse, *end, *anchor = NULL; in compiler_while() local
1641 if (s->v.While.orelse) in compiler_while()
1642 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
1654 if (s->v.While.orelse) { in compiler_while()
1655 orelse = compiler_new_block(c); in compiler_while()
1656 if (orelse == NULL) in compiler_while()
1660 orelse = NULL; in compiler_while()
1681 if (orelse != NULL) /* what if orelse is just pass? */ in compiler_while()
1682 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
1817 basicblock *body, *orelse, *except, *end; in compiler_try_except() local
1822 orelse = compiler_new_block(c); in compiler_try_except()
1824 if (body == NULL || except == NULL || orelse == NULL || end == NULL) in compiler_try_except()
1833 ADDOP_JREL(c, JUMP_FORWARD, orelse); in compiler_try_except()
1865 compiler_use_next_block(c, orelse); in compiler_try_except()
1866 VISIT_SEQ(c, stmt, s->v.TryExcept.orelse); in compiler_try_except()