Home | History | Annotate | Download | only in IPO

Lines Matching refs:MSI

275       } else if (const MemSetInst *MSI = dyn_cast<MemSetInst>(I)) {
276 assert(MSI->getArgOperand(0) == V && "Memset only takes one pointer!");
277 if (MSI->isVolatile()) return true;
2503 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
2504 if (MSI->isVolatile()) return false;
2505 Constant *Ptr = getVal(MSI->getDest());
2506 Constant *Val = getVal(MSI->getValue());