Searched defs:IntWidth (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp672 uint32_t IntWidth = TD->getTypeSizeInBits(CE->getType()); local
673 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
/external/clang/include/clang/Basic/
H A DTargetInfo.h60 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo
259 unsigned getIntWidth() const { return IntWidth; }
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3018 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
3024 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
3036 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
3049 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
3060 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1024 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1025 assert(IntWidth && "Builtin type of size 0?");
1026 llvm::APSInt Value(IntWidth);
1201 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1202 assert(IntWidth && "Builtin type of size 0?");
1203 llvm::APSInt Value(IntWidth);
H A DSemaDecl.cpp11935 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
11936 llvm::APSInt EnumVal(IntWidth);
12371 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
12446 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
12448 BestWidth = IntWidth;
12462 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
12475 } else if (NumPositiveBits <= IntWidth) {
12477 BestWidth = IntWidth;
12522 NewWidth = IntWidth;
[all...]

Completed in 189 milliseconds