Lines Matching full:cond_true
3957 HBasicBlock* cond_true = graph()->CreateBasicBlock();
3959 CHECK_BAILOUT(VisitForControl(stmt->condition(), cond_true, cond_false));
3961 if (cond_true->HasPredecessor()) {
3962 cond_true->SetJoinId(stmt->ThenId());
3963 set_current_block(cond_true);
3965 cond_true = current_block();
3967 cond_true = NULL;
3979 HBasicBlock* join = CreateJoin(cond_true, cond_false, stmt->IfId());
4625 HBasicBlock* cond_true = graph()->CreateBasicBlock();
4627 CHECK_BAILOUT(VisitForControl(expr->condition(), cond_true, cond_false));
4631 if (cond_true->HasPredecessor()) {
4632 cond_true->SetJoinId(expr->ThenId());
4633 set_current_block(cond_true);
4635 cond_true = current_block();
4637 cond_true = NULL;
4650 HBasicBlock* join = CreateJoin(cond_true, cond_false, expr->id());