Searched refs:DestIntTy (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1186 llvm::Type *DestIntTy = Ty; local
1187 if (isa<llvm::PointerType>(DestIntTy))
1188 DestIntTy = CGF.IntPtrTy;
1190 if (Val->getType() != DestIntTy) {
1196 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
1200 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
1202 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
1207 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp251 Type *DestIntTy = IntegerType::getIntNTy(Scalar->getContext(), DestWidth); local
252 return new BitCastInst(Builder.CreateTrunc(Scalar, DestIntTy), DestTy);

Completed in 125 milliseconds