Searched refs:ExtIntType (Results 1 – 21 of 21) sorted by relevance
/external/llvm-project/clang/lib/AST/ |
D | Type.cpp | 341 ExtIntType::ExtIntType(bool IsUnsigned, unsigned NumBits) in ExtIntType() function in ExtIntType 2016 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) in isSignedIntegerType() 2033 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) in isSignedIntegerOrEnumerationType() 2063 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) in isUnsignedIntegerType() 2080 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)) in isUnsignedIntegerOrEnumerationType()
|
D | ASTContext.cpp | 2220 const auto *EIT = cast<ExtIntType>(T); in getTypeInfoImpl() 4357 ExtIntType::Profile(ID, IsUnsigned, NumBits); in getExtIntType() 4360 if (ExtIntType *EIT = ExtIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getExtIntType() 4363 auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits); in getExtIntType() 6236 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in getIntegerRank() 9828 bool LHSUnsigned = LHS->castAs<ExtIntType>()->isUnsigned(); in mergeTypes() 9829 bool RHSUnsigned = RHS->castAs<ExtIntType>()->isUnsigned(); in mergeTypes() 9830 unsigned LHSBits = LHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() 9831 unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() 9981 if(const auto *EIT = T->getAs<ExtIntType>()) in getIntWidth()
|
D | ASTStructuralEquivalence.cpp | 1190 const auto *Int1 = cast<ExtIntType>(T1); in IsStructurallyEquivalent() 1191 const auto *Int2 = cast<ExtIntType>(T2); in IsStructurallyEquivalent()
|
D | TypePrinter.cpp | 1192 void TypePrinter::printExtIntBefore(const ExtIntType *T, raw_ostream &OS) { in printExtIntBefore() 1199 void TypePrinter::printExtIntAfter(const ExtIntType *T, raw_ostream &OS) {} in printExtIntAfter()
|
D | MicrosoftMangle.cpp | 3223 void MicrosoftCXXNameMangler::mangleType(const ExtIntType *T, Qualifiers, in mangleType()
|
D | ItaniumMangle.cpp | 3731 void CXXNameMangler::mangleType(const ExtIntType *T) { in mangleType()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | TargetInfo.cpp | 105 if (const auto *EIT = Ty->getAs<ExtIntType>()) in isPromotableIntegerTypeForABI() 733 if (const auto *EIT = Ty->getAs<ExtIntType>()) in classifyArgumentType() 755 if (const auto *EIT = RetTy->getAs<ExtIntType>()) in classifyReturnType() 979 } else if (const auto *EIT = Ty->getAs<ExtIntType>()) { in classifyArgumentType() 999 if (const auto *EIT = RetTy->getAs<ExtIntType>()) { in classifyReturnType() 1556 if (const auto *EIT = RetTy->getAs<ExtIntType>()) in classifyReturnType() 1884 if (const auto * EIT = Ty->getAs<ExtIntType>()) { in classifyArgumentType() 2957 if (const auto *EITy = Ty->getAs<ExtIntType>()) { in classify() 5001 if (const auto *EIT = Ty->getAs<ExtIntType>()) in isPromotableTypeForABI() 5216 if (const auto *EIT = Ty->getAs<ExtIntType>()) in classifyArgumentType() [all …]
|
D | CodeGenTBAA.cpp | 212 if (const auto *EIT = dyn_cast<ExtIntType>(Ty)) { in getTypeInfoHelper()
|
D | CGDebugInfo.h | 171 llvm::DIType *CreateType(const ExtIntType *Ty);
|
D | CodeGenTypes.cpp | 780 const auto &EIT = cast<ExtIntType>(Ty); in ConvertType()
|
D | CGDebugInfo.cpp | 864 llvm::DIType *CGDebugInfo::CreateType(const ExtIntType *Ty) { in CreateType() 3282 return CreateType(cast<ExtIntType>(Ty)); in CreateTypeNode()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | TypeNodes.td | 110 def ExtIntType : TypeNode<Type>;
|
/external/llvm-project/clang/include/clang/AST/ |
D | TypeProperties.td | 877 let Class = ExtIntType in {
|
D | RecursiveASTVisitor.h | 1064 DEF_TRAVERSE_TYPE(ExtIntType, {}) 1350 DEF_TRAVERSE_TYPELOC(ExtIntType, {})
|
D | Type.h | 6277 class ExtIntType final : public Type, public llvm::FoldingSetNode { 6283 ExtIntType(bool isUnsigned, unsigned NumBits); 6862 return isa<ExtIntType>(CanonicalType);
|
D | TypeLoc.h | 2518 ExtIntType> {};
|
D | ASTContext.h | 240 mutable llvm::FoldingSet<ExtIntType> ExtIntTypes;
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 2280 if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){ in DeduceTemplateArgumentsByTypeMatch()
|
D | SemaChecking.cpp | 5554 const auto *ExtIntValType = ValType->getAs<ExtIntType>(); in SemaBuiltinAtomicOverloaded() 10458 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in forValueOfCanonicalType() 10484 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in forTargetOfCanonicalType()
|
D | SemaTemplate.cpp | 6164 bool UnnamedLocalNoLinkageFinder::VisitExtIntType(const ExtIntType *T) { in VisitExtIntType()
|
D | TreeTransform.h | 6301 const ExtIntType *EIT = TL.getTypePtr(); in TransformExtIntType()
|