John McCall | d8d3ced | 2011-10-11 17:38:55 +0000 | [diff] [blame] | 1 | //===--- SemaCast.cpp - Semantic Analysis for Casts -----------------------===// |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
John McCall | d8d3ced | 2011-10-11 17:38:55 +0000 | [diff] [blame] | 10 | // This file implements semantic analysis for cast expressions, including |
| 11 | // 1) C-style casts like '(int) x' |
| 12 | // 2) C++ functional casts like 'int(x)' |
| 13 | // 3) C++ named casts like 'static_cast<int>(x)' |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 17 | #include "clang/Sema/SemaInternal.h" |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 19 | #include "clang/AST/CXXInheritance.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprCXX.h" |
| 21 | #include "clang/AST/ExprObjC.h" |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 22 | #include "clang/Basic/PartialDiagnostic.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 23 | #include "clang/Sema/Initialization.h" |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallVector.h" |
Sebastian Redl | e3dc28a | 2008-11-07 23:29:29 +0000 | [diff] [blame] | 25 | #include <set> |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 26 | using namespace clang; |
| 27 | |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 28 | |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 29 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 30 | enum TryCastResult { |
| 31 | TC_NotApplicable, ///< The cast method is not applicable. |
| 32 | TC_Success, ///< The cast method is appropriate and successful. |
| 33 | TC_Failed ///< The cast method is appropriate, but failed. A |
| 34 | ///< diagnostic has been emitted. |
| 35 | }; |
| 36 | |
| 37 | enum CastType { |
| 38 | CT_Const, ///< const_cast |
| 39 | CT_Static, ///< static_cast |
| 40 | CT_Reinterpret, ///< reinterpret_cast |
| 41 | CT_Dynamic, ///< dynamic_cast |
| 42 | CT_CStyle, ///< (Type)expr |
| 43 | CT_Functional ///< Type(expr) |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 46 | namespace { |
| 47 | struct CastOperation { |
| 48 | CastOperation(Sema &S, QualType destType, ExprResult src) |
| 49 | : Self(S), SrcExpr(src), DestType(destType), |
| 50 | ResultType(destType.getNonLValueExprType(S.Context)), |
| 51 | ValueKind(Expr::getValueKindForType(destType)), |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 52 | Kind(CK_Dependent), IsARCUnbridgedCast(false) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 53 | |
| 54 | if (const BuiltinType *placeholder = |
| 55 | src.get()->getType()->getAsPlaceholderType()) { |
| 56 | PlaceholderKind = placeholder->getKind(); |
| 57 | } else { |
| 58 | PlaceholderKind = (BuiltinType::Kind) 0; |
| 59 | } |
| 60 | } |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 61 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 62 | Sema &Self; |
| 63 | ExprResult SrcExpr; |
| 64 | QualType DestType; |
| 65 | QualType ResultType; |
| 66 | ExprValueKind ValueKind; |
| 67 | CastKind Kind; |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 68 | BuiltinType::Kind PlaceholderKind; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 69 | CXXCastPath BasePath; |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 70 | bool IsARCUnbridgedCast; |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 71 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 72 | SourceRange OpRange; |
| 73 | SourceRange DestRange; |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 74 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 75 | // Top-level semantics-checking routines. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 76 | void CheckConstCast(); |
| 77 | void CheckReinterpretCast(); |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 78 | void CheckStaticCast(); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 79 | void CheckDynamicCast(); |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 80 | void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 81 | void CheckCStyleCast(); |
| 82 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 83 | /// Complete an apparently-successful cast operation that yields |
| 84 | /// the given expression. |
| 85 | ExprResult complete(CastExpr *castExpr) { |
| 86 | // If this is an unbridged cast, wrap the result in an implicit |
| 87 | // cast that yields the unbridged-cast placeholder type. |
| 88 | if (IsARCUnbridgedCast) { |
| 89 | castExpr = ImplicitCastExpr::Create(Self.Context, |
| 90 | Self.Context.ARCUnbridgedCastTy, |
| 91 | CK_Dependent, castExpr, 0, |
| 92 | castExpr->getValueKind()); |
| 93 | } |
| 94 | return Self.Owned(castExpr); |
| 95 | } |
| 96 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 97 | // Internal convenience methods. |
| 98 | |
| 99 | /// Try to handle the given placeholder expression kind. Return |
| 100 | /// true if the source expression has the appropriate placeholder |
| 101 | /// kind. A placeholder can only be claimed once. |
| 102 | bool claimPlaceholder(BuiltinType::Kind K) { |
| 103 | if (PlaceholderKind != K) return false; |
| 104 | |
| 105 | PlaceholderKind = (BuiltinType::Kind) 0; |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | bool isPlaceholder() const { |
| 110 | return PlaceholderKind != 0; |
| 111 | } |
| 112 | bool isPlaceholder(BuiltinType::Kind K) const { |
| 113 | return PlaceholderKind == K; |
| 114 | } |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 115 | |
| 116 | void checkCastAlign() { |
| 117 | Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange); |
| 118 | } |
| 119 | |
| 120 | void checkObjCARCConversion(Sema::CheckedConversionKind CCK) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 121 | assert(Self.getLangOpts().ObjCAutoRefCount); |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 122 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 123 | Expr *src = SrcExpr.get(); |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 124 | if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) == |
| 125 | Sema::ACR_unbridged) |
| 126 | IsARCUnbridgedCast = true; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 127 | SrcExpr = src; |
| 128 | } |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 129 | |
| 130 | /// Check for and handle non-overload placeholder expressions. |
| 131 | void checkNonOverloadPlaceholders() { |
| 132 | if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload)) |
| 133 | return; |
| 134 | |
| 135 | SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take()); |
| 136 | if (SrcExpr.isInvalid()) |
| 137 | return; |
| 138 | PlaceholderKind = (BuiltinType::Kind) 0; |
| 139 | } |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 140 | }; |
| 141 | } |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 142 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 143 | static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, |
| 144 | bool CheckCVR, bool CheckObjCLifetime); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 145 | |
| 146 | // The Try functions attempt a specific way of casting. If they succeed, they |
| 147 | // return TC_Success. If their way of casting is not appropriate for the given |
| 148 | // arguments, they return TC_NotApplicable and *may* set diag to a diagnostic |
| 149 | // to emit if no other way succeeds. If their way of casting is appropriate but |
| 150 | // fails, they return TC_Failed and *must* set diag; they can set it to 0 if |
| 151 | // they emit a specialized diagnostic. |
| 152 | // All diagnostics returned by these functions must expect the same three |
| 153 | // arguments: |
| 154 | // %0: Cast Type (a value from the CastType enumeration) |
| 155 | // %1: Source Type |
| 156 | // %2: Destination Type |
| 157 | static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, |
Douglas Gregor | 8ec14e6 | 2011-01-26 21:04:06 +0000 | [diff] [blame] | 158 | QualType DestType, bool CStyle, |
| 159 | CastKind &Kind, |
Douglas Gregor | 88b22a4 | 2011-01-25 16:13:26 +0000 | [diff] [blame] | 160 | CXXCastPath &BasePath, |
| 161 | unsigned &msg); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 162 | static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 163 | QualType DestType, bool CStyle, |
| 164 | const SourceRange &OpRange, |
| 165 | unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 166 | CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 167 | CXXCastPath &BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 168 | static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType, |
| 169 | QualType DestType, bool CStyle, |
| 170 | const SourceRange &OpRange, |
Anders Carlsson | 95c5d8a | 2009-11-12 16:53:16 +0000 | [diff] [blame] | 171 | unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 172 | CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 173 | CXXCastPath &BasePath); |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 174 | static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType, |
| 175 | CanQualType DestType, bool CStyle, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 176 | const SourceRange &OpRange, |
| 177 | QualType OrigSrcType, |
Anders Carlsson | 95c5d8a | 2009-11-12 16:53:16 +0000 | [diff] [blame] | 178 | QualType OrigDestType, unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 179 | CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 180 | CXXCastPath &BasePath); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 181 | static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 182 | QualType SrcType, |
| 183 | QualType DestType,bool CStyle, |
| 184 | const SourceRange &OpRange, |
| 185 | unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 186 | CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 187 | CXXCastPath &BasePath); |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 188 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 189 | static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 190 | QualType DestType, |
| 191 | Sema::CheckedConversionKind CCK, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 192 | const SourceRange &OpRange, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 193 | unsigned &msg, CastKind &Kind, |
| 194 | bool ListInitialization); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 195 | static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 196 | QualType DestType, |
| 197 | Sema::CheckedConversionKind CCK, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 198 | const SourceRange &OpRange, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 199 | unsigned &msg, CastKind &Kind, |
| 200 | CXXCastPath &BasePath, |
| 201 | bool ListInitialization); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 202 | static TryCastResult TryConstCast(Sema &Self, Expr *SrcExpr, QualType DestType, |
| 203 | bool CStyle, unsigned &msg); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 204 | static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 205 | QualType DestType, bool CStyle, |
| 206 | const SourceRange &OpRange, |
Anders Carlsson | 3c31a39 | 2009-09-26 00:12:34 +0000 | [diff] [blame] | 207 | unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 208 | CastKind &Kind); |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 209 | |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 210 | |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 211 | /// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's. |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 212 | ExprResult |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 213 | Sema::ActOnCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind, |
Argyrios Kyrtzidis | 31862ba | 2011-07-01 22:22:50 +0000 | [diff] [blame] | 214 | SourceLocation LAngleBracketLoc, Declarator &D, |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 215 | SourceLocation RAngleBracketLoc, |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 216 | SourceLocation LParenLoc, Expr *E, |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 217 | SourceLocation RParenLoc) { |
John McCall | c89724c | 2010-01-15 19:13:16 +0000 | [diff] [blame] | 218 | |
Argyrios Kyrtzidis | 31862ba | 2011-07-01 22:22:50 +0000 | [diff] [blame] | 219 | assert(!D.isInvalidType()); |
| 220 | |
| 221 | TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, E->getType()); |
| 222 | if (D.isInvalidType()) |
| 223 | return ExprError(); |
| 224 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 225 | if (getLangOpts().CPlusPlus) { |
Argyrios Kyrtzidis | 31862ba | 2011-07-01 22:22:50 +0000 | [diff] [blame] | 226 | // Check that there are no default arguments (C++ only). |
| 227 | CheckExtraCXXDefaultArguments(D); |
| 228 | } |
| 229 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 230 | return BuildCXXNamedCast(OpLoc, Kind, TInfo, E, |
John McCall | c89724c | 2010-01-15 19:13:16 +0000 | [diff] [blame] | 231 | SourceRange(LAngleBracketLoc, RAngleBracketLoc), |
| 232 | SourceRange(LParenLoc, RParenLoc)); |
| 233 | } |
| 234 | |
John McCall | 60d7b3a | 2010-08-24 06:29:42 +0000 | [diff] [blame] | 235 | ExprResult |
John McCall | c89724c | 2010-01-15 19:13:16 +0000 | [diff] [blame] | 236 | Sema::BuildCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind, |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 237 | TypeSourceInfo *DestTInfo, Expr *E, |
John McCall | c89724c | 2010-01-15 19:13:16 +0000 | [diff] [blame] | 238 | SourceRange AngleBrackets, SourceRange Parens) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 239 | ExprResult Ex = Owned(E); |
John McCall | c89724c | 2010-01-15 19:13:16 +0000 | [diff] [blame] | 240 | QualType DestType = DestTInfo->getType(); |
| 241 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 242 | // If the type is dependent, we won't do the semantic analysis now. |
| 243 | // FIXME: should we check this in a more fine-grained manner? |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 244 | bool TypeDependent = DestType->isDependentType() || Ex.get()->isTypeDependent(); |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 245 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 246 | CastOperation Op(*this, DestType, E); |
| 247 | Op.OpRange = SourceRange(OpLoc, Parens.getEnd()); |
| 248 | Op.DestRange = AngleBrackets; |
John McCall | a21e06c | 2010-11-26 10:57:22 +0000 | [diff] [blame] | 249 | |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 250 | switch (Kind) { |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 251 | default: llvm_unreachable("Unknown C++ cast!"); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 252 | |
| 253 | case tok::kw_const_cast: |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 254 | if (!TypeDependent) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 255 | Op.CheckConstCast(); |
| 256 | if (Op.SrcExpr.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 257 | return ExprError(); |
| 258 | } |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 259 | return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, |
| 260 | Op.ValueKind, Op.SrcExpr.take(), DestTInfo, |
Fariborz Jahanian | f799ae1 | 2013-02-22 22:02:53 +0000 | [diff] [blame^] | 261 | OpLoc, Parens.getEnd(), |
| 262 | AngleBrackets)); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 263 | |
Anders Carlsson | 714179b | 2009-08-02 19:07:59 +0000 | [diff] [blame] | 264 | case tok::kw_dynamic_cast: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 265 | if (!TypeDependent) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 266 | Op.CheckDynamicCast(); |
| 267 | if (Op.SrcExpr.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 268 | return ExprError(); |
| 269 | } |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 270 | return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType, |
| 271 | Op.ValueKind, Op.Kind, Op.SrcExpr.take(), |
| 272 | &Op.BasePath, DestTInfo, |
Fariborz Jahanian | f799ae1 | 2013-02-22 22:02:53 +0000 | [diff] [blame^] | 273 | OpLoc, Parens.getEnd(), |
| 274 | AngleBrackets)); |
Anders Carlsson | 714179b | 2009-08-02 19:07:59 +0000 | [diff] [blame] | 275 | } |
Anders Carlsson | 7f9e646 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 276 | case tok::kw_reinterpret_cast: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 277 | if (!TypeDependent) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 278 | Op.CheckReinterpretCast(); |
| 279 | if (Op.SrcExpr.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 280 | return ExprError(); |
| 281 | } |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 282 | return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, |
| 283 | Op.ValueKind, Op.Kind, Op.SrcExpr.take(), |
| 284 | 0, DestTInfo, OpLoc, |
Fariborz Jahanian | f799ae1 | 2013-02-22 22:02:53 +0000 | [diff] [blame^] | 285 | Parens.getEnd(), |
| 286 | AngleBrackets)); |
Anders Carlsson | 7f9e646 | 2009-09-15 04:48:33 +0000 | [diff] [blame] | 287 | } |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 288 | case tok::kw_static_cast: { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 289 | if (!TypeDependent) { |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 290 | Op.CheckStaticCast(); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 291 | if (Op.SrcExpr.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 292 | return ExprError(); |
| 293 | } |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 294 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 295 | return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType, |
| 296 | Op.ValueKind, Op.Kind, Op.SrcExpr.take(), |
| 297 | &Op.BasePath, DestTInfo, |
Fariborz Jahanian | f799ae1 | 2013-02-22 22:02:53 +0000 | [diff] [blame^] | 298 | OpLoc, Parens.getEnd(), |
| 299 | AngleBrackets)); |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 300 | } |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 301 | } |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 302 | } |
| 303 | |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 304 | /// Try to diagnose a failed overloaded cast. Returns true if |
| 305 | /// diagnostics were emitted. |
| 306 | static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT, |
| 307 | SourceRange range, Expr *src, |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 308 | QualType destType, |
| 309 | bool listInitialization) { |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 310 | switch (CT) { |
| 311 | // These cast kinds don't consider user-defined conversions. |
| 312 | case CT_Const: |
| 313 | case CT_Reinterpret: |
| 314 | case CT_Dynamic: |
| 315 | return false; |
| 316 | |
| 317 | // These do. |
| 318 | case CT_Static: |
| 319 | case CT_CStyle: |
| 320 | case CT_Functional: |
| 321 | break; |
| 322 | } |
| 323 | |
| 324 | QualType srcType = src->getType(); |
| 325 | if (!destType->isRecordType() && !srcType->isRecordType()) |
| 326 | return false; |
| 327 | |
| 328 | InitializedEntity entity = InitializedEntity::InitializeTemporary(destType); |
| 329 | InitializationKind initKind |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 330 | = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(), |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 331 | range, listInitialization) |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 332 | : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range, |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 333 | listInitialization) |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 334 | : InitializationKind::CreateCast(/*type range?*/ range); |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 335 | InitializationSequence sequence(S, entity, initKind, &src, 1); |
| 336 | |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 337 | assert(sequence.Failed() && "initialization succeeded on second try?"); |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 338 | switch (sequence.getFailureKind()) { |
| 339 | default: return false; |
| 340 | |
| 341 | case InitializationSequence::FK_ConstructorOverloadFailed: |
| 342 | case InitializationSequence::FK_UserConversionOverloadFailed: |
| 343 | break; |
| 344 | } |
| 345 | |
| 346 | OverloadCandidateSet &candidates = sequence.getFailedCandidateSet(); |
| 347 | |
| 348 | unsigned msg = 0; |
| 349 | OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates; |
| 350 | |
| 351 | switch (sequence.getFailedOverloadResult()) { |
| 352 | case OR_Success: llvm_unreachable("successful failed overload"); |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 353 | case OR_No_Viable_Function: |
| 354 | if (candidates.empty()) |
| 355 | msg = diag::err_ovl_no_conversion_in_cast; |
| 356 | else |
| 357 | msg = diag::err_ovl_no_viable_conversion_in_cast; |
| 358 | howManyCandidates = OCD_AllCandidates; |
| 359 | break; |
| 360 | |
| 361 | case OR_Ambiguous: |
| 362 | msg = diag::err_ovl_ambiguous_conversion_in_cast; |
| 363 | howManyCandidates = OCD_ViableCandidates; |
| 364 | break; |
| 365 | |
| 366 | case OR_Deleted: |
| 367 | msg = diag::err_ovl_deleted_conversion_in_cast; |
| 368 | howManyCandidates = OCD_ViableCandidates; |
| 369 | break; |
| 370 | } |
| 371 | |
| 372 | S.Diag(range.getBegin(), msg) |
| 373 | << CT << srcType << destType |
| 374 | << range << src->getSourceRange(); |
| 375 | |
Ahmed Charles | 13a140c | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 376 | candidates.NoteCandidates(S, howManyCandidates, src); |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 377 | |
| 378 | return true; |
| 379 | } |
| 380 | |
| 381 | /// Diagnose a failed cast. |
| 382 | static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType, |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 383 | SourceRange opRange, Expr *src, QualType destType, |
| 384 | bool listInitialization) { |
John McCall | 864c041 | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 385 | if (src->getType() == S.Context.BoundMemberTy) { |
| 386 | (void) S.CheckPlaceholderExpr(src); // will always fail |
| 387 | return; |
| 388 | } |
| 389 | |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 390 | if (msg == diag::err_bad_cxx_cast_generic && |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 391 | tryDiagnoseOverloadedCast(S, castType, opRange, src, destType, |
| 392 | listInitialization)) |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 393 | return; |
| 394 | |
| 395 | S.Diag(opRange.getBegin(), msg) << castType |
| 396 | << src->getType() << destType << opRange << src->getSourceRange(); |
| 397 | } |
| 398 | |
Sebastian Redl | 76d69bb | 2009-11-18 18:10:53 +0000 | [diff] [blame] | 399 | /// UnwrapDissimilarPointerTypes - Like Sema::UnwrapSimilarPointerTypes, |
| 400 | /// this removes one level of indirection from both types, provided that they're |
| 401 | /// the same kind of pointer (plain or to-member). Unlike the Sema function, |
| 402 | /// this one doesn't care if the two pointers-to-member don't point into the |
| 403 | /// same class. This is because CastsAwayConstness doesn't care. |
Dan Gohman | 3c46e8d | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 404 | static bool UnwrapDissimilarPointerTypes(QualType& T1, QualType& T2) { |
Sebastian Redl | 76d69bb | 2009-11-18 18:10:53 +0000 | [diff] [blame] | 405 | const PointerType *T1PtrType = T1->getAs<PointerType>(), |
| 406 | *T2PtrType = T2->getAs<PointerType>(); |
| 407 | if (T1PtrType && T2PtrType) { |
| 408 | T1 = T1PtrType->getPointeeType(); |
| 409 | T2 = T2PtrType->getPointeeType(); |
| 410 | return true; |
| 411 | } |
Fariborz Jahanian | 72a8659 | 2010-02-03 20:32:31 +0000 | [diff] [blame] | 412 | const ObjCObjectPointerType *T1ObjCPtrType = |
| 413 | T1->getAs<ObjCObjectPointerType>(), |
| 414 | *T2ObjCPtrType = |
| 415 | T2->getAs<ObjCObjectPointerType>(); |
| 416 | if (T1ObjCPtrType) { |
| 417 | if (T2ObjCPtrType) { |
| 418 | T1 = T1ObjCPtrType->getPointeeType(); |
| 419 | T2 = T2ObjCPtrType->getPointeeType(); |
| 420 | return true; |
| 421 | } |
| 422 | else if (T2PtrType) { |
| 423 | T1 = T1ObjCPtrType->getPointeeType(); |
| 424 | T2 = T2PtrType->getPointeeType(); |
| 425 | return true; |
| 426 | } |
| 427 | } |
| 428 | else if (T2ObjCPtrType) { |
| 429 | if (T1PtrType) { |
| 430 | T2 = T2ObjCPtrType->getPointeeType(); |
| 431 | T1 = T1PtrType->getPointeeType(); |
| 432 | return true; |
| 433 | } |
| 434 | } |
| 435 | |
Sebastian Redl | 76d69bb | 2009-11-18 18:10:53 +0000 | [diff] [blame] | 436 | const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(), |
| 437 | *T2MPType = T2->getAs<MemberPointerType>(); |
| 438 | if (T1MPType && T2MPType) { |
| 439 | T1 = T1MPType->getPointeeType(); |
| 440 | T2 = T2MPType->getPointeeType(); |
| 441 | return true; |
| 442 | } |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 443 | |
| 444 | const BlockPointerType *T1BPType = T1->getAs<BlockPointerType>(), |
| 445 | *T2BPType = T2->getAs<BlockPointerType>(); |
| 446 | if (T1BPType && T2BPType) { |
| 447 | T1 = T1BPType->getPointeeType(); |
| 448 | T2 = T2BPType->getPointeeType(); |
| 449 | return true; |
| 450 | } |
| 451 | |
Sebastian Redl | 76d69bb | 2009-11-18 18:10:53 +0000 | [diff] [blame] | 452 | return false; |
| 453 | } |
| 454 | |
Sebastian Redl | db64728 | 2009-01-27 23:18:31 +0000 | [diff] [blame] | 455 | /// CastsAwayConstness - Check if the pointer conversion from SrcType to |
| 456 | /// DestType casts away constness as defined in C++ 5.2.11p8ff. This is used by |
| 457 | /// the cast checkers. Both arguments must denote pointer (possibly to member) |
| 458 | /// types. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 459 | /// |
| 460 | /// \param CheckCVR Whether to check for const/volatile/restrict qualifiers. |
| 461 | /// |
| 462 | /// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers. |
Sebastian Redl | 5ed66f7 | 2009-10-22 15:07:22 +0000 | [diff] [blame] | 463 | static bool |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 464 | CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType, |
| 465 | bool CheckCVR, bool CheckObjCLifetime) { |
| 466 | // If the only checking we care about is for Objective-C lifetime qualifiers, |
| 467 | // and we're not in ARC mode, there's nothing to check. |
| 468 | if (!CheckCVR && CheckObjCLifetime && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 469 | !Self.Context.getLangOpts().ObjCAutoRefCount) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 470 | return false; |
| 471 | |
Sebastian Redl | db64728 | 2009-01-27 23:18:31 +0000 | [diff] [blame] | 472 | // Casting away constness is defined in C++ 5.2.11p8 with reference to |
| 473 | // C++ 4.4. We piggyback on Sema::IsQualificationConversion for this, since |
| 474 | // the rules are non-trivial. So first we construct Tcv *...cv* as described |
| 475 | // in C++ 5.2.11p8. |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 476 | assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() || |
| 477 | SrcType->isBlockPointerType()) && |
Sebastian Redl | db64728 | 2009-01-27 23:18:31 +0000 | [diff] [blame] | 478 | "Source type is not pointer or pointer to member."); |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 479 | assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() || |
| 480 | DestType->isBlockPointerType()) && |
Sebastian Redl | db64728 | 2009-01-27 23:18:31 +0000 | [diff] [blame] | 481 | "Destination type is not pointer or pointer to member."); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 482 | |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 483 | QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType), |
| 484 | UnwrappedDestType = Self.Context.getCanonicalType(DestType); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 485 | SmallVector<Qualifiers, 8> cv1, cv2; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 486 | |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 487 | // Find the qualifiers. We only care about cvr-qualifiers for the |
| 488 | // purpose of this check, because other qualifiers (address spaces, |
| 489 | // Objective-C GC, etc.) are part of the type's identity. |
Sebastian Redl | 76d69bb | 2009-11-18 18:10:53 +0000 | [diff] [blame] | 490 | while (UnwrapDissimilarPointerTypes(UnwrappedSrcType, UnwrappedDestType)) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 491 | // Determine the relevant qualifiers at this level. |
| 492 | Qualifiers SrcQuals, DestQuals; |
Anders Carlsson | 52647c6 | 2010-06-04 22:47:55 +0000 | [diff] [blame] | 493 | Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals); |
Anders Carlsson | 52647c6 | 2010-06-04 22:47:55 +0000 | [diff] [blame] | 494 | Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 495 | |
| 496 | Qualifiers RetainedSrcQuals, RetainedDestQuals; |
| 497 | if (CheckCVR) { |
| 498 | RetainedSrcQuals.setCVRQualifiers(SrcQuals.getCVRQualifiers()); |
| 499 | RetainedDestQuals.setCVRQualifiers(DestQuals.getCVRQualifiers()); |
| 500 | } |
| 501 | |
| 502 | if (CheckObjCLifetime && |
| 503 | !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals)) |
| 504 | return true; |
| 505 | |
| 506 | cv1.push_back(RetainedSrcQuals); |
| 507 | cv2.push_back(RetainedDestQuals); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 508 | } |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 509 | if (cv1.empty()) |
| 510 | return false; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 511 | |
| 512 | // Construct void pointers with those qualifiers (in reverse order of |
| 513 | // unwrapping, of course). |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 514 | QualType SrcConstruct = Self.Context.VoidTy; |
| 515 | QualType DestConstruct = Self.Context.VoidTy; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 516 | ASTContext &Context = Self.Context; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 517 | for (SmallVector<Qualifiers, 8>::reverse_iterator i1 = cv1.rbegin(), |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 518 | i2 = cv2.rbegin(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 519 | i1 != cv1.rend(); ++i1, ++i2) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 520 | SrcConstruct |
| 521 | = Context.getPointerType(Context.getQualifiedType(SrcConstruct, *i1)); |
| 522 | DestConstruct |
| 523 | = Context.getPointerType(Context.getQualifiedType(DestConstruct, *i2)); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | // Test if they're compatible. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 527 | bool ObjCLifetimeConversion; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 528 | return SrcConstruct != DestConstruct && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 529 | !Self.IsQualificationConversion(SrcConstruct, DestConstruct, false, |
| 530 | ObjCLifetimeConversion); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 533 | /// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid. |
| 534 | /// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime- |
| 535 | /// checked downcasts in class hierarchies. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 536 | void CastOperation::CheckDynamicCast() { |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 537 | if (ValueKind == VK_RValue) |
Eli Friedman | 7a420df | 2011-10-31 20:59:03 +0000 | [diff] [blame] | 538 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 539 | else if (isPlaceholder()) |
| 540 | SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take()); |
| 541 | if (SrcExpr.isInvalid()) // if conversion failed, don't report another error |
| 542 | return; |
Eli Friedman | 7a420df | 2011-10-31 20:59:03 +0000 | [diff] [blame] | 543 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 544 | QualType OrigSrcType = SrcExpr.get()->getType(); |
| 545 | QualType DestType = Self.Context.getCanonicalType(this->DestType); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 546 | |
| 547 | // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type, |
| 548 | // or "pointer to cv void". |
| 549 | |
| 550 | QualType DestPointee; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 551 | const PointerType *DestPointer = DestType->getAs<PointerType>(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 552 | const ReferenceType *DestReference = 0; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 553 | if (DestPointer) { |
| 554 | DestPointee = DestPointer->getPointeeType(); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 555 | } else if ((DestReference = DestType->getAs<ReferenceType>())) { |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 556 | DestPointee = DestReference->getPointeeType(); |
| 557 | } else { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 558 | Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 559 | << this->DestType << DestRange; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 560 | return; |
| 561 | } |
| 562 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 563 | const RecordType *DestRecord = DestPointee->getAs<RecordType>(); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 564 | if (DestPointee->isVoidType()) { |
| 565 | assert(DestPointer && "Reference to void is not possible"); |
| 566 | } else if (DestRecord) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 567 | if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 568 | diag::err_bad_dynamic_cast_incomplete, |
| 569 | DestRange)) |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 570 | return; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 571 | } else { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 572 | Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 573 | << DestPointee.getUnqualifiedType() << DestRange; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 574 | return; |
| 575 | } |
| 576 | |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 577 | // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to |
| 578 | // complete class type, [...]. If T is an lvalue reference type, v shall be |
Douglas Gregor | dc843f2 | 2011-01-22 00:06:57 +0000 | [diff] [blame] | 579 | // an lvalue of a complete class type, [...]. If T is an rvalue reference |
| 580 | // type, v shall be an expression having a complete class type, [...] |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 581 | QualType SrcType = Self.Context.getCanonicalType(OrigSrcType); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 582 | QualType SrcPointee; |
| 583 | if (DestPointer) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 584 | if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) { |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 585 | SrcPointee = SrcPointer->getPointeeType(); |
| 586 | } else { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 587 | Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 588 | << OrigSrcType << SrcExpr.get()->getSourceRange(); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 589 | return; |
| 590 | } |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 591 | } else if (DestReference->isLValueReferenceType()) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 592 | if (!SrcExpr.get()->isLValue()) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 593 | Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 594 | << CT_Dynamic << OrigSrcType << this->DestType << OpRange; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 595 | } |
| 596 | SrcPointee = SrcType; |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 597 | } else { |
| 598 | SrcPointee = SrcType; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 599 | } |
| 600 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 601 | const RecordType *SrcRecord = SrcPointee->getAs<RecordType>(); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 602 | if (SrcRecord) { |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 603 | if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee, |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 604 | diag::err_bad_dynamic_cast_incomplete, |
| 605 | SrcExpr.get())) |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 606 | return; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 607 | } else { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 608 | Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 609 | << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange(); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 610 | return; |
| 611 | } |
| 612 | |
| 613 | assert((DestPointer || DestReference) && |
| 614 | "Bad destination non-ptr/ref slipped through."); |
| 615 | assert((DestRecord || DestPointee->isVoidType()) && |
| 616 | "Bad destination pointee slipped through."); |
| 617 | assert(SrcRecord && "Bad source pointee slipped through."); |
| 618 | |
| 619 | // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness. |
| 620 | if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) { |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 621 | Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 622 | << CT_Dynamic << OrigSrcType << this->DestType << OpRange; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 623 | return; |
| 624 | } |
| 625 | |
| 626 | // C++ 5.2.7p3: If the type of v is the same as the required result type, |
| 627 | // [except for cv]. |
| 628 | if (DestRecord == SrcRecord) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 629 | Kind = CK_NoOp; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 630 | return; |
| 631 | } |
| 632 | |
| 633 | // C++ 5.2.7p5 |
| 634 | // Upcasts are resolved statically. |
Sebastian Redl | 37d6de3 | 2008-11-08 13:00:26 +0000 | [diff] [blame] | 635 | if (DestRecord && Self.IsDerivedFrom(SrcPointee, DestPointee)) { |
Anders Carlsson | 5cf86ba | 2010-04-24 19:06:50 +0000 | [diff] [blame] | 636 | if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee, |
| 637 | OpRange.getBegin(), OpRange, |
| 638 | &BasePath)) |
| 639 | return; |
| 640 | |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 641 | Kind = CK_DerivedToBase; |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 642 | |
| 643 | // If we are casting to or through a virtual base class, we need a |
| 644 | // vtable. |
| 645 | if (Self.BasePathInvolvesVirtualBase(BasePath)) |
| 646 | Self.MarkVTableUsed(OpRange.getBegin(), |
| 647 | cast<CXXRecordDecl>(SrcRecord->getDecl())); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 648 | return; |
| 649 | } |
| 650 | |
| 651 | // C++ 5.2.7p6: Otherwise, v shall be [polymorphic]. |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 652 | const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition(); |
Sebastian Redl | d93f0dd | 2008-11-06 15:59:35 +0000 | [diff] [blame] | 653 | assert(SrcDecl && "Definition missing"); |
| 654 | if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 655 | Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 656 | << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange(); |
Sebastian Redl | d93f0dd | 2008-11-06 15:59:35 +0000 | [diff] [blame] | 657 | } |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 658 | Self.MarkVTableUsed(OpRange.getBegin(), |
| 659 | cast<CXXRecordDecl>(SrcRecord->getDecl())); |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 660 | |
| 661 | // Done. Everything else is run-time checks. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 662 | Kind = CK_Dynamic; |
Sebastian Redl | 26d85b1 | 2008-11-05 21:50:06 +0000 | [diff] [blame] | 663 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 664 | |
| 665 | /// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid. |
| 666 | /// Refer to C++ 5.2.11 for details. const_cast is typically used in code |
| 667 | /// like this: |
| 668 | /// const char *str = "literal"; |
| 669 | /// legacy_function(const_cast\<char*\>(str)); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 670 | void CastOperation::CheckConstCast() { |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 671 | if (ValueKind == VK_RValue) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 672 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 673 | else if (isPlaceholder()) |
| 674 | SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take()); |
| 675 | if (SrcExpr.isInvalid()) // if conversion failed, don't report another error |
| 676 | return; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 677 | |
| 678 | unsigned msg = diag::err_bad_cxx_cast_generic; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 679 | if (TryConstCast(Self, SrcExpr.get(), DestType, /*CStyle*/false, msg) != TC_Success |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 680 | && msg != 0) |
| 681 | Self.Diag(OpRange.getBegin(), msg) << CT_Const |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 682 | << SrcExpr.get()->getType() << DestType << OpRange; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | /// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is |
| 686 | /// valid. |
| 687 | /// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code |
| 688 | /// like this: |
| 689 | /// char *bytes = reinterpret_cast\<char*\>(int_ptr); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 690 | void CastOperation::CheckReinterpretCast() { |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 691 | if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload)) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 692 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
Eli Friedman | ed0b31f | 2012-01-12 00:44:34 +0000 | [diff] [blame] | 693 | else |
| 694 | checkNonOverloadPlaceholders(); |
| 695 | if (SrcExpr.isInvalid()) // if conversion failed, don't report another error |
| 696 | return; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 697 | |
| 698 | unsigned msg = diag::err_bad_cxx_cast_generic; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 699 | TryCastResult tcr = |
| 700 | TryReinterpretCast(Self, SrcExpr, DestType, |
| 701 | /*CStyle*/false, OpRange, msg, Kind); |
| 702 | if (tcr != TC_Success && msg != 0) |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 703 | { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 704 | if (SrcExpr.isInvalid()) // if conversion failed, don't report another error |
| 705 | return; |
| 706 | if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 707 | //FIXME: &f<int>; is overloaded and resolvable |
| 708 | Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 709 | << OverloadExpr::find(SrcExpr.get()).Expression->getName() |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 710 | << DestType << OpRange; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 711 | Self.NoteAllOverloadCandidates(SrcExpr.get()); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 712 | |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 713 | } else { |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 714 | diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(), |
| 715 | DestType, /*listInitialization=*/false); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 716 | } |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 717 | } else if (tcr == TC_Success && Self.getLangOpts().ObjCAutoRefCount) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 718 | checkObjCARCConversion(Sema::CCK_OtherCast); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 719 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | |
| 723 | /// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid. |
| 724 | /// Refer to C++ 5.2.9 for details. Static casts are mostly used for making |
| 725 | /// implicit conversions explicit and getting rid of data loss warnings. |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 726 | void CastOperation::CheckStaticCast() { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 727 | if (isPlaceholder()) { |
| 728 | checkNonOverloadPlaceholders(); |
| 729 | if (SrcExpr.isInvalid()) |
| 730 | return; |
| 731 | } |
| 732 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 733 | // This test is outside everything else because it's the only case where |
| 734 | // a non-lvalue-reference target type does not lead to decay. |
| 735 | // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". |
Eli Friedman | 05d9d7a | 2009-11-16 05:44:20 +0000 | [diff] [blame] | 736 | if (DestType->isVoidType()) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 737 | Kind = CK_ToVoid; |
| 738 | |
| 739 | if (claimPlaceholder(BuiltinType::Overload)) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 740 | Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr, |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 741 | false, // Decay Function to ptr |
| 742 | true, // Complain |
| 743 | OpRange, DestType, diag::err_bad_static_cast_overload); |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 744 | if (SrcExpr.isInvalid()) |
| 745 | return; |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 746 | } |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 747 | |
| 748 | SrcExpr = Self.IgnoredValueConversions(SrcExpr.take()); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 749 | return; |
Eli Friedman | 05d9d7a | 2009-11-16 05:44:20 +0000 | [diff] [blame] | 750 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 751 | |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 752 | if (ValueKind == VK_RValue && !DestType->isRecordType() && |
| 753 | !isPlaceholder(BuiltinType::Overload)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 754 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
| 755 | if (SrcExpr.isInvalid()) // if conversion failed, don't report another error |
| 756 | return; |
| 757 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 758 | |
| 759 | unsigned msg = diag::err_bad_cxx_cast_generic; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 760 | TryCastResult tcr |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 761 | = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 762 | Kind, BasePath, /*ListInitialization=*/false); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 763 | if (tcr != TC_Success && msg != 0) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 764 | if (SrcExpr.isInvalid()) |
| 765 | return; |
| 766 | if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { |
| 767 | OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression; |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 768 | Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload) |
Douglas Gregor | 4c9be89 | 2011-02-28 20:01:57 +0000 | [diff] [blame] | 769 | << oe->getName() << DestType << OpRange |
| 770 | << oe->getQualifierLoc().getSourceRange(); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 771 | Self.NoteAllOverloadCandidates(SrcExpr.get()); |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 772 | } else { |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 773 | diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType, |
| 774 | /*listInitialization=*/false); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 775 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 776 | } else if (tcr == TC_Success) { |
| 777 | if (Kind == CK_BitCast) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 778 | checkCastAlign(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 779 | if (Self.getLangOpts().ObjCAutoRefCount) |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 780 | checkObjCARCConversion(Sema::CCK_OtherCast); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 781 | } else if (Kind == CK_BitCast) { |
| 782 | checkCastAlign(); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 783 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | /// TryStaticCast - Check if a static cast can be performed, and do so if |
| 787 | /// possible. If @p CStyle, ignore access restrictions on hierarchy casting |
| 788 | /// and casting away constness. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 789 | static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 790 | QualType DestType, |
| 791 | Sema::CheckedConversionKind CCK, |
Anders Carlsson | cb3c308 | 2009-09-01 20:52:42 +0000 | [diff] [blame] | 792 | const SourceRange &OpRange, unsigned &msg, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 793 | CastKind &Kind, CXXCastPath &BasePath, |
| 794 | bool ListInitialization) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 795 | // Determine whether we have the semantics of a C-style cast. |
| 796 | bool CStyle |
| 797 | = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast); |
| 798 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 799 | // The order the tests is not entirely arbitrary. There is one conversion |
| 800 | // that can be handled in two different ways. Given: |
| 801 | // struct A {}; |
| 802 | // struct B : public A { |
| 803 | // B(); B(const A&); |
| 804 | // }; |
| 805 | // const A &a = B(); |
| 806 | // the cast static_cast<const B&>(a) could be seen as either a static |
| 807 | // reference downcast, or an explicit invocation of the user-defined |
| 808 | // conversion using B's conversion constructor. |
| 809 | // DR 427 specifies that the downcast is to be applied here. |
| 810 | |
| 811 | // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". |
| 812 | // Done outside this function. |
| 813 | |
| 814 | TryCastResult tcr; |
| 815 | |
| 816 | // C++ 5.2.9p5, reference downcast. |
| 817 | // See the function for details. |
| 818 | // DR 427 specifies that this is to be applied before paragraph 2. |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 819 | tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle, |
| 820 | OpRange, msg, Kind, BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 821 | if (tcr != TC_NotApplicable) |
| 822 | return tcr; |
| 823 | |
Douglas Gregor | dc843f2 | 2011-01-22 00:06:57 +0000 | [diff] [blame] | 824 | // C++0x [expr.static.cast]p3: |
| 825 | // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2 |
| 826 | // T2" if "cv2 T2" is reference-compatible with "cv1 T1". |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 827 | tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind, |
| 828 | BasePath, msg); |
Douglas Gregor | 88b22a4 | 2011-01-25 16:13:26 +0000 | [diff] [blame] | 829 | if (tcr != TC_NotApplicable) |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 830 | return tcr; |
| 831 | |
| 832 | // C++ 5.2.9p2: An expression e can be explicitly converted to a type T |
| 833 | // [...] if the declaration "T t(e);" is well-formed, [...]. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 834 | tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 835 | Kind, ListInitialization); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 836 | if (SrcExpr.isInvalid()) |
| 837 | return TC_Failed; |
Anders Carlsson | 3c31a39 | 2009-09-26 00:12:34 +0000 | [diff] [blame] | 838 | if (tcr != TC_NotApplicable) |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 839 | return tcr; |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 840 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 841 | // C++ 5.2.9p6: May apply the reverse of any standard conversion, except |
| 842 | // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean |
| 843 | // conversions, subject to further restrictions. |
| 844 | // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal |
| 845 | // of qualification conversions impossible. |
| 846 | // In the CStyle case, the earlier attempt to const_cast should have taken |
| 847 | // care of reverse qualification conversions. |
| 848 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 849 | QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType()); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 850 | |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 851 | // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly |
Douglas Gregor | 1e856d9 | 2011-02-18 03:01:41 +0000 | [diff] [blame] | 852 | // converted to an integral type. [...] A value of a scoped enumeration type |
| 853 | // can also be explicitly converted to a floating-point type [...]. |
| 854 | if (const EnumType *Enum = SrcType->getAs<EnumType>()) { |
| 855 | if (Enum->getDecl()->isScoped()) { |
| 856 | if (DestType->isBooleanType()) { |
| 857 | Kind = CK_IntegralToBoolean; |
| 858 | return TC_Success; |
| 859 | } else if (DestType->isIntegralType(Self.Context)) { |
| 860 | Kind = CK_IntegralCast; |
| 861 | return TC_Success; |
| 862 | } else if (DestType->isRealFloatingType()) { |
| 863 | Kind = CK_IntegralToFloating; |
| 864 | return TC_Success; |
| 865 | } |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 866 | } |
| 867 | } |
Douglas Gregor | 1e856d9 | 2011-02-18 03:01:41 +0000 | [diff] [blame] | 868 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 869 | // Reverse integral promotion/conversion. All such conversions are themselves |
| 870 | // again integral promotions or conversions and are thus already handled by |
| 871 | // p2 (TryDirectInitialization above). |
| 872 | // (Note: any data loss warnings should be suppressed.) |
| 873 | // The exception is the reverse of enum->integer, i.e. integer->enum (and |
| 874 | // enum->enum). See also C++ 5.2.9p7. |
| 875 | // The same goes for reverse floating point promotion/conversion and |
| 876 | // floating-integral conversions. Again, only floating->enum is relevant. |
| 877 | if (DestType->isEnumeralType()) { |
Eli Friedman | cc2fca2 | 2011-09-02 17:38:59 +0000 | [diff] [blame] | 878 | if (SrcType->isIntegralOrEnumerationType()) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 879 | Kind = CK_IntegralCast; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 880 | return TC_Success; |
Eli Friedman | cc2fca2 | 2011-09-02 17:38:59 +0000 | [diff] [blame] | 881 | } else if (SrcType->isRealFloatingType()) { |
| 882 | Kind = CK_FloatingToIntegral; |
| 883 | return TC_Success; |
Eli Friedman | 05d9d7a | 2009-11-16 05:44:20 +0000 | [diff] [blame] | 884 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast. |
| 888 | // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance. |
Anders Carlsson | 95c5d8a | 2009-11-12 16:53:16 +0000 | [diff] [blame] | 889 | tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg, |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 890 | Kind, BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 891 | if (tcr != TC_NotApplicable) |
| 892 | return tcr; |
| 893 | |
| 894 | // Reverse member pointer conversion. C++ 4.11 specifies member pointer |
| 895 | // conversion. C++ 5.2.9p9 has additional information. |
| 896 | // DR54's access restrictions apply here also. |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 897 | tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle, |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 898 | OpRange, msg, Kind, BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 899 | if (tcr != TC_NotApplicable) |
| 900 | return tcr; |
| 901 | |
| 902 | // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to |
| 903 | // void*. C++ 5.2.9p10 specifies additional restrictions, which really is |
| 904 | // just the usual constness stuff. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 905 | if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 906 | QualType SrcPointee = SrcPointer->getPointeeType(); |
| 907 | if (SrcPointee->isVoidType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 908 | if (const PointerType *DestPointer = DestType->getAs<PointerType>()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 909 | QualType DestPointee = DestPointer->getPointeeType(); |
| 910 | if (DestPointee->isIncompleteOrObjectType()) { |
| 911 | // This is definitely the intended conversion, but it might fail due |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 912 | // to a qualifier violation. Note that we permit Objective-C lifetime |
| 913 | // and GC qualifier mismatches here. |
| 914 | if (!CStyle) { |
| 915 | Qualifiers DestPointeeQuals = DestPointee.getQualifiers(); |
| 916 | Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers(); |
| 917 | DestPointeeQuals.removeObjCGCAttr(); |
| 918 | DestPointeeQuals.removeObjCLifetime(); |
| 919 | SrcPointeeQuals.removeObjCGCAttr(); |
| 920 | SrcPointeeQuals.removeObjCLifetime(); |
| 921 | if (DestPointeeQuals != SrcPointeeQuals && |
| 922 | !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) { |
| 923 | msg = diag::err_bad_cxx_cast_qualifiers_away; |
| 924 | return TC_Failed; |
| 925 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 926 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 927 | Kind = CK_BitCast; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 928 | return TC_Success; |
| 929 | } |
| 930 | } |
Fariborz Jahanian | 2f6c550 | 2010-05-10 23:46:53 +0000 | [diff] [blame] | 931 | else if (DestType->isObjCObjectPointerType()) { |
| 932 | // allow both c-style cast and static_cast of objective-c pointers as |
| 933 | // they are pervasive. |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 934 | Kind = CK_CPointerToObjCPointerCast; |
Fariborz Jahanian | 92ef5d7 | 2009-12-08 23:09:15 +0000 | [diff] [blame] | 935 | return TC_Success; |
| 936 | } |
Fariborz Jahanian | 3b27f1a | 2009-12-11 22:40:48 +0000 | [diff] [blame] | 937 | else if (CStyle && DestType->isBlockPointerType()) { |
| 938 | // allow c-style cast of void * to block pointers. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 939 | Kind = CK_AnyPointerToBlockPointerCast; |
Fariborz Jahanian | 3b27f1a | 2009-12-11 22:40:48 +0000 | [diff] [blame] | 940 | return TC_Success; |
| 941 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 942 | } |
| 943 | } |
Fariborz Jahanian | 65267b2 | 2010-05-12 18:16:59 +0000 | [diff] [blame] | 944 | // Allow arbitray objective-c pointer conversion with static casts. |
| 945 | if (SrcType->isObjCObjectPointerType() && |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 946 | DestType->isObjCObjectPointerType()) { |
| 947 | Kind = CK_BitCast; |
Fariborz Jahanian | 65267b2 | 2010-05-12 18:16:59 +0000 | [diff] [blame] | 948 | return TC_Success; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 949 | } |
Fariborz Jahanian | 65267b2 | 2010-05-12 18:16:59 +0000 | [diff] [blame] | 950 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 951 | // We tried everything. Everything! Nothing works! :-( |
| 952 | return TC_NotApplicable; |
| 953 | } |
| 954 | |
| 955 | /// Tests whether a conversion according to N2844 is valid. |
| 956 | TryCastResult |
| 957 | TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, QualType DestType, |
Douglas Gregor | 8ec14e6 | 2011-01-26 21:04:06 +0000 | [diff] [blame] | 958 | bool CStyle, CastKind &Kind, CXXCastPath &BasePath, |
| 959 | unsigned &msg) { |
Douglas Gregor | dc843f2 | 2011-01-22 00:06:57 +0000 | [diff] [blame] | 960 | // C++0x [expr.static.cast]p3: |
| 961 | // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to |
| 962 | // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 963 | const RValueReferenceType *R = DestType->getAs<RValueReferenceType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 964 | if (!R) |
| 965 | return TC_NotApplicable; |
| 966 | |
Douglas Gregor | dc843f2 | 2011-01-22 00:06:57 +0000 | [diff] [blame] | 967 | if (!SrcExpr->isGLValue()) |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 968 | return TC_NotApplicable; |
| 969 | |
| 970 | // Because we try the reference downcast before this function, from now on |
| 971 | // this is the only cast possibility, so we issue an error if we fail now. |
| 972 | // FIXME: Should allow casting away constness if CStyle. |
| 973 | bool DerivedToBase; |
Douglas Gregor | 569c316 | 2010-08-07 11:51:51 +0000 | [diff] [blame] | 974 | bool ObjCConversion; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 975 | bool ObjCLifetimeConversion; |
Douglas Gregor | 8ec14e6 | 2011-01-26 21:04:06 +0000 | [diff] [blame] | 976 | QualType FromType = SrcExpr->getType(); |
| 977 | QualType ToType = R->getPointeeType(); |
| 978 | if (CStyle) { |
| 979 | FromType = FromType.getUnqualifiedType(); |
| 980 | ToType = ToType.getUnqualifiedType(); |
| 981 | } |
| 982 | |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 983 | if (Self.CompareReferenceRelationship(SrcExpr->getLocStart(), |
Douglas Gregor | 8ec14e6 | 2011-01-26 21:04:06 +0000 | [diff] [blame] | 984 | ToType, FromType, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 985 | DerivedToBase, ObjCConversion, |
| 986 | ObjCLifetimeConversion) |
| 987 | < Sema::Ref_Compatible_With_Added_Qualification) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 988 | msg = diag::err_bad_lvalue_to_rvalue_cast; |
| 989 | return TC_Failed; |
| 990 | } |
| 991 | |
Douglas Gregor | 88b22a4 | 2011-01-25 16:13:26 +0000 | [diff] [blame] | 992 | if (DerivedToBase) { |
| 993 | Kind = CK_DerivedToBase; |
| 994 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
| 995 | /*DetectVirtual=*/true); |
| 996 | if (!Self.IsDerivedFrom(SrcExpr->getType(), R->getPointeeType(), Paths)) |
| 997 | return TC_NotApplicable; |
| 998 | |
| 999 | Self.BuildBasePathArray(Paths, BasePath); |
| 1000 | } else |
| 1001 | Kind = CK_NoOp; |
| 1002 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1003 | return TC_Success; |
| 1004 | } |
| 1005 | |
| 1006 | /// Tests whether a conversion according to C++ 5.2.9p5 is valid. |
| 1007 | TryCastResult |
| 1008 | TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType, |
| 1009 | bool CStyle, const SourceRange &OpRange, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1010 | unsigned &msg, CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1011 | CXXCastPath &BasePath) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1012 | // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be |
| 1013 | // cast to type "reference to cv2 D", where D is a class derived from B, |
| 1014 | // if a valid standard conversion from "pointer to D" to "pointer to B" |
| 1015 | // exists, cv2 >= cv1, and B is not a virtual base class of D. |
| 1016 | // In addition, DR54 clarifies that the base must be accessible in the |
| 1017 | // current context. Although the wording of DR54 only applies to the pointer |
| 1018 | // variant of this rule, the intent is clearly for it to apply to the this |
| 1019 | // conversion as well. |
| 1020 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1021 | const ReferenceType *DestReference = DestType->getAs<ReferenceType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1022 | if (!DestReference) { |
| 1023 | return TC_NotApplicable; |
| 1024 | } |
| 1025 | bool RValueRef = DestReference->isRValueReferenceType(); |
John McCall | 7eb0a9e | 2010-11-24 05:12:34 +0000 | [diff] [blame] | 1026 | if (!RValueRef && !SrcExpr->isLValue()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1027 | // We know the left side is an lvalue reference, so we can suggest a reason. |
| 1028 | msg = diag::err_bad_cxx_cast_rvalue; |
| 1029 | return TC_NotApplicable; |
| 1030 | } |
| 1031 | |
| 1032 | QualType DestPointee = DestReference->getPointeeType(); |
| 1033 | |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1034 | return TryStaticDowncast(Self, |
| 1035 | Self.Context.getCanonicalType(SrcExpr->getType()), |
| 1036 | Self.Context.getCanonicalType(DestPointee), CStyle, |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 1037 | OpRange, SrcExpr->getType(), DestType, msg, Kind, |
| 1038 | BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | /// Tests whether a conversion according to C++ 5.2.9p8 is valid. |
| 1042 | TryCastResult |
| 1043 | TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1044 | bool CStyle, const SourceRange &OpRange, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1045 | unsigned &msg, CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1046 | CXXCastPath &BasePath) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1047 | // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class |
| 1048 | // type, can be converted to an rvalue of type "pointer to cv2 D", where D |
| 1049 | // is a class derived from B, if a valid standard conversion from "pointer |
| 1050 | // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base |
| 1051 | // class of D. |
| 1052 | // In addition, DR54 clarifies that the base must be accessible in the |
| 1053 | // current context. |
| 1054 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1055 | const PointerType *DestPointer = DestType->getAs<PointerType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1056 | if (!DestPointer) { |
| 1057 | return TC_NotApplicable; |
| 1058 | } |
| 1059 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1060 | const PointerType *SrcPointer = SrcType->getAs<PointerType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1061 | if (!SrcPointer) { |
| 1062 | msg = diag::err_bad_static_cast_pointer_nonpointer; |
| 1063 | return TC_NotApplicable; |
| 1064 | } |
| 1065 | |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1066 | return TryStaticDowncast(Self, |
| 1067 | Self.Context.getCanonicalType(SrcPointer->getPointeeType()), |
| 1068 | Self.Context.getCanonicalType(DestPointer->getPointeeType()), |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 1069 | CStyle, OpRange, SrcType, DestType, msg, Kind, |
| 1070 | BasePath); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
| 1073 | /// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and |
| 1074 | /// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1075 | /// DestType is possible and allowed. |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1076 | TryCastResult |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1077 | TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1078 | bool CStyle, const SourceRange &OpRange, QualType OrigSrcType, |
Anders Carlsson | 95c5d8a | 2009-11-12 16:53:16 +0000 | [diff] [blame] | 1079 | QualType OrigDestType, unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1080 | CastKind &Kind, CXXCastPath &BasePath) { |
Sebastian Redl | 5ed66f7 | 2009-10-22 15:07:22 +0000 | [diff] [blame] | 1081 | // We can only work with complete types. But don't complain if it doesn't work |
Douglas Gregor | d10099e | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1082 | if (Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0) || |
| 1083 | Self.RequireCompleteType(OpRange.getBegin(), DestType, 0)) |
Sebastian Redl | 5ed66f7 | 2009-10-22 15:07:22 +0000 | [diff] [blame] | 1084 | return TC_NotApplicable; |
| 1085 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1086 | // Downcast can only happen in class hierarchies, so we need classes. |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1087 | if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1088 | return TC_NotApplicable; |
| 1089 | } |
| 1090 | |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 1091 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 1092 | /*DetectVirtual=*/true); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1093 | if (!Self.IsDerivedFrom(DestType, SrcType, Paths)) { |
| 1094 | return TC_NotApplicable; |
| 1095 | } |
| 1096 | |
| 1097 | // Target type does derive from source type. Now we're serious. If an error |
| 1098 | // appears now, it's not ignored. |
| 1099 | // This may not be entirely in line with the standard. Take for example: |
| 1100 | // struct A {}; |
| 1101 | // struct B : virtual A { |
| 1102 | // B(A&); |
| 1103 | // }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1104 | // |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1105 | // void f() |
| 1106 | // { |
| 1107 | // (void)static_cast<const B&>(*((A*)0)); |
| 1108 | // } |
| 1109 | // As far as the standard is concerned, p5 does not apply (A is virtual), so |
| 1110 | // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid. |
| 1111 | // However, both GCC and Comeau reject this example, and accepting it would |
| 1112 | // mean more complex code if we're to preserve the nice error message. |
| 1113 | // FIXME: Being 100% compliant here would be nice to have. |
| 1114 | |
| 1115 | // Must preserve cv, as always, unless we're in C-style mode. |
| 1116 | if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) { |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 1117 | msg = diag::err_bad_cxx_cast_qualifiers_away; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1118 | return TC_Failed; |
| 1119 | } |
| 1120 | |
| 1121 | if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) { |
| 1122 | // This code is analoguous to that in CheckDerivedToBaseConversion, except |
| 1123 | // that it builds the paths in reverse order. |
| 1124 | // To sum up: record all paths to the base and build a nice string from |
| 1125 | // them. Use it to spice up the error message. |
| 1126 | if (!Paths.isRecordingPaths()) { |
| 1127 | Paths.clear(); |
| 1128 | Paths.setRecordingPaths(true); |
| 1129 | Self.IsDerivedFrom(DestType, SrcType, Paths); |
| 1130 | } |
| 1131 | std::string PathDisplayStr; |
| 1132 | std::set<unsigned> DisplayedPaths; |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 1133 | for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1134 | PI != PE; ++PI) { |
| 1135 | if (DisplayedPaths.insert(PI->back().SubobjectNumber).second) { |
| 1136 | // We haven't displayed a path to this particular base |
| 1137 | // class subobject yet. |
| 1138 | PathDisplayStr += "\n "; |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 1139 | for (CXXBasePath::const_reverse_iterator EI = PI->rbegin(), |
| 1140 | EE = PI->rend(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1141 | EI != EE; ++EI) |
| 1142 | PathDisplayStr += EI->Base->getType().getAsString() + " -> "; |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1143 | PathDisplayStr += QualType(DestType).getAsString(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1144 | } |
| 1145 | } |
| 1146 | |
| 1147 | Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast) |
Douglas Gregor | ab15d0e | 2009-11-15 09:20:52 +0000 | [diff] [blame] | 1148 | << QualType(SrcType).getUnqualifiedType() |
| 1149 | << QualType(DestType).getUnqualifiedType() |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1150 | << PathDisplayStr << OpRange; |
| 1151 | msg = 0; |
| 1152 | return TC_Failed; |
| 1153 | } |
| 1154 | |
| 1155 | if (Paths.getDetectedVirtual() != 0) { |
| 1156 | QualType VirtualBase(Paths.getDetectedVirtual(), 0); |
| 1157 | Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual) |
| 1158 | << OrigSrcType << OrigDestType << VirtualBase << OpRange; |
| 1159 | msg = 0; |
| 1160 | return TC_Failed; |
| 1161 | } |
| 1162 | |
John McCall | 417d39f | 2011-02-14 23:21:33 +0000 | [diff] [blame] | 1163 | if (!CStyle) { |
| 1164 | switch (Self.CheckBaseClassAccess(OpRange.getBegin(), |
| 1165 | SrcType, DestType, |
| 1166 | Paths.front(), |
John McCall | 58e6f34 | 2010-03-16 05:22:47 +0000 | [diff] [blame] | 1167 | diag::err_downcast_from_inaccessible_base)) { |
John McCall | 417d39f | 2011-02-14 23:21:33 +0000 | [diff] [blame] | 1168 | case Sema::AR_accessible: |
| 1169 | case Sema::AR_delayed: // be optimistic |
| 1170 | case Sema::AR_dependent: // be optimistic |
| 1171 | break; |
| 1172 | |
| 1173 | case Sema::AR_inaccessible: |
| 1174 | msg = 0; |
| 1175 | return TC_Failed; |
| 1176 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Anders Carlsson | f9d68e1 | 2010-04-24 19:36:51 +0000 | [diff] [blame] | 1179 | Self.BuildBasePathArray(Paths, BasePath); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1180 | Kind = CK_BaseToDerived; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1181 | return TC_Success; |
| 1182 | } |
| 1183 | |
| 1184 | /// TryStaticMemberPointerUpcast - Tests whether a conversion according to |
| 1185 | /// C++ 5.2.9p9 is valid: |
| 1186 | /// |
| 1187 | /// An rvalue of type "pointer to member of D of type cv1 T" can be |
| 1188 | /// converted to an rvalue of type "pointer to member of B of type cv2 T", |
| 1189 | /// where B is a base class of D [...]. |
| 1190 | /// |
| 1191 | TryCastResult |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1192 | TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType, |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1193 | QualType DestType, bool CStyle, |
| 1194 | const SourceRange &OpRange, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1195 | unsigned &msg, CastKind &Kind, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 1196 | CXXCastPath &BasePath) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1197 | const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1198 | if (!DestMemPtr) |
| 1199 | return TC_NotApplicable; |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1200 | |
| 1201 | bool WasOverloadedFunction = false; |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1202 | DeclAccessPair FoundOverload; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1203 | if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { |
Douglas Gregor | 1a8cf73 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 1204 | if (FunctionDecl *Fn |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1205 | = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false, |
Douglas Gregor | 1a8cf73 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 1206 | FoundOverload)) { |
| 1207 | CXXMethodDecl *M = cast<CXXMethodDecl>(Fn); |
| 1208 | SrcType = Self.Context.getMemberPointerType(Fn->getType(), |
| 1209 | Self.Context.getTypeDeclType(M->getParent()).getTypePtr()); |
| 1210 | WasOverloadedFunction = true; |
| 1211 | } |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1212 | } |
Douglas Gregor | 1a8cf73 | 2010-04-14 23:11:21 +0000 | [diff] [blame] | 1213 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1214 | const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1215 | if (!SrcMemPtr) { |
| 1216 | msg = diag::err_bad_static_cast_member_pointer_nonmp; |
| 1217 | return TC_NotApplicable; |
| 1218 | } |
| 1219 | |
| 1220 | // T == T, modulo cv |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 1221 | if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(), |
| 1222 | DestMemPtr->getPointeeType())) |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1223 | return TC_NotApplicable; |
| 1224 | |
| 1225 | // B base of D |
| 1226 | QualType SrcClass(SrcMemPtr->getClass(), 0); |
| 1227 | QualType DestClass(DestMemPtr->getClass(), 0); |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 1228 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1229 | /*DetectVirtual=*/true); |
| 1230 | if (!Self.IsDerivedFrom(SrcClass, DestClass, Paths)) { |
| 1231 | return TC_NotApplicable; |
| 1232 | } |
| 1233 | |
| 1234 | // B is a base of D. But is it an allowed base? If not, it's a hard error. |
Douglas Gregor | e0d5fe2 | 2010-05-21 20:29:55 +0000 | [diff] [blame] | 1235 | if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1236 | Paths.clear(); |
| 1237 | Paths.setRecordingPaths(true); |
| 1238 | bool StillOkay = Self.IsDerivedFrom(SrcClass, DestClass, Paths); |
| 1239 | assert(StillOkay); |
Jeffrey Yasskin | c6ed729 | 2010-12-23 01:01:28 +0000 | [diff] [blame] | 1240 | (void)StillOkay; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1241 | std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths); |
| 1242 | Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv) |
| 1243 | << 1 << SrcClass << DestClass << PathDisplayStr << OpRange; |
| 1244 | msg = 0; |
| 1245 | return TC_Failed; |
| 1246 | } |
| 1247 | |
| 1248 | if (const RecordType *VBase = Paths.getDetectedVirtual()) { |
| 1249 | Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual) |
| 1250 | << SrcClass << DestClass << QualType(VBase, 0) << OpRange; |
| 1251 | msg = 0; |
| 1252 | return TC_Failed; |
| 1253 | } |
| 1254 | |
John McCall | 417d39f | 2011-02-14 23:21:33 +0000 | [diff] [blame] | 1255 | if (!CStyle) { |
| 1256 | switch (Self.CheckBaseClassAccess(OpRange.getBegin(), |
| 1257 | DestClass, SrcClass, |
| 1258 | Paths.front(), |
| 1259 | diag::err_upcast_to_inaccessible_base)) { |
| 1260 | case Sema::AR_accessible: |
| 1261 | case Sema::AR_delayed: |
| 1262 | case Sema::AR_dependent: |
| 1263 | // Optimistically assume that the delayed and dependent cases |
| 1264 | // will work out. |
| 1265 | break; |
| 1266 | |
| 1267 | case Sema::AR_inaccessible: |
| 1268 | msg = 0; |
| 1269 | return TC_Failed; |
| 1270 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1271 | } |
| 1272 | |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1273 | if (WasOverloadedFunction) { |
| 1274 | // Resolve the address of the overloaded function again, this time |
| 1275 | // allowing complaints if something goes wrong. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1276 | FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1277 | DestType, |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1278 | true, |
| 1279 | FoundOverload); |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1280 | if (!Fn) { |
| 1281 | msg = 0; |
| 1282 | return TC_Failed; |
| 1283 | } |
| 1284 | |
John McCall | 6bb8017 | 2010-03-30 21:47:33 +0000 | [diff] [blame] | 1285 | SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1286 | if (!SrcExpr.isUsable()) { |
Douglas Gregor | 4ce46c2 | 2010-03-07 23:24:59 +0000 | [diff] [blame] | 1287 | msg = 0; |
| 1288 | return TC_Failed; |
| 1289 | } |
| 1290 | } |
| 1291 | |
Anders Carlsson | cee2242 | 2010-04-24 19:22:20 +0000 | [diff] [blame] | 1292 | Self.BuildBasePathArray(Paths, BasePath); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1293 | Kind = CK_DerivedToBaseMemberPointer; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1294 | return TC_Success; |
| 1295 | } |
| 1296 | |
| 1297 | /// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2 |
| 1298 | /// is valid: |
| 1299 | /// |
| 1300 | /// An expression e can be explicitly converted to a type T using a |
| 1301 | /// @c static_cast if the declaration "T t(e);" is well-formed [...]. |
| 1302 | TryCastResult |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1303 | TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1304 | Sema::CheckedConversionKind CCK, |
| 1305 | const SourceRange &OpRange, unsigned &msg, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1306 | CastKind &Kind, bool ListInitialization) { |
Anders Carlsson | d851b37 | 2009-09-07 18:25:47 +0000 | [diff] [blame] | 1307 | if (DestType->isRecordType()) { |
| 1308 | if (Self.RequireCompleteType(OpRange.getBegin(), DestType, |
Aaron Ballman | 21eb6d4 | 2012-05-07 00:02:00 +0000 | [diff] [blame] | 1309 | diag::err_bad_dynamic_cast_incomplete) || |
Eli Friedman | 860a319 | 2012-06-16 02:19:17 +0000 | [diff] [blame] | 1310 | Self.RequireNonAbstractType(OpRange.getBegin(), DestType, |
Aaron Ballman | 21eb6d4 | 2012-05-07 00:02:00 +0000 | [diff] [blame] | 1311 | diag::err_allocation_of_abstract_type)) { |
Anders Carlsson | d851b37 | 2009-09-07 18:25:47 +0000 | [diff] [blame] | 1312 | msg = 0; |
| 1313 | return TC_Failed; |
| 1314 | } |
| 1315 | } |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 1316 | |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 1317 | InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType); |
| 1318 | InitializationKind InitKind |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1319 | = (CCK == Sema::CCK_CStyleCast) |
Sebastian Redl | 3a45c0e | 2012-02-12 16:37:36 +0000 | [diff] [blame] | 1320 | ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1321 | ListInitialization) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1322 | : (CCK == Sema::CCK_FunctionalCast) |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1323 | ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization) |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 1324 | : InitializationKind::CreateCast(OpRange); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1325 | Expr *SrcExprRaw = SrcExpr.get(); |
| 1326 | InitializationSequence InitSeq(Self, Entity, InitKind, &SrcExprRaw, 1); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1327 | |
| 1328 | // At this point of CheckStaticCast, if the destination is a reference, |
| 1329 | // or the expression is an overload expression this has to work. |
| 1330 | // There is no other way that works. |
| 1331 | // On the other hand, if we're checking a C-style cast, we've still got |
| 1332 | // the reinterpret_cast way. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1333 | bool CStyle |
| 1334 | = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast); |
Sebastian Redl | 383616c | 2011-06-05 12:23:28 +0000 | [diff] [blame] | 1335 | if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType())) |
Anders Carlsson | 3c31a39 | 2009-09-26 00:12:34 +0000 | [diff] [blame] | 1336 | return TC_NotApplicable; |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 1337 | |
Benjamin Kramer | 5354e77 | 2012-08-23 23:38:35 +0000 | [diff] [blame] | 1338 | ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw); |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 1339 | if (Result.isInvalid()) { |
| 1340 | msg = 0; |
| 1341 | return TC_Failed; |
| 1342 | } |
| 1343 | |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 1344 | if (InitSeq.isConstructorInitialization()) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1345 | Kind = CK_ConstructorConversion; |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 1346 | else |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1347 | Kind = CK_NoOp; |
Douglas Gregor | d6e44a3 | 2010-04-16 22:09:46 +0000 | [diff] [blame] | 1348 | |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1349 | SrcExpr = Result; |
Douglas Gregor | f0e43e5 | 2010-04-16 19:30:02 +0000 | [diff] [blame] | 1350 | return TC_Success; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | /// TryConstCast - See if a const_cast from source to destination is allowed, |
| 1354 | /// and perform it if it is. |
| 1355 | static TryCastResult TryConstCast(Sema &Self, Expr *SrcExpr, QualType DestType, |
| 1356 | bool CStyle, unsigned &msg) { |
| 1357 | DestType = Self.Context.getCanonicalType(DestType); |
| 1358 | QualType SrcType = SrcExpr->getType(); |
Douglas Gregor | 575d2a3 | 2011-01-22 00:19:52 +0000 | [diff] [blame] | 1359 | if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) { |
| 1360 | if (DestTypeTmp->isLValueReferenceType() && !SrcExpr->isLValue()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1361 | // Cannot const_cast non-lvalue to lvalue reference type. But if this |
| 1362 | // is C-style, static_cast might find a way, so we simply suggest a |
| 1363 | // message and tell the parent to keep searching. |
| 1364 | msg = diag::err_bad_cxx_cast_rvalue; |
| 1365 | return TC_NotApplicable; |
| 1366 | } |
| 1367 | |
| 1368 | // C++ 5.2.11p4: An lvalue of type T1 can be [cast] to an lvalue of type T2 |
| 1369 | // [...] if a pointer to T1 can be [cast] to the type pointer to T2. |
| 1370 | DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); |
| 1371 | SrcType = Self.Context.getPointerType(SrcType); |
| 1372 | } |
| 1373 | |
| 1374 | // C++ 5.2.11p5: For a const_cast involving pointers to data members [...] |
| 1375 | // the rules for const_cast are the same as those used for pointers. |
| 1376 | |
John McCall | d425d2b | 2010-05-18 09:35:29 +0000 | [diff] [blame] | 1377 | if (!DestType->isPointerType() && |
| 1378 | !DestType->isMemberPointerType() && |
| 1379 | !DestType->isObjCObjectPointerType()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1380 | // Cannot cast to non-pointer, non-reference type. Note that, if DestType |
| 1381 | // was a reference type, we converted it to a pointer above. |
| 1382 | // The status of rvalue references isn't entirely clear, but it looks like |
| 1383 | // conversion to them is simply invalid. |
| 1384 | // C++ 5.2.11p3: For two pointer types [...] |
| 1385 | if (!CStyle) |
| 1386 | msg = diag::err_bad_const_cast_dest; |
| 1387 | return TC_NotApplicable; |
| 1388 | } |
| 1389 | if (DestType->isFunctionPointerType() || |
| 1390 | DestType->isMemberFunctionPointerType()) { |
| 1391 | // Cannot cast direct function pointers. |
| 1392 | // C++ 5.2.11p2: [...] where T is any object type or the void type [...] |
| 1393 | // T is the ultimate pointee of source and target type. |
| 1394 | if (!CStyle) |
| 1395 | msg = diag::err_bad_const_cast_dest; |
| 1396 | return TC_NotApplicable; |
| 1397 | } |
| 1398 | SrcType = Self.Context.getCanonicalType(SrcType); |
| 1399 | |
| 1400 | // Unwrap the pointers. Ignore qualifiers. Terminate early if the types are |
| 1401 | // completely equal. |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1402 | // C++ 5.2.11p3 describes the core semantics of const_cast. All cv specifiers |
| 1403 | // in multi-level pointers may change, but the level count must be the same, |
| 1404 | // as must be the final pointee type. |
| 1405 | while (SrcType != DestType && |
Douglas Gregor | 5a57efd | 2010-06-09 03:53:18 +0000 | [diff] [blame] | 1406 | Self.Context.UnwrapSimilarPointerTypes(SrcType, DestType)) { |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 1407 | Qualifiers SrcQuals, DestQuals; |
| 1408 | SrcType = Self.Context.getUnqualifiedArrayType(SrcType, SrcQuals); |
| 1409 | DestType = Self.Context.getUnqualifiedArrayType(DestType, DestQuals); |
| 1410 | |
| 1411 | // const_cast is permitted to strip cvr-qualifiers, only. Make sure that |
| 1412 | // the other qualifiers (e.g., address spaces) are identical. |
| 1413 | SrcQuals.removeCVRQualifiers(); |
| 1414 | DestQuals.removeCVRQualifiers(); |
| 1415 | if (SrcQuals != DestQuals) |
| 1416 | return TC_NotApplicable; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | // Since we're dealing in canonical types, the remainder must be the same. |
| 1420 | if (SrcType != DestType) |
| 1421 | return TC_NotApplicable; |
| 1422 | |
| 1423 | return TC_Success; |
| 1424 | } |
| 1425 | |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 1426 | // Checks for undefined behavior in reinterpret_cast. |
| 1427 | // The cases that is checked for is: |
| 1428 | // *reinterpret_cast<T*>(&a) |
| 1429 | // reinterpret_cast<T&>(a) |
| 1430 | // where accessing 'a' as type 'T' will result in undefined behavior. |
| 1431 | void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType, |
| 1432 | bool IsDereference, |
| 1433 | SourceRange Range) { |
| 1434 | unsigned DiagID = IsDereference ? |
| 1435 | diag::warn_pointer_indirection_from_incompatible_type : |
| 1436 | diag::warn_undefined_reinterpret_cast; |
| 1437 | |
| 1438 | if (Diags.getDiagnosticLevel(DiagID, Range.getBegin()) == |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1439 | DiagnosticsEngine::Ignored) { |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 1440 | return; |
| 1441 | } |
| 1442 | |
| 1443 | QualType SrcTy, DestTy; |
| 1444 | if (IsDereference) { |
| 1445 | if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) { |
| 1446 | return; |
| 1447 | } |
| 1448 | SrcTy = SrcType->getPointeeType(); |
| 1449 | DestTy = DestType->getPointeeType(); |
| 1450 | } else { |
| 1451 | if (!DestType->getAs<ReferenceType>()) { |
| 1452 | return; |
| 1453 | } |
| 1454 | SrcTy = SrcType; |
| 1455 | DestTy = DestType->getPointeeType(); |
| 1456 | } |
| 1457 | |
| 1458 | // Cast is compatible if the types are the same. |
| 1459 | if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) { |
| 1460 | return; |
| 1461 | } |
| 1462 | // or one of the types is a char or void type |
| 1463 | if (DestTy->isAnyCharacterType() || DestTy->isVoidType() || |
| 1464 | SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) { |
| 1465 | return; |
| 1466 | } |
| 1467 | // or one of the types is a tag type. |
Chandler Carruth | 1f8f2d5 | 2011-05-24 07:43:19 +0000 | [diff] [blame] | 1468 | if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) { |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 1469 | return; |
| 1470 | } |
| 1471 | |
Douglas Gregor | 575a1c9 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 1472 | // FIXME: Scoped enums? |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 1473 | if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || |
| 1474 | (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { |
| 1475 | if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) { |
| 1476 | return; |
| 1477 | } |
| 1478 | } |
| 1479 | |
| 1480 | Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range; |
| 1481 | } |
Douglas Gregor | fadb53b | 2011-03-12 01:48:56 +0000 | [diff] [blame] | 1482 | |
Fariborz Jahanian | 91dd9df | 2012-08-16 18:33:47 +0000 | [diff] [blame] | 1483 | static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr, |
| 1484 | QualType DestType) { |
| 1485 | QualType SrcType = SrcExpr.get()->getType(); |
Fariborz Jahanian | 0c252fa | 2012-12-13 00:42:06 +0000 | [diff] [blame] | 1486 | if (Self.Context.hasSameType(SrcType, DestType)) |
| 1487 | return; |
Fariborz Jahanian | 91dd9df | 2012-08-16 18:33:47 +0000 | [diff] [blame] | 1488 | if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>()) |
| 1489 | if (SrcPtrTy->isObjCSelType()) { |
| 1490 | QualType DT = DestType; |
| 1491 | if (isa<PointerType>(DestType)) |
| 1492 | DT = DestType->getPointeeType(); |
| 1493 | if (!DT.getUnqualifiedType()->isVoidType()) |
| 1494 | Self.Diag(SrcExpr.get()->getExprLoc(), |
| 1495 | diag::warn_cast_pointer_from_sel) |
| 1496 | << SrcType << DestType << SrcExpr.get()->getSourceRange(); |
| 1497 | } |
| 1498 | } |
| 1499 | |
David Blaikie | 9b29f4f | 2012-10-16 18:53:14 +0000 | [diff] [blame] | 1500 | static void checkIntToPointerCast(bool CStyle, SourceLocation Loc, |
| 1501 | const Expr *SrcExpr, QualType DestType, |
| 1502 | Sema &Self) { |
| 1503 | QualType SrcType = SrcExpr->getType(); |
| 1504 | |
| 1505 | // Not warning on reinterpret_cast, boolean, constant expressions, etc |
| 1506 | // are not explicit design choices, but consistent with GCC's behavior. |
| 1507 | // Feel free to modify them if you've reason/evidence for an alternative. |
| 1508 | if (CStyle && SrcType->isIntegralType(Self.Context) |
| 1509 | && !SrcType->isBooleanType() |
| 1510 | && !SrcType->isEnumeralType() |
| 1511 | && !SrcExpr->isIntegerConstantExpr(Self.Context) |
| 1512 | && Self.Context.getTypeSize(DestType) > Self.Context.getTypeSize(SrcType)) |
| 1513 | Self.Diag(Loc, diag::warn_int_to_pointer_cast) << SrcType << DestType; |
| 1514 | } |
| 1515 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1516 | static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr, |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1517 | QualType DestType, bool CStyle, |
| 1518 | const SourceRange &OpRange, |
Anders Carlsson | 3c31a39 | 2009-09-26 00:12:34 +0000 | [diff] [blame] | 1519 | unsigned &msg, |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1520 | CastKind &Kind) { |
Douglas Gregor | e39a389 | 2010-07-13 23:17:26 +0000 | [diff] [blame] | 1521 | bool IsLValueCast = false; |
| 1522 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1523 | DestType = Self.Context.getCanonicalType(DestType); |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1524 | QualType SrcType = SrcExpr.get()->getType(); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1525 | |
| 1526 | // Is the source an overloaded name? (i.e. &foo) |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1527 | // If so, reinterpret_cast can not help us here (13.4, p1, bullet 5) ... |
| 1528 | if (SrcType == Self.Context.OverloadTy) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1529 | // ... unless foo<int> resolves to an lvalue unambiguously. |
| 1530 | // TODO: what if this fails because of DiagnoseUseOfDecl or something |
| 1531 | // like it? |
| 1532 | ExprResult SingleFunctionExpr = SrcExpr; |
| 1533 | if (Self.ResolveAndFixSingleFunctionTemplateSpecialization( |
| 1534 | SingleFunctionExpr, |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1535 | Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1536 | ) && SingleFunctionExpr.isUsable()) { |
Benjamin Kramer | 3fe198b | 2012-08-23 21:35:17 +0000 | [diff] [blame] | 1537 | SrcExpr = SingleFunctionExpr; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1538 | SrcType = SrcExpr.get()->getType(); |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1539 | } else { |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1540 | return TC_NotApplicable; |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1541 | } |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1542 | } |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1543 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1544 | if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) { |
Richard Smith | 6850faf | 2012-04-29 08:24:44 +0000 | [diff] [blame] | 1545 | if (!SrcExpr.get()->isGLValue()) { |
| 1546 | // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the |
| 1547 | // similar comment in const_cast. |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1548 | msg = diag::err_bad_cxx_cast_rvalue; |
| 1549 | return TC_NotApplicable; |
| 1550 | } |
| 1551 | |
Argyrios Kyrtzidis | f4bbbf0 | 2011-05-02 18:21:19 +0000 | [diff] [blame] | 1552 | if (!CStyle) { |
| 1553 | Self.CheckCompatibleReinterpretCast(SrcType, DestType, |
| 1554 | /*isDereference=*/false, OpRange); |
| 1555 | } |
| 1556 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1557 | // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the |
| 1558 | // same effect as the conversion *reinterpret_cast<T*>(&x) with the |
| 1559 | // built-in & and * operators. |
Argyrios Kyrtzidis | b464a5b | 2011-04-22 22:31:13 +0000 | [diff] [blame] | 1560 | |
Argyrios Kyrtzidis | bb29d1b | 2011-04-22 23:57:57 +0000 | [diff] [blame] | 1561 | const char *inappropriate = 0; |
| 1562 | switch (SrcExpr.get()->getObjectKind()) { |
Argyrios Kyrtzidis | e5e3d31 | 2011-04-23 01:10:24 +0000 | [diff] [blame] | 1563 | case OK_Ordinary: |
| 1564 | break; |
Argyrios Kyrtzidis | bb29d1b | 2011-04-22 23:57:57 +0000 | [diff] [blame] | 1565 | case OK_BitField: inappropriate = "bit-field"; break; |
| 1566 | case OK_VectorComponent: inappropriate = "vector element"; break; |
| 1567 | case OK_ObjCProperty: inappropriate = "property expression"; break; |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 1568 | case OK_ObjCSubscript: inappropriate = "container subscripting expression"; |
| 1569 | break; |
Argyrios Kyrtzidis | bb29d1b | 2011-04-22 23:57:57 +0000 | [diff] [blame] | 1570 | } |
| 1571 | if (inappropriate) { |
| 1572 | Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference) |
| 1573 | << inappropriate << DestType |
| 1574 | << OpRange << SrcExpr.get()->getSourceRange(); |
| 1575 | msg = 0; SrcExpr = ExprError(); |
Argyrios Kyrtzidis | b464a5b | 2011-04-22 22:31:13 +0000 | [diff] [blame] | 1576 | return TC_NotApplicable; |
| 1577 | } |
| 1578 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1579 | // This code does this transformation for the checked types. |
| 1580 | DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType()); |
| 1581 | SrcType = Self.Context.getPointerType(SrcType); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1582 | |
Douglas Gregor | e39a389 | 2010-07-13 23:17:26 +0000 | [diff] [blame] | 1583 | IsLValueCast = true; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | // Canonicalize source for comparison. |
| 1587 | SrcType = Self.Context.getCanonicalType(SrcType); |
| 1588 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1589 | const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(), |
| 1590 | *SrcMemPtr = SrcType->getAs<MemberPointerType>(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1591 | if (DestMemPtr && SrcMemPtr) { |
| 1592 | // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1" |
| 1593 | // can be explicitly converted to an rvalue of type "pointer to member |
| 1594 | // of Y of type T2" if T1 and T2 are both function types or both object |
| 1595 | // types. |
| 1596 | if (DestMemPtr->getPointeeType()->isFunctionType() != |
| 1597 | SrcMemPtr->getPointeeType()->isFunctionType()) |
| 1598 | return TC_NotApplicable; |
| 1599 | |
| 1600 | // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away |
| 1601 | // constness. |
| 1602 | // A reinterpret_cast followed by a const_cast can, though, so in C-style, |
| 1603 | // we accept it. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1604 | if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, |
| 1605 | /*CheckObjCLifetime=*/CStyle)) { |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 1606 | msg = diag::err_bad_cxx_cast_qualifiers_away; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1607 | return TC_Failed; |
| 1608 | } |
| 1609 | |
Charles Davis | f231df3 | 2010-08-16 05:30:44 +0000 | [diff] [blame] | 1610 | // Don't allow casting between member pointers of different sizes. |
| 1611 | if (Self.Context.getTypeSize(DestMemPtr) != |
| 1612 | Self.Context.getTypeSize(SrcMemPtr)) { |
| 1613 | msg = diag::err_bad_cxx_cast_member_pointer_size; |
| 1614 | return TC_Failed; |
| 1615 | } |
| 1616 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1617 | // A valid member pointer cast. |
John McCall | 4d4e5c1 | 2012-02-15 01:22:51 +0000 | [diff] [blame] | 1618 | assert(!IsLValueCast); |
| 1619 | Kind = CK_ReinterpretMemberPointer; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1620 | return TC_Success; |
| 1621 | } |
| 1622 | |
| 1623 | // See below for the enumeral issue. |
Douglas Gregor | 9d3347a | 2010-06-16 00:35:25 +0000 | [diff] [blame] | 1624 | if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1625 | // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral |
| 1626 | // type large enough to hold it. A value of std::nullptr_t can be |
| 1627 | // converted to an integral type; the conversion has the same meaning |
| 1628 | // and validity as a conversion of (void*)0 to the integral type. |
| 1629 | if (Self.Context.getTypeSize(SrcType) > |
| 1630 | Self.Context.getTypeSize(DestType)) { |
| 1631 | msg = diag::err_bad_reinterpret_cast_small_int; |
| 1632 | return TC_Failed; |
| 1633 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1634 | Kind = CK_PointerToIntegral; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1635 | return TC_Success; |
| 1636 | } |
| 1637 | |
Anders Carlsson | 0de51bc | 2009-09-16 19:19:43 +0000 | [diff] [blame] | 1638 | bool destIsVector = DestType->isVectorType(); |
| 1639 | bool srcIsVector = SrcType->isVectorType(); |
| 1640 | if (srcIsVector || destIsVector) { |
Douglas Gregor | 9d3347a | 2010-06-16 00:35:25 +0000 | [diff] [blame] | 1641 | // FIXME: Should this also apply to floating point types? |
| 1642 | bool srcIsScalar = SrcType->isIntegralType(Self.Context); |
| 1643 | bool destIsScalar = DestType->isIntegralType(Self.Context); |
Anders Carlsson | 0de51bc | 2009-09-16 19:19:43 +0000 | [diff] [blame] | 1644 | |
| 1645 | // Check if this is a cast between a vector and something else. |
| 1646 | if (!(srcIsScalar && destIsVector) && !(srcIsVector && destIsScalar) && |
| 1647 | !(srcIsVector && destIsVector)) |
| 1648 | return TC_NotApplicable; |
| 1649 | |
| 1650 | // If both types have the same size, we can successfully cast. |
Douglas Gregor | f2a5539 | 2009-12-22 22:47:22 +0000 | [diff] [blame] | 1651 | if (Self.Context.getTypeSize(SrcType) |
| 1652 | == Self.Context.getTypeSize(DestType)) { |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1653 | Kind = CK_BitCast; |
Anders Carlsson | 0de51bc | 2009-09-16 19:19:43 +0000 | [diff] [blame] | 1654 | return TC_Success; |
Douglas Gregor | f2a5539 | 2009-12-22 22:47:22 +0000 | [diff] [blame] | 1655 | } |
Anders Carlsson | 0de51bc | 2009-09-16 19:19:43 +0000 | [diff] [blame] | 1656 | |
| 1657 | if (destIsScalar) |
| 1658 | msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size; |
| 1659 | else if (srcIsScalar) |
| 1660 | msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size; |
| 1661 | else |
| 1662 | msg = diag::err_bad_cxx_cast_vector_to_vector_different_size; |
| 1663 | |
| 1664 | return TC_Failed; |
| 1665 | } |
Chad Rosier | 41f4431 | 2012-02-03 02:54:37 +0000 | [diff] [blame] | 1666 | |
| 1667 | if (SrcType == DestType) { |
| 1668 | // C++ 5.2.10p2 has a note that mentions that, subject to all other |
| 1669 | // restrictions, a cast to the same type is allowed so long as it does not |
| 1670 | // cast away constness. In C++98, the intent was not entirely clear here, |
| 1671 | // since all other paragraphs explicitly forbid casts to the same type. |
| 1672 | // C++11 clarifies this case with p2. |
| 1673 | // |
| 1674 | // The only allowed types are: integral, enumeration, pointer, or |
| 1675 | // pointer-to-member types. We also won't restrict Obj-C pointers either. |
| 1676 | Kind = CK_NoOp; |
| 1677 | TryCastResult Result = TC_NotApplicable; |
| 1678 | if (SrcType->isIntegralOrEnumerationType() || |
| 1679 | SrcType->isAnyPointerType() || |
| 1680 | SrcType->isMemberPointerType() || |
| 1681 | SrcType->isBlockPointerType()) { |
| 1682 | Result = TC_Success; |
| 1683 | } |
| 1684 | return Result; |
| 1685 | } |
| 1686 | |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 1687 | bool destIsPtr = DestType->isAnyPointerType() || |
| 1688 | DestType->isBlockPointerType(); |
| 1689 | bool srcIsPtr = SrcType->isAnyPointerType() || |
| 1690 | SrcType->isBlockPointerType(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1691 | if (!destIsPtr && !srcIsPtr) { |
| 1692 | // Except for std::nullptr_t->integer and lvalue->reference, which are |
| 1693 | // handled above, at least one of the two arguments must be a pointer. |
| 1694 | return TC_NotApplicable; |
| 1695 | } |
| 1696 | |
Douglas Gregor | 9d3347a | 2010-06-16 00:35:25 +0000 | [diff] [blame] | 1697 | if (DestType->isIntegralType(Self.Context)) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1698 | assert(srcIsPtr && "One type must be a pointer"); |
| 1699 | // C++ 5.2.10p4: A pointer can be explicitly converted to any integral |
Francois Pichet | 30aff5b | 2011-05-11 22:13:54 +0000 | [diff] [blame] | 1700 | // type large enough to hold it; except in Microsoft mode, where the |
| 1701 | // integral type size doesn't matter. |
| 1702 | if ((Self.Context.getTypeSize(SrcType) > |
| 1703 | Self.Context.getTypeSize(DestType)) && |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1704 | !Self.getLangOpts().MicrosoftExt) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1705 | msg = diag::err_bad_reinterpret_cast_small_int; |
| 1706 | return TC_Failed; |
| 1707 | } |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1708 | Kind = CK_PointerToIntegral; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1709 | return TC_Success; |
| 1710 | } |
| 1711 | |
Douglas Gregor | 2ade35e | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 1712 | if (SrcType->isIntegralOrEnumerationType()) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1713 | assert(destIsPtr && "One type must be a pointer"); |
David Blaikie | 9b29f4f | 2012-10-16 18:53:14 +0000 | [diff] [blame] | 1714 | checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType, |
| 1715 | Self); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1716 | // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly |
| 1717 | // converted to a pointer. |
John McCall | 404cd16 | 2010-11-13 01:35:44 +0000 | [diff] [blame] | 1718 | // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not |
| 1719 | // necessarily converted to a null pointer value.] |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1720 | Kind = CK_IntegralToPointer; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1721 | return TC_Success; |
| 1722 | } |
| 1723 | |
| 1724 | if (!destIsPtr || !srcIsPtr) { |
| 1725 | // With the valid non-pointer conversions out of the way, we can be even |
| 1726 | // more stringent. |
| 1727 | return TC_NotApplicable; |
| 1728 | } |
| 1729 | |
| 1730 | // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness. |
| 1731 | // The C-style cast operator can. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1732 | if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle, |
| 1733 | /*CheckObjCLifetime=*/CStyle)) { |
Douglas Gregor | d4c5f84 | 2011-04-15 17:59:54 +0000 | [diff] [blame] | 1734 | msg = diag::err_bad_cxx_cast_qualifiers_away; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1735 | return TC_Failed; |
| 1736 | } |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 1737 | |
| 1738 | // Cannot convert between block pointers and Objective-C object pointers. |
| 1739 | if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) || |
| 1740 | (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType())) |
| 1741 | return TC_NotApplicable; |
| 1742 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 1743 | if (IsLValueCast) { |
| 1744 | Kind = CK_LValueBitCast; |
| 1745 | } else if (DestType->isObjCObjectPointerType()) { |
John McCall | dc05b11 | 2011-09-10 01:16:55 +0000 | [diff] [blame] | 1746 | Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr); |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 1747 | } else if (DestType->isBlockPointerType()) { |
| 1748 | if (!SrcType->isBlockPointerType()) { |
| 1749 | Kind = CK_AnyPointerToBlockPointerCast; |
| 1750 | } else { |
| 1751 | Kind = CK_BitCast; |
| 1752 | } |
| 1753 | } else { |
| 1754 | Kind = CK_BitCast; |
| 1755 | } |
| 1756 | |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 1757 | // Any pointer can be cast to an Objective-C pointer type with a C-style |
| 1758 | // cast. |
Fariborz Jahanian | 92ef5d7 | 2009-12-08 23:09:15 +0000 | [diff] [blame] | 1759 | if (CStyle && DestType->isObjCObjectPointerType()) { |
Fariborz Jahanian | 92ef5d7 | 2009-12-08 23:09:15 +0000 | [diff] [blame] | 1760 | return TC_Success; |
| 1761 | } |
Fariborz Jahanian | 91dd9df | 2012-08-16 18:33:47 +0000 | [diff] [blame] | 1762 | if (CStyle) |
| 1763 | DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); |
| 1764 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1765 | // Not casting away constness, so the only remaining check is for compatible |
| 1766 | // pointer categories. |
| 1767 | |
| 1768 | if (SrcType->isFunctionPointerType()) { |
| 1769 | if (DestType->isFunctionPointerType()) { |
| 1770 | // C++ 5.2.10p6: A pointer to a function can be explicitly converted to |
| 1771 | // a pointer to a function of a different type. |
| 1772 | return TC_Success; |
| 1773 | } |
| 1774 | |
| 1775 | // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to |
| 1776 | // an object type or vice versa is conditionally-supported. |
| 1777 | // Compilers support it in C++03 too, though, because it's necessary for |
| 1778 | // casting the return value of dlsym() and GetProcAddress(). |
| 1779 | // FIXME: Conditionally-supported behavior should be configurable in the |
| 1780 | // TargetInfo or similar. |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 1781 | Self.Diag(OpRange.getBegin(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1782 | Self.getLangOpts().CPlusPlus11 ? |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 1783 | diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) |
| 1784 | << OpRange; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1785 | return TC_Success; |
| 1786 | } |
| 1787 | |
| 1788 | if (DestType->isFunctionPointerType()) { |
| 1789 | // See above. |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 1790 | Self.Diag(OpRange.getBegin(), |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1791 | Self.getLangOpts().CPlusPlus11 ? |
Richard Smith | ebaf0e6 | 2011-10-18 20:49:44 +0000 | [diff] [blame] | 1792 | diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj) |
| 1793 | << OpRange; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1794 | return TC_Success; |
| 1795 | } |
Douglas Gregor | bf9fb88 | 2010-07-08 20:27:32 +0000 | [diff] [blame] | 1796 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1797 | // C++ 5.2.10p7: A pointer to an object can be explicitly converted to |
| 1798 | // a pointer to an object of different type. |
| 1799 | // Void pointers are not specified, but supported by every compiler out there. |
| 1800 | // So we finish by allowing everything that remains - it's got to be two |
| 1801 | // object pointers. |
| 1802 | return TC_Success; |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 1803 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1804 | |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1805 | void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle, |
| 1806 | bool ListInitialization) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1807 | // Handle placeholders. |
| 1808 | if (isPlaceholder()) { |
| 1809 | // C-style casts can resolve __unknown_any types. |
| 1810 | if (claimPlaceholder(BuiltinType::UnknownAny)) { |
| 1811 | SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, |
| 1812 | SrcExpr.get(), Kind, |
| 1813 | ValueKind, BasePath); |
| 1814 | return; |
| 1815 | } |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1816 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1817 | checkNonOverloadPlaceholders(); |
| 1818 | if (SrcExpr.isInvalid()) |
| 1819 | return; |
John McCall | 4919dfd | 2011-10-17 17:42:19 +0000 | [diff] [blame] | 1820 | } |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1821 | |
| 1822 | // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void". |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1823 | // This test is outside everything else because it's the only case where |
| 1824 | // a non-lvalue-reference target type does not lead to decay. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1825 | if (DestType->isVoidType()) { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 1826 | Kind = CK_ToVoid; |
| 1827 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1828 | if (claimPlaceholder(BuiltinType::Overload)) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1829 | Self.ResolveAndFixSingleFunctionTemplateSpecialization( |
| 1830 | SrcExpr, /* Decay Function to ptr */ false, |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1831 | /* Complain */ true, DestRange, DestType, |
Douglas Gregor | fadb53b | 2011-03-12 01:48:56 +0000 | [diff] [blame] | 1832 | diag::err_bad_cstyle_cast_overload); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1833 | if (SrcExpr.isInvalid()) |
| 1834 | return; |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1835 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1836 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1837 | SrcExpr = Self.IgnoredValueConversions(SrcExpr.take()); |
| 1838 | if (SrcExpr.isInvalid()) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1839 | return; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1840 | |
| 1841 | return; |
Anton Yartsev | d06fea8 | 2011-03-27 09:32:40 +0000 | [diff] [blame] | 1842 | } |
| 1843 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1844 | // If the type is dependent, we won't do any other semantic analysis now. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1845 | if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent()) { |
| 1846 | assert(Kind == CK_Dependent); |
| 1847 | return; |
John McCall | daa8e4e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1848 | } |
Benjamin Kramer | 5b4a40a | 2011-07-08 20:20:17 +0000 | [diff] [blame] | 1849 | |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1850 | if (ValueKind == VK_RValue && !DestType->isRecordType() && |
| 1851 | !isPlaceholder(BuiltinType::Overload)) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1852 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
| 1853 | if (SrcExpr.isInvalid()) |
| 1854 | return; |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1855 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1856 | |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 1857 | // AltiVec vector initialization with a single literal. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1858 | if (const VectorType *vecTy = DestType->getAs<VectorType>()) |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 1859 | if (vecTy->getVectorKind() == VectorType::AltiVecVector |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1860 | && (SrcExpr.get()->getType()->isIntegerType() |
| 1861 | || SrcExpr.get()->getType()->isFloatingType())) { |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 1862 | Kind = CK_VectorSplat; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1863 | return; |
John McCall | fb8721c | 2011-04-10 19:13:55 +0000 | [diff] [blame] | 1864 | } |
| 1865 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1866 | // C++ [expr.cast]p5: The conversions performed by |
| 1867 | // - a const_cast, |
| 1868 | // - a static_cast, |
| 1869 | // - a static_cast followed by a const_cast, |
| 1870 | // - a reinterpret_cast, or |
| 1871 | // - a reinterpret_cast followed by a const_cast, |
| 1872 | // can be performed using the cast notation of explicit type conversion. |
| 1873 | // [...] If a conversion can be interpreted in more than one of the ways |
| 1874 | // listed above, the interpretation that appears first in the list is used, |
| 1875 | // even if a cast resulting from that interpretation is ill-formed. |
| 1876 | // In plain language, this means trying a const_cast ... |
| 1877 | unsigned msg = diag::err_bad_cxx_cast_generic; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1878 | TryCastResult tcr = TryConstCast(Self, SrcExpr.get(), DestType, |
| 1879 | /*CStyle*/true, msg); |
Anders Carlsson | da921fd | 2009-10-19 18:14:28 +0000 | [diff] [blame] | 1880 | if (tcr == TC_Success) |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1881 | Kind = CK_NoOp; |
Anders Carlsson | da921fd | 2009-10-19 18:14:28 +0000 | [diff] [blame] | 1882 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1883 | Sema::CheckedConversionKind CCK |
| 1884 | = FunctionalStyle? Sema::CCK_FunctionalCast |
| 1885 | : Sema::CCK_CStyleCast; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1886 | if (tcr == TC_NotApplicable) { |
| 1887 | // ... or if that is not possible, a static_cast, ignoring const, ... |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1888 | tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 1889 | msg, Kind, BasePath, ListInitialization); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1890 | if (SrcExpr.isInvalid()) |
| 1891 | return; |
| 1892 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1893 | if (tcr == TC_NotApplicable) { |
| 1894 | // ... and finally a reinterpret_cast, ignoring const. |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1895 | tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true, |
| 1896 | OpRange, msg, Kind); |
| 1897 | if (SrcExpr.isInvalid()) |
| 1898 | return; |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1899 | } |
| 1900 | } |
| 1901 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1902 | if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1903 | checkObjCARCConversion(CCK); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1904 | |
Nick Lewycky | 43328e9 | 2010-11-09 00:19:31 +0000 | [diff] [blame] | 1905 | if (tcr != TC_Success && msg != 0) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1906 | if (SrcExpr.get()->getType() == Self.Context.OverloadTy) { |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1907 | DeclAccessPair Found; |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1908 | FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), |
| 1909 | DestType, |
| 1910 | /*Complain*/ true, |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1911 | Found); |
Douglas Gregor | 1be8eec | 2011-02-19 21:32:49 +0000 | [diff] [blame] | 1912 | |
Richard Trieu | 32ac00d | 2011-04-16 01:09:30 +0000 | [diff] [blame] | 1913 | assert(!Fn && "cast failed but able to resolve overload expression!!"); |
Nick Lewycky | 43328e9 | 2010-11-09 00:19:31 +0000 | [diff] [blame] | 1914 | (void)Fn; |
John McCall | 79ab2c8 | 2011-02-14 18:34:10 +0000 | [diff] [blame] | 1915 | |
Nick Lewycky | 43328e9 | 2010-11-09 00:19:31 +0000 | [diff] [blame] | 1916 | } else { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1917 | diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle), |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 1918 | OpRange, SrcExpr.get(), DestType, ListInitialization); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1919 | } |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1920 | } else if (Kind == CK_BitCast) { |
| 1921 | checkCastAlign(); |
Douglas Gregor | 8e96043 | 2010-11-08 03:40:48 +0000 | [diff] [blame] | 1922 | } |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 1923 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1924 | // Clear out SrcExpr if there was a fatal error. |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 1925 | if (tcr != TC_Success) |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 1926 | SrcExpr = ExprError(); |
| 1927 | } |
| 1928 | |
Fariborz Jahanian | bbb8afd | 2012-08-17 17:22:34 +0000 | [diff] [blame] | 1929 | /// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a |
| 1930 | /// non-matching type. Such as enum function call to int, int call to |
| 1931 | /// pointer; etc. Cast to 'void' is an exception. |
| 1932 | static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr, |
| 1933 | QualType DestType) { |
| 1934 | if (Self.Diags.getDiagnosticLevel(diag::warn_bad_function_cast, |
| 1935 | SrcExpr.get()->getExprLoc()) |
| 1936 | == DiagnosticsEngine::Ignored) |
| 1937 | return; |
| 1938 | |
| 1939 | if (!isa<CallExpr>(SrcExpr.get())) |
| 1940 | return; |
| 1941 | |
| 1942 | QualType SrcType = SrcExpr.get()->getType(); |
| 1943 | if (DestType.getUnqualifiedType()->isVoidType()) |
| 1944 | return; |
| 1945 | if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType()) |
| 1946 | && (DestType->isAnyPointerType() || DestType->isBlockPointerType())) |
| 1947 | return; |
| 1948 | if (SrcType->isIntegerType() && DestType->isIntegerType() && |
| 1949 | (SrcType->isBooleanType() == DestType->isBooleanType()) && |
| 1950 | (SrcType->isEnumeralType() == DestType->isEnumeralType())) |
| 1951 | return; |
| 1952 | if (SrcType->isRealFloatingType() && DestType->isRealFloatingType()) |
| 1953 | return; |
| 1954 | if (SrcType->isEnumeralType() && DestType->isEnumeralType()) |
| 1955 | return; |
| 1956 | if (SrcType->isComplexType() && DestType->isComplexType()) |
| 1957 | return; |
| 1958 | if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType()) |
| 1959 | return; |
| 1960 | |
| 1961 | Self.Diag(SrcExpr.get()->getExprLoc(), |
| 1962 | diag::warn_bad_function_cast) |
| 1963 | << SrcType << DestType << SrcExpr.get()->getSourceRange(); |
| 1964 | } |
| 1965 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1966 | /// Check the semantics of a C-style cast operation, in C. |
| 1967 | void CastOperation::CheckCStyleCast() { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1968 | assert(!Self.getLangOpts().CPlusPlus); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1969 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 1970 | // C-style casts can resolve __unknown_any types. |
| 1971 | if (claimPlaceholder(BuiltinType::UnknownAny)) { |
| 1972 | SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType, |
| 1973 | SrcExpr.get(), Kind, |
| 1974 | ValueKind, BasePath); |
| 1975 | return; |
| 1976 | } |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1977 | |
| 1978 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 1979 | // type needs to be scalar. |
| 1980 | if (DestType->isVoidType()) { |
| 1981 | // We don't necessarily do lvalue-to-rvalue conversions on this. |
| 1982 | SrcExpr = Self.IgnoredValueConversions(SrcExpr.take()); |
| 1983 | if (SrcExpr.isInvalid()) |
| 1984 | return; |
| 1985 | |
| 1986 | // Cast to void allows any expr type. |
| 1987 | Kind = CK_ToVoid; |
| 1988 | return; |
| 1989 | } |
| 1990 | |
| 1991 | SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take()); |
| 1992 | if (SrcExpr.isInvalid()) |
| 1993 | return; |
| 1994 | QualType SrcType = SrcExpr.get()->getType(); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 1995 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 1996 | assert(!SrcType->isPlaceholderType()); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 1997 | |
| 1998 | if (Self.RequireCompleteType(OpRange.getBegin(), DestType, |
| 1999 | diag::err_typecheck_cast_to_incomplete)) { |
| 2000 | SrcExpr = ExprError(); |
| 2001 | return; |
| 2002 | } |
| 2003 | |
| 2004 | if (!DestType->isScalarType() && !DestType->isVectorType()) { |
| 2005 | const RecordType *DestRecordTy = DestType->getAs<RecordType>(); |
| 2006 | |
| 2007 | if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){ |
| 2008 | // GCC struct/union extension: allow cast to self. |
| 2009 | Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2010 | << DestType << SrcExpr.get()->getSourceRange(); |
| 2011 | Kind = CK_NoOp; |
| 2012 | return; |
| 2013 | } |
| 2014 | |
| 2015 | // GCC's cast to union extension. |
| 2016 | if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) { |
| 2017 | RecordDecl *RD = DestRecordTy->getDecl(); |
| 2018 | RecordDecl::field_iterator Field, FieldEnd; |
| 2019 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
| 2020 | Field != FieldEnd; ++Field) { |
| 2021 | if (Self.Context.hasSameUnqualifiedType(Field->getType(), SrcType) && |
| 2022 | !Field->isUnnamedBitfield()) { |
| 2023 | Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2024 | << SrcExpr.get()->getSourceRange(); |
| 2025 | break; |
| 2026 | } |
| 2027 | } |
| 2028 | if (Field == FieldEnd) { |
| 2029 | Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2030 | << SrcType << SrcExpr.get()->getSourceRange(); |
| 2031 | SrcExpr = ExprError(); |
| 2032 | return; |
| 2033 | } |
| 2034 | Kind = CK_ToUnion; |
| 2035 | return; |
| 2036 | } |
| 2037 | |
| 2038 | // Reject any other conversions to non-scalar types. |
| 2039 | Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar) |
| 2040 | << DestType << SrcExpr.get()->getSourceRange(); |
| 2041 | SrcExpr = ExprError(); |
| 2042 | return; |
| 2043 | } |
| 2044 | |
| 2045 | // The type we're casting to is known to be a scalar or vector. |
| 2046 | |
| 2047 | // Require the operand to be a scalar or vector. |
| 2048 | if (!SrcType->isScalarType() && !SrcType->isVectorType()) { |
| 2049 | Self.Diag(SrcExpr.get()->getExprLoc(), |
| 2050 | diag::err_typecheck_expect_scalar_operand) |
| 2051 | << SrcType << SrcExpr.get()->getSourceRange(); |
| 2052 | SrcExpr = ExprError(); |
| 2053 | return; |
| 2054 | } |
| 2055 | |
| 2056 | if (DestType->isExtVectorType()) { |
| 2057 | SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.take(), Kind); |
| 2058 | return; |
| 2059 | } |
| 2060 | |
| 2061 | if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) { |
| 2062 | if (DestVecTy->getVectorKind() == VectorType::AltiVecVector && |
| 2063 | (SrcType->isIntegerType() || SrcType->isFloatingType())) { |
| 2064 | Kind = CK_VectorSplat; |
| 2065 | } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) { |
| 2066 | SrcExpr = ExprError(); |
| 2067 | } |
| 2068 | return; |
| 2069 | } |
| 2070 | |
| 2071 | if (SrcType->isVectorType()) { |
| 2072 | if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind)) |
| 2073 | SrcExpr = ExprError(); |
| 2074 | return; |
| 2075 | } |
| 2076 | |
| 2077 | // The source and target types are both scalars, i.e. |
| 2078 | // - arithmetic types (fundamental, enum, and complex) |
| 2079 | // - all kinds of pointers |
| 2080 | // Note that member pointers were filtered out with C++, above. |
| 2081 | |
| 2082 | if (isa<ObjCSelectorExpr>(SrcExpr.get())) { |
| 2083 | Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr); |
| 2084 | SrcExpr = ExprError(); |
| 2085 | return; |
| 2086 | } |
| 2087 | |
| 2088 | // If either type is a pointer, the other type has to be either an |
| 2089 | // integer or a pointer. |
| 2090 | if (!DestType->isArithmeticType()) { |
| 2091 | if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { |
| 2092 | Self.Diag(SrcExpr.get()->getExprLoc(), |
| 2093 | diag::err_cast_pointer_from_non_pointer_int) |
| 2094 | << SrcType << SrcExpr.get()->getSourceRange(); |
| 2095 | SrcExpr = ExprError(); |
| 2096 | return; |
| 2097 | } |
David Blaikie | 9b29f4f | 2012-10-16 18:53:14 +0000 | [diff] [blame] | 2098 | checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(), |
| 2099 | DestType, Self); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2100 | } else if (!SrcType->isArithmeticType()) { |
| 2101 | if (!DestType->isIntegralType(Self.Context) && |
| 2102 | DestType->isArithmeticType()) { |
| 2103 | Self.Diag(SrcExpr.get()->getLocStart(), |
| 2104 | diag::err_cast_pointer_to_non_pointer_int) |
Abramo Bagnara | f7ce194 | 2011-11-15 11:25:38 +0000 | [diff] [blame] | 2105 | << DestType << SrcExpr.get()->getSourceRange(); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2106 | SrcExpr = ExprError(); |
| 2107 | return; |
| 2108 | } |
| 2109 | } |
| 2110 | |
Joey Gouly | 19dbb20 | 2013-01-23 11:56:20 +0000 | [diff] [blame] | 2111 | if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().cl_khr_fp16) { |
| 2112 | if (DestType->isHalfType()) { |
| 2113 | Self.Diag(SrcExpr.get()->getLocStart(), diag::err_opencl_cast_to_half) |
| 2114 | << DestType << SrcExpr.get()->getSourceRange(); |
| 2115 | SrcExpr = ExprError(); |
| 2116 | return; |
| 2117 | } |
Joey Gouly | 19dbb20 | 2013-01-23 11:56:20 +0000 | [diff] [blame] | 2118 | } |
| 2119 | |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2120 | // ARC imposes extra restrictions on casts. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2121 | if (Self.getLangOpts().ObjCAutoRefCount) { |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2122 | checkObjCARCConversion(Sema::CCK_CStyleCast); |
| 2123 | if (SrcExpr.isInvalid()) |
| 2124 | return; |
| 2125 | |
| 2126 | if (const PointerType *CastPtr = DestType->getAs<PointerType>()) { |
| 2127 | if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) { |
| 2128 | Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers(); |
| 2129 | Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers(); |
| 2130 | if (CastPtr->getPointeeType()->isObjCLifetimeType() && |
| 2131 | ExprPtr->getPointeeType()->isObjCLifetimeType() && |
| 2132 | !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) { |
| 2133 | Self.Diag(SrcExpr.get()->getLocStart(), |
| 2134 | diag::err_typecheck_incompatible_ownership) |
| 2135 | << SrcType << DestType << Sema::AA_Casting |
| 2136 | << SrcExpr.get()->getSourceRange(); |
| 2137 | return; |
| 2138 | } |
| 2139 | } |
| 2140 | } |
| 2141 | else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) { |
| 2142 | Self.Diag(SrcExpr.get()->getLocStart(), |
| 2143 | diag::err_arc_convesion_of_weak_unavailable) |
| 2144 | << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange(); |
| 2145 | SrcExpr = ExprError(); |
| 2146 | return; |
| 2147 | } |
| 2148 | } |
Fariborz Jahanian | 91dd9df | 2012-08-16 18:33:47 +0000 | [diff] [blame] | 2149 | DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType); |
Fariborz Jahanian | bbb8afd | 2012-08-17 17:22:34 +0000 | [diff] [blame] | 2150 | DiagnoseBadFunctionCast(Self, SrcExpr, DestType); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2151 | Kind = Self.PrepareScalarCast(SrcExpr, DestType); |
| 2152 | if (SrcExpr.isInvalid()) |
| 2153 | return; |
| 2154 | |
| 2155 | if (Kind == CK_BitCast) |
| 2156 | checkCastAlign(); |
| 2157 | } |
| 2158 | |
| 2159 | ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc, |
| 2160 | TypeSourceInfo *CastTypeInfo, |
| 2161 | SourceLocation RPLoc, |
| 2162 | Expr *CastExpr) { |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2163 | CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); |
| 2164 | Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); |
| 2165 | Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd()); |
| 2166 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2167 | if (getLangOpts().CPlusPlus) { |
Sebastian Redl | 6dc00f6 | 2012-02-12 18:41:05 +0000 | [diff] [blame] | 2168 | Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false, |
| 2169 | isa<InitListExpr>(CastExpr)); |
John McCall | a180f04 | 2011-10-06 23:25:11 +0000 | [diff] [blame] | 2170 | } else { |
| 2171 | Op.CheckCStyleCast(); |
| 2172 | } |
| 2173 | |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2174 | if (Op.SrcExpr.isInvalid()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 2175 | return ExprError(); |
| 2176 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2177 | return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType, |
| 2178 | Op.ValueKind, Op.Kind, Op.SrcExpr.take(), |
| 2179 | &Op.BasePath, CastTypeInfo, LPLoc, RPLoc)); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2180 | } |
| 2181 | |
| 2182 | ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo, |
| 2183 | SourceLocation LPLoc, |
| 2184 | Expr *CastExpr, |
| 2185 | SourceLocation RPLoc) { |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 2186 | assert(LPLoc.isValid() && "List-initialization shouldn't get here."); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2187 | CastOperation Op(*this, CastTypeInfo->getType(), CastExpr); |
| 2188 | Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange(); |
| 2189 | Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd()); |
| 2190 | |
Sebastian Redl | 20ff0e2 | 2012-02-13 19:55:43 +0000 | [diff] [blame] | 2191 | Op.CheckCXXCStyleCast(/*FunctionalStyle=*/true, /*ListInit=*/false); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2192 | if (Op.SrcExpr.isInvalid()) |
| 2193 | return ExprError(); |
Daniel Jasper | a770a4d | 2012-07-16 08:05:07 +0000 | [diff] [blame] | 2194 | |
| 2195 | if (CXXConstructExpr *ConstructExpr = dyn_cast<CXXConstructExpr>(Op.SrcExpr.get())) |
| 2196 | ConstructExpr->setParenRange(SourceRange(LPLoc, RPLoc)); |
John McCall | b45ae25 | 2011-10-05 07:41:44 +0000 | [diff] [blame] | 2197 | |
John McCall | 5acb0c9 | 2011-10-17 18:40:02 +0000 | [diff] [blame] | 2198 | return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType, |
| 2199 | Op.ValueKind, CastTypeInfo, Op.DestRange.getBegin(), |
| 2200 | Op.Kind, Op.SrcExpr.take(), &Op.BasePath, RPLoc)); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 2201 | } |