| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 190 if (FPT->getExceptionSpecType() == EST_Unparsed) { in ResolveExceptionSpec() 195 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in ResolveExceptionSpec() 203 if (!isUnresolvedExceptionSpec(SourceFPT->getExceptionSpecType())) in ResolveExceptionSpec() 207 if (SourceFPT->getExceptionSpecType() == EST_Unevaluated) in ResolveExceptionSpec() 214 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) { in ResolveExceptionSpec() 393 switch (OldProto->getExceptionSpecType()) { in CheckEquivalentExceptionSpec() 523 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl() 524 ExceptionSpecificationType NewEST = New->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl() 760 ExceptionSpecificationType SuperEST = Superset->getExceptionSpecType(); in CheckExceptionSpecSubset() 761 ExceptionSpecificationType SubEST = Subset->getExceptionSpecType(); in CheckExceptionSpecSubset() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 896 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { in containsUnexpandedParameterPacks() 903 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) && in containsUnexpandedParameterPacks()
|
| H A D | SemaType.cpp | 4661 if (IsTypedefName && FTI.getExceptionSpecType() && !LangOpts.CPlusPlus17) in GetFullTypeForDeclarator() 4809 if (FTI.getExceptionSpecType() == EST_Dynamic) { in GetFullTypeForDeclarator() 4819 } else if (isComputedNoexcept(FTI.getExceptionSpecType())) { in GetFullTypeForDeclarator() 4824 FTI.getExceptionSpecType(), in GetFullTypeForDeclarator()
|
| H A D | SemaDeclCXX.cpp | 164 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in CalledDecl() 6477 if (FPT->getExceptionSpecType() != EST_Unevaluated) in EvaluateImplicitExceptionSpec() 6492 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) in EvaluateImplicitExceptionSpec() 6644 if (Type->getExceptionSpecType() == EST_Uninstantiated) { in CheckExplicitlyDefaultedSpecialMember() 6708 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) in CheckExplicitlyDefaultedMemberExceptionSpec() 15384 switch (Proto->getExceptionSpecType()) { in checkThisInStaticMemberFunctionExceptionSpec()
|
| H A D | SemaTemplateDeduction.cpp | 4100 isUnresolvedExceptionSpec(SpecializationFPT->getExceptionSpecType()) && in DeduceTemplateArguments()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3664 if (Proto->getExceptionSpecType() != EST_Uninstantiated) in InstantiateExceptionSpec()
|
| H A D | SemaOverload.cpp | 10955 isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in completeFunctionType()
|
| H A D | SemaDecl.cpp | 13635 if (!FPT || FPT->getExceptionSpecType() == EST_None) in AddKnownFunctionAttributes()
|
| H A D | SemaExpr.cpp | 14680 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) in MarkFunctionReferenced()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Type.h | 3868 return getExceptionSpecSize(getExceptionSpecType(), getNumExceptions()); 3880 return hasExtraBitfields(getExceptionSpecType()); 3904 EPI.ExceptionSpec.Type = getExceptionSpecType(); 3922 ExceptionSpecificationType getExceptionSpecType() const { 3932 return isDynamicExceptionSpec(getExceptionSpecType()); 3937 return isNoexceptExceptionSpec(getExceptionSpecType()); 3949 return getExceptionSpecType() == EST_Dynamic 3964 if (!isComputedNoexcept(getExceptionSpecType())) 3974 if (getExceptionSpecType() != EST_Uninstantiated && 3975 getExceptionSpecType() != EST_Unevaluated) [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Type.cpp | 2884 if (getExceptionSpecType() == EST_Dynamic) { in FunctionProtoType() 2903 else if (isComputedNoexcept(getExceptionSpecType())) { in FunctionProtoType() 2905 assert((getExceptionSpecType() == EST_DependentNoexcept) == in FunctionProtoType() 2919 else if (getExceptionSpecType() == EST_Uninstantiated) { in FunctionProtoType() 2927 } else if (getExceptionSpecType() == EST_Unevaluated) { in FunctionProtoType() 2937 if (getExceptionSpecType() == EST_Dynamic || in FunctionProtoType() 2938 getExceptionSpecType() == EST_DependentNoexcept) { in FunctionProtoType() 2984 switch (getExceptionSpecType()) { in canThrow()
|
| H A D | DeclPrinter.cpp | 669 if (FT->getExceptionSpecType() == EST_MSAny) in VisitFunctionDecl() 679 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) { in VisitFunctionDecl() 681 if (isComputedNoexcept(FT->getExceptionSpecType())) { in VisitFunctionDecl()
|
| H A D | TypePrinter.cpp | 721 if (getExceptionSpecType() == EST_MSAny) in printExceptionSpecification() 731 } else if (isNoexceptExceptionSpec(getExceptionSpecType())) { in printExceptionSpecification() 735 if (isComputedNoexcept(getExceptionSpecType())) { in printExceptionSpecification()
|
| H A D | ASTStructuralEquivalence.cpp | 514 auto Spec1 = OrigProto1->getExceptionSpecType(); in IsStructurallyEquivalent() 515 auto Spec2 = OrigProto2->getExceptionSpecType(); in IsStructurallyEquivalent()
|
| H A D | ItaniumMangle.cpp | 2743 if (isComputedNoexcept(T->getExceptionSpecType())) { in mangleType() 2748 assert(T->getExceptionSpecType() == EST_Dynamic); in mangleType()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGCoroutine.cpp | 137 if (isNoexceptExceptionSpec(Proto->getExceptionSpecType()) && in memberCallExpressionCanThrow()
|
| H A D | CGException.cpp | 464 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitStartEHSpec() 541 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); in EmitEndEHSpec()
|
| H A D | CGCall.cpp | 1700 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1362 switch (getExceptionSpecType()) { in destroy() 1458 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function
|
| H A D | Sema.h | 4775 ExceptionSpecificationType getExceptionSpecType() const { in getExceptionSpecType() function 4797 ESI.Type = getExceptionSpecType(); in getExceptionSpec()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 3033 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) || in isSameEntity() 3034 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) && in isSameEntity() 3486 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType()); in attachPreviousDeclImpl() 3488 isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType()); in attachPreviousDeclImpl() 4406 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { in UpdateDecl()
|
| H A D | ASTWriter.cpp | 293 Record.push_back(T->getExceptionSpecType()); in addExceptionSpec() 294 if (T->getExceptionSpecType() == EST_Dynamic) { in addExceptionSpec() 298 } else if (isComputedNoexcept(T->getExceptionSpecType())) { in addExceptionSpec() 300 } else if (T->getExceptionSpecType() == EST_Uninstantiated) { in addExceptionSpec() 303 } else if (T->getExceptionSpecType() == EST_Unevaluated) { in addExceptionSpec() 327 T->getRefQualifier() || T->getExceptionSpecType() != EST_None || in VisitFunctionProtoType() 6283 ->getExceptionSpecType())) in ResolvedExceptionSpec()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 4053 if (isUnresolvedExceptionSpec(FnTy->getExceptionSpecType())) in AST_POLYMORPHIC_MATCHER()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 2131 bool NeedLateParse = FTI.getExceptionSpecType() == EST_Unparsed; in HandleMemberFunctionDeclDelays()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | CFG.cpp | 2417 if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) && in CanThrow()
|