Searched refs:EIT (Results 1 – 6 of 6) sorted by relevance
| /openbsd/src/gnu/llvm/clang/lib/CodeGen/ |
| D | TargetInfo.cpp | 112 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local 113 if (EIT->getNumBits() < getContext().getTypeSize(getContext().IntTy)) in isPromotableIntegerTypeForABI() 791 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 792 if (EIT->getNumBits() > in classifyArgumentType() 813 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 814 if (EIT->getNumBits() > in classifyReturnType() 1031 } else if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 1034 if (EIT->getNumBits() > 64) in classifyArgumentType() 1052 if (const auto *EIT = RetTy->getAs<BitIntType>()) { in classifyReturnType() local 1053 if (EIT->getNumBits() > 64) in classifyReturnType() [all …]
|
| D | CodeGenTBAA.cpp | 212 if (const auto *EIT = dyn_cast<BitIntType>(Ty)) { in getTypeInfoHelper() local 217 Out << "_BitInt(" << EIT->getNumBits() << ')'; in getTypeInfoHelper()
|
| D | CodeGenTypes.cpp | 820 const auto &EIT = cast<BitIntType>(Ty); in ConvertType() local 821 ResultType = llvm::Type::getIntNTy(getLLVMContext(), EIT->getNumBits()); in ConvertType()
|
| /openbsd/src/gnu/llvm/clang/lib/AST/ |
| D | ASTContext.cpp | 2315 const auto *EIT = cast<BitIntType>(T); in getTypeInfoImpl() local 2318 getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))), in getTypeInfoImpl() 2320 Width = llvm::alignTo(EIT->getNumBits(), Align); in getTypeInfoImpl() 4575 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getBitIntType() local 4576 return QualType(EIT, 0); in getBitIntType() 7043 if (const auto *EIT = dyn_cast<BitIntType>(T)) in getIntegerRank() local 7044 return 0 + (EIT->getNumBits() << 3); in getIntegerRank() 10906 if (const auto *EIT = T->getAs<BitIntType>()) in getIntWidth() local 10907 return EIT->getNumBits(); in getIntWidth()
|
| /openbsd/src/gnu/llvm/clang/lib/Sema/ |
| D | TreeTransform.h | 6617 const BitIntType *EIT = TL.getTypePtr(); in TransformBitIntType() local 6621 Result = getDerived().RebuildBitIntType(EIT->isUnsigned(), in TransformBitIntType() 6622 EIT->getNumBits(), TL.getNameLoc()); in TransformBitIntType() 6635 const DependentBitIntType *EIT = TL.getTypePtr(); in TransformDependentBitIntType() local 6639 ExprResult BitsExpr = getDerived().TransformExpr(EIT->getNumBitsExpr()); in TransformDependentBitIntType() 6647 if (getDerived().AlwaysRebuild() || BitsExpr.get() != EIT->getNumBitsExpr()) { in TransformDependentBitIntType() 6649 EIT->isUnsigned(), BitsExpr.get(), TL.getNameLoc()); in TransformDependentBitIntType()
|
| D | SemaChecking.cpp | 12350 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forValueOfCanonicalType() local 12351 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forValueOfCanonicalType() 12376 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forTargetOfCanonicalType() local 12377 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forTargetOfCanonicalType()
|