HomeSort by relevance Sort by last modified time
    Searched refs:PredCache (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/IR/
PredIteratorCache.h 39 /// for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI)
48 SmallVector<BasicBlock *, 32> PredCache(pred_begin(BB), pred_end(BB));
49 PredCache.push_back(nullptr); // null terminator.
51 BlockToPredCountMap[BB] = PredCache.size() - 1;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
54 std::copy(PredCache.begin(), PredCache.end(), Entry);
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 66 PredIteratorCache &PredCache, LoopInfo *LI) {
120 PHINode *PN = PHINode::Create(Inst.getType(), PredCache.size(ExitBB),
124 for (BasicBlock *Pred : PredCache.get(ExitBB)) {
194 processInstruction(*OtherLoop, *I, DT, EBs, PredCache, LI);
230 PredIteratorCache PredCache;
249 Changed |= processInstruction(L, I, DT, ExitBlocks, PredCache, LI);
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 89 PredCache.clear();
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 333 PredIteratorCache PredCache;
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 745 PredIteratorCache &PredCache;
759 PHINode::Create(I->getType(), PredCache.size(BB),
761 for (BasicBlock *Pred : PredCache.get(BB))
777 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast),
    [all...]

Completed in 69 milliseconds