Home
last modified time | relevance | path

Searched refs:StoreEv (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp506 const SCEVAddRecExpr *StoreEv = in isLegalStore() local
508 if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine()) in isLegalStore()
512 if (!isa<SCEVConstant>(StoreEv->getOperand(1))) in isLegalStore()
547 APInt Stride = getStoreStride(StoreEv); in isLegalStore()
571 if (StoreEv->getOperand(1) != LoadEv->getOperand(1)) in isLegalStore()
776 APInt Stride = getStoreStride(StoreEv); in processLoopStores()
845 if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine()) in processLoopMemCpy()
859 dyn_cast<SCEVConstant>(StoreEv->getOperand(1)); in processLoopMemCpy()
1323 Instruction *TheLoad, const SCEVAddRecExpr *StoreEv, in processLoopStoreOfLoopLoad() argument
1342 const SCEV *StrStart = StoreEv->getStart(); in processLoopStoreOfLoopLoad()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp131 int getSCEVStride(const SCEVAddRecExpr *StoreEv);
1944 auto *StoreEv = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr)); in isLegalStore() local
1945 if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine()) in isLegalStore()
1950 int Stride = getSCEVStride(StoreEv); in isLegalStore()
1971 if (StoreEv->getOperand(1) != LoadEv->getOperand(1)) in isLegalStore()
2029 auto *StoreEv = cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr)); in processCopyingStore() local
2030 unsigned Stride = getSCEVStride(StoreEv); in processCopyingStore()
2057 Value *StoreBasePtr = Expander.expandCodeFor(StoreEv->getStart(), in processCopyingStore()
2306 << " from store ptr=" << *StoreEv << " at: " << *SI in processCopyingStore()