Home | History | Annotate | Download | only in IPO

Lines Matching refs:MSI

213     } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(U)) {
214 if (isa<Constant>(MSI->getValue())) {
216 MSI->eraseFromParent();
217 } else if (Instruction *I = dyn_cast<Instruction>(MSI->getValue())) {
219 Dead.push_back(std::make_pair(I, MSI));
2457 if (MemSetInst *MSI = dyn_cast<MemSetInst>(II)) {
2458 if (MSI->isVolatile()) {
2463 Constant *Ptr = getVal(MSI->getDest());
2464 Constant *Val = getVal(MSI->getValue());