Home | History | Annotate | Download | only in Utils

Lines Matching refs:FalseBB

2418 // branch to TrueBB if Cond is true or to FalseBB if Cond is false.
2423 BasicBlock *TrueBB, BasicBlock *FalseBB,
2428 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
2431 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
2450 if (TrueBB == FalseBB)
2457 BranchInst *NewBI = Builder.CreateCondBr(Cond, TrueBB, FalseBB);
2463 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
2475 // Only FalseBB was found.
2476 Builder.CreateBr(FalseBB);
2497 BasicBlock *FalseBB = SI->findCaseValue(FalseVal).getCaseSuccessor();
2499 // Get weight for TrueBB and FalseBB.
2514 return SimplifyTerminatorOnSelect(SI, Condition, TrueBB, FalseBB,
2532 BasicBlock *FalseBB = FBA->getBasicBlock();
2535 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB,