Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp381 if (StoreInst *NextStore = dyn_cast<StoreInst>(BI)) { in collectInitializers() local
382 if (!NextStore->isSimple()) in collectInitializers()
387 isPointerOffset(StartPtr, NextStore->getPointerOperand(), *DL); in collectInitializers()
391 if (!IB.addStore(*Offset, NextStore, DL)) in collectInitializers()
393 LastInst = NextStore; in collectInitializers()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp431 if (auto *NextStore = dyn_cast<StoreInst>(BI)) { in tryMergingIntoMemset() local
433 if (!NextStore->isSimple()) break; in tryMergingIntoMemset()
435 Value *StoredVal = NextStore->getValueOperand(); in tryMergingIntoMemset()
455 isPointerOffset(StartPtr, NextStore->getPointerOperand(), DL); in tryMergingIntoMemset()
459 Ranges.addStore(*Offset, NextStore); in tryMergingIntoMemset()