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

/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h60 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo
272 unsigned getIntWidth() const { return IntWidth; }
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp35 IntWidth = IntAlign = 32;
243 IntWidth = IntAlign = 32;
H A DTargets.cpp4611 IntWidth = IntAlign = 32;
4716 IntWidth = 16; IntAlign = 16;
4802 IntWidth = 32;
/freebsd-10.1-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3087 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
3093 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
3105 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
3118 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
3129 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp1051 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1052 assert(IntWidth && "Builtin type of size 0?");
1053 llvm::APSInt Value(IntWidth);
1228 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1229 assert(IntWidth && "Builtin type of size 0?");
1230 llvm::APSInt Value(IntWidth);
H A DSemaDecl.cpp12249 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
12250 llvm::APSInt EnumVal(IntWidth);
12685 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
12760 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
12762 BestWidth = IntWidth;
12776 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
12789 } else if (NumPositiveBits <= IntWidth) {
12791 BestWidth = IntWidth;
12836 NewWidth = IntWidth;
[all...]
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp684 uint32_t IntWidth = TD->getTypeSizeInBits(CE->getType()); local
685 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);

Completed in 217 milliseconds