HomeSort by: relevance | last modified time | path
    Searched refs:IBB (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 329 BasicBlock *IBB = nullptr;
335 if (IBB)
337 IBB = PredBB;
348 return IBB;
IntegerDivision.cpp 180 BasicBlock *IBB = Builder.GetInsertBlock();
181 Function *F = IBB->getParent();
LoopSimplify.cpp 416 BasicBlock *IBB = PN->getIncomingBlock(i);
418 if (IBB == Preheader) {
421 NewPN->addIncoming(IV, IBB);
Local.cpp 839 BasicBlock *IBB = PN->getIncomingBlock(PI);
840 if (BBPreds.count(IBB) &&
841 !CanMergeValues(BBPN->getIncomingValueForBlock(IBB),
847 << IBB->getName() << "\n");
857 BasicBlock *IBB = PN->getIncomingBlock(PI);
858 if (BBPreds.count(IBB) &&
863 << "predecessor " << IBB->getName() << "\n");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BranchFolding.cpp 1023 // Look at blocks (IBB) with multiple predecessors (PBB).
1026 // to IBB, and
1028 // not IBB; this may require adding back an unconditional branch to IBB
1030 // Bcc IBB
1034 // with a conceptual B to IBB after that, which never actually exists.
1046 MachineBasicBlock *IBB = &*I;
1051 // Bail if merging after placement and IBB is the loop header because
1052 // -- If merging predecessors that belong to the same loop as IBB, the
1057 // --If merging predecessors that do not belong to the same loop as IBB, th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 650 BasicBlock *IBB = MPhi->getIncomingBlock(I);
652 if (IBB != Preheader) {
653 NewMPhi->addIncoming(IV, IBB);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 4920 BasicBlock *IBB = PH->getIncomingBlock(i);
4922 if (!VisitedBBs.insert(IBB).second) {
4923 NewPhi->addIncoming(NewPhi->getIncomingValueForBlock(IBB), IBB);
4927 Builder.SetInsertPoint(IBB->getTerminator());
4930 NewPhi->addIncoming(Vec, IBB);

Completed in 66 milliseconds