Searched refs:DestWidth (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp478 unsigned DestWidth = DestType->getPrimitiveSizeInBits(); local
481 if ((VecWidth % DestWidth != 0) || (ShiftAmount % DestWidth != 0))
486 unsigned NumVecElts = VecWidth / DestWidth;
492 unsigned Elt = ShiftAmount / DestWidth;
696 unsigned DestWidth = DestTy->getScalarSizeInBits(); local
719 // DestWidth * 2, which won't allow removing the truncate, but reducing the
723 if (DestWidth * 2 < SrcWidth) {
751 if (DestWidth == 1) {
814 unsigned MaxShiftAmt = SrcWidth - std::max(DestWidth, AWidt
[all...]
H A DInstCombineVectorOps.cpp228 unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); local
229 unsigned ShAmt = Chunk * DestWidth;
251 Type *DestIntTy = IntegerType::getIntNTy(Scalar->getContext(), DestWidth);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp3948 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth, argument
3957 DestWidth = 8;
3960 DestWidth = 16;
3963 DestWidth = 32;
3966 DestWidth = 64;
3969 DestWidth = 96;
3973 DestWidth = Str[1] == 'I' ? 0 : 128;
3977 DestWidth = 128;
3986 DestWidth = 0;
3993 DestWidth
4034 unsigned DestWidth = 0; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h655 QualType getIntTypeForBitwidth(unsigned DestWidth,
661 QualType getRealTypeForBitwidth(unsigned DestWidth, bool ExplicitIEEE) const;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10768 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth, argument
10770 TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
10772 if (!QualTy && DestWidth == 128)
10780 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth, argument
10783 getTargetInfo().getRealTypeByWidth(DestWidth, ExplicitIEEE);
H A DExprConstant.cpp2390 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2394 Result = APSInt(DestWidth, !DestSigned);
2415 unsigned DestWidth = Info.Ctx.getIntWidth(DestType);
2418 APSInt Result = Value.extOrTrunc(DestWidth);
14787 unsigned DestWidth = Ctx.getIntWidth(E->getType());
14789 APSInt IgnoredVal(DestWidth, !DestSigned);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23393 unsigned DestWidth = DestVT.getScalarSizeInBits();
23394 unsigned Scale = DestWidth / InSVT.getSizeInBits();
23408 unsigned SignExtShift = DestWidth - InSVT.getSizeInBits();
[all...]

Completed in 281 milliseconds