Home
last modified time | relevance | path

Searched refs:DepSI (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DVNCoercion.cpp209 StoreInst *DepSI, const DataLayout &DL) { in analyzeLoadFromClobberingStore() argument
211 if (DepSI->getValueOperand()->getType()->isStructTy() || in analyzeLoadFromClobberingStore()
212 DepSI->getValueOperand()->getType()->isArrayTy()) in analyzeLoadFromClobberingStore()
215 Value *StorePtr = DepSI->getPointerOperand(); in analyzeLoadFromClobberingStore()
217 DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in analyzeLoadFromClobberingStore()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DGVN.cpp850 StoreInst *DepSI, in AnalyzeLoadFromClobberingStore() argument
853 if (DepSI->getValueOperand()->getType()->isStructTy() || in AnalyzeLoadFromClobberingStore()
854 DepSI->getValueOperand()->getType()->isArrayTy()) in AnalyzeLoadFromClobberingStore()
857 Value *StorePtr = DepSI->getPointerOperand(); in AnalyzeLoadFromClobberingStore()
858 uint64_t StoreSize =TD.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in AnalyzeLoadFromClobberingStore()
1318 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInfo.getInst())) { in processNonLocalLoad() local
1321 DepSI, *TD); in processNonLocalLoad()
1324 DepSI->getValueOperand(), in processNonLocalLoad()
1704 if (StoreInst *DepSI = dyn_cast<StoreInst>(Dep.getInst())) { in processLoad() local
1707 DepSI, *TD); in processLoad()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DVNCoercion.h56 StoreInst *DepSI, const DataLayout &DL);
/external/llvm/lib/Transforms/Scalar/
DGVN.cpp886 StoreInst *DepSI) { in AnalyzeLoadFromClobberingStore() argument
888 if (DepSI->getValueOperand()->getType()->isStructTy() || in AnalyzeLoadFromClobberingStore()
889 DepSI->getValueOperand()->getType()->isArrayTy()) in AnalyzeLoadFromClobberingStore()
892 const DataLayout &DL = DepSI->getModule()->getDataLayout(); in AnalyzeLoadFromClobberingStore()
893 Value *StorePtr = DepSI->getPointerOperand(); in AnalyzeLoadFromClobberingStore()
894 uint64_t StoreSize =DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in AnalyzeLoadFromClobberingStore()
1234 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInfo.getInst())) { in AnalyzeLoadAvailability() local
1236 if (Address && LI->isAtomic() <= DepSI->isAtomic()) { in AnalyzeLoadAvailability()
1238 AnalyzeLoadFromClobberingStore(LI->getType(), Address, DepSI); in AnalyzeLoadAvailability()
1240 Res = AvailableValue::get(DepSI->getValueOperand(), Offset); in AnalyzeLoadAvailability()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DGVN.cpp885 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInfo.getInst())) { in AnalyzeLoadAvailability() local
887 if (Address && LI->isAtomic() <= DepSI->isAtomic()) { in AnalyzeLoadAvailability()
889 analyzeLoadFromClobberingStore(LI->getType(), Address, DepSI, DL); in AnalyzeLoadAvailability()
891 Res = AvailableValue::get(DepSI->getValueOperand(), Offset); in AnalyzeLoadAvailability()
DNewGVN.cpp1415 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) { in performSymbolicLoadCoercion() local
1419 if (LI->isAtomic() > DepSI->isAtomic() || in performSymbolicLoadCoercion()
1420 LoadType == DepSI->getValueOperand()->getType()) in performSymbolicLoadCoercion()
1422 int Offset = analyzeLoadFromClobberingStore(LoadType, LoadPtr, DepSI, DL); in performSymbolicLoadCoercion()
1425 lookupOperandLeader(DepSI->getValueOperand()))) { in performSymbolicLoadCoercion()
1426 LLVM_DEBUG(dbgs() << "Coercing load from store " << *DepSI in performSymbolicLoadCoercion()