Searched refs:IntWidth (Results 1 - 8 of 8) sorted by relevance
/external/clang/include/clang/Basic/ |
H A D | TargetInfo.h | 64 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo 316 unsigned getIntWidth() const { return IntWidth; }
|
/external/clang/lib/Basic/ |
H A D | TargetInfo.cpp | 36 IntWidth = IntAlign = 32; 294 IntWidth = IntAlign = 32;
|
H A D | Targets.cpp | 1728 IntWidth = HostTarget->getIntWidth(); 6730 IntWidth = IntAlign = 32; 6904 IntWidth = 16; 6991 IntWidth = 32;
|
/external/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 738 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 D | InstCombineCompares.cpp | 2647 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 D | InstCombineCompares.cpp | 4404 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 D | SemaDecl.cpp | 14310 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 D | SemaExprCXX.cpp | 1437 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local 1438 assert(IntWidth && "Builtin type of size 0?"); 1439 llvm::APSInt Value(IntWidth);
|
Completed in 296 milliseconds