Searched defs:InstDep (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp440 MemDepResult InstDep = MD->getDependency(Inst); local
444 if (!InstDep.isDef() && !InstDep.isClobber())
450 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
480 while (InstDep.isDef() || InstDep.isClobber()) {
488 Instruction *DepWrite = InstDep.getInst();
529 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB);
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp899 MemDepResult InstDep = MD->getDependency(Inst); local
903 if (!InstDep.isDef() && !InstDep.isClobber())
913 while (InstDep.isDef() || InstDep.isClobber()) {
921 Instruction *DepWrite = InstDep.getInst();
946 InstDep = MD->getDependency(Inst);
1010 InstDep = MD->getPointerDependencyFrom(Loc, false,

Completed in 533 milliseconds