Lines Matching refs:compiler_jump_if
2123 compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond) in compiler_jump_if() function
2128 return compiler_jump_if(c, e->v.UnaryOp.operand, next, !cond); in compiler_jump_if()
2143 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2)) in compiler_jump_if()
2146 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond)) in compiler_jump_if()
2160 if (!compiler_jump_if(c, e->v.IfExp.test, next2, 0)) in compiler_jump_if()
2162 if (!compiler_jump_if(c, e->v.IfExp.body, next, cond)) in compiler_jump_if()
2166 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) in compiler_jump_if()
2230 if (!compiler_jump_if(c, e->v.IfExp.test, next, 0)) in compiler_ifexp()
2320 if (!compiler_jump_if(c, s->v.If.test, next, 0)) in compiler_if()
2475 if (!compiler_jump_if(c, s->v.While.test, anchor, 0)) in compiler_while()
2938 if (!compiler_jump_if(c, s->v.Assert.test, end, 1)) in compiler_assert()
3857 if (!compiler_jump_if(c, e, if_cleanup, 0)) in compiler_sync_comprehension_generator()
3975 if (!compiler_jump_if(c, e, if_cleanup, 0)) in compiler_async_comprehension_generator()