Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
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()
DASTContext.cpp2220 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()
DASTStructuralEquivalence.cpp1190 const auto *Int1 = cast<ExtIntType>(T1); in IsStructurallyEquivalent()
1191 const auto *Int2 = cast<ExtIntType>(T2); in IsStructurallyEquivalent()
DTypePrinter.cpp1192 void TypePrinter::printExtIntBefore(const ExtIntType *T, raw_ostream &OS) { in printExtIntBefore()
1199 void TypePrinter::printExtIntAfter(const ExtIntType *T, raw_ostream &OS) {} in printExtIntAfter()
DMicrosoftMangle.cpp3223 void MicrosoftCXXNameMangler::mangleType(const ExtIntType *T, Qualifiers, in mangleType()
DItaniumMangle.cpp3731 void CXXNameMangler::mangleType(const ExtIntType *T) { in mangleType()
/external/llvm-project/clang/lib/CodeGen/
DTargetInfo.cpp105 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 …]
DCodeGenTBAA.cpp212 if (const auto *EIT = dyn_cast<ExtIntType>(Ty)) { in getTypeInfoHelper()
DCGDebugInfo.h171 llvm::DIType *CreateType(const ExtIntType *Ty);
DCodeGenTypes.cpp780 const auto &EIT = cast<ExtIntType>(Ty); in ConvertType()
DCGDebugInfo.cpp864 llvm::DIType *CGDebugInfo::CreateType(const ExtIntType *Ty) { in CreateType()
3282 return CreateType(cast<ExtIntType>(Ty)); in CreateTypeNode()
/external/llvm-project/clang/include/clang/Basic/
DTypeNodes.td110 def ExtIntType : TypeNode<Type>;
/external/llvm-project/clang/include/clang/AST/
DTypeProperties.td877 let Class = ExtIntType in {
DRecursiveASTVisitor.h1064 DEF_TRAVERSE_TYPE(ExtIntType, {})
1350 DEF_TRAVERSE_TYPELOC(ExtIntType, {})
DType.h6277 class ExtIntType final : public Type, public llvm::FoldingSetNode {
6283 ExtIntType(bool isUnsigned, unsigned NumBits);
6862 return isa<ExtIntType>(CanonicalType);
DTypeLoc.h2518 ExtIntType> {};
DASTContext.h240 mutable llvm::FoldingSet<ExtIntType> ExtIntTypes;
/external/llvm-project/clang/lib/Sema/
DSemaTemplateDeduction.cpp2280 if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){ in DeduceTemplateArgumentsByTypeMatch()
DSemaChecking.cpp5554 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()
DSemaTemplate.cpp6164 bool UnnamedLocalNoLinkageFinder::VisitExtIntType(const ExtIntType *T) { in VisitExtIntType()
DTreeTransform.h6301 const ExtIntType *EIT = TL.getTypePtr(); in TransformExtIntType()