Lines Matching refs:NewTy
366 FunctionType *NewTy = IA->getFunctionType(); in mapValue() local
368 NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy)); in mapValue()
370 if (NewTy != IA->getFunctionType()) in mapValue()
371 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(), in mapValue()
451 Type *NewTy = E->getType(); in mapValue() local
453 NewTy = TypeMapper->remapType(NewTy); in mapValue()
455 DSOLocalEquivalent::get(Func), NewTy); in mapValue()
486 Type *NewTy = C->getType(); in mapValue() local
488 NewTy = TypeMapper->remapType(NewTy); in mapValue()
492 if (OpNo == NumOperands && NewTy == C->getType()) in mapValue()
520 return getVM()[V] = CE->getWithOperands(Ops, NewTy, false, NewSrcTy); in mapValue()
522 return getVM()[V] = ConstantArray::get(cast<ArrayType>(NewTy), Ops); in mapValue()
524 return getVM()[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops); in mapValue()
529 return getVM()[V] = PoisonValue::get(NewTy); in mapValue()
531 return getVM()[V] = UndefValue::get(NewTy); in mapValue()
533 return getVM()[V] = ConstantAggregateZero::get(NewTy); in mapValue()
535 return getVM()[V] = Constant::getNullValue(NewTy); in mapValue()
537 return getVM()[V] = ConstantPointerNull::get(cast<PointerType>(NewTy)); in mapValue()