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

/external/clang/include/clang/Basic/
H A DTargetInfo.h64 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo
316 unsigned getIntWidth() const { return IntWidth; }
/external/clang/lib/Basic/
H A DTargetInfo.cpp36 IntWidth = IntAlign = 32;
294 IntWidth = IntAlign = 32;
H A DTargets.cpp1728 IntWidth = HostTarget->getIntWidth();
6730 IntWidth = IntAlign = 32;
6904 IntWidth = 16;
6991 IntWidth = 32;
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp738 uint32_t IntWidth = DL.getTypeSizeInBits(CE->getType()); local
739 GV.IntVal = GV.IntVal.zextOrTrunc(IntWidth);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2647 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
2653 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
2665 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
2678 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp4404 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
4410 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
4422 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
4435 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
4446 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/external/clang/lib/Sema/
H A DSemaDecl.cpp14310 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
14311 llvm::APSInt EnumVal(IntWidth);
14801 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
14874 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
14876 BestWidth = IntWidth;
14890 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
14903 } else if (NumPositiveBits <= IntWidth) {
14905 BestWidth = IntWidth;
14950 NewWidth = IntWidth;
[all...]
H A DSemaExprCXX.cpp1437 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
1438 assert(IntWidth && "Builtin type of size 0?");
1439 llvm::APSInt Value(IntWidth);

Completed in 296 milliseconds