Home
last modified time | relevance | path

Searched refs:ExtIntType (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp341 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 DASTContext.cpp2263 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 DASTStructuralEquivalence.cpp1208 const auto *Int1 = cast<ExtIntType>(T1); in IsStructurallyEquivalent()
1209 const auto *Int2 = cast<ExtIntType>(T2); in IsStructurallyEquivalent()
H A DTypePrinter.cpp1197 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 DMicrosoftMangle.cpp3335 void MicrosoftCXXNameMangler::mangleType(const ExtIntType *T, Qualifiers, in mangleType()
H A DItaniumMangle.cpp3947 void CXXNameMangler::mangleType(const ExtIntType *T) { in mangleType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp107 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 DCodeGenTBAA.cpp212 if (const auto *EIT = dyn_cast<ExtIntType>(Ty)) { in getTypeInfoHelper()
H A DCGDebugInfo.h180 llvm::DIType *CreateType(const ExtIntType *Ty);
H A DCodeGenTypes.cpp789 const auto &EIT = cast<ExtIntType>(Ty); in ConvertType()
H A DCGDebugInfo.cpp918 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 DTypeNodes.td110 def ExtIntType : TypeNode<Type>;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTypeProperties.td885 let Class = ExtIntType in {
H A DType.h6309 class ExtIntType final : public Type, public llvm::FoldingSetNode {
6315 ExtIntType(bool isUnsigned, unsigned NumBits);
6894 return isa<ExtIntType>(CanonicalType);
H A DRecursiveASTVisitor.h1077 DEF_TRAVERSE_TYPE(ExtIntType, {})
1363 DEF_TRAVERSE_TYPELOC(ExtIntType, {})
H A DTypeLoc.h2567 ExtIntType> {};
H A DASTContext.h243 mutable llvm::FoldingSet<ExtIntType> ExtIntTypes;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2265 if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){ in DeduceTemplateArgumentsByTypeMatch()
H A DSemaChecking.cpp5757 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 DSemaTemplate.cpp6154 bool UnnamedLocalNoLinkageFinder::VisitExtIntType(const ExtIntType *T) { in VisitExtIntType()
H A DTreeTransform.h6387 const ExtIntType *EIT = TL.getTypePtr(); in TransformExtIntType()