/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A 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()
|
H A D | ASTContext.cpp | 2263 const auto *EIT = cast<ExtIntType>(T); in getTypeInfoImpl() 4427 ExtIntType::Profile(ID, IsUnsigned, NumBits); in getExtIntType() 4430 if (ExtIntType *EIT = ExtIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getExtIntType() 4433 auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits); in getExtIntType() 6305 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in getIntegerRank() 9942 bool LHSUnsigned = LHS->castAs<ExtIntType>()->isUnsigned(); in mergeTypes() 9943 bool RHSUnsigned = RHS->castAs<ExtIntType>()->isUnsigned(); in mergeTypes() 9944 unsigned LHSBits = LHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() 9945 unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits(); in mergeTypes() 10095 if(const auto *EIT = T->getAs<ExtIntType>()) in getIntWidth() [all …]
|
H A D | ASTStructuralEquivalence.cpp | 1208 const auto *Int1 = cast<ExtIntType>(T1); in IsStructurallyEquivalent() 1209 const auto *Int2 = cast<ExtIntType>(T2); in IsStructurallyEquivalent()
|
H A D | TypePrinter.cpp | 1197 void TypePrinter::printExtIntBefore(const ExtIntType *T, raw_ostream &OS) { in printExtIntBefore() 1204 void TypePrinter::printExtIntAfter(const ExtIntType *T, raw_ostream &OS) {} in printExtIntAfter()
|
H A D | MicrosoftMangle.cpp | 3335 void MicrosoftCXXNameMangler::mangleType(const ExtIntType *T, Qualifiers, in mangleType()
|
H A D | ItaniumMangle.cpp | 3947 void CXXNameMangler::mangleType(const ExtIntType *T) { in mangleType()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | TargetInfo.cpp | 107 if (const auto *EIT = Ty->getAs<ExtIntType>()) in isPromotableIntegerTypeForABI() 735 if (const auto *EIT = Ty->getAs<ExtIntType>()) in classifyArgumentType() 757 if (const auto *EIT = RetTy->getAs<ExtIntType>()) in classifyReturnType() 981 } else if (const auto *EIT = Ty->getAs<ExtIntType>()) { in classifyArgumentType() 1001 if (const auto *EIT = RetTy->getAs<ExtIntType>()) { in classifyReturnType() 1554 if (const auto *EIT = RetTy->getAs<ExtIntType>()) in classifyReturnType() 1890 if (const auto * EIT = Ty->getAs<ExtIntType>()) { in classifyArgumentType() 2972 if (const auto *EITy = Ty->getAs<ExtIntType>()) { in classify() 4996 if (const auto *EIT = Ty->getAs<ExtIntType>()) in isPromotableTypeForABI() 5215 if (const auto *EIT = Ty->getAs<ExtIntType>()) in classifyArgumentType() [all …]
|
H A D | CodeGenTBAA.cpp | 212 if (const auto *EIT = dyn_cast<ExtIntType>(Ty)) { in getTypeInfoHelper()
|
H A D | CGDebugInfo.h | 180 llvm::DIType *CreateType(const ExtIntType *Ty);
|
H A D | CodeGenTypes.cpp | 789 const auto &EIT = cast<ExtIntType>(Ty); in ConvertType()
|
H A D | CGDebugInfo.cpp | 918 llvm::DIType *CGDebugInfo::CreateType(const ExtIntType *Ty) { in CreateType() 3353 return CreateType(cast<ExtIntType>(Ty)); in CreateTypeNode()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 110 def ExtIntType : TypeNode<Type>;
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | TypeProperties.td | 885 let Class = ExtIntType in {
|
H A D | Type.h | 6309 class ExtIntType final : public Type, public llvm::FoldingSetNode { 6315 ExtIntType(bool isUnsigned, unsigned NumBits); 6894 return isa<ExtIntType>(CanonicalType);
|
H A D | RecursiveASTVisitor.h | 1077 DEF_TRAVERSE_TYPE(ExtIntType, {}) 1363 DEF_TRAVERSE_TYPELOC(ExtIntType, {})
|
H A D | TypeLoc.h | 2567 ExtIntType> {};
|
H A D | ASTContext.h | 243 mutable llvm::FoldingSet<ExtIntType> ExtIntTypes;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaTemplateDeduction.cpp | 2265 if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){ in DeduceTemplateArgumentsByTypeMatch()
|
H A D | SemaChecking.cpp | 5757 const auto *ExtIntValType = ValType->getAs<ExtIntType>(); in SemaBuiltinAtomicOverloaded() 10715 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in forValueOfCanonicalType() 10741 if (const auto *EIT = dyn_cast<ExtIntType>(T)) in forTargetOfCanonicalType()
|
H A D | SemaTemplate.cpp | 6154 bool UnnamedLocalNoLinkageFinder::VisitExtIntType(const ExtIntType *T) { in VisitExtIntType()
|
H A D | TreeTransform.h | 6387 const ExtIntType *EIT = TL.getTypePtr(); in TransformExtIntType()
|