Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp377 if (StoreInst *NextStore = dyn_cast<StoreInst>(BI)) { in collectInitializers() local
378 if (!NextStore->isSimple()) in collectInitializers()
383 isPointerOffset(StartPtr, NextStore->getPointerOperand(), *DL); in collectInitializers()
387 if (!IB.addStore(*Offset, NextStore, DL)) in collectInitializers()
389 LastInst = NextStore; in collectInitializers()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp442 if (auto *NextStore = dyn_cast<StoreInst>(BI)) { in tryMergingIntoMemset() local
444 if (!NextStore->isSimple()) break; in tryMergingIntoMemset()
446 Value *StoredVal = NextStore->getValueOperand(); in tryMergingIntoMemset()
466 isPointerOffset(StartPtr, NextStore->getPointerOperand(), DL); in tryMergingIntoMemset()
470 Ranges.addStore(*Offset, NextStore); in tryMergingIntoMemset()