Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DDeadStoreElimination.cpp440 MemDepResult InstDep = MD->getDependency(Inst); in runOnBasicBlock() local
444 if (!InstDep.isDef() && !InstDep.isClobber()) in runOnBasicBlock()
450 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) { in runOnBasicBlock()
480 while (InstDep.isDef() || InstDep.isClobber()) { in runOnBasicBlock()
488 Instruction *DepWrite = InstDep.getInst(); in runOnBasicBlock()
529 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB); in runOnBasicBlock()
/external/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp899 MemDepResult InstDep = MD->getDependency(Inst); in eliminateDeadStores() local
903 if (!InstDep.isDef() && !InstDep.isClobber()) in eliminateDeadStores()
913 while (InstDep.isDef() || InstDep.isClobber()) { in eliminateDeadStores()
921 Instruction *DepWrite = InstDep.getInst(); in eliminateDeadStores()
946 InstDep = MD->getDependency(Inst); in eliminateDeadStores()
1010 InstDep = MD->getPointerDependencyFrom(Loc, false, in eliminateDeadStores()
DLoopDistribute.cpp648 for (auto &InstDep : MID) { in processLoop() local
649 Instruction *I = InstDep.Inst; in processLoop()
653 InstDep.NumUnsafeDependencesStartOrEnd > 0) in processLoop()
657 NumUnsafeDependencesActive += InstDep.NumUnsafeDependencesStartOrEnd; in processLoop()