Lines Matching refs:false_env
106 SsaEnv* false_env; // false environment (only for if). member
126 SsaEnv* false_env, int32_t previous_catch) { in If()
128 false_env, nullptr, previous_catch, {0, {NO_VALUE}}}; in If()
754 SsaEnv* false_env = Split(ssa_env_); in DecodeFunctionBody() local
755 false_env->control = if_false; in DecodeFunctionBody()
758 PushIf(end_env, false_env); in DecodeFunctionBody()
774 if (c->false_env == nullptr) { in DecodeFunctionBody()
781 SetEnv("if_else:false", c->false_env); in DecodeFunctionBody()
782 c->false_env = nullptr; // record that an else is already seen in DecodeFunctionBody()
800 if (c->false_env != nullptr) { in DecodeFunctionBody()
802 Goto(c->false_env, c->end_env); in DecodeFunctionBody()
1292 void PushIf(SsaEnv* end_env, SsaEnv* false_env) { in PushIf() argument
1295 Control::If(pc_, stack_depth, end_env, false_env, current_catch_)); in PushIf()