Searched refs:compiler_jump_if (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | compile.c | 2522 compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond) in compiler_jump_if() function 2527 return compiler_jump_if(c, e->v.UnaryOp.operand, next, !cond); in compiler_jump_if() 2542 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2)) in compiler_jump_if() 2545 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond)) in compiler_jump_if() 2559 if (!compiler_jump_if(c, e->v.IfExp.test, next2, 0)) in compiler_jump_if() 2561 if (!compiler_jump_if(c, e->v.IfExp.body, next, cond)) in compiler_jump_if() 2565 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) in compiler_jump_if() 2630 if (!compiler_jump_if(c, e->v.IfExp.test, next, 0)) in compiler_ifexp() 2734 if (!compiler_jump_if(c, s->v.If.test, next, 0)) { in compiler_if() 2873 if (!compiler_jump_if(c, s->v.While.test, anchor, 0)) in compiler_while() [all …]
|