Home
last modified time | relevance | path

Searched refs:PendUpdates (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDomTreeUpdater.cpp71 PendUpdates.begin() + std::max(PendDTUpdateIndex, PendPDTUpdateIndex); in applyLazyUpdate()
72 const auto E = PendUpdates.end(); in applyLazyUpdate()
83 PendUpdates.erase(I); in applyLazyUpdate()
88 PendUpdates.push_back(Update); // Save the valid update. in applyLazyUpdate()
99 const auto I = PendUpdates.begin() + PendDTUpdateIndex; in applyDomTreeUpdates()
100 const auto E = PendUpdates.end(); in applyDomTreeUpdates()
103 PendDTUpdateIndex = PendUpdates.size(); in applyDomTreeUpdates()
120 const auto I = PendUpdates.begin() + PendPDTUpdateIndex; in applyPostDomTreeUpdates()
121 const auto E = PendUpdates.end(); in applyPostDomTreeUpdates()
125 PendPDTUpdateIndex = PendUpdates.size(); in applyPostDomTreeUpdates()
[all …]
DDominators.cpp439 bool DeferredDominance::pending() { return !PendUpdates.empty(); } in pending()
446 if (!PendUpdates.empty()) { in flush()
447 DT.applyUpdates(PendUpdates); in flush()
448 PendUpdates.clear(); in flush()
461 if (flushDelBB() || !PendUpdates.empty()) { in recalculate()
463 PendUpdates.clear(); in recalculate()
473 for (auto U : PendUpdates) { in dump()
539 for (auto I = PendUpdates.begin(), E = PendUpdates.end(); I != E; ++I) { in applyUpdate()
545 PendUpdates.erase(I); in applyUpdate()
549 PendUpdates.push_back(Update); // Save the valid update. in applyUpdate()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDomTreeUpdater.h205 SmallVector<DominatorTree::UpdateType, 16> PendUpdates; variable
DDominators.h349 SmallVector<DominatorTree::UpdateType, 16> PendUpdates;