Searched refs:IntWidth (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DMSP430.h31 IntWidth = 16;
H A DTCE.h53 IntWidth = 32;
H A DAVR.h32 IntWidth = 16;
H A DSystemZ.h40 IntWidth = IntAlign = 32;
H A DNVPTX.cpp110 IntWidth = HostTarget->getIntWidth();
H A DAArch64.cpp583 IntWidth = IntAlign = 32;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp41 IntWidth = IntAlign = 32;
352 IntWidth = IntAlign = 32;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h60 unsigned char IntWidth, IntAlign; member in struct:clang::TransferrableTargetInfo
396 unsigned getIntWidth() const { return IntWidth; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp3358 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); local
3359 return IntWidth == 32 || IntWidth == 64 ||
3360 ((IntWidth == 8 || IntWidth == 16) && ST->hasBWI());
3421 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); local
3422 return IntWidth == 32 || IntWidth == 64 ||
3423 ((IntWidth == 8 || IntWidth
3464 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp740 uint32_t IntWidth = DL.getTypeSizeInBits(CE->getType()); local
741 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp5790 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
5796 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
5808 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
5821 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
5832 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp17050 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
17051 llvm::APSInt EnumVal(IntWidth);
17522 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
17597 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
17599 BestWidth = IntWidth;
17613 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
17626 } else if (NumPositiveBits <= IntWidth) {
17628 BestWidth = IntWidth;
17673 NewWidth = IntWidth;
[all...]
H A DSemaExprCXX.cpp1686 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
1687 assert(IntWidth && "Builtin type of size 0?");
1688 llvm::APSInt Value(IntWidth);

Completed in 255 milliseconds