Lines Matching defs:DestTy
592 void promoteTo(Instruction *In, IntegerType *DestTy, BasicBlock *LoopB);
975 IntegerType *DestTy) {
977 if (!T || T->getBitWidth() > DestTy->getBitWidth())
979 if (T->getBitWidth() == DestTy->getBitWidth())
1013 IntegerType *DestTy, BasicBlock *LoopB) {
1019 In->mutateType(DestTy);
1020 unsigned DestBW = DestTy->getBitWidth();
1036 InV = IRBuilder<>(InB->getTerminator()).CreateZExt(InV, DestTy);
1049 Value *Mask = ConstantInt::get(DestTy, (1u << TruncTy->getBitWidth()) - 1);
1060 In->setOperand(i, ConstantInt::get(DestTy, CI->getZExtValue()));
1073 IntegerType *DestTy = getPmpyType();
1076 unsigned DestBW = DestTy->getBitWidth();
1088 if (!In.isTerminator() && !isPromotableTo(&In, DestTy))
1097 promoteTo(In, DestTy, LoopB);
1109 assert(Ty0 == DestTy);