Home | History | Annotate | Download | only in Scalar

Lines Matching refs:SuccBB

118                     BasicBlock *SuccBB);
1328 /// blocks in PredBBs to one predecessor, then thread an edge from it to SuccBB
1332 BasicBlock *SuccBB) {
1334 if (SuccBB == BB) {
1344 << "' to dest BB '" << SuccBB->getName()
1368 << SuccBB->getName() << "' with cost: " << JumpThreadCost
1372 LVI->threadEdge(PredBB, BB, SuccBB);
1406 // an unconditional jump to SuccBB. Insert the unconditional jump.
1407 BranchInst *NewBI =BranchInst::Create(SuccBB, NewBB);
1410 // Check to see if SuccBB has PHI nodes. If so, we need to add entries to the
1412 AddPHINodeEntriesForMappedBlock(SuccBB, BB, NewBB, ValueMapping);