Home
last modified time | relevance | path

Searched refs:compiler_jump_if (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
Dcompile.c2123 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()
[all …]