Lines Matching defs:Store
86 StoreInst *Store;
88 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store)
89 : Load(Load), Store(Store) {}
97 Value *StorePtr = Store->getPointerOperand();
104 DL.getTypeSizeInBits(getLoadStoreType(Store)) &&
142 OS << *Cand.Store << " -->\n";
218 auto *Store = dyn_cast<StoreInst>(Source);
219 if (!Store)
227 getLoadStoreType(Store), getLoadStoreType(Load),
228 Store->getDataLayout()))
231 Candidates.emplace_front(Load, Store);
270 // If Store is nullptr it means that we have multiple stores forwarding to
291 if (Cand.Store->getParent() == OtherCand->Store->getParent() &&
295 if (getInstrIndex(OtherCand->Store) < getInstrIndex(Cand.Store))
366 return getInstrIndex(A.Store) <
367 getInstrIndex(B.Store);
369 ->Store;
461 Type *StoreType = Cand.Store->getValueOperand()->getType();
468 Value *StoreValue = Cand.Store->getValueOperand();
472 Cand.Store->getIterator());
531 if (!doesStoreDominatesAllLatches(Cand.Store->getParent(), L, DT))
548 isa<SCEVAddRecExpr>(PSE.getSCEV(Cand.Store->getPointerOperand())) &&
613 PSE.getSCEV(Cand.Store->getPointerOperand()));