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

/external/clang/include/clang/Basic/
H A DTargetInfo.h60 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo
275 unsigned getIntWidth() const { return IntWidth; }
/external/clang/lib/Basic/
H A DTargetInfo.cpp35 IntWidth = IntAlign = 32;
259 IntWidth = IntAlign = 32;
H A DTargets.cpp5033 IntWidth = IntAlign = 32;
5137 IntWidth = 16; IntAlign = 16;
5223 IntWidth = 32;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3360 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
3366 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
3378 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
3391 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
3402 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp721 uint32_t IntWidth = DL->getTypeSizeInBits(CE->getType()); local
722 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
/external/clang/lib/Sema/
H A DSemaDecl.cpp12685 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
12686 llvm::APSInt EnumVal(IntWidth);
13119 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
13194 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
13196 BestWidth = IntWidth;
13210 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
13223 } else if (NumPositiveBits <= IntWidth) {
13225 BestWidth = IntWidth;
13270 NewWidth = IntWidth;
[all...]
H A DSemaExprCXX.cpp1090 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1091 assert(IntWidth && "Builtin type of size 0?");
1092 llvm::APSInt Value(IntWidth);

Completed in 2515 milliseconds