Home
last modified time | relevance | path

Searched refs:LocalDeps (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp116 SmallPtrSetImpl<GlobalValue *> &LocalDeps = ConstantDependenciesCache[CE]; in ComputeDependencies() local
118 ComputeDependencies(CEUser, LocalDeps); in ComputeDependencies()
119 Deps.insert(LocalDeps.begin(), LocalDeps.end()); in ComputeDependencies()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp650 MemDepResult &LocalCache = LocalDeps[QueryInst]; in getDependency()
1527 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst); in removeInstruction()
1528 if (LocalDepEntry != LocalDeps.end()) { in removeInstruction()
1534 LocalDeps.erase(LocalDepEntry); in removeInstruction()
1581 LocalDeps[InstDependingOnRemInst] = NewDirtyVal; in removeInstruction()
1689 for (const auto &DepKV : LocalDeps) { in verifyRemoved()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h267 LocalDepMapType LocalDeps; variable