Lines Matching +full:32 +full:mv
171 MutableValue *MV = this; in write() local
173 !CastInst::isBitOrNoopPointerCastable(Ty, MV->getType(), DL)) { in write()
174 if (isa<Constant *>(MV->Val) && !MV->makeMutable()) in write()
177 MutableAggregate *Agg = cast<MutableAggregate *>(MV->Val); in write()
184 MV = &Agg->Elements[Index->getZExtValue()]; in write()
187 Type *MVType = MV->getType(); in write()
188 MV->clear(); in write()
190 MV->Val = ConstantExpr::getIntToPtr(V, MVType); in write()
192 MV->Val = ConstantExpr::getPtrToInt(V, MVType); in write()
194 MV->Val = ConstantExpr::getBitCast(V, MVType); in write()
196 MV->Val = V; in write()
201 SmallVector<Constant *, 32> Consts; in toConstant()
202 for (const MutableValue &MV : Elements) in toConstant() local
203 Consts.push_back(MV.toConstant()); in toConstant()
647 SmallPtrSet<BasicBlock*, 32> ExecutedBlocks; in EvaluateFunction()