clang 18.0.0git
|
#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTStructuralEquivalence.h"
#include "clang/AST/CXXInheritance.h"
#include "clang/AST/ExprCXX.h"
#include "clang/AST/ExprObjC.h"
#include "clang/AST/RecordLayout.h"
#include "clang/Basic/PartialDiagnostic.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Sema/Initialization.h"
#include "clang/Sema/SemaInternal.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include <set>
Go to the source code of this file.
Enumerations | |
enum | TryCastResult { TC_NotApplicable , TC_Success , TC_Extension , TC_Failed } |
enum | CastType { CT_Const , CT_Static , CT_Reinterpret , CT_Dynamic , CT_CStyle , CT_Functional , CT_Addrspace } |
Functions | |
static bool | isValidCast (TryCastResult TCR) |
static void | DiagnoseCastQual (Sema &Self, const ExprResult &SrcExpr, QualType DestType) |
DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either const, volatile or both. | |
static TryCastResult | TryLValueToRValueCast (Sema &Self, Expr *SrcExpr, QualType DestType, bool CStyle, CastKind &Kind, CXXCastPath &BasePath, unsigned &msg) |
Tests whether a conversion according to N2844 is valid. | |
static TryCastResult | TryStaticReferenceDowncast (Sema &Self, Expr *SrcExpr, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) |
Tests whether a conversion according to C++ 5.2.9p5 is valid. | |
static TryCastResult | TryStaticPointerDowncast (Sema &Self, QualType SrcType, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) |
Tests whether a conversion according to C++ 5.2.9p8 is valid. | |
static TryCastResult | TryStaticDowncast (Sema &Self, CanQualType SrcType, CanQualType DestType, bool CStyle, SourceRange OpRange, QualType OrigSrcType, QualType OrigDestType, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) |
TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and TryStaticPointerDowncast. | |
static TryCastResult | TryStaticMemberPointerUpcast (Sema &Self, ExprResult &SrcExpr, QualType SrcType, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath) |
TryStaticMemberPointerUpcast - Tests whether a conversion according to C++ 5.2.9p9 is valid: | |
static TryCastResult | TryStaticImplicitCast (Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, SourceRange OpRange, unsigned &msg, CastKind &Kind, bool ListInitialization) |
TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2 is valid: | |
static TryCastResult | TryStaticCast (Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, SourceRange OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath, bool ListInitialization) |
TryStaticCast - Check if a static cast can be performed, and do so if possible. | |
static TryCastResult | TryConstCast (Sema &Self, ExprResult &SrcExpr, QualType DestType, bool CStyle, unsigned &msg) |
TryConstCast - See if a const_cast from source to destination is allowed, and perform it if it is. | |
static TryCastResult | TryReinterpretCast (Sema &Self, ExprResult &SrcExpr, QualType DestType, bool CStyle, SourceRange OpRange, unsigned &msg, CastKind &Kind) |
static TryCastResult | TryAddressSpaceCast (Sema &Self, ExprResult &SrcExpr, QualType DestType, bool CStyle, unsigned &msg, CastKind &Kind) |
static bool | tryDiagnoseOverloadedCast (Sema &S, CastType CT, SourceRange range, Expr *src, QualType destType, bool listInitialization) |
Try to diagnose a failed overloaded cast. | |
static void | diagnoseBadCast (Sema &S, unsigned msg, CastType castType, SourceRange opRange, Expr *src, QualType destType, bool listInitialization) |
Diagnose a failed cast. | |
static CastAwayConstnessKind | unwrapCastAwayConstnessLevel (ASTContext &Context, QualType &T1, QualType &T2) |
Unwrap one level of types for CastsAwayConstness. | |
static CastAwayConstnessKind | CastsAwayConstness (Sema &Self, QualType SrcType, QualType DestType, bool CheckCVR, bool CheckObjCLifetime, QualType *TheOffendingSrcType=nullptr, QualType *TheOffendingDestType=nullptr, Qualifiers *CastAwayQualifiers=nullptr) |
Check if the pointer conversion from SrcType to DestType casts away constness as defined in C++ [expr.const.cast]. | |
static TryCastResult | getCastAwayConstnessCastKind (CastAwayConstnessKind CACK, unsigned &DiagID) |
static void | DiagnoseReinterpretUpDownCast (Sema &Self, const Expr *SrcExpr, QualType DestType, SourceRange OpRange) |
Check that a reinterpret_cast<DestType>(SrcExpr) is not used as upcast or downcast between respective pointers or references. | |
static bool | argTypeIsABIEquivalent (QualType SrcType, QualType DestType, ASTContext &Context) |
static unsigned int | checkCastFunctionType (Sema &Self, const ExprResult &SrcExpr, QualType DestType) |
static bool | IsAddressSpaceConversion (QualType SrcType, QualType DestType) |
static void | DiagnoseCastOfObjCSEL (Sema &Self, const ExprResult &SrcExpr, QualType DestType) |
static void | DiagnoseCallingConvCast (Sema &Self, const ExprResult &SrcExpr, QualType DstType, SourceRange OpRange) |
Diagnose casts that change the calling convention of a pointer to a function defined in the current TU. | |
static void | checkIntToPointerCast (bool CStyle, const SourceRange &OpRange, const Expr *SrcExpr, QualType DestType, Sema &Self) |
static bool | fixOverloadedReinterpretCastExpr (Sema &Self, QualType DestType, ExprResult &Result) |
static void | DiagnoseBadFunctionCast (Sema &Self, const ExprResult &SrcExpr, QualType DestType) |
DiagnoseBadFunctionCast - Warn whenever a function call is cast to a non-matching type. | |
enum CastType |
Enumerator | |
---|---|
CT_Const | const_cast |
CT_Static | static_cast |
CT_Reinterpret | reinterpret_cast |
CT_Dynamic | dynamic_cast |
CT_CStyle | (Type)expr |
CT_Functional | Type(expr) |
CT_Addrspace | addrspace_cast |
Definition at line 47 of file SemaCast.cpp.
enum TryCastResult |
Definition at line 34 of file SemaCast.cpp.
|
static |
Definition at line 1080 of file SemaCast.cpp.
References clang::ASTContext::getTypeInfoInChars(), clang::ASTContext::hasSameUnqualifiedType(), clang::Type::isIntegralType(), clang::Type::isPointerType(), and clang::TypeInfoChars::Width.
Referenced by checkCastFunctionType().
|
static |
Check if the pointer conversion from SrcType to DestType casts away constness as defined in C++ [expr.const.cast].
This is used by the cast checkers. Both arguments must denote pointer (possibly to member) types.
CheckCVR | Whether to check for const/volatile/restrict qualifiers. |
CheckObjCLifetime | Whether to check Objective-C lifetime qualifiers. |
Definition at line 662 of file SemaCast.cpp.
References clang::Qualifiers::compatiblyIncludesObjCLifetime(), clang::Sema::Context, clang::Qualifiers::fromCVRMask(), clang::ASTContext::getCanonicalType(), clang::Qualifiers::getCVRQualifiers(), clang::ASTContext::getLangOpts(), clang::ASTContext::getUnqualifiedArrayType(), clang::Qualifiers::hasConst(), clang::Type::isAnyPointerType(), clang::Type::isBlockPointerType(), clang::Type::isMemberPointerType(), clang::Type::isObjCObjectType(), clang::Type::isReferenceType(), clang::Qualifiers::removeConst(), and unwrapCastAwayConstnessLevel().
Referenced by DiagnoseCastQual(), and TryReinterpretCast().
|
static |
Definition at line 1094 of file SemaCast.cpp.
References argTypeIsABIEquivalent(), clang::Type::castAs(), clang::Sema::Context, clang::Sema::Diags, clang::ActionResult< PtrTy, Compress >::get(), clang::Expr::getExprLoc(), clang::QualType::getNonReferenceType(), clang::Type::getPointeeType(), clang::FunctionType::getReturnType(), clang::Expr::getType(), clang::ASTContext::hasSameType(), clang::Type::isBlockPointerType(), clang::Type::isFunctionNoProtoType(), clang::Type::isFunctionPointerType(), clang::Type::isFunctionReferenceType(), clang::Type::isFunctionType(), clang::DiagnosticsEngine::isIgnored(), and clang::Type::isMemberFunctionPointerType().
|
static |
Definition at line 2191 of file SemaCast.cpp.
References clang::Sema::Context, Diag(), clang::Sema::Diag(), clang::SourceRange::getBegin(), clang::Expr::getType(), clang::ASTContext::getTypeSize(), clang::Type::isBooleanType(), clang::Type::isEnumeralType(), clang::Expr::isIntegerConstantExpr(), clang::Type::isIntegralType(), and clang::Type::isVoidPointerType().
Referenced by TryReinterpretCast().
|
static |
Diagnose a failed cast.
Definition at line 517 of file SemaCast.cpp.
References clang::Sema::Diag(), clang::Type::getAs(), clang::Type::getAsCXXRecordDecl(), clang::SourceRange::getBegin(), clang::Type::getPointeeType(), clang::Stmt::getSourceRange(), clang::Expr::getType(), and tryDiagnoseOverloadedCast().
|
static |
DiagnoseBadFunctionCast - Warn whenever a function call is cast to a non-matching type.
Such as enum function call to int, int call to pointer; etc. Cast to 'void' is an exception.
Definition at line 2874 of file SemaCast.cpp.
References clang::Sema::Diag(), clang::Sema::Diags, clang::ActionResult< PtrTy, Compress >::get(), clang::Expr::getExprLoc(), clang::Stmt::getSourceRange(), clang::Expr::getType(), clang::QualType::getUnqualifiedType(), clang::Type::isAnyPointerType(), clang::Type::isBlockPointerType(), clang::Type::isBooleanType(), clang::Type::isComplexIntegerType(), clang::Type::isComplexType(), clang::Type::isEnumeralType(), clang::Type::isFixedPointType(), clang::DiagnosticsEngine::isIgnored(), clang::Type::isIntegerType(), clang::Type::isRealFloatingType(), and clang::Type::isVoidType().
|
static |
Diagnose casts that change the calling convention of a pointer to a function defined in the current TU.
Definition at line 2103 of file SemaCast.cpp.
References clang::Type::castAs(), clang::Sema::Context, clang::FixItHint::CreateInsertion(), clang::Sema::Diag(), clang::Sema::Diags, clang::ActionResult< PtrTy, Compress >::get(), clang::Sema::getASTContext(), clang::SourceRange::getBegin(), clang::FunctionType::getCallConv(), clang::ASTContext::getDefaultCallingConvention(), clang::Preprocessor::getIdentifierInfo(), clang::Sema::getLangOpts(), clang::Preprocessor::getLastMacroWithSpelling(), clang::FunctionType::getNameForCallConv(), clang::Sema::getPreprocessor(), clang::IdentifierInfo::getTokenID(), clang::Expr::getType(), clang::ASTContext::hasSameType(), clang::Expr::IgnoreParenImpCasts(), clang::Type::isFunctionPointerType(), clang::DiagnosticsEngine::isIgnored(), and clang::IdentifierInfo::isKeyword().
Referenced by TryReinterpretCast().
|
static |
Definition at line 2084 of file SemaCast.cpp.
References clang::Sema::Context, clang::Sema::Diag(), clang::ActionResult< PtrTy, Compress >::get(), clang::Type::getAs(), clang::Expr::getExprLoc(), clang::Type::getPointeeType(), clang::Stmt::getSourceRange(), clang::Expr::getType(), clang::QualType::getUnqualifiedType(), clang::ASTContext::hasSameType(), and clang::Type::isVoidType().
Referenced by TryReinterpretCast().
|
static |
DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either const, volatile or both.
Definition at line 3295 of file SemaCast.cpp.
References CastsAwayConstness(), clang::Sema::Diag(), clang::ActionResult< PtrTy, Compress >::get(), clang::Stmt::getBeginLoc(), clang::Expr::getType(), clang::Qualifiers::hasConst(), clang::Qualifiers::hasVolatile(), clang::Type::isAnyPointerType(), clang::ActionResult< PtrTy, Compress >::isInvalid(), and clang::Type::isLValueReferenceType().
Referenced by clang::Sema::BuildCStyleCastExpr(), and clang::Sema::BuildCXXFunctionalCastExpr().
|
static |
Check that a reinterpret_cast<DestType>(SrcExpr) is not used as upcast or downcast between respective pointers or references.
Definition at line 989 of file SemaCast.cpp.
References clang::CXXBasePaths::begin(), clang::Sema::Context, clang::FixItHint::CreateReplacement(), clang::Sema::Diag(), clang::CXXBasePaths::end(), clang::Type::getAsCXXRecordDecl(), clang::ASTContext::getASTRecordLayout(), clang::ASTRecordLayout::getBaseClassOffset(), clang::SourceRange::getBegin(), clang::Type::getPointeeCXXRecordDecl(), clang::Expr::getType(), int, clang::TagDecl::isCompleteDefinition(), clang::CXXRecordDecl::isDerivedFrom(), clang::Decl::isInvalidDecl(), and clang::CharUnits::Zero().
|
static |
Definition at line 2217 of file SemaCast.cpp.
References clang::Expr::getValueKindForType(), clang::Sema::resolveAndFixAddressOfSingleOverloadCandidate(), clang::Sema::ResolveAndFixSingleFunctionTemplateSpecialization(), clang::Result, and clang::VK_PRValue.
Referenced by TryReinterpretCast().
|
static |
Definition at line 757 of file SemaCast.cpp.
References TC_Extension, and TC_Failed.
Referenced by TryReinterpretCast().
Definition at line 1293 of file SemaCast.cpp.
References clang::QualType::getAddressSpace(), clang::Type::getAs(), and clang::PointerType::getPointeeType().
Referenced by TryReinterpretCast(), and TryStaticCast().
|
static |
Definition at line 43 of file SemaCast.cpp.
References TC_Extension, and TC_Success.
|
static |
Definition at line 2598 of file SemaCast.cpp.
References clang::Sema::Context, clang::ActionResult< PtrTy, Compress >::get(), clang::Type::getAs(), clang::Sema::getLangOpts(), clang::Expr::getType(), clang::ASTContext::hasSameType(), clang::ASTContext::removeAddrSpaceQualType(), TC_Failed, TC_NotApplicable, and TC_Success.
|
static |
TryConstCast - See if a const_cast from source to destination is allowed, and perform it if it is.
Definition at line 1931 of file SemaCast.cpp.
References clang::Sema::Context, clang::Sema::CreateMaterializeTemporaryExpr(), clang::ActionResult< PtrTy, Compress >::get(), clang::Type::getAs(), clang::ASTContext::getCanonicalType(), clang::ASTContext::getPointerType(), clang::Expr::getType(), clang::ASTContext::hasCvrSimilarType(), clang::Type::isFunctionPointerType(), clang::Expr::isLValue(), clang::Type::isMemberFunctionPointerType(), clang::Type::isMemberPointerType(), clang::Type::isObjCObjectPointerType(), clang::Type::isPointerType(), clang::Expr::isPRValue(), clang::Type::isRecordType(), clang::Expr::refersToBitField(), TC_NotApplicable, and TC_Success.
|
static |
Try to diagnose a failed overloaded cast.
Returns true if diagnostics were emitted.
Definition at line 421 of file SemaCast.cpp.
References clang::InitializationKind::CreateCast(), clang::InitializationKind::CreateCStyleCast(), clang::InitializationKind::CreateFunctionalCast(), CT_Addrspace, CT_Const, CT_CStyle, CT_Dynamic, CT_Functional, CT_Reinterpret, CT_Static, clang::OverloadCandidateSet::empty(), clang::InitializationSequence::Failed(), clang::InitializationSequence::FK_ConstructorOverloadFailed, clang::InitializationSequence::FK_ParenthesizedListInitFailed, clang::InitializationSequence::FK_UserConversionOverloadFailed, clang::InitializationSequence::getFailedCandidateSet(), clang::InitializationSequence::getFailedOverloadResult(), clang::InitializationSequence::getFailureKind(), clang::Stmt::getSourceRange(), clang::Expr::getType(), clang::InitializedEntity::InitializeTemporary(), clang::Type::isArrayType(), clang::Type::isRecordType(), clang::OverloadCandidateSet::NoteCandidates(), clang::OCD_AllCandidates, clang::OCD_AmbiguousCandidates, clang::OCD_ViableCandidates, clang::OR_Ambiguous, clang::OR_Deleted, clang::OR_No_Viable_Function, clang::OR_Success, and clang::Sema::PDiag().
Referenced by diagnoseBadCast().
|
static |
Tests whether a conversion according to N2844 is valid.
Definition at line 1519 of file SemaCast.cpp.
References clang::Sema::BuildBasePathArray(), clang::Sema::CompareReferenceRelationship(), clang::Type::getAs(), clang::Stmt::getBeginLoc(), clang::ReferenceType::getPointeeType(), clang::Expr::getType(), clang::QualType::getUnqualifiedType(), clang::Sema::IsDerivedFrom(), clang::Expr::isGLValue(), clang::Expr::isLValue(), clang::Sema::Ref_Compatible, clang::Sema::Ref_Incompatible, TC_Failed, TC_NotApplicable, and TC_Success.
Referenced by TryStaticCast().
|
static |
Definition at line 2245 of file SemaCast.cpp.
References clang::Sema::areLaxCompatibleVectorTypes(), clang::Sema::areVectorTypesSameSize(), CastsAwayConstness(), clang::Sema::CheckCompatibleReinterpretCast(), checkIntToPointerCast(), clang::Sema::Context, Diag(), clang::Sema::Diag(), DiagnoseCallingConvCast(), DiagnoseCastOfObjCSEL(), clang::ExprError(), fixOverloadedReinterpretCastExpr(), clang::ActionResult< PtrTy, Compress >::get(), clang::QualType::getAddressSpace(), clang::Type::getAs(), clang::SourceRange::getBegin(), clang::ASTContext::getCanonicalType(), getCastAwayConstnessCastKind(), clang::TargetInfo::getCXXABI(), clang::Sema::getLangOpts(), clang::Expr::getObjectKind(), clang::Type::getPointeeType(), clang::ASTContext::getPointerType(), clang::QualType::getQualifiers(), clang::Stmt::getSourceRange(), clang::ASTContext::getTargetInfo(), clang::Expr::getType(), clang::ASTContext::getTypeSize(), IsAddressSpaceConversion(), clang::Qualifiers::isAddressSpaceSupersetOf(), clang::Type::isAnyPointerType(), clang::Type::isBlockPointerType(), clang::Type::isBooleanType(), clang::Sema::isCompleteType(), clang::Type::isExtVectorType(), clang::Type::isFunctionPointerType(), clang::Expr::isGLValue(), clang::Type::isIntegralOrEnumerationType(), clang::Type::isIntegralType(), clang::MemberPointerType::isMemberFunctionPointer(), clang::Type::isMemberPointerType(), clang::TargetCXXABI::isMicrosoft(), clang::QualType::isNull(), clang::Type::isNullPtrType(), clang::Type::isObjCObjectPointerType(), clang::Type::isPointerType(), clang::ActionResult< PtrTy, Compress >::isUsable(), clang::Sema::isValidRVVBitcast(), clang::Sema::isValidSveBitcast(), clang::Type::isVectorType(), clang::Type::isVoidPointerType(), clang::Sema::LangOpts, clang::OK_BitField, clang::OK_MatrixComponent, clang::OK_ObjCProperty, clang::OK_ObjCSubscript, clang::OK_Ordinary, clang::OK_VectorComponent, clang::ASTContext::OverloadTy, clang::Sema::PrepareCastToObjCObjectPointer(), clang::Result, TC_Failed, TC_NotApplicable, and TC_Success.
|
static |
TryStaticCast - Check if a static cast can be performed, and do so if possible.
If CStyle
, ignore access restrictions on hierarchy casting and casting away constness.
Definition at line 1307 of file SemaCast.cpp.
References clang::Type::castAs(), clang::Sema::CCK_CStyleCast, clang::Sema::CCK_FunctionalCast, clang::Sema::CheckMatrixCast(), clang::Sema::CheckTollFreeBridgeStaticCast(), clang::Qualifiers::compatiblyIncludes(), clang::Sema::Context, clang::Sema::Diag(), Enum, clang::ExprError(), clang::ActionResult< PtrTy, Compress >::get(), clang::Type::getAs(), clang::SourceRange::getBegin(), clang::ASTContext::getCanonicalType(), clang::Sema::getLangOpts(), clang::Type::getPointeeType(), clang::PointerType::getPointeeType(), clang::QualType::getQualifiers(), clang::Expr::getType(), IsAddressSpaceConversion(), clang::Type::isBlockPointerType(), clang::Type::isBooleanType(), clang::Type::isEnumeralType(), clang::Type::isFunctionType(), clang::Type::isIncompleteOrObjectType(), clang::Type::isIntegralOrEnumerationType(), clang::Type::isIntegralType(), clang::ActionResult< PtrTy, Compress >::isInvalid(), clang::Type::isMatrixType(), clang::Type::isObjCObjectPointerType(), clang::Type::isRealFloatingType(), clang::Type::isVoidType(), clang::Qualifiers::removeObjCGCAttr(), clang::Qualifiers::removeObjCLifetime(), clang::Sema::RequireCompleteType(), TC_Failed, TC_NotApplicable, TC_Success, TryLValueToRValueCast(), TryStaticImplicitCast(), TryStaticMemberPointerUpcast(), TryStaticPointerDowncast(), and TryStaticReferenceDowncast().
|
static |
TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and TryStaticPointerDowncast.
Tests whether a static downcast from SrcType to DestType is possible and allowed.
Definition at line 1646 of file SemaCast.cpp.
References clang::Sema::AR_accessible, clang::Sema::AR_delayed, clang::Sema::AR_dependent, clang::Sema::AR_inaccessible, clang::Sema::BuildBasePathArray(), clang::Sema::CheckBaseClassAccess(), clang::Sema::Diag(), clang::CanQual< T >::getAs(), clang::QualType::getAsString(), clang::SourceRange::getBegin(), clang::CanQual< T >::getUnqualifiedType(), clang::QualType::getUnqualifiedType(), clang::CanQual< T >::isAtLeastAsQualifiedAs(), clang::Sema::isCompleteType(), clang::Sema::IsDerivedFrom(), TC_Failed, TC_NotApplicable, and TC_Success.
Referenced by TryStaticPointerDowncast(), and TryStaticReferenceDowncast().
|
static |
TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2 is valid:
An expression e can be explicitly converted to a type T using a static_cast
if the declaration "T t(e);" is well-formed [...].
Definition at line 1876 of file SemaCast.cpp.
References clang::Sema::CCK_CStyleCast, clang::Sema::CCK_FunctionalCast, clang::InitializationKind::CreateCast(), clang::InitializationKind::CreateCStyleCast(), clang::InitializationKind::CreateFunctionalCast(), clang::InitializationSequence::Failed(), clang::ActionResult< PtrTy, Compress >::get(), clang::SourceRange::getBegin(), clang::InitializedEntity::InitializeTemporary(), clang::InitializationSequence::isConstructorInitialization(), clang::Type::isRecordType(), clang::Type::isReferenceType(), clang::InitializationSequence::Perform(), clang::Sema::RequireCompleteType(), clang::Sema::RequireNonAbstractType(), clang::Result, TC_Failed, TC_NotApplicable, and TC_Success.
Referenced by TryStaticCast().
|
static |
TryStaticMemberPointerUpcast - Tests whether a conversion according to C++ 5.2.9p9 is valid:
An rvalue of type "pointer to member of D of type cv1 T" can be converted to an rvalue of type "pointer to member of B of type cv2 T", where B is a base class of D [...].
Definition at line 1758 of file SemaCast.cpp.
References clang::Sema::AR_accessible, clang::Sema::AR_delayed, clang::Sema::AR_dependent, clang::Sema::AR_inaccessible, clang::Sema::BuildBasePathArray(), clang::Sema::CheckBaseClassAccess(), clang::Sema::Context, clang::Sema::Diag(), clang::Sema::FixOverloadedFunctionReference(), clang::ActionResult< PtrTy, Compress >::get(), clang::Sema::getAmbiguousPathsDisplayString(), clang::Type::getAs(), clang::SourceRange::getBegin(), clang::ASTContext::getCanonicalType(), clang::MemberPointerType::getClass(), clang::TargetInfo::getCXXABI(), clang::ASTContext::getMemberPointerType(), clang::CXXMethodDecl::getParent(), clang::MemberPointerType::getPointeeType(), clang::ASTContext::getTargetInfo(), clang::Expr::getType(), clang::ASTContext::getTypeDeclType(), clang::QualType::getTypePtr(), clang::ASTContext::hasSameUnqualifiedType(), clang::Sema::isCompleteType(), clang::Sema::IsDerivedFrom(), clang::TargetCXXABI::isMicrosoft(), clang::ActionResult< PtrTy, Compress >::isUsable(), clang::ASTContext::OverloadTy, clang::Sema::ResolveAddressOfOverloadedFunction(), TC_Failed, TC_NotApplicable, and TC_Success.
Referenced by TryStaticCast().
|
static |
Tests whether a conversion according to C++ 5.2.9p8 is valid.
Definition at line 1612 of file SemaCast.cpp.
References clang::Sema::Context, clang::Type::getAs(), clang::ASTContext::getCanonicalType(), clang::PointerType::getPointeeType(), TC_NotApplicable, and TryStaticDowncast().
Referenced by TryStaticCast().
|
static |
Tests whether a conversion according to C++ 5.2.9p5 is valid.
Definition at line 1574 of file SemaCast.cpp.
References clang::Sema::Context, clang::Type::getAs(), clang::ASTContext::getCanonicalType(), clang::ReferenceType::getPointeeType(), clang::Expr::getType(), clang::Expr::isLValue(), clang::Type::isRValueReferenceType(), TC_NotApplicable, and TryStaticDowncast().
Referenced by TryStaticCast().
|
static |
Unwrap one level of types for CastsAwayConstness.
Like Sema::UnwrapSimilarTypes, this removes one level of indirection from both types, provided that they're both pointer-like or array-like. Unlike the Sema function, doesn't care if the unwrapped pieces are related.
This function may remove additional levels as necessary for correctness: the resulting T1 is unwrapped sufficiently that it is never an array type, so that its qualifiers can be directly compared to those of T2 (which will have the combined set of qualifiers from all indermediate levels of T2), as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers with those from T2.
Definition at line 584 of file SemaCast.cpp.
References clang::ASTContext::getAsArrayType(), clang::QualType::getCVRQualifiers(), clang::Type::getPointeeType(), clang::Type::isReferenceType(), clang::None, clang::ASTContext::UnwrapSimilarArrayTypes(), clang::ASTContext::UnwrapSimilarTypes(), and clang::QualType::withCVRQualifiers().
Referenced by CastsAwayConstness().