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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineDominators.cpp 59 NewBBs.clear();
121 if (NewBBs.count(PredBB)) {
148 NewBBs.clear();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineDominators.h 63 /// Invariant: NewBBs == all the basic blocks contained in the NewBB
65 /// I.e., forall elt in CriticalEdgesToSplit, it exists BB in NewBBs
67 mutable SmallSet<MachineBasicBlock *, 32> NewBBs;
235 bool Inserted = NewBBs.insert(NewBB).second;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
BlockExtractor.cpp 174 SmallVector<BasicBlock *, 2> NewBBs;
175 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", NewBBs);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 1056 const char *Suffix2, SmallVectorImpl<BasicBlock *> &NewBBs,
1072 SmallVector<BasicBlock*, 2> NewBBs;
1075 SplitLandingPadPredecessorsImpl(BB, Preds, Suffix, NewName.c_str(), NewBBs,
1077 return NewBBs[0];
1168 const char *Suffix2, SmallVectorImpl<BasicBlock *> &NewBBs,
1178 NewBBs.push_back(NewBB1);
1219 NewBBs.push_back(NewBB2);
1271 SmallVectorImpl<BasicBlock *> &NewBBs,
1276 OrigBB, Preds, Suffix1, Suffix2, NewBBs,
1282 SmallVectorImpl<BasicBlock *> &NewBBs,
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 372 /// 'Suffix2', and are returned in the NewBBs vector.
383 SmallVectorImpl<BasicBlock *> &NewBBs,
393 /// 'Suffix2', and are returned in the NewBBs vector.
401 const char *Suffix2, SmallVectorImpl<BasicBlock *> &NewBBs,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 2450 SmallVector<BasicBlock *, 2> NewBBs;
2464 SplitLandingPadPredecessors(BB, Preds, Suffix, NewName.c_str(), NewBBs);
2466 NewBBs.push_back(SplitBlockPredecessors(BB, Preds, Suffix));
2470 Updates.reserve((2 * Preds.size()) + NewBBs.size());
2471 for (auto NewBB : NewBBs) {
2485 return NewBBs[0];
LoopStrengthReduce.cpp 5405 SmallVector<BasicBlock*, 2> NewBBs;
5406 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
5407 NewBB = NewBBs[0];

Completed in 27 milliseconds