Lines Matching refs:orelse
1487 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
1590 if (s->v.If.orelse) in compiler_if()
1591 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1595 if (s->v.If.orelse) { in compiler_if()
1606 if (s->v.If.orelse) { in compiler_if()
1608 VISIT_SEQ(c, stmt, s->v.If.orelse); in compiler_if()
1638 VISIT_SEQ(c, stmt, s->v.For.orelse); in compiler_for()
1646 basicblock *loop, *orelse, *end, *anchor = NULL; in compiler_while() local
1650 if (s->v.While.orelse) in compiler_while()
1651 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
1663 if (s->v.While.orelse) { in compiler_while()
1664 orelse = compiler_new_block(c); in compiler_while()
1665 if (orelse == NULL) in compiler_while()
1669 orelse = NULL; in compiler_while()
1690 if (orelse != NULL) /* what if orelse is just pass? */ in compiler_while()
1691 VISIT_SEQ(c, stmt, s->v.While.orelse); in compiler_while()
1826 basicblock *body, *orelse, *except, *end; in compiler_try_except() local
1831 orelse = compiler_new_block(c); in compiler_try_except()
1833 if (body == NULL || except == NULL || orelse == NULL || end == NULL) in compiler_try_except()
1842 ADDOP_JREL(c, JUMP_FORWARD, orelse); in compiler_try_except()
1874 compiler_use_next_block(c, orelse); in compiler_try_except()
1875 VISIT_SEQ(c, stmt, s->v.TryExcept.orelse); in compiler_try_except()