Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DDeadStoreElimination.cpp450 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) { in runOnBasicBlock() local
451 if (SI->getPointerOperand() == DepLoad->getPointerOperand() && in runOnBasicBlock()
452 SI->getOperand(0) == DepLoad && isRemovable(SI)) { in runOnBasicBlock()
454 << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n'); in runOnBasicBlock()
/external/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp833 if (LoadInst *DepLoad = dyn_cast<LoadInst>(SI->getValueOperand())) { in eliminateNoopStore() local
834 if (SI->getPointerOperand() == DepLoad->getPointerOperand() && in eliminateNoopStore()
835 isRemovable(SI) && memoryIsNotModifiedBetween(DepLoad, SI, AA)) { in eliminateNoopStore()
838 << *DepLoad << "\n STORE: " << *SI << '\n'); in eliminateNoopStore()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp1035 if (LoadInst *DepLoad = dyn_cast<LoadInst>(SI->getValueOperand())) { in eliminateNoopStore() local
1036 if (SI->getPointerOperand() == DepLoad->getPointerOperand() && in eliminateNoopStore()
1037 isRemovable(SI) && memoryIsNotModifiedBetween(DepLoad, SI, AA)) { in eliminateNoopStore()
1041 << *DepLoad << "\n STORE: " << *SI << '\n'); in eliminateNoopStore()