Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/Transforms/Utils/
DVNCoercion.cpp232 StoreInst *DepSI, const DataLayout &DL) { in analyzeLoadFromClobberingStore() argument
233 auto *StoredVal = DepSI->getValueOperand(); in analyzeLoadFromClobberingStore()
242 Value *StorePtr = DepSI->getPointerOperand(); in analyzeLoadFromClobberingStore()
244 DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()).getFixedSize(); in analyzeLoadFromClobberingStore()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DVNCoercion.cpp219 StoreInst *DepSI, const DataLayout &DL) { in analyzeLoadFromClobberingStore() argument
220 auto *StoredVal = DepSI->getValueOperand(); in analyzeLoadFromClobberingStore()
236 Value *StorePtr = DepSI->getPointerOperand(); in analyzeLoadFromClobberingStore()
238 DL.getTypeSizeInBits(DepSI->getValueOperand()->getType()); in analyzeLoadFromClobberingStore()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DVNCoercion.h55 StoreInst *DepSI, const DataLayout &DL);
/external/llvm-project/llvm/include/llvm/Transforms/Utils/
DVNCoercion.h55 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-10.0/llvm/lib/Transforms/Scalar/
DGVN.cpp873 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() local
875 if (Address && LI->isAtomic() <= DepSI->isAtomic()) { in AnalyzeLoadAvailability()
877 analyzeLoadFromClobberingStore(LI->getType(), Address, DepSI, DL); in AnalyzeLoadAvailability()
879 Res = AvailableValue::get(DepSI->getValueOperand(), Offset); in AnalyzeLoadAvailability()
DNewGVN.cpp1420 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) { in performSymbolicLoadCoercion() local
1424 if (LI->isAtomic() > DepSI->isAtomic() || in performSymbolicLoadCoercion()
1425 LoadType == DepSI->getValueOperand()->getType()) in performSymbolicLoadCoercion()
1427 int Offset = analyzeLoadFromClobberingStore(LoadType, LoadPtr, DepSI, DL); in performSymbolicLoadCoercion()
1430 lookupOperandLeader(DepSI->getValueOperand()))) { in performSymbolicLoadCoercion()
1431 LLVM_DEBUG(dbgs() << "Coercing load from store " << *DepSI in performSymbolicLoadCoercion()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DNewGVN.cpp1421 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) { in performSymbolicLoadCoercion() local
1425 if (LI->isAtomic() > DepSI->isAtomic() || in performSymbolicLoadCoercion()
1426 LoadType == DepSI->getValueOperand()->getType()) in performSymbolicLoadCoercion()
1428 int Offset = analyzeLoadFromClobberingStore(LoadType, LoadPtr, DepSI, DL); in performSymbolicLoadCoercion()
1431 lookupOperandLeader(DepSI->getValueOperand()))) { in performSymbolicLoadCoercion()
1432 LLVM_DEBUG(dbgs() << "Coercing load from store " << *DepSI in performSymbolicLoadCoercion()
DGVN.cpp973 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() local
975 if (Address && LI->isAtomic() <= DepSI->isAtomic()) { in AnalyzeLoadAvailability()
977 analyzeLoadFromClobberingStore(LI->getType(), Address, DepSI, DL); in AnalyzeLoadAvailability()
979 Res = AvailableValue::get(DepSI->getValueOperand(), Offset); in AnalyzeLoadAvailability()