Lines Matching defs:MV
170 MutableValue *MV = this;
172 !CastInst::isBitOrNoopPointerCastable(Ty, MV->getType(), DL)) {
173 if (isa<Constant *>(MV->Val) && !MV->makeMutable())
176 MutableAggregate *Agg = cast<MutableAggregate *>(MV->Val);
183 MV = &Agg->Elements[Index->getZExtValue()];
186 Type *MVType = MV->getType();
187 MV->clear();
189 MV->Val = ConstantExpr::getIntToPtr(V, MVType);
191 MV->Val = ConstantExpr::getPtrToInt(V, MVType);
193 MV->Val = ConstantExpr::getBitCast(V, MVType);
195 MV->Val = V;
201 for (const MutableValue &MV : Elements)
202 Consts.push_back(MV.toConstant());