Home | History | Annotate | Download | only in Scalar

Lines Matching refs:MSI

150     bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
754 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
756 if (!processLoopMemSet(MSI, BECount)) continue;
831 processLoopMemSet(MemSetInst *MSI, const SCEV *BECount) {
833 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) return false;
839 Value *Pointer = MSI->getDest();
849 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
859 if (!Stride || MSI->getLength() != Stride->getValue())
863 MSI->getAlignment(), MSI->getValue(),
864 MSI, Ev, BECount);