Home
last modified time | relevance | path

Searched refs:PredCache (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPredIteratorCache.h46 SmallVector<BasicBlock*, 32> PredCache(pred_begin(BB), pred_end(BB)); in GetPreds()
47 PredCache.push_back(0); // null terminator. in GetPreds()
49 BlockToPredCountMap[BB] = PredCache.size()-1; in GetPreds()
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size()); in GetPreds()
52 std::copy(PredCache.begin(), PredCache.end(), Entry); in GetPreds()
/external/llvm/include/llvm/IR/
DPredIteratorCache.h48 SmallVector<BasicBlock *, 32> PredCache(pred_begin(BB), pred_end(BB)); in GetPreds()
49 PredCache.push_back(nullptr); // null terminator. in GetPreds()
51 BlockToPredCountMap[BB] = PredCache.size() - 1; in GetPreds()
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size()); in GetPreds()
54 std::copy(PredCache.begin(), PredCache.end(), Entry); in GetPreds()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPredIteratorCache.h48 SmallVector<BasicBlock *, 32> PredCache(pred_begin(BB), pred_end(BB)); in GetPreds()
49 PredCache.push_back(nullptr); // null terminator. in GetPreds()
51 BlockToPredCountMap[BB] = PredCache.size() - 1; in GetPreds()
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size()); in GetPreds()
54 std::copy(PredCache.begin(), PredCache.end(), Entry); in GetPreds()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSSAUpdaterBulk.cpp80 if (DT->isReachableFromEntry(BB) && PredCache.get(BB).size()) { in computeValueAt()
96 PredIteratorCache &PredCache) { in ComputeLiveInBlocks() argument
116 for (BasicBlock *P : PredCache.get(BB)) { in ComputeLiveInBlocks()
152 ComputeLiveInBlocks(UsingBlocks, DefBlocks, LiveInBlocks, PredCache); in RewriteAllUses()
171 for (BasicBlock *Pred : PredCache.get(PBB)) in RewriteAllUses()
DLCSSA.cpp79 PredIteratorCache PredCache; in formLCSSAForInstructions() local
146 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(ExitBB), in formLCSSAForInstructions()
151 for (BasicBlock *Pred : PredCache.get(ExitBB)) { in formLCSSAForInstructions()
/external/llvm/lib/Transforms/Utils/
DLCSSA.cpp65 PredIteratorCache &PredCache, LoopInfo *LI) { in processInstruction() argument
119 PHINode *PN = PHINode::Create(Inst.getType(), PredCache.size(ExitBB), in processInstruction()
123 for (BasicBlock *Pred : PredCache.get(ExitBB)) { in processInstruction()
193 processInstruction(*OtherLoop, *I, DT, EBs, PredCache, LI); in processInstruction()
227 PredIteratorCache PredCache; in formLCSSA() local
246 Changed |= processInstruction(L, I, DT, ExitBlocks, PredCache, LI); in formLCSSA()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLCSSA.cpp57 PredIteratorCache PredCache; member
161 PredCache.clear(); in runOnLoop()
226 PredCache.GetNumPreds(ExitBB), in ProcessInstruction()
231 for (BasicBlock **PI = PredCache.GetPreds(ExitBB); *PI; ++PI) { in ProcessInstruction()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryDependenceAnalysis.cpp65 : FunctionPass(ID), PredCache(0) { in INITIALIZE_AG_DEPENDENCY()
79 PredCache->clear(); in releaseMemory()
94 if (PredCache == 0) in runOnFunction()
95 PredCache.reset(new PredIteratorCache()); in runOnFunction()
626 for (BasicBlock **PI = PredCache->GetPreds(QueryBB); *PI; ++PI) in getNonLocalCallDependency()
712 for (BasicBlock **PI = PredCache->GetPreds(DirtyBB); *PI; ++PI) in getNonLocalCallDependency()
1023 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) { in getNonLocalPointerDepFromBB()
1065 for (BasicBlock **PI = PredCache->GetPreds(BB); *PI; ++PI) { in getNonLocalPointerDepFromBB()
1256 PredCache->clear(); in invalidateCachedPredecessors()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterBulk.h52 PredIteratorCache PredCache; variable
/external/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp782 for (BasicBlock *Pred : PredCache.get(QueryBB)) in getNonLocalCallDependency()
869 for (BasicBlock *Pred : PredCache.get(DirtyBB)) in getNonLocalCallDependency()
1220 for (BasicBlock *Pred : PredCache.get(BB)) { in getNonLocalPointerDepFromBB()
1271 for (BasicBlock *Pred : PredCache.get(BB)) { in getNonLocalPointerDepFromBB()
1454 PredCache.clear(); in invalidateCachedPredecessors()
/external/llvm/lib/Transforms/Scalar/
DLICM.cpp767 PredIteratorCache &PredCache; member in __anone22c8d430211::LoopPromoter
780 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(BB), in maybeInsertLCSSAPHI()
782 for (BasicBlock *Pred : PredCache.get(BB)) in maybeInsertLCSSAPHI()
797 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast), in LoopPromoter()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp818 for (BasicBlock *Pred : PredCache.get(QueryBB)) in getNonLocalCallDependency()
905 for (BasicBlock *Pred : PredCache.get(DirtyBB)) in getNonLocalCallDependency()
1266 for (BasicBlock *Pred : PredCache.get(BB)) { in getNonLocalPointerDepFromBB()
1317 for (BasicBlock *Pred : PredCache.get(BB)) { in getNonLocalPointerDepFromBB()
1522 PredCache.clear(); in invalidateCachedPredecessors()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLICM.cpp1109 PredIteratorCache &PredCache; member in __anon4cbf1a9b0711::LoopPromoter
1123 PHINode *PN = PHINode::Create(I->getType(), PredCache.size(BB), in maybeInsertLCSSAPHI()
1125 for (BasicBlock *Pred : PredCache.get(BB)) in maybeInsertLCSSAPHI()
1140 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast), in LoopPromoter()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DMemoryDependenceAnalysis.h327 OwningPtr<PredIteratorCache> PredCache; variable
/external/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h345 PredIteratorCache PredCache; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DMemoryDependenceAnalysis.h365 PredIteratorCache PredCache; variable