Lines Matching defs:Store
245 StoreInst *Store) {
247 Args.push_back(Store->getValueOperand());
248 fillCommonArgs(M->getContext(), Args, GEP, Store);
251 {Store->getValueOperand()->getType()}, Args);
253 if (Store->getValueOperand()->getType()->isPointerTy())
256 Store->getDebugLoc());
257 if (Store->isUnordered()) {
264 Call->setAAMetadata(Store->getAAMetadata());
317 auto *Store = new StoreInst(Call->getOperand(0), GEP,
320 reconstructCommon(Call, GEP, Store, 1);
321 return std::pair{GEP, Store};
428 if (auto *Store = dyn_cast<StoreInst>(LoadOrStoreTemplate)) {
429 Instruction *Replacement = makeGEPAndStore(M, GEPChain, Store);
536 // `delete Load` / `delete Store` wants a concrete type,
538 auto [GEP, Store] =
541 TryToReplace(Store);
543 delete Store;