Home | History | Annotate | Download | only in Scalar

Lines Matching refs:SuccBB

120                     BasicBlock *SuccBB);
1353 /// blocks in PredBBs to one predecessor, then thread an edge from it to SuccBB
1357 BasicBlock *SuccBB) {
1359 if (SuccBB == BB) {
1369 << "' to dest BB '" << SuccBB->getName()
1393 << SuccBB->getName() << "' with cost: " << JumpThreadCost
1397 LVI->threadEdge(PredBB, BB, SuccBB);
1431 // an unconditional jump to SuccBB. Insert the unconditional jump.
1432 BranchInst *NewBI =BranchInst::Create(SuccBB, NewBB);
1435 // Check to see if SuccBB has PHI nodes. If so, we need to add entries to the
1437 AddPHINodeEntriesForMappedBlock(SuccBB, BB, NewBB, ValueMapping);