Searched refs:EIT (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 779 if (EIT->getNumBits() > in classifyArgumentType() 801 if (EIT->getNumBits() > in classifyReturnType() 1027 if (EIT->getNumBits() > 64) in classifyArgumentType() 1046 if (EIT->getNumBits() > 64) in classifyReturnType() 1608 if (EIT->getNumBits() > 64) in classifyReturnType() 5112 if (EIT->getNumBits() < 64) in isPromotableTypeForABI() 7189 return EIT->getNumBits() > in isUnsupportedType() 7480 if (EIT->getNumBits() < 64) in isPromotableIntegerTypeForABI() 9037 if (EIT->getNumBits() > 64) in classifyArgumentType() 9786 if (EIT->getNumBits() < 64) in classifyType() [all …]
|
| H A D | CodeGenTBAA.cpp | 212 if (const auto *EIT = dyn_cast<BitIntType>(Ty)) { in getTypeInfoHelper() local 217 Out << "_BitInt(" << EIT->getNumBits() << ')'; in getTypeInfoHelper()
|
| H A D | CodeGenTypes.cpp | 820 const auto &EIT = cast<BitIntType>(Ty); in ConvertType() local 821 ResultType = llvm::Type::getIntNTy(getLLVMContext(), EIT->getNumBits()); in ConvertType()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTContext.cpp | 2304 const auto *EIT = cast<BitIntType>(T); in getTypeInfoImpl() local 2307 getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))), in getTypeInfoImpl() 2309 Width = llvm::alignTo(EIT->getNumBits(), Align); in getTypeInfoImpl() 4537 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getBitIntType() local 4538 return QualType(EIT, 0); in getBitIntType() 6952 if (const auto *EIT = dyn_cast<BitIntType>(T)) in getIntegerRank() local 6953 return 0 + (EIT->getNumBits() << 3); in getIntegerRank() 10774 if (const auto *EIT = T->getAs<BitIntType>()) in getIntWidth() local 10775 return EIT->getNumBits(); in getIntWidth()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | TreeTransform.h | 6502 const BitIntType *EIT = TL.getTypePtr(); in TransformBitIntType() local 6506 Result = getDerived().RebuildBitIntType(EIT->isUnsigned(), in TransformBitIntType() 6507 EIT->getNumBits(), TL.getNameLoc()); in TransformBitIntType() 6520 const DependentBitIntType *EIT = TL.getTypePtr(); in TransformDependentBitIntType() local 6524 ExprResult BitsExpr = getDerived().TransformExpr(EIT->getNumBitsExpr()); in TransformDependentBitIntType() 6532 if (getDerived().AlwaysRebuild() || BitsExpr.get() != EIT->getNumBitsExpr()) { in TransformDependentBitIntType() 6534 EIT->isUnsigned(), BitsExpr.get(), TL.getNameLoc()); in TransformDependentBitIntType()
|
| H A D | SemaChecking.cpp | 12027 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forValueOfCanonicalType() local 12028 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forValueOfCanonicalType() 12053 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forTargetOfCanonicalType() local 12054 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forTargetOfCanonicalType()
|