Lines Matching full:cond_true
2746 HBasicBlock* cond_true = graph()->CreateBasicBlock();
2748 CHECK_BAILOUT(VisitForControl(stmt->condition(), cond_true, cond_false));
2750 if (cond_true->HasPredecessor()) {
2751 cond_true->SetJoinId(stmt->ThenId());
2752 set_current_block(cond_true);
2754 cond_true = current_block();
2756 cond_true = NULL;
2768 HBasicBlock* join = CreateJoin(cond_true, cond_false, stmt->IfId());
3507 HBasicBlock* cond_true = graph()->CreateBasicBlock();
3509 CHECK_BAILOUT(VisitForControl(expr->condition(), cond_true, cond_false));
3513 if (cond_true->HasPredecessor()) {
3514 cond_true->SetJoinId(expr->ThenId());
3515 set_current_block(cond_true);
3517 cond_true = current_block();
3519 cond_true = NULL;
3532 HBasicBlock* join = CreateJoin(cond_true, cond_false, expr->id());