blob: 2c7611de6b5f513eff14863861631f3c05ef2bcb [file] [log] [blame]
John McCalld8d3ced2011-10-11 17:38:55 +00001//===--- SemaCast.cpp - Semantic Analysis for Casts -----------------------===//
Sebastian Redl26d85b12008-11-05 21:50:06 +00002//
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 McCalld8d3ced2011-10-11 17:38:55 +000010// 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 Redl26d85b12008-11-05 21:50:06 +000014//
15//===----------------------------------------------------------------------===//
16
John McCall2d887082010-08-25 22:03:47 +000017#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000018#include "clang/Sema/Initialization.h"
Sebastian Redl26d85b12008-11-05 21:50:06 +000019#include "clang/AST/ExprCXX.h"
John McCalla180f042011-10-06 23:25:11 +000020#include "clang/AST/ExprObjC.h"
Sebastian Redl26d85b12008-11-05 21:50:06 +000021#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000022#include "clang/AST/CXXInheritance.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000023#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redl26d85b12008-11-05 21:50:06 +000024#include "llvm/ADT/SmallVector.h"
Sebastian Redle3dc28a2008-11-07 23:29:29 +000025#include <set>
Sebastian Redl26d85b12008-11-05 21:50:06 +000026using namespace clang;
27
Douglas Gregor8e960432010-11-08 03:40:48 +000028
Douglas Gregor8e960432010-11-08 03:40:48 +000029
Sebastian Redl9cc11e72009-07-25 15:41:38 +000030enum 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
37enum 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 Redl37d6de32008-11-08 13:00:26 +000044};
45
John McCallb45ae252011-10-05 07:41:44 +000046namespace {
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 McCall5acb0c92011-10-17 18:40:02 +000052 Kind(CK_Dependent), IsARCUnbridgedCast(false) {
John McCalla180f042011-10-06 23:25:11 +000053
54 if (const BuiltinType *placeholder =
55 src.get()->getType()->getAsPlaceholderType()) {
56 PlaceholderKind = placeholder->getKind();
57 } else {
58 PlaceholderKind = (BuiltinType::Kind) 0;
59 }
60 }
Douglas Gregor8e960432010-11-08 03:40:48 +000061
John McCallb45ae252011-10-05 07:41:44 +000062 Sema &Self;
63 ExprResult SrcExpr;
64 QualType DestType;
65 QualType ResultType;
66 ExprValueKind ValueKind;
67 CastKind Kind;
John McCalla180f042011-10-06 23:25:11 +000068 BuiltinType::Kind PlaceholderKind;
John McCallb45ae252011-10-05 07:41:44 +000069 CXXCastPath BasePath;
John McCall5acb0c92011-10-17 18:40:02 +000070 bool IsARCUnbridgedCast;
Douglas Gregor8e960432010-11-08 03:40:48 +000071
John McCallb45ae252011-10-05 07:41:44 +000072 SourceRange OpRange;
73 SourceRange DestRange;
Douglas Gregor8e960432010-11-08 03:40:48 +000074
John McCalla180f042011-10-06 23:25:11 +000075 // Top-level semantics-checking routines.
John McCallb45ae252011-10-05 07:41:44 +000076 void CheckConstCast();
77 void CheckReinterpretCast();
Richard Smithc8d7f582011-11-29 22:48:16 +000078 void CheckStaticCast();
John McCallb45ae252011-10-05 07:41:44 +000079 void CheckDynamicCast();
Richard Smithc8d7f582011-11-29 22:48:16 +000080 void CheckCXXCStyleCast(bool FunctionalCast);
John McCalla180f042011-10-06 23:25:11 +000081 void CheckCStyleCast();
82
John McCall5acb0c92011-10-17 18:40:02 +000083 /// 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 McCalla180f042011-10-06 23:25:11 +000097 // 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 McCallb45ae252011-10-05 07:41:44 +0000115
116 void checkCastAlign() {
117 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
118 }
119
120 void checkObjCARCConversion(Sema::CheckedConversionKind CCK) {
John McCall5acb0c92011-10-17 18:40:02 +0000121 assert(Self.getLangOptions().ObjCAutoRefCount);
122
John McCallb45ae252011-10-05 07:41:44 +0000123 Expr *src = SrcExpr.get();
John McCall5acb0c92011-10-17 18:40:02 +0000124 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
125 Sema::ACR_unbridged)
126 IsARCUnbridgedCast = true;
John McCallb45ae252011-10-05 07:41:44 +0000127 SrcExpr = src;
128 }
John McCalla180f042011-10-06 23:25:11 +0000129
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 McCallb45ae252011-10-05 07:41:44 +0000140 };
141}
Sebastian Redl37d6de32008-11-08 13:00:26 +0000142
John McCallf85e1932011-06-15 23:02:42 +0000143static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
144 bool CheckCVR, bool CheckObjCLifetime);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000145
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
157static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000158 QualType DestType, bool CStyle,
159 CastKind &Kind,
Douglas Gregor88b22a42011-01-25 16:13:26 +0000160 CXXCastPath &BasePath,
161 unsigned &msg);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000162static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr,
Anders Carlssonf9d68e12010-04-24 19:36:51 +0000163 QualType DestType, bool CStyle,
164 const SourceRange &OpRange,
165 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000166 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000167 CXXCastPath &BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000168static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
169 QualType DestType, bool CStyle,
170 const SourceRange &OpRange,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +0000171 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000172 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000173 CXXCastPath &BasePath);
Douglas Gregorab15d0e2009-11-15 09:20:52 +0000174static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
175 CanQualType DestType, bool CStyle,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000176 const SourceRange &OpRange,
177 QualType OrigSrcType,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +0000178 QualType OrigDestType, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000179 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000180 CXXCastPath &BasePath);
John Wiegley429bb272011-04-08 18:41:53 +0000181static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr,
Anders Carlssoncee22422010-04-24 19:22:20 +0000182 QualType SrcType,
183 QualType DestType,bool CStyle,
184 const SourceRange &OpRange,
185 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000186 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000187 CXXCastPath &BasePath);
Anders Carlssoncee22422010-04-24 19:22:20 +0000188
John Wiegley429bb272011-04-08 18:41:53 +0000189static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000190 QualType DestType,
191 Sema::CheckedConversionKind CCK,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000192 const SourceRange &OpRange,
Fariborz Jahaniane9f42082009-08-26 18:55:36 +0000193 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000194 CastKind &Kind);
John Wiegley429bb272011-04-08 18:41:53 +0000195static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000196 QualType DestType,
197 Sema::CheckedConversionKind CCK,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000198 const SourceRange &OpRange,
Anders Carlssoncb3c3082009-09-01 20:52:42 +0000199 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000200 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000201 CXXCastPath &BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000202static TryCastResult TryConstCast(Sema &Self, Expr *SrcExpr, QualType DestType,
203 bool CStyle, unsigned &msg);
John Wiegley429bb272011-04-08 18:41:53 +0000204static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000205 QualType DestType, bool CStyle,
206 const SourceRange &OpRange,
Anders Carlsson3c31a392009-09-26 00:12:34 +0000207 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000208 CastKind &Kind);
Sebastian Redl37d6de32008-11-08 13:00:26 +0000209
Douglas Gregor1be8eec2011-02-19 21:32:49 +0000210
Sebastian Redl26d85b12008-11-05 21:50:06 +0000211/// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's.
John McCall60d7b3a2010-08-24 06:29:42 +0000212ExprResult
Sebastian Redl26d85b12008-11-05 21:50:06 +0000213Sema::ActOnCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000214 SourceLocation LAngleBracketLoc, Declarator &D,
Sebastian Redl26d85b12008-11-05 21:50:06 +0000215 SourceLocation RAngleBracketLoc,
John McCallf312b1e2010-08-26 23:41:50 +0000216 SourceLocation LParenLoc, Expr *E,
Sebastian Redl26d85b12008-11-05 21:50:06 +0000217 SourceLocation RParenLoc) {
John McCallc89724c2010-01-15 19:13:16 +0000218
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000219 assert(!D.isInvalidType());
220
221 TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, E->getType());
222 if (D.isInvalidType())
223 return ExprError();
224
225 if (getLangOptions().CPlusPlus) {
226 // Check that there are no default arguments (C++ only).
227 CheckExtraCXXDefaultArguments(D);
228 }
229
230 return BuildCXXNamedCast(OpLoc, Kind, TInfo, move(E),
John McCallc89724c2010-01-15 19:13:16 +0000231 SourceRange(LAngleBracketLoc, RAngleBracketLoc),
232 SourceRange(LParenLoc, RParenLoc));
233}
234
John McCall60d7b3a2010-08-24 06:29:42 +0000235ExprResult
John McCallc89724c2010-01-15 19:13:16 +0000236Sema::BuildCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
John Wiegley429bb272011-04-08 18:41:53 +0000237 TypeSourceInfo *DestTInfo, Expr *E,
John McCallc89724c2010-01-15 19:13:16 +0000238 SourceRange AngleBrackets, SourceRange Parens) {
John Wiegley429bb272011-04-08 18:41:53 +0000239 ExprResult Ex = Owned(E);
John McCallc89724c2010-01-15 19:13:16 +0000240 QualType DestType = DestTInfo->getType();
241
Douglas Gregor9103bb22008-12-17 22:52:20 +0000242 // 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 Wiegley429bb272011-04-08 18:41:53 +0000244 bool TypeDependent = DestType->isDependentType() || Ex.get()->isTypeDependent();
Douglas Gregor9103bb22008-12-17 22:52:20 +0000245
John McCallb45ae252011-10-05 07:41:44 +0000246 CastOperation Op(*this, DestType, E);
247 Op.OpRange = SourceRange(OpLoc, Parens.getEnd());
248 Op.DestRange = AngleBrackets;
John McCalla21e06c2010-11-26 10:57:22 +0000249
Sebastian Redl26d85b12008-11-05 21:50:06 +0000250 switch (Kind) {
John McCalldaa8e4e2010-11-15 09:13:47 +0000251 default: llvm_unreachable("Unknown C++ cast!");
Sebastian Redl26d85b12008-11-05 21:50:06 +0000252
253 case tok::kw_const_cast:
John Wiegley429bb272011-04-08 18:41:53 +0000254 if (!TypeDependent) {
John McCallb45ae252011-10-05 07:41:44 +0000255 Op.CheckConstCast();
256 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000257 return ExprError();
258 }
John McCall5acb0c92011-10-17 18:40:02 +0000259 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
260 Op.ValueKind, Op.SrcExpr.take(), DestTInfo,
261 OpLoc, Parens.getEnd()));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000262
Anders Carlsson714179b2009-08-02 19:07:59 +0000263 case tok::kw_dynamic_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000264 if (!TypeDependent) {
John McCallb45ae252011-10-05 07:41:44 +0000265 Op.CheckDynamicCast();
266 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000267 return ExprError();
268 }
John McCall5acb0c92011-10-17 18:40:02 +0000269 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
270 Op.ValueKind, Op.Kind, Op.SrcExpr.take(),
271 &Op.BasePath, DestTInfo,
272 OpLoc, Parens.getEnd()));
Anders Carlsson714179b2009-08-02 19:07:59 +0000273 }
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000274 case tok::kw_reinterpret_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000275 if (!TypeDependent) {
John McCallb45ae252011-10-05 07:41:44 +0000276 Op.CheckReinterpretCast();
277 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000278 return ExprError();
279 }
John McCall5acb0c92011-10-17 18:40:02 +0000280 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
281 Op.ValueKind, Op.Kind, Op.SrcExpr.take(),
282 0, DestTInfo, OpLoc,
283 Parens.getEnd()));
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000284 }
Anders Carlssoncdb61972009-08-07 22:21:05 +0000285 case tok::kw_static_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000286 if (!TypeDependent) {
Richard Smithc8d7f582011-11-29 22:48:16 +0000287 Op.CheckStaticCast();
John McCallb45ae252011-10-05 07:41:44 +0000288 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000289 return ExprError();
290 }
Anders Carlsson0aebc812009-09-09 21:33:21 +0000291
John McCall5acb0c92011-10-17 18:40:02 +0000292 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
293 Op.ValueKind, Op.Kind, Op.SrcExpr.take(),
294 &Op.BasePath, DestTInfo,
295 OpLoc, Parens.getEnd()));
Anders Carlssoncdb61972009-08-07 22:21:05 +0000296 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000297 }
298
Sebastian Redlf53597f2009-03-15 17:47:39 +0000299 return ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000300}
301
John McCall79ab2c82011-02-14 18:34:10 +0000302/// Try to diagnose a failed overloaded cast. Returns true if
303/// diagnostics were emitted.
304static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT,
305 SourceRange range, Expr *src,
306 QualType destType) {
307 switch (CT) {
308 // These cast kinds don't consider user-defined conversions.
309 case CT_Const:
310 case CT_Reinterpret:
311 case CT_Dynamic:
312 return false;
313
314 // These do.
315 case CT_Static:
316 case CT_CStyle:
317 case CT_Functional:
318 break;
319 }
320
321 QualType srcType = src->getType();
322 if (!destType->isRecordType() && !srcType->isRecordType())
323 return false;
324
325 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
326 InitializationKind initKind
John McCallf85e1932011-06-15 23:02:42 +0000327 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
328 range)
329 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range)
Richard Smithc8d7f582011-11-29 22:48:16 +0000330 : InitializationKind::CreateCast(/*type range?*/ range);
John McCall79ab2c82011-02-14 18:34:10 +0000331 InitializationSequence sequence(S, entity, initKind, &src, 1);
332
Sebastian Redl383616c2011-06-05 12:23:28 +0000333 assert(sequence.Failed() && "initialization succeeded on second try?");
John McCall79ab2c82011-02-14 18:34:10 +0000334 switch (sequence.getFailureKind()) {
335 default: return false;
336
337 case InitializationSequence::FK_ConstructorOverloadFailed:
338 case InitializationSequence::FK_UserConversionOverloadFailed:
339 break;
340 }
341
342 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet();
343
344 unsigned msg = 0;
345 OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates;
346
347 switch (sequence.getFailedOverloadResult()) {
348 case OR_Success: llvm_unreachable("successful failed overload");
349 return false;
350 case OR_No_Viable_Function:
351 if (candidates.empty())
352 msg = diag::err_ovl_no_conversion_in_cast;
353 else
354 msg = diag::err_ovl_no_viable_conversion_in_cast;
355 howManyCandidates = OCD_AllCandidates;
356 break;
357
358 case OR_Ambiguous:
359 msg = diag::err_ovl_ambiguous_conversion_in_cast;
360 howManyCandidates = OCD_ViableCandidates;
361 break;
362
363 case OR_Deleted:
364 msg = diag::err_ovl_deleted_conversion_in_cast;
365 howManyCandidates = OCD_ViableCandidates;
366 break;
367 }
368
369 S.Diag(range.getBegin(), msg)
370 << CT << srcType << destType
371 << range << src->getSourceRange();
372
373 candidates.NoteCandidates(S, howManyCandidates, &src, 1);
374
375 return true;
376}
377
378/// Diagnose a failed cast.
379static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType,
380 SourceRange opRange, Expr *src, QualType destType) {
John McCall864c0412011-04-26 20:42:42 +0000381 if (src->getType() == S.Context.BoundMemberTy) {
382 (void) S.CheckPlaceholderExpr(src); // will always fail
383 return;
384 }
385
John McCall79ab2c82011-02-14 18:34:10 +0000386 if (msg == diag::err_bad_cxx_cast_generic &&
387 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType))
388 return;
389
390 S.Diag(opRange.getBegin(), msg) << castType
391 << src->getType() << destType << opRange << src->getSourceRange();
392}
393
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000394/// UnwrapDissimilarPointerTypes - Like Sema::UnwrapSimilarPointerTypes,
395/// this removes one level of indirection from both types, provided that they're
396/// the same kind of pointer (plain or to-member). Unlike the Sema function,
397/// this one doesn't care if the two pointers-to-member don't point into the
398/// same class. This is because CastsAwayConstness doesn't care.
Dan Gohman3c46e8d2010-07-26 21:25:24 +0000399static bool UnwrapDissimilarPointerTypes(QualType& T1, QualType& T2) {
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000400 const PointerType *T1PtrType = T1->getAs<PointerType>(),
401 *T2PtrType = T2->getAs<PointerType>();
402 if (T1PtrType && T2PtrType) {
403 T1 = T1PtrType->getPointeeType();
404 T2 = T2PtrType->getPointeeType();
405 return true;
406 }
Fariborz Jahanian72a86592010-02-03 20:32:31 +0000407 const ObjCObjectPointerType *T1ObjCPtrType =
408 T1->getAs<ObjCObjectPointerType>(),
409 *T2ObjCPtrType =
410 T2->getAs<ObjCObjectPointerType>();
411 if (T1ObjCPtrType) {
412 if (T2ObjCPtrType) {
413 T1 = T1ObjCPtrType->getPointeeType();
414 T2 = T2ObjCPtrType->getPointeeType();
415 return true;
416 }
417 else if (T2PtrType) {
418 T1 = T1ObjCPtrType->getPointeeType();
419 T2 = T2PtrType->getPointeeType();
420 return true;
421 }
422 }
423 else if (T2ObjCPtrType) {
424 if (T1PtrType) {
425 T2 = T2ObjCPtrType->getPointeeType();
426 T1 = T1PtrType->getPointeeType();
427 return true;
428 }
429 }
430
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000431 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
432 *T2MPType = T2->getAs<MemberPointerType>();
433 if (T1MPType && T2MPType) {
434 T1 = T1MPType->getPointeeType();
435 T2 = T2MPType->getPointeeType();
436 return true;
437 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000438
439 const BlockPointerType *T1BPType = T1->getAs<BlockPointerType>(),
440 *T2BPType = T2->getAs<BlockPointerType>();
441 if (T1BPType && T2BPType) {
442 T1 = T1BPType->getPointeeType();
443 T2 = T2BPType->getPointeeType();
444 return true;
445 }
446
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000447 return false;
448}
449
Sebastian Redldb647282009-01-27 23:18:31 +0000450/// CastsAwayConstness - Check if the pointer conversion from SrcType to
451/// DestType casts away constness as defined in C++ 5.2.11p8ff. This is used by
452/// the cast checkers. Both arguments must denote pointer (possibly to member)
453/// types.
John McCallf85e1932011-06-15 23:02:42 +0000454///
455/// \param CheckCVR Whether to check for const/volatile/restrict qualifiers.
456///
457/// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers.
Sebastian Redl5ed66f72009-10-22 15:07:22 +0000458static bool
John McCallf85e1932011-06-15 23:02:42 +0000459CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
460 bool CheckCVR, bool CheckObjCLifetime) {
461 // If the only checking we care about is for Objective-C lifetime qualifiers,
462 // and we're not in ARC mode, there's nothing to check.
463 if (!CheckCVR && CheckObjCLifetime &&
464 !Self.Context.getLangOptions().ObjCAutoRefCount)
465 return false;
466
Sebastian Redldb647282009-01-27 23:18:31 +0000467 // Casting away constness is defined in C++ 5.2.11p8 with reference to
468 // C++ 4.4. We piggyback on Sema::IsQualificationConversion for this, since
469 // the rules are non-trivial. So first we construct Tcv *...cv* as described
470 // in C++ 5.2.11p8.
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000471 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
472 SrcType->isBlockPointerType()) &&
Sebastian Redldb647282009-01-27 23:18:31 +0000473 "Source type is not pointer or pointer to member.");
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000474 assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() ||
475 DestType->isBlockPointerType()) &&
Sebastian Redldb647282009-01-27 23:18:31 +0000476 "Destination type is not pointer or pointer to member.");
Sebastian Redl26d85b12008-11-05 21:50:06 +0000477
Douglas Gregorab15d0e2009-11-15 09:20:52 +0000478 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
479 UnwrappedDestType = Self.Context.getCanonicalType(DestType);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000480 SmallVector<Qualifiers, 8> cv1, cv2;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000481
Douglas Gregord4c5f842011-04-15 17:59:54 +0000482 // Find the qualifiers. We only care about cvr-qualifiers for the
483 // purpose of this check, because other qualifiers (address spaces,
484 // Objective-C GC, etc.) are part of the type's identity.
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000485 while (UnwrapDissimilarPointerTypes(UnwrappedSrcType, UnwrappedDestType)) {
John McCallf85e1932011-06-15 23:02:42 +0000486 // Determine the relevant qualifiers at this level.
487 Qualifiers SrcQuals, DestQuals;
Anders Carlsson52647c62010-06-04 22:47:55 +0000488 Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals);
Anders Carlsson52647c62010-06-04 22:47:55 +0000489 Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals);
John McCallf85e1932011-06-15 23:02:42 +0000490
491 Qualifiers RetainedSrcQuals, RetainedDestQuals;
492 if (CheckCVR) {
493 RetainedSrcQuals.setCVRQualifiers(SrcQuals.getCVRQualifiers());
494 RetainedDestQuals.setCVRQualifiers(DestQuals.getCVRQualifiers());
495 }
496
497 if (CheckObjCLifetime &&
498 !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals))
499 return true;
500
501 cv1.push_back(RetainedSrcQuals);
502 cv2.push_back(RetainedDestQuals);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000503 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000504 if (cv1.empty())
505 return false;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000506
507 // Construct void pointers with those qualifiers (in reverse order of
508 // unwrapping, of course).
Sebastian Redl37d6de32008-11-08 13:00:26 +0000509 QualType SrcConstruct = Self.Context.VoidTy;
510 QualType DestConstruct = Self.Context.VoidTy;
John McCall0953e762009-09-24 19:53:00 +0000511 ASTContext &Context = Self.Context;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000512 for (SmallVector<Qualifiers, 8>::reverse_iterator i1 = cv1.rbegin(),
John McCall0953e762009-09-24 19:53:00 +0000513 i2 = cv2.rbegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000514 i1 != cv1.rend(); ++i1, ++i2) {
John McCall0953e762009-09-24 19:53:00 +0000515 SrcConstruct
516 = Context.getPointerType(Context.getQualifiedType(SrcConstruct, *i1));
517 DestConstruct
518 = Context.getPointerType(Context.getQualifiedType(DestConstruct, *i2));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000519 }
520
521 // Test if they're compatible.
John McCallf85e1932011-06-15 23:02:42 +0000522 bool ObjCLifetimeConversion;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000523 return SrcConstruct != DestConstruct &&
John McCallf85e1932011-06-15 23:02:42 +0000524 !Self.IsQualificationConversion(SrcConstruct, DestConstruct, false,
525 ObjCLifetimeConversion);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000526}
527
Sebastian Redl26d85b12008-11-05 21:50:06 +0000528/// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid.
529/// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime-
530/// checked downcasts in class hierarchies.
John McCallb45ae252011-10-05 07:41:44 +0000531void CastOperation::CheckDynamicCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000532 if (ValueKind == VK_RValue)
Eli Friedman7a420df2011-10-31 20:59:03 +0000533 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000534 else if (isPlaceholder())
535 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take());
536 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
537 return;
Eli Friedman7a420df2011-10-31 20:59:03 +0000538
John McCallb45ae252011-10-05 07:41:44 +0000539 QualType OrigSrcType = SrcExpr.get()->getType();
540 QualType DestType = Self.Context.getCanonicalType(this->DestType);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000541
542 // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type,
543 // or "pointer to cv void".
544
545 QualType DestPointee;
Ted Kremenek6217b802009-07-29 21:53:49 +0000546 const PointerType *DestPointer = DestType->getAs<PointerType>();
John McCallf89e55a2010-11-18 06:31:45 +0000547 const ReferenceType *DestReference = 0;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000548 if (DestPointer) {
549 DestPointee = DestPointer->getPointeeType();
John McCallf89e55a2010-11-18 06:31:45 +0000550 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
Sebastian Redl26d85b12008-11-05 21:50:06 +0000551 DestPointee = DestReference->getPointeeType();
552 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000553 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr)
John McCallb45ae252011-10-05 07:41:44 +0000554 << this->DestType << DestRange;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000555 return;
556 }
557
Ted Kremenek6217b802009-07-29 21:53:49 +0000558 const RecordType *DestRecord = DestPointee->getAs<RecordType>();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000559 if (DestPointee->isVoidType()) {
560 assert(DestPointer && "Reference to void is not possible");
561 } else if (DestRecord) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000562 if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +0000563 Self.PDiag(diag::err_bad_dynamic_cast_incomplete)
Anders Carlssonb7906612009-08-26 23:45:07 +0000564 << DestRange))
Sebastian Redl26d85b12008-11-05 21:50:06 +0000565 return;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000566 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000567 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000568 << DestPointee.getUnqualifiedType() << DestRange;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000569 return;
570 }
571
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000572 // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to
573 // complete class type, [...]. If T is an lvalue reference type, v shall be
Douglas Gregordc843f22011-01-22 00:06:57 +0000574 // an lvalue of a complete class type, [...]. If T is an rvalue reference
575 // type, v shall be an expression having a complete class type, [...]
Sebastian Redl37d6de32008-11-08 13:00:26 +0000576 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000577 QualType SrcPointee;
578 if (DestPointer) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000579 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl26d85b12008-11-05 21:50:06 +0000580 SrcPointee = SrcPointer->getPointeeType();
581 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000582 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr)
John Wiegley429bb272011-04-08 18:41:53 +0000583 << OrigSrcType << SrcExpr.get()->getSourceRange();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000584 return;
585 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000586 } else if (DestReference->isLValueReferenceType()) {
John Wiegley429bb272011-04-08 18:41:53 +0000587 if (!SrcExpr.get()->isLValue()) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000588 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue)
John McCallb45ae252011-10-05 07:41:44 +0000589 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000590 }
591 SrcPointee = SrcType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000592 } else {
593 SrcPointee = SrcType;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000594 }
595
Ted Kremenek6217b802009-07-29 21:53:49 +0000596 const RecordType *SrcRecord = SrcPointee->getAs<RecordType>();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000597 if (SrcRecord) {
Douglas Gregor86447ec2009-03-09 16:13:40 +0000598 if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +0000599 Self.PDiag(diag::err_bad_dynamic_cast_incomplete)
John Wiegley429bb272011-04-08 18:41:53 +0000600 << SrcExpr.get()->getSourceRange()))
Sebastian Redl26d85b12008-11-05 21:50:06 +0000601 return;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000602 } else {
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000603 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
John Wiegley429bb272011-04-08 18:41:53 +0000604 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000605 return;
606 }
607
608 assert((DestPointer || DestReference) &&
609 "Bad destination non-ptr/ref slipped through.");
610 assert((DestRecord || DestPointee->isVoidType()) &&
611 "Bad destination pointee slipped through.");
612 assert(SrcRecord && "Bad source pointee slipped through.");
613
614 // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness.
615 if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +0000616 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away)
John McCallb45ae252011-10-05 07:41:44 +0000617 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000618 return;
619 }
620
621 // C++ 5.2.7p3: If the type of v is the same as the required result type,
622 // [except for cv].
623 if (DestRecord == SrcRecord) {
John McCall2de56d12010-08-25 11:45:40 +0000624 Kind = CK_NoOp;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000625 return;
626 }
627
628 // C++ 5.2.7p5
629 // Upcasts are resolved statically.
Sebastian Redl37d6de32008-11-08 13:00:26 +0000630 if (DestRecord && Self.IsDerivedFrom(SrcPointee, DestPointee)) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000631 if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee,
632 OpRange.getBegin(), OpRange,
633 &BasePath))
634 return;
635
John McCall2de56d12010-08-25 11:45:40 +0000636 Kind = CK_DerivedToBase;
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000637
638 // If we are casting to or through a virtual base class, we need a
639 // vtable.
640 if (Self.BasePathInvolvesVirtualBase(BasePath))
641 Self.MarkVTableUsed(OpRange.getBegin(),
642 cast<CXXRecordDecl>(SrcRecord->getDecl()));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000643 return;
644 }
645
646 // C++ 5.2.7p6: Otherwise, v shall be [polymorphic].
Douglas Gregor952b0172010-02-11 01:04:33 +0000647 const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition();
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000648 assert(SrcDecl && "Definition missing");
649 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000650 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic)
John Wiegley429bb272011-04-08 18:41:53 +0000651 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000652 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000653 Self.MarkVTableUsed(OpRange.getBegin(),
654 cast<CXXRecordDecl>(SrcRecord->getDecl()));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000655
656 // Done. Everything else is run-time checks.
John McCall2de56d12010-08-25 11:45:40 +0000657 Kind = CK_Dynamic;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000658}
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000659
660/// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid.
661/// Refer to C++ 5.2.11 for details. const_cast is typically used in code
662/// like this:
663/// const char *str = "literal";
664/// legacy_function(const_cast\<char*\>(str));
John McCallb45ae252011-10-05 07:41:44 +0000665void CastOperation::CheckConstCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000666 if (ValueKind == VK_RValue)
John Wiegley429bb272011-04-08 18:41:53 +0000667 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000668 else if (isPlaceholder())
669 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take());
670 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
671 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000672
673 unsigned msg = diag::err_bad_cxx_cast_generic;
John Wiegley429bb272011-04-08 18:41:53 +0000674 if (TryConstCast(Self, SrcExpr.get(), DestType, /*CStyle*/false, msg) != TC_Success
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000675 && msg != 0)
676 Self.Diag(OpRange.getBegin(), msg) << CT_Const
John Wiegley429bb272011-04-08 18:41:53 +0000677 << SrcExpr.get()->getType() << DestType << OpRange;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000678}
679
680/// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is
681/// valid.
682/// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code
683/// like this:
684/// char *bytes = reinterpret_cast\<char*\>(int_ptr);
John McCallb45ae252011-10-05 07:41:44 +0000685void CastOperation::CheckReinterpretCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000686 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
John Wiegley429bb272011-04-08 18:41:53 +0000687 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000688 else
689 checkNonOverloadPlaceholders();
690 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
691 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000692
693 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCallf85e1932011-06-15 23:02:42 +0000694 TryCastResult tcr =
695 TryReinterpretCast(Self, SrcExpr, DestType,
696 /*CStyle*/false, OpRange, msg, Kind);
697 if (tcr != TC_Success && msg != 0)
Douglas Gregor8e960432010-11-08 03:40:48 +0000698 {
John Wiegley429bb272011-04-08 18:41:53 +0000699 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
700 return;
701 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor8e960432010-11-08 03:40:48 +0000702 //FIXME: &f<int>; is overloaded and resolvable
703 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload)
John Wiegley429bb272011-04-08 18:41:53 +0000704 << OverloadExpr::find(SrcExpr.get()).Expression->getName()
Douglas Gregor8e960432010-11-08 03:40:48 +0000705 << DestType << OpRange;
John Wiegley429bb272011-04-08 18:41:53 +0000706 Self.NoteAllOverloadCandidates(SrcExpr.get());
Douglas Gregor8e960432010-11-08 03:40:48 +0000707
John McCall79ab2c82011-02-14 18:34:10 +0000708 } else {
John Wiegley429bb272011-04-08 18:41:53 +0000709 diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(), DestType);
Douglas Gregor8e960432010-11-08 03:40:48 +0000710 }
John McCallf85e1932011-06-15 23:02:42 +0000711 } else if (tcr == TC_Success && Self.getLangOptions().ObjCAutoRefCount) {
John McCallb45ae252011-10-05 07:41:44 +0000712 checkObjCARCConversion(Sema::CCK_OtherCast);
John McCallf85e1932011-06-15 23:02:42 +0000713 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000714}
715
716
717/// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid.
718/// Refer to C++ 5.2.9 for details. Static casts are mostly used for making
719/// implicit conversions explicit and getting rid of data loss warnings.
Richard Smithc8d7f582011-11-29 22:48:16 +0000720void CastOperation::CheckStaticCast() {
John McCalla180f042011-10-06 23:25:11 +0000721 if (isPlaceholder()) {
722 checkNonOverloadPlaceholders();
723 if (SrcExpr.isInvalid())
724 return;
725 }
726
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000727 // This test is outside everything else because it's the only case where
728 // a non-lvalue-reference target type does not lead to decay.
729 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Eli Friedman05d9d7a2009-11-16 05:44:20 +0000730 if (DestType->isVoidType()) {
John McCalla180f042011-10-06 23:25:11 +0000731 Kind = CK_ToVoid;
732
733 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall6dbba4f2011-10-11 23:14:30 +0000734 Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr,
Douglas Gregor1be8eec2011-02-19 21:32:49 +0000735 false, // Decay Function to ptr
736 true, // Complain
737 OpRange, DestType, diag::err_bad_static_cast_overload);
John McCall6dbba4f2011-10-11 23:14:30 +0000738 if (SrcExpr.isInvalid())
739 return;
Douglas Gregor1be8eec2011-02-19 21:32:49 +0000740 }
John McCalla180f042011-10-06 23:25:11 +0000741
742 SrcExpr = Self.IgnoredValueConversions(SrcExpr.take());
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000743 return;
Eli Friedman05d9d7a2009-11-16 05:44:20 +0000744 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000745
John McCall6dbba4f2011-10-11 23:14:30 +0000746 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
747 !isPlaceholder(BuiltinType::Overload)) {
John Wiegley429bb272011-04-08 18:41:53 +0000748 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
749 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
750 return;
751 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000752
753 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCallf85e1932011-06-15 23:02:42 +0000754 TryCastResult tcr
Richard Smithc8d7f582011-11-29 22:48:16 +0000755 = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg,
John McCallf85e1932011-06-15 23:02:42 +0000756 Kind, BasePath);
757 if (tcr != TC_Success && msg != 0) {
John Wiegley429bb272011-04-08 18:41:53 +0000758 if (SrcExpr.isInvalid())
759 return;
760 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
761 OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression;
Douglas Gregor8e960432010-11-08 03:40:48 +0000762 Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload)
Douglas Gregor4c9be892011-02-28 20:01:57 +0000763 << oe->getName() << DestType << OpRange
764 << oe->getQualifierLoc().getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +0000765 Self.NoteAllOverloadCandidates(SrcExpr.get());
John McCall79ab2c82011-02-14 18:34:10 +0000766 } else {
John Wiegley429bb272011-04-08 18:41:53 +0000767 diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType);
Douglas Gregor8e960432010-11-08 03:40:48 +0000768 }
John McCallf85e1932011-06-15 23:02:42 +0000769 } else if (tcr == TC_Success) {
770 if (Kind == CK_BitCast)
John McCallb45ae252011-10-05 07:41:44 +0000771 checkCastAlign();
772 if (Self.getLangOptions().ObjCAutoRefCount)
Richard Smithc8d7f582011-11-29 22:48:16 +0000773 checkObjCARCConversion(Sema::CCK_OtherCast);
John McCallb45ae252011-10-05 07:41:44 +0000774 } else if (Kind == CK_BitCast) {
775 checkCastAlign();
Douglas Gregor8e960432010-11-08 03:40:48 +0000776 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000777}
778
779/// TryStaticCast - Check if a static cast can be performed, and do so if
780/// possible. If @p CStyle, ignore access restrictions on hierarchy casting
781/// and casting away constness.
John Wiegley429bb272011-04-08 18:41:53 +0000782static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000783 QualType DestType,
784 Sema::CheckedConversionKind CCK,
Anders Carlssoncb3c3082009-09-01 20:52:42 +0000785 const SourceRange &OpRange, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000786 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000787 CXXCastPath &BasePath) {
John McCallf85e1932011-06-15 23:02:42 +0000788 // Determine whether we have the semantics of a C-style cast.
789 bool CStyle
790 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
791
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000792 // The order the tests is not entirely arbitrary. There is one conversion
793 // that can be handled in two different ways. Given:
794 // struct A {};
795 // struct B : public A {
796 // B(); B(const A&);
797 // };
798 // const A &a = B();
799 // the cast static_cast<const B&>(a) could be seen as either a static
800 // reference downcast, or an explicit invocation of the user-defined
801 // conversion using B's conversion constructor.
802 // DR 427 specifies that the downcast is to be applied here.
803
804 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
805 // Done outside this function.
806
807 TryCastResult tcr;
808
809 // C++ 5.2.9p5, reference downcast.
810 // See the function for details.
811 // DR 427 specifies that this is to be applied before paragraph 2.
John Wiegley429bb272011-04-08 18:41:53 +0000812 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle, OpRange,
Anders Carlssonf9d68e12010-04-24 19:36:51 +0000813 msg, Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000814 if (tcr != TC_NotApplicable)
815 return tcr;
816
Douglas Gregordc843f22011-01-22 00:06:57 +0000817 // C++0x [expr.static.cast]p3:
818 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2
819 // T2" if "cv2 T2" is reference-compatible with "cv1 T1".
John Wiegley429bb272011-04-08 18:41:53 +0000820 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind, BasePath,
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000821 msg);
Douglas Gregor88b22a42011-01-25 16:13:26 +0000822 if (tcr != TC_NotApplicable)
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000823 return tcr;
824
825 // C++ 5.2.9p2: An expression e can be explicitly converted to a type T
826 // [...] if the declaration "T t(e);" is well-formed, [...].
John McCallf85e1932011-06-15 23:02:42 +0000827 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
Douglas Gregord6e44a32010-04-16 22:09:46 +0000828 Kind);
John Wiegley429bb272011-04-08 18:41:53 +0000829 if (SrcExpr.isInvalid())
830 return TC_Failed;
Anders Carlsson3c31a392009-09-26 00:12:34 +0000831 if (tcr != TC_NotApplicable)
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000832 return tcr;
Anders Carlsson0aebc812009-09-09 21:33:21 +0000833
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000834 // C++ 5.2.9p6: May apply the reverse of any standard conversion, except
835 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
836 // conversions, subject to further restrictions.
837 // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal
838 // of qualification conversions impossible.
839 // In the CStyle case, the earlier attempt to const_cast should have taken
840 // care of reverse qualification conversions.
841
John Wiegley429bb272011-04-08 18:41:53 +0000842 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType());
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000843
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000844 // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly
Douglas Gregor1e856d92011-02-18 03:01:41 +0000845 // converted to an integral type. [...] A value of a scoped enumeration type
846 // can also be explicitly converted to a floating-point type [...].
847 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
848 if (Enum->getDecl()->isScoped()) {
849 if (DestType->isBooleanType()) {
850 Kind = CK_IntegralToBoolean;
851 return TC_Success;
852 } else if (DestType->isIntegralType(Self.Context)) {
853 Kind = CK_IntegralCast;
854 return TC_Success;
855 } else if (DestType->isRealFloatingType()) {
856 Kind = CK_IntegralToFloating;
857 return TC_Success;
858 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000859 }
860 }
Douglas Gregor1e856d92011-02-18 03:01:41 +0000861
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000862 // Reverse integral promotion/conversion. All such conversions are themselves
863 // again integral promotions or conversions and are thus already handled by
864 // p2 (TryDirectInitialization above).
865 // (Note: any data loss warnings should be suppressed.)
866 // The exception is the reverse of enum->integer, i.e. integer->enum (and
867 // enum->enum). See also C++ 5.2.9p7.
868 // The same goes for reverse floating point promotion/conversion and
869 // floating-integral conversions. Again, only floating->enum is relevant.
870 if (DestType->isEnumeralType()) {
Eli Friedmancc2fca22011-09-02 17:38:59 +0000871 if (SrcType->isIntegralOrEnumerationType()) {
John McCall2de56d12010-08-25 11:45:40 +0000872 Kind = CK_IntegralCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000873 return TC_Success;
Eli Friedmancc2fca22011-09-02 17:38:59 +0000874 } else if (SrcType->isRealFloatingType()) {
875 Kind = CK_FloatingToIntegral;
876 return TC_Success;
Eli Friedman05d9d7a2009-11-16 05:44:20 +0000877 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000878 }
879
880 // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast.
881 // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance.
Anders Carlsson95c5d8a2009-11-12 16:53:16 +0000882 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
Anders Carlssonf9d68e12010-04-24 19:36:51 +0000883 Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000884 if (tcr != TC_NotApplicable)
885 return tcr;
886
887 // Reverse member pointer conversion. C++ 4.11 specifies member pointer
888 // conversion. C++ 5.2.9p9 has additional information.
889 // DR54's access restrictions apply here also.
Douglas Gregor4ce46c22010-03-07 23:24:59 +0000890 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
Anders Carlssoncee22422010-04-24 19:22:20 +0000891 OpRange, msg, Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000892 if (tcr != TC_NotApplicable)
893 return tcr;
894
895 // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to
896 // void*. C++ 5.2.9p10 specifies additional restrictions, which really is
897 // just the usual constness stuff.
Ted Kremenek6217b802009-07-29 21:53:49 +0000898 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000899 QualType SrcPointee = SrcPointer->getPointeeType();
900 if (SrcPointee->isVoidType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000901 if (const PointerType *DestPointer = DestType->getAs<PointerType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000902 QualType DestPointee = DestPointer->getPointeeType();
903 if (DestPointee->isIncompleteOrObjectType()) {
904 // This is definitely the intended conversion, but it might fail due
John McCallf85e1932011-06-15 23:02:42 +0000905 // to a qualifier violation. Note that we permit Objective-C lifetime
906 // and GC qualifier mismatches here.
907 if (!CStyle) {
908 Qualifiers DestPointeeQuals = DestPointee.getQualifiers();
909 Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers();
910 DestPointeeQuals.removeObjCGCAttr();
911 DestPointeeQuals.removeObjCLifetime();
912 SrcPointeeQuals.removeObjCGCAttr();
913 SrcPointeeQuals.removeObjCLifetime();
914 if (DestPointeeQuals != SrcPointeeQuals &&
915 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) {
916 msg = diag::err_bad_cxx_cast_qualifiers_away;
917 return TC_Failed;
918 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000919 }
John McCall2de56d12010-08-25 11:45:40 +0000920 Kind = CK_BitCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000921 return TC_Success;
922 }
923 }
Fariborz Jahanian2f6c5502010-05-10 23:46:53 +0000924 else if (DestType->isObjCObjectPointerType()) {
925 // allow both c-style cast and static_cast of objective-c pointers as
926 // they are pervasive.
John McCall1d9b3b22011-09-09 05:25:32 +0000927 Kind = CK_CPointerToObjCPointerCast;
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +0000928 return TC_Success;
929 }
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +0000930 else if (CStyle && DestType->isBlockPointerType()) {
931 // allow c-style cast of void * to block pointers.
John McCall2de56d12010-08-25 11:45:40 +0000932 Kind = CK_AnyPointerToBlockPointerCast;
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +0000933 return TC_Success;
934 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000935 }
936 }
Fariborz Jahanian65267b22010-05-12 18:16:59 +0000937 // Allow arbitray objective-c pointer conversion with static casts.
938 if (SrcType->isObjCObjectPointerType() &&
John McCalldaa8e4e2010-11-15 09:13:47 +0000939 DestType->isObjCObjectPointerType()) {
940 Kind = CK_BitCast;
Fariborz Jahanian65267b22010-05-12 18:16:59 +0000941 return TC_Success;
John McCalldaa8e4e2010-11-15 09:13:47 +0000942 }
Fariborz Jahanian65267b22010-05-12 18:16:59 +0000943
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000944 // We tried everything. Everything! Nothing works! :-(
945 return TC_NotApplicable;
946}
947
948/// Tests whether a conversion according to N2844 is valid.
949TryCastResult
950TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, QualType DestType,
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000951 bool CStyle, CastKind &Kind, CXXCastPath &BasePath,
952 unsigned &msg) {
Douglas Gregordc843f22011-01-22 00:06:57 +0000953 // C++0x [expr.static.cast]p3:
954 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
955 // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Ted Kremenek6217b802009-07-29 21:53:49 +0000956 const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000957 if (!R)
958 return TC_NotApplicable;
959
Douglas Gregordc843f22011-01-22 00:06:57 +0000960 if (!SrcExpr->isGLValue())
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000961 return TC_NotApplicable;
962
963 // Because we try the reference downcast before this function, from now on
964 // this is the only cast possibility, so we issue an error if we fail now.
965 // FIXME: Should allow casting away constness if CStyle.
966 bool DerivedToBase;
Douglas Gregor569c3162010-08-07 11:51:51 +0000967 bool ObjCConversion;
John McCallf85e1932011-06-15 23:02:42 +0000968 bool ObjCLifetimeConversion;
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000969 QualType FromType = SrcExpr->getType();
970 QualType ToType = R->getPointeeType();
971 if (CStyle) {
972 FromType = FromType.getUnqualifiedType();
973 ToType = ToType.getUnqualifiedType();
974 }
975
Douglas Gregor393896f2009-11-05 13:06:35 +0000976 if (Self.CompareReferenceRelationship(SrcExpr->getLocStart(),
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000977 ToType, FromType,
John McCallf85e1932011-06-15 23:02:42 +0000978 DerivedToBase, ObjCConversion,
979 ObjCLifetimeConversion)
980 < Sema::Ref_Compatible_With_Added_Qualification) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000981 msg = diag::err_bad_lvalue_to_rvalue_cast;
982 return TC_Failed;
983 }
984
Douglas Gregor88b22a42011-01-25 16:13:26 +0000985 if (DerivedToBase) {
986 Kind = CK_DerivedToBase;
987 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
988 /*DetectVirtual=*/true);
989 if (!Self.IsDerivedFrom(SrcExpr->getType(), R->getPointeeType(), Paths))
990 return TC_NotApplicable;
991
992 Self.BuildBasePathArray(Paths, BasePath);
993 } else
994 Kind = CK_NoOp;
995
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000996 return TC_Success;
997}
998
999/// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1000TryCastResult
1001TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
1002 bool CStyle, const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001003 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001004 CXXCastPath &BasePath) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001005 // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1006 // cast to type "reference to cv2 D", where D is a class derived from B,
1007 // if a valid standard conversion from "pointer to D" to "pointer to B"
1008 // exists, cv2 >= cv1, and B is not a virtual base class of D.
1009 // In addition, DR54 clarifies that the base must be accessible in the
1010 // current context. Although the wording of DR54 only applies to the pointer
1011 // variant of this rule, the intent is clearly for it to apply to the this
1012 // conversion as well.
1013
Ted Kremenek6217b802009-07-29 21:53:49 +00001014 const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001015 if (!DestReference) {
1016 return TC_NotApplicable;
1017 }
1018 bool RValueRef = DestReference->isRValueReferenceType();
John McCall7eb0a9e2010-11-24 05:12:34 +00001019 if (!RValueRef && !SrcExpr->isLValue()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001020 // We know the left side is an lvalue reference, so we can suggest a reason.
1021 msg = diag::err_bad_cxx_cast_rvalue;
1022 return TC_NotApplicable;
1023 }
1024
1025 QualType DestPointee = DestReference->getPointeeType();
1026
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001027 return TryStaticDowncast(Self,
1028 Self.Context.getCanonicalType(SrcExpr->getType()),
1029 Self.Context.getCanonicalType(DestPointee), CStyle,
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001030 OpRange, SrcExpr->getType(), DestType, msg, Kind,
1031 BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001032}
1033
1034/// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1035TryCastResult
1036TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
Mike Stump1eb44332009-09-09 15:08:12 +00001037 bool CStyle, const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001038 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001039 CXXCastPath &BasePath) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001040 // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1041 // type, can be converted to an rvalue of type "pointer to cv2 D", where D
1042 // is a class derived from B, if a valid standard conversion from "pointer
1043 // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1044 // class of D.
1045 // In addition, DR54 clarifies that the base must be accessible in the
1046 // current context.
1047
Ted Kremenek6217b802009-07-29 21:53:49 +00001048 const PointerType *DestPointer = DestType->getAs<PointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001049 if (!DestPointer) {
1050 return TC_NotApplicable;
1051 }
1052
Ted Kremenek6217b802009-07-29 21:53:49 +00001053 const PointerType *SrcPointer = SrcType->getAs<PointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001054 if (!SrcPointer) {
1055 msg = diag::err_bad_static_cast_pointer_nonpointer;
1056 return TC_NotApplicable;
1057 }
1058
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001059 return TryStaticDowncast(Self,
1060 Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
1061 Self.Context.getCanonicalType(DestPointer->getPointeeType()),
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001062 CStyle, OpRange, SrcType, DestType, msg, Kind,
1063 BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001064}
1065
1066/// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1067/// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001068/// DestType is possible and allowed.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001069TryCastResult
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001070TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001071 bool CStyle, const SourceRange &OpRange, QualType OrigSrcType,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +00001072 QualType OrigDestType, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +00001073 CastKind &Kind, CXXCastPath &BasePath) {
Sebastian Redl5ed66f72009-10-22 15:07:22 +00001074 // We can only work with complete types. But don't complain if it doesn't work
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00001075 if (Self.RequireCompleteType(OpRange.getBegin(), SrcType, Self.PDiag(0)) ||
1076 Self.RequireCompleteType(OpRange.getBegin(), DestType, Self.PDiag(0)))
Sebastian Redl5ed66f72009-10-22 15:07:22 +00001077 return TC_NotApplicable;
1078
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001079 // Downcast can only happen in class hierarchies, so we need classes.
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001080 if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001081 return TC_NotApplicable;
1082 }
1083
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001084 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001085 /*DetectVirtual=*/true);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001086 if (!Self.IsDerivedFrom(DestType, SrcType, Paths)) {
1087 return TC_NotApplicable;
1088 }
1089
1090 // Target type does derive from source type. Now we're serious. If an error
1091 // appears now, it's not ignored.
1092 // This may not be entirely in line with the standard. Take for example:
1093 // struct A {};
1094 // struct B : virtual A {
1095 // B(A&);
1096 // };
Mike Stump1eb44332009-09-09 15:08:12 +00001097 //
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001098 // void f()
1099 // {
1100 // (void)static_cast<const B&>(*((A*)0));
1101 // }
1102 // As far as the standard is concerned, p5 does not apply (A is virtual), so
1103 // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1104 // However, both GCC and Comeau reject this example, and accepting it would
1105 // mean more complex code if we're to preserve the nice error message.
1106 // FIXME: Being 100% compliant here would be nice to have.
1107
1108 // Must preserve cv, as always, unless we're in C-style mode.
1109 if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001110 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001111 return TC_Failed;
1112 }
1113
1114 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1115 // This code is analoguous to that in CheckDerivedToBaseConversion, except
1116 // that it builds the paths in reverse order.
1117 // To sum up: record all paths to the base and build a nice string from
1118 // them. Use it to spice up the error message.
1119 if (!Paths.isRecordingPaths()) {
1120 Paths.clear();
1121 Paths.setRecordingPaths(true);
1122 Self.IsDerivedFrom(DestType, SrcType, Paths);
1123 }
1124 std::string PathDisplayStr;
1125 std::set<unsigned> DisplayedPaths;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001126 for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001127 PI != PE; ++PI) {
1128 if (DisplayedPaths.insert(PI->back().SubobjectNumber).second) {
1129 // We haven't displayed a path to this particular base
1130 // class subobject yet.
1131 PathDisplayStr += "\n ";
Douglas Gregora8f32e02009-10-06 17:59:45 +00001132 for (CXXBasePath::const_reverse_iterator EI = PI->rbegin(),
1133 EE = PI->rend();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001134 EI != EE; ++EI)
1135 PathDisplayStr += EI->Base->getType().getAsString() + " -> ";
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001136 PathDisplayStr += QualType(DestType).getAsString();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001137 }
1138 }
1139
1140 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001141 << QualType(SrcType).getUnqualifiedType()
1142 << QualType(DestType).getUnqualifiedType()
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001143 << PathDisplayStr << OpRange;
1144 msg = 0;
1145 return TC_Failed;
1146 }
1147
1148 if (Paths.getDetectedVirtual() != 0) {
1149 QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1150 Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1151 << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1152 msg = 0;
1153 return TC_Failed;
1154 }
1155
John McCall417d39f2011-02-14 23:21:33 +00001156 if (!CStyle) {
1157 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1158 SrcType, DestType,
1159 Paths.front(),
John McCall58e6f342010-03-16 05:22:47 +00001160 diag::err_downcast_from_inaccessible_base)) {
John McCall417d39f2011-02-14 23:21:33 +00001161 case Sema::AR_accessible:
1162 case Sema::AR_delayed: // be optimistic
1163 case Sema::AR_dependent: // be optimistic
1164 break;
1165
1166 case Sema::AR_inaccessible:
1167 msg = 0;
1168 return TC_Failed;
1169 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001170 }
1171
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001172 Self.BuildBasePathArray(Paths, BasePath);
John McCall2de56d12010-08-25 11:45:40 +00001173 Kind = CK_BaseToDerived;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001174 return TC_Success;
1175}
1176
1177/// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1178/// C++ 5.2.9p9 is valid:
1179///
1180/// An rvalue of type "pointer to member of D of type cv1 T" can be
1181/// converted to an rvalue of type "pointer to member of B of type cv2 T",
1182/// where B is a base class of D [...].
1183///
1184TryCastResult
John Wiegley429bb272011-04-08 18:41:53 +00001185TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001186 QualType DestType, bool CStyle,
1187 const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001188 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001189 CXXCastPath &BasePath) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001190 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001191 if (!DestMemPtr)
1192 return TC_NotApplicable;
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001193
1194 bool WasOverloadedFunction = false;
John McCall6bb80172010-03-30 21:47:33 +00001195 DeclAccessPair FoundOverload;
John Wiegley429bb272011-04-08 18:41:53 +00001196 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001197 if (FunctionDecl *Fn
John Wiegley429bb272011-04-08 18:41:53 +00001198 = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001199 FoundOverload)) {
1200 CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1201 SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1202 Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1203 WasOverloadedFunction = true;
1204 }
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001205 }
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001206
Ted Kremenek6217b802009-07-29 21:53:49 +00001207 const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001208 if (!SrcMemPtr) {
1209 msg = diag::err_bad_static_cast_member_pointer_nonmp;
1210 return TC_NotApplicable;
1211 }
1212
1213 // T == T, modulo cv
Douglas Gregora4923eb2009-11-16 21:35:15 +00001214 if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1215 DestMemPtr->getPointeeType()))
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001216 return TC_NotApplicable;
1217
1218 // B base of D
1219 QualType SrcClass(SrcMemPtr->getClass(), 0);
1220 QualType DestClass(DestMemPtr->getClass(), 0);
Anders Carlssoncee22422010-04-24 19:22:20 +00001221 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001222 /*DetectVirtual=*/true);
1223 if (!Self.IsDerivedFrom(SrcClass, DestClass, Paths)) {
1224 return TC_NotApplicable;
1225 }
1226
1227 // B is a base of D. But is it an allowed base? If not, it's a hard error.
Douglas Gregore0d5fe22010-05-21 20:29:55 +00001228 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001229 Paths.clear();
1230 Paths.setRecordingPaths(true);
1231 bool StillOkay = Self.IsDerivedFrom(SrcClass, DestClass, Paths);
1232 assert(StillOkay);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00001233 (void)StillOkay;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001234 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1235 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1236 << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1237 msg = 0;
1238 return TC_Failed;
1239 }
1240
1241 if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1242 Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1243 << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1244 msg = 0;
1245 return TC_Failed;
1246 }
1247
John McCall417d39f2011-02-14 23:21:33 +00001248 if (!CStyle) {
1249 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1250 DestClass, SrcClass,
1251 Paths.front(),
1252 diag::err_upcast_to_inaccessible_base)) {
1253 case Sema::AR_accessible:
1254 case Sema::AR_delayed:
1255 case Sema::AR_dependent:
1256 // Optimistically assume that the delayed and dependent cases
1257 // will work out.
1258 break;
1259
1260 case Sema::AR_inaccessible:
1261 msg = 0;
1262 return TC_Failed;
1263 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001264 }
1265
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001266 if (WasOverloadedFunction) {
1267 // Resolve the address of the overloaded function again, this time
1268 // allowing complaints if something goes wrong.
John Wiegley429bb272011-04-08 18:41:53 +00001269 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001270 DestType,
John McCall6bb80172010-03-30 21:47:33 +00001271 true,
1272 FoundOverload);
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001273 if (!Fn) {
1274 msg = 0;
1275 return TC_Failed;
1276 }
1277
John McCall6bb80172010-03-30 21:47:33 +00001278 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
John Wiegley429bb272011-04-08 18:41:53 +00001279 if (!SrcExpr.isUsable()) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001280 msg = 0;
1281 return TC_Failed;
1282 }
1283 }
1284
Anders Carlssoncee22422010-04-24 19:22:20 +00001285 Self.BuildBasePathArray(Paths, BasePath);
John McCall2de56d12010-08-25 11:45:40 +00001286 Kind = CK_DerivedToBaseMemberPointer;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001287 return TC_Success;
1288}
1289
1290/// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1291/// is valid:
1292///
1293/// An expression e can be explicitly converted to a type T using a
1294/// @c static_cast if the declaration "T t(e);" is well-formed [...].
1295TryCastResult
John Wiegley429bb272011-04-08 18:41:53 +00001296TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
John McCallf85e1932011-06-15 23:02:42 +00001297 Sema::CheckedConversionKind CCK,
1298 const SourceRange &OpRange, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +00001299 CastKind &Kind) {
Anders Carlssond851b372009-09-07 18:25:47 +00001300 if (DestType->isRecordType()) {
1301 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
1302 diag::err_bad_dynamic_cast_incomplete)) {
1303 msg = 0;
1304 return TC_Failed;
1305 }
1306 }
Douglas Gregord6e44a32010-04-16 22:09:46 +00001307
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001308 InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1309 InitializationKind InitKind
John McCallf85e1932011-06-15 23:02:42 +00001310 = (CCK == Sema::CCK_CStyleCast)
1311 ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange)
1312 : (CCK == Sema::CCK_FunctionalCast)
1313 ? InitializationKind::CreateFunctionalCast(OpRange)
Richard Smithc8d7f582011-11-29 22:48:16 +00001314 : InitializationKind::CreateCast(OpRange);
John Wiegley429bb272011-04-08 18:41:53 +00001315 Expr *SrcExprRaw = SrcExpr.get();
1316 InitializationSequence InitSeq(Self, Entity, InitKind, &SrcExprRaw, 1);
Douglas Gregor8e960432010-11-08 03:40:48 +00001317
1318 // At this point of CheckStaticCast, if the destination is a reference,
1319 // or the expression is an overload expression this has to work.
1320 // There is no other way that works.
1321 // On the other hand, if we're checking a C-style cast, we've still got
1322 // the reinterpret_cast way.
John McCallf85e1932011-06-15 23:02:42 +00001323 bool CStyle
1324 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Sebastian Redl383616c2011-06-05 12:23:28 +00001325 if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
Anders Carlsson3c31a392009-09-26 00:12:34 +00001326 return TC_NotApplicable;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001327
John McCall60d7b3a2010-08-24 06:29:42 +00001328 ExprResult Result
John Wiegley429bb272011-04-08 18:41:53 +00001329 = InitSeq.Perform(Self, Entity, InitKind, MultiExprArg(Self, &SrcExprRaw, 1));
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001330 if (Result.isInvalid()) {
1331 msg = 0;
1332 return TC_Failed;
1333 }
1334
Douglas Gregord6e44a32010-04-16 22:09:46 +00001335 if (InitSeq.isConstructorInitialization())
John McCall2de56d12010-08-25 11:45:40 +00001336 Kind = CK_ConstructorConversion;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001337 else
John McCall2de56d12010-08-25 11:45:40 +00001338 Kind = CK_NoOp;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001339
John Wiegley429bb272011-04-08 18:41:53 +00001340 SrcExpr = move(Result);
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001341 return TC_Success;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001342}
1343
1344/// TryConstCast - See if a const_cast from source to destination is allowed,
1345/// and perform it if it is.
1346static TryCastResult TryConstCast(Sema &Self, Expr *SrcExpr, QualType DestType,
1347 bool CStyle, unsigned &msg) {
1348 DestType = Self.Context.getCanonicalType(DestType);
1349 QualType SrcType = SrcExpr->getType();
Douglas Gregor575d2a32011-01-22 00:19:52 +00001350 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
1351 if (DestTypeTmp->isLValueReferenceType() && !SrcExpr->isLValue()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001352 // Cannot const_cast non-lvalue to lvalue reference type. But if this
1353 // is C-style, static_cast might find a way, so we simply suggest a
1354 // message and tell the parent to keep searching.
1355 msg = diag::err_bad_cxx_cast_rvalue;
1356 return TC_NotApplicable;
1357 }
1358
1359 // C++ 5.2.11p4: An lvalue of type T1 can be [cast] to an lvalue of type T2
1360 // [...] if a pointer to T1 can be [cast] to the type pointer to T2.
1361 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1362 SrcType = Self.Context.getPointerType(SrcType);
1363 }
1364
1365 // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1366 // the rules for const_cast are the same as those used for pointers.
1367
John McCalld425d2b2010-05-18 09:35:29 +00001368 if (!DestType->isPointerType() &&
1369 !DestType->isMemberPointerType() &&
1370 !DestType->isObjCObjectPointerType()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001371 // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1372 // was a reference type, we converted it to a pointer above.
1373 // The status of rvalue references isn't entirely clear, but it looks like
1374 // conversion to them is simply invalid.
1375 // C++ 5.2.11p3: For two pointer types [...]
1376 if (!CStyle)
1377 msg = diag::err_bad_const_cast_dest;
1378 return TC_NotApplicable;
1379 }
1380 if (DestType->isFunctionPointerType() ||
1381 DestType->isMemberFunctionPointerType()) {
1382 // Cannot cast direct function pointers.
1383 // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1384 // T is the ultimate pointee of source and target type.
1385 if (!CStyle)
1386 msg = diag::err_bad_const_cast_dest;
1387 return TC_NotApplicable;
1388 }
1389 SrcType = Self.Context.getCanonicalType(SrcType);
1390
1391 // Unwrap the pointers. Ignore qualifiers. Terminate early if the types are
1392 // completely equal.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001393 // C++ 5.2.11p3 describes the core semantics of const_cast. All cv specifiers
1394 // in multi-level pointers may change, but the level count must be the same,
1395 // as must be the final pointee type.
1396 while (SrcType != DestType &&
Douglas Gregor5a57efd2010-06-09 03:53:18 +00001397 Self.Context.UnwrapSimilarPointerTypes(SrcType, DestType)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001398 Qualifiers SrcQuals, DestQuals;
1399 SrcType = Self.Context.getUnqualifiedArrayType(SrcType, SrcQuals);
1400 DestType = Self.Context.getUnqualifiedArrayType(DestType, DestQuals);
1401
1402 // const_cast is permitted to strip cvr-qualifiers, only. Make sure that
1403 // the other qualifiers (e.g., address spaces) are identical.
1404 SrcQuals.removeCVRQualifiers();
1405 DestQuals.removeCVRQualifiers();
1406 if (SrcQuals != DestQuals)
1407 return TC_NotApplicable;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001408 }
1409
1410 // Since we're dealing in canonical types, the remainder must be the same.
1411 if (SrcType != DestType)
1412 return TC_NotApplicable;
1413
1414 return TC_Success;
1415}
1416
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001417// Checks for undefined behavior in reinterpret_cast.
1418// The cases that is checked for is:
1419// *reinterpret_cast<T*>(&a)
1420// reinterpret_cast<T&>(a)
1421// where accessing 'a' as type 'T' will result in undefined behavior.
1422void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1423 bool IsDereference,
1424 SourceRange Range) {
1425 unsigned DiagID = IsDereference ?
1426 diag::warn_pointer_indirection_from_incompatible_type :
1427 diag::warn_undefined_reinterpret_cast;
1428
1429 if (Diags.getDiagnosticLevel(DiagID, Range.getBegin()) ==
David Blaikied6471f72011-09-25 23:23:43 +00001430 DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001431 return;
1432 }
1433
1434 QualType SrcTy, DestTy;
1435 if (IsDereference) {
1436 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1437 return;
1438 }
1439 SrcTy = SrcType->getPointeeType();
1440 DestTy = DestType->getPointeeType();
1441 } else {
1442 if (!DestType->getAs<ReferenceType>()) {
1443 return;
1444 }
1445 SrcTy = SrcType;
1446 DestTy = DestType->getPointeeType();
1447 }
1448
1449 // Cast is compatible if the types are the same.
1450 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1451 return;
1452 }
1453 // or one of the types is a char or void type
1454 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
1455 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1456 return;
1457 }
1458 // or one of the types is a tag type.
Chandler Carruth1f8f2d52011-05-24 07:43:19 +00001459 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001460 return;
1461 }
1462
Douglas Gregor575a1c92011-05-20 16:38:50 +00001463 // FIXME: Scoped enums?
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001464 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1465 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1466 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
1467 return;
1468 }
1469 }
1470
1471 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
1472}
Douglas Gregorfadb53b2011-03-12 01:48:56 +00001473
John Wiegley429bb272011-04-08 18:41:53 +00001474static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001475 QualType DestType, bool CStyle,
1476 const SourceRange &OpRange,
Anders Carlsson3c31a392009-09-26 00:12:34 +00001477 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +00001478 CastKind &Kind) {
Douglas Gregore39a3892010-07-13 23:17:26 +00001479 bool IsLValueCast = false;
1480
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001481 DestType = Self.Context.getCanonicalType(DestType);
John Wiegley429bb272011-04-08 18:41:53 +00001482 QualType SrcType = SrcExpr.get()->getType();
Douglas Gregor8e960432010-11-08 03:40:48 +00001483
1484 // Is the source an overloaded name? (i.e. &foo)
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001485 // If so, reinterpret_cast can not help us here (13.4, p1, bullet 5) ...
1486 if (SrcType == Self.Context.OverloadTy) {
John McCall6dbba4f2011-10-11 23:14:30 +00001487 // ... unless foo<int> resolves to an lvalue unambiguously.
1488 // TODO: what if this fails because of DiagnoseUseOfDecl or something
1489 // like it?
1490 ExprResult SingleFunctionExpr = SrcExpr;
1491 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
1492 SingleFunctionExpr,
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001493 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
John McCall6dbba4f2011-10-11 23:14:30 +00001494 ) && SingleFunctionExpr.isUsable()) {
John Wiegley429bb272011-04-08 18:41:53 +00001495 SrcExpr = move(SingleFunctionExpr);
1496 SrcType = SrcExpr.get()->getType();
John McCall6dbba4f2011-10-11 23:14:30 +00001497 } else {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001498 return TC_NotApplicable;
John McCall6dbba4f2011-10-11 23:14:30 +00001499 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001500 }
Douglas Gregor8e960432010-11-08 03:40:48 +00001501
Ted Kremenek6217b802009-07-29 21:53:49 +00001502 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001503 bool LValue = DestTypeTmp->isLValueReferenceType();
John Wiegley429bb272011-04-08 18:41:53 +00001504 if (LValue && !SrcExpr.get()->isLValue()) {
Douglas Gregor575d2a32011-01-22 00:19:52 +00001505 // Cannot cast non-lvalue to lvalue reference type. See the similar
1506 // comment in const_cast.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001507 msg = diag::err_bad_cxx_cast_rvalue;
1508 return TC_NotApplicable;
1509 }
1510
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001511 if (!CStyle) {
1512 Self.CheckCompatibleReinterpretCast(SrcType, DestType,
1513 /*isDereference=*/false, OpRange);
1514 }
1515
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001516 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
1517 // same effect as the conversion *reinterpret_cast<T*>(&x) with the
1518 // built-in & and * operators.
Argyrios Kyrtzidisb464a5b2011-04-22 22:31:13 +00001519
Argyrios Kyrtzidisbb29d1b2011-04-22 23:57:57 +00001520 const char *inappropriate = 0;
1521 switch (SrcExpr.get()->getObjectKind()) {
Argyrios Kyrtzidise5e3d312011-04-23 01:10:24 +00001522 case OK_Ordinary:
1523 break;
Argyrios Kyrtzidisbb29d1b2011-04-22 23:57:57 +00001524 case OK_BitField: inappropriate = "bit-field"; break;
1525 case OK_VectorComponent: inappropriate = "vector element"; break;
1526 case OK_ObjCProperty: inappropriate = "property expression"; break;
1527 }
1528 if (inappropriate) {
1529 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
1530 << inappropriate << DestType
1531 << OpRange << SrcExpr.get()->getSourceRange();
1532 msg = 0; SrcExpr = ExprError();
Argyrios Kyrtzidisb464a5b2011-04-22 22:31:13 +00001533 return TC_NotApplicable;
1534 }
1535
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001536 // This code does this transformation for the checked types.
1537 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1538 SrcType = Self.Context.getPointerType(SrcType);
Douglas Gregor8e960432010-11-08 03:40:48 +00001539
Douglas Gregore39a3892010-07-13 23:17:26 +00001540 IsLValueCast = true;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001541 }
1542
1543 // Canonicalize source for comparison.
1544 SrcType = Self.Context.getCanonicalType(SrcType);
1545
Ted Kremenek6217b802009-07-29 21:53:49 +00001546 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
1547 *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001548 if (DestMemPtr && SrcMemPtr) {
1549 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
1550 // can be explicitly converted to an rvalue of type "pointer to member
1551 // of Y of type T2" if T1 and T2 are both function types or both object
1552 // types.
1553 if (DestMemPtr->getPointeeType()->isFunctionType() !=
1554 SrcMemPtr->getPointeeType()->isFunctionType())
1555 return TC_NotApplicable;
1556
1557 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
1558 // constness.
1559 // A reinterpret_cast followed by a const_cast can, though, so in C-style,
1560 // we accept it.
John McCallf85e1932011-06-15 23:02:42 +00001561 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
1562 /*CheckObjCLifetime=*/CStyle)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001563 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001564 return TC_Failed;
1565 }
1566
Charles Davisf231df32010-08-16 05:30:44 +00001567 // Don't allow casting between member pointers of different sizes.
1568 if (Self.Context.getTypeSize(DestMemPtr) !=
1569 Self.Context.getTypeSize(SrcMemPtr)) {
1570 msg = diag::err_bad_cxx_cast_member_pointer_size;
1571 return TC_Failed;
1572 }
1573
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001574 // A valid member pointer cast.
John McCall2de56d12010-08-25 11:45:40 +00001575 Kind = IsLValueCast? CK_LValueBitCast : CK_BitCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001576 return TC_Success;
1577 }
1578
1579 // See below for the enumeral issue.
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001580 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001581 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
1582 // type large enough to hold it. A value of std::nullptr_t can be
1583 // converted to an integral type; the conversion has the same meaning
1584 // and validity as a conversion of (void*)0 to the integral type.
1585 if (Self.Context.getTypeSize(SrcType) >
1586 Self.Context.getTypeSize(DestType)) {
1587 msg = diag::err_bad_reinterpret_cast_small_int;
1588 return TC_Failed;
1589 }
John McCall2de56d12010-08-25 11:45:40 +00001590 Kind = CK_PointerToIntegral;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001591 return TC_Success;
1592 }
1593
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001594 bool destIsVector = DestType->isVectorType();
1595 bool srcIsVector = SrcType->isVectorType();
1596 if (srcIsVector || destIsVector) {
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001597 // FIXME: Should this also apply to floating point types?
1598 bool srcIsScalar = SrcType->isIntegralType(Self.Context);
1599 bool destIsScalar = DestType->isIntegralType(Self.Context);
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001600
1601 // Check if this is a cast between a vector and something else.
1602 if (!(srcIsScalar && destIsVector) && !(srcIsVector && destIsScalar) &&
1603 !(srcIsVector && destIsVector))
1604 return TC_NotApplicable;
1605
1606 // If both types have the same size, we can successfully cast.
Douglas Gregorf2a55392009-12-22 22:47:22 +00001607 if (Self.Context.getTypeSize(SrcType)
1608 == Self.Context.getTypeSize(DestType)) {
John McCall2de56d12010-08-25 11:45:40 +00001609 Kind = CK_BitCast;
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001610 return TC_Success;
Douglas Gregorf2a55392009-12-22 22:47:22 +00001611 }
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001612
1613 if (destIsScalar)
1614 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
1615 else if (srcIsScalar)
1616 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
1617 else
1618 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
1619
1620 return TC_Failed;
1621 }
1622
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001623 bool destIsPtr = DestType->isAnyPointerType() ||
1624 DestType->isBlockPointerType();
1625 bool srcIsPtr = SrcType->isAnyPointerType() ||
1626 SrcType->isBlockPointerType();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001627 if (!destIsPtr && !srcIsPtr) {
1628 // Except for std::nullptr_t->integer and lvalue->reference, which are
1629 // handled above, at least one of the two arguments must be a pointer.
1630 return TC_NotApplicable;
1631 }
1632
1633 if (SrcType == DestType) {
1634 // C++ 5.2.10p2 has a note that mentions that, subject to all other
1635 // restrictions, a cast to the same type is allowed. The intent is not
1636 // entirely clear here, since all other paragraphs explicitly forbid casts
1637 // to the same type. However, the behavior of compilers is pretty consistent
1638 // on this point: allow same-type conversion if the involved types are
1639 // pointers, disallow otherwise.
John McCall2de56d12010-08-25 11:45:40 +00001640 Kind = CK_NoOp;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001641 return TC_Success;
1642 }
1643
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001644 if (DestType->isIntegralType(Self.Context)) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001645 assert(srcIsPtr && "One type must be a pointer");
1646 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
Francois Pichet30aff5b2011-05-11 22:13:54 +00001647 // type large enough to hold it; except in Microsoft mode, where the
1648 // integral type size doesn't matter.
1649 if ((Self.Context.getTypeSize(SrcType) >
1650 Self.Context.getTypeSize(DestType)) &&
Francois Pichet62ec1f22011-09-17 17:15:52 +00001651 !Self.getLangOptions().MicrosoftExt) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001652 msg = diag::err_bad_reinterpret_cast_small_int;
1653 return TC_Failed;
1654 }
John McCall2de56d12010-08-25 11:45:40 +00001655 Kind = CK_PointerToIntegral;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001656 return TC_Success;
1657 }
1658
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001659 if (SrcType->isIntegralOrEnumerationType()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001660 assert(destIsPtr && "One type must be a pointer");
1661 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
1662 // converted to a pointer.
John McCall404cd162010-11-13 01:35:44 +00001663 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
1664 // necessarily converted to a null pointer value.]
John McCall2de56d12010-08-25 11:45:40 +00001665 Kind = CK_IntegralToPointer;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001666 return TC_Success;
1667 }
1668
1669 if (!destIsPtr || !srcIsPtr) {
1670 // With the valid non-pointer conversions out of the way, we can be even
1671 // more stringent.
1672 return TC_NotApplicable;
1673 }
1674
1675 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
1676 // The C-style cast operator can.
John McCallf85e1932011-06-15 23:02:42 +00001677 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
1678 /*CheckObjCLifetime=*/CStyle)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001679 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001680 return TC_Failed;
1681 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001682
1683 // Cannot convert between block pointers and Objective-C object pointers.
1684 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
1685 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
1686 return TC_NotApplicable;
1687
John McCall1d9b3b22011-09-09 05:25:32 +00001688 if (IsLValueCast) {
1689 Kind = CK_LValueBitCast;
1690 } else if (DestType->isObjCObjectPointerType()) {
John McCalldc05b112011-09-10 01:16:55 +00001691 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
John McCall1d9b3b22011-09-09 05:25:32 +00001692 } else if (DestType->isBlockPointerType()) {
1693 if (!SrcType->isBlockPointerType()) {
1694 Kind = CK_AnyPointerToBlockPointerCast;
1695 } else {
1696 Kind = CK_BitCast;
1697 }
1698 } else {
1699 Kind = CK_BitCast;
1700 }
1701
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001702 // Any pointer can be cast to an Objective-C pointer type with a C-style
1703 // cast.
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +00001704 if (CStyle && DestType->isObjCObjectPointerType()) {
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +00001705 return TC_Success;
1706 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001707
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001708 // Not casting away constness, so the only remaining check is for compatible
1709 // pointer categories.
1710
1711 if (SrcType->isFunctionPointerType()) {
1712 if (DestType->isFunctionPointerType()) {
1713 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
1714 // a pointer to a function of a different type.
1715 return TC_Success;
1716 }
1717
1718 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
1719 // an object type or vice versa is conditionally-supported.
1720 // Compilers support it in C++03 too, though, because it's necessary for
1721 // casting the return value of dlsym() and GetProcAddress().
1722 // FIXME: Conditionally-supported behavior should be configurable in the
1723 // TargetInfo or similar.
Richard Smithebaf0e62011-10-18 20:49:44 +00001724 Self.Diag(OpRange.getBegin(),
1725 Self.getLangOptions().CPlusPlus0x ?
1726 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
1727 << OpRange;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001728 return TC_Success;
1729 }
1730
1731 if (DestType->isFunctionPointerType()) {
1732 // See above.
Richard Smithebaf0e62011-10-18 20:49:44 +00001733 Self.Diag(OpRange.getBegin(),
1734 Self.getLangOptions().CPlusPlus0x ?
1735 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
1736 << OpRange;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001737 return TC_Success;
1738 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001739
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001740 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
1741 // a pointer to an object of different type.
1742 // Void pointers are not specified, but supported by every compiler out there.
1743 // So we finish by allowing everything that remains - it's got to be two
1744 // object pointers.
1745 return TC_Success;
John McCall79ab2c82011-02-14 18:34:10 +00001746}
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001747
Richard Smithc8d7f582011-11-29 22:48:16 +00001748void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle) {
John McCalla180f042011-10-06 23:25:11 +00001749 // Handle placeholders.
1750 if (isPlaceholder()) {
1751 // C-style casts can resolve __unknown_any types.
1752 if (claimPlaceholder(BuiltinType::UnknownAny)) {
1753 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
1754 SrcExpr.get(), Kind,
1755 ValueKind, BasePath);
1756 return;
1757 }
John McCallb45ae252011-10-05 07:41:44 +00001758
John McCalla180f042011-10-06 23:25:11 +00001759 checkNonOverloadPlaceholders();
1760 if (SrcExpr.isInvalid())
1761 return;
John McCall4919dfd2011-10-17 17:42:19 +00001762 }
John McCalla180f042011-10-06 23:25:11 +00001763
1764 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001765 // This test is outside everything else because it's the only case where
1766 // a non-lvalue-reference target type does not lead to decay.
John McCallb45ae252011-10-05 07:41:44 +00001767 if (DestType->isVoidType()) {
John McCallfb8721c2011-04-10 19:13:55 +00001768 Kind = CK_ToVoid;
1769
John McCalla180f042011-10-06 23:25:11 +00001770 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall6dbba4f2011-10-11 23:14:30 +00001771 Self.ResolveAndFixSingleFunctionTemplateSpecialization(
1772 SrcExpr, /* Decay Function to ptr */ false,
John McCallb45ae252011-10-05 07:41:44 +00001773 /* Complain */ true, DestRange, DestType,
Douglas Gregorfadb53b2011-03-12 01:48:56 +00001774 diag::err_bad_cstyle_cast_overload);
John McCallb45ae252011-10-05 07:41:44 +00001775 if (SrcExpr.isInvalid())
1776 return;
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001777 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001778
John McCalla180f042011-10-06 23:25:11 +00001779 SrcExpr = Self.IgnoredValueConversions(SrcExpr.take());
1780 if (SrcExpr.isInvalid())
John McCallb45ae252011-10-05 07:41:44 +00001781 return;
John McCallb45ae252011-10-05 07:41:44 +00001782
1783 return;
Anton Yartsevd06fea82011-03-27 09:32:40 +00001784 }
1785
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001786 // If the type is dependent, we won't do any other semantic analysis now.
John McCallb45ae252011-10-05 07:41:44 +00001787 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent()) {
1788 assert(Kind == CK_Dependent);
1789 return;
John McCalldaa8e4e2010-11-15 09:13:47 +00001790 }
Benjamin Kramer5b4a40a2011-07-08 20:20:17 +00001791
John McCall6dbba4f2011-10-11 23:14:30 +00001792 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
1793 !isPlaceholder(BuiltinType::Overload)) {
John McCallb45ae252011-10-05 07:41:44 +00001794 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
1795 if (SrcExpr.isInvalid())
1796 return;
John Wiegley429bb272011-04-08 18:41:53 +00001797 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001798
John McCallfb8721c2011-04-10 19:13:55 +00001799 // AltiVec vector initialization with a single literal.
John McCallb45ae252011-10-05 07:41:44 +00001800 if (const VectorType *vecTy = DestType->getAs<VectorType>())
John McCallfb8721c2011-04-10 19:13:55 +00001801 if (vecTy->getVectorKind() == VectorType::AltiVecVector
John McCallb45ae252011-10-05 07:41:44 +00001802 && (SrcExpr.get()->getType()->isIntegerType()
1803 || SrcExpr.get()->getType()->isFloatingType())) {
John McCallfb8721c2011-04-10 19:13:55 +00001804 Kind = CK_VectorSplat;
John McCallb45ae252011-10-05 07:41:44 +00001805 return;
John McCallfb8721c2011-04-10 19:13:55 +00001806 }
1807
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001808 // C++ [expr.cast]p5: The conversions performed by
1809 // - a const_cast,
1810 // - a static_cast,
1811 // - a static_cast followed by a const_cast,
1812 // - a reinterpret_cast, or
1813 // - a reinterpret_cast followed by a const_cast,
1814 // can be performed using the cast notation of explicit type conversion.
1815 // [...] If a conversion can be interpreted in more than one of the ways
1816 // listed above, the interpretation that appears first in the list is used,
1817 // even if a cast resulting from that interpretation is ill-formed.
1818 // In plain language, this means trying a const_cast ...
1819 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCallb45ae252011-10-05 07:41:44 +00001820 TryCastResult tcr = TryConstCast(Self, SrcExpr.get(), DestType,
1821 /*CStyle*/true, msg);
Anders Carlssonda921fd2009-10-19 18:14:28 +00001822 if (tcr == TC_Success)
John McCall2de56d12010-08-25 11:45:40 +00001823 Kind = CK_NoOp;
Anders Carlssonda921fd2009-10-19 18:14:28 +00001824
John McCallf85e1932011-06-15 23:02:42 +00001825 Sema::CheckedConversionKind CCK
1826 = FunctionalStyle? Sema::CCK_FunctionalCast
1827 : Sema::CCK_CStyleCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001828 if (tcr == TC_NotApplicable) {
1829 // ... or if that is not possible, a static_cast, ignoring const, ...
John McCallb45ae252011-10-05 07:41:44 +00001830 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange,
1831 msg, Kind, BasePath);
1832 if (SrcExpr.isInvalid())
1833 return;
1834
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001835 if (tcr == TC_NotApplicable) {
1836 // ... and finally a reinterpret_cast, ignoring const.
John McCallb45ae252011-10-05 07:41:44 +00001837 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true,
1838 OpRange, msg, Kind);
1839 if (SrcExpr.isInvalid())
1840 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001841 }
1842 }
1843
John McCallb45ae252011-10-05 07:41:44 +00001844 if (Self.getLangOptions().ObjCAutoRefCount && tcr == TC_Success)
1845 checkObjCARCConversion(CCK);
John McCallf85e1932011-06-15 23:02:42 +00001846
Nick Lewycky43328e92010-11-09 00:19:31 +00001847 if (tcr != TC_Success && msg != 0) {
John McCallb45ae252011-10-05 07:41:44 +00001848 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor8e960432010-11-08 03:40:48 +00001849 DeclAccessPair Found;
John McCallb45ae252011-10-05 07:41:44 +00001850 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
1851 DestType,
1852 /*Complain*/ true,
Douglas Gregor8e960432010-11-08 03:40:48 +00001853 Found);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001854
Richard Trieu32ac00d2011-04-16 01:09:30 +00001855 assert(!Fn && "cast failed but able to resolve overload expression!!");
Nick Lewycky43328e92010-11-09 00:19:31 +00001856 (void)Fn;
John McCall79ab2c82011-02-14 18:34:10 +00001857
Nick Lewycky43328e92010-11-09 00:19:31 +00001858 } else {
John McCallb45ae252011-10-05 07:41:44 +00001859 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
1860 OpRange, SrcExpr.get(), DestType);
Douglas Gregor8e960432010-11-08 03:40:48 +00001861 }
John McCallb45ae252011-10-05 07:41:44 +00001862 } else if (Kind == CK_BitCast) {
1863 checkCastAlign();
Douglas Gregor8e960432010-11-08 03:40:48 +00001864 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001865
John McCallb45ae252011-10-05 07:41:44 +00001866 // Clear out SrcExpr if there was a fatal error.
John Wiegley429bb272011-04-08 18:41:53 +00001867 if (tcr != TC_Success)
John McCallb45ae252011-10-05 07:41:44 +00001868 SrcExpr = ExprError();
1869}
1870
John McCalla180f042011-10-06 23:25:11 +00001871/// Check the semantics of a C-style cast operation, in C.
1872void CastOperation::CheckCStyleCast() {
1873 assert(!Self.getLangOptions().CPlusPlus);
1874
John McCall5acb0c92011-10-17 18:40:02 +00001875 // C-style casts can resolve __unknown_any types.
1876 if (claimPlaceholder(BuiltinType::UnknownAny)) {
1877 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
1878 SrcExpr.get(), Kind,
1879 ValueKind, BasePath);
1880 return;
1881 }
John McCalla180f042011-10-06 23:25:11 +00001882
1883 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
1884 // type needs to be scalar.
1885 if (DestType->isVoidType()) {
1886 // We don't necessarily do lvalue-to-rvalue conversions on this.
1887 SrcExpr = Self.IgnoredValueConversions(SrcExpr.take());
1888 if (SrcExpr.isInvalid())
1889 return;
1890
1891 // Cast to void allows any expr type.
1892 Kind = CK_ToVoid;
1893 return;
1894 }
1895
1896 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.take());
1897 if (SrcExpr.isInvalid())
1898 return;
1899 QualType SrcType = SrcExpr.get()->getType();
John McCall5acb0c92011-10-17 18:40:02 +00001900 assert(!SrcType->isPlaceholderType());
John McCalla180f042011-10-06 23:25:11 +00001901
1902 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
1903 diag::err_typecheck_cast_to_incomplete)) {
1904 SrcExpr = ExprError();
1905 return;
1906 }
1907
1908 if (!DestType->isScalarType() && !DestType->isVectorType()) {
1909 const RecordType *DestRecordTy = DestType->getAs<RecordType>();
1910
1911 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
1912 // GCC struct/union extension: allow cast to self.
1913 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
1914 << DestType << SrcExpr.get()->getSourceRange();
1915 Kind = CK_NoOp;
1916 return;
1917 }
1918
1919 // GCC's cast to union extension.
1920 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
1921 RecordDecl *RD = DestRecordTy->getDecl();
1922 RecordDecl::field_iterator Field, FieldEnd;
1923 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
1924 Field != FieldEnd; ++Field) {
1925 if (Self.Context.hasSameUnqualifiedType(Field->getType(), SrcType) &&
1926 !Field->isUnnamedBitfield()) {
1927 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
1928 << SrcExpr.get()->getSourceRange();
1929 break;
1930 }
1931 }
1932 if (Field == FieldEnd) {
1933 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
1934 << SrcType << SrcExpr.get()->getSourceRange();
1935 SrcExpr = ExprError();
1936 return;
1937 }
1938 Kind = CK_ToUnion;
1939 return;
1940 }
1941
1942 // Reject any other conversions to non-scalar types.
1943 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
1944 << DestType << SrcExpr.get()->getSourceRange();
1945 SrcExpr = ExprError();
1946 return;
1947 }
1948
1949 // The type we're casting to is known to be a scalar or vector.
1950
1951 // Require the operand to be a scalar or vector.
1952 if (!SrcType->isScalarType() && !SrcType->isVectorType()) {
1953 Self.Diag(SrcExpr.get()->getExprLoc(),
1954 diag::err_typecheck_expect_scalar_operand)
1955 << SrcType << SrcExpr.get()->getSourceRange();
1956 SrcExpr = ExprError();
1957 return;
1958 }
1959
1960 if (DestType->isExtVectorType()) {
1961 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.take(), Kind);
1962 return;
1963 }
1964
1965 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
1966 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
1967 (SrcType->isIntegerType() || SrcType->isFloatingType())) {
1968 Kind = CK_VectorSplat;
1969 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
1970 SrcExpr = ExprError();
1971 }
1972 return;
1973 }
1974
1975 if (SrcType->isVectorType()) {
1976 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
1977 SrcExpr = ExprError();
1978 return;
1979 }
1980
1981 // The source and target types are both scalars, i.e.
1982 // - arithmetic types (fundamental, enum, and complex)
1983 // - all kinds of pointers
1984 // Note that member pointers were filtered out with C++, above.
1985
1986 if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
1987 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
1988 SrcExpr = ExprError();
1989 return;
1990 }
1991
1992 // If either type is a pointer, the other type has to be either an
1993 // integer or a pointer.
1994 if (!DestType->isArithmeticType()) {
1995 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
1996 Self.Diag(SrcExpr.get()->getExprLoc(),
1997 diag::err_cast_pointer_from_non_pointer_int)
1998 << SrcType << SrcExpr.get()->getSourceRange();
1999 SrcExpr = ExprError();
2000 return;
2001 }
2002 } else if (!SrcType->isArithmeticType()) {
2003 if (!DestType->isIntegralType(Self.Context) &&
2004 DestType->isArithmeticType()) {
2005 Self.Diag(SrcExpr.get()->getLocStart(),
2006 diag::err_cast_pointer_to_non_pointer_int)
Abramo Bagnaraf7ce1942011-11-15 11:25:38 +00002007 << DestType << SrcExpr.get()->getSourceRange();
John McCalla180f042011-10-06 23:25:11 +00002008 SrcExpr = ExprError();
2009 return;
2010 }
2011 }
2012
2013 // ARC imposes extra restrictions on casts.
2014 if (Self.getLangOptions().ObjCAutoRefCount) {
2015 checkObjCARCConversion(Sema::CCK_CStyleCast);
2016 if (SrcExpr.isInvalid())
2017 return;
2018
2019 if (const PointerType *CastPtr = DestType->getAs<PointerType>()) {
2020 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
2021 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
2022 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
2023 if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
2024 ExprPtr->getPointeeType()->isObjCLifetimeType() &&
2025 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
2026 Self.Diag(SrcExpr.get()->getLocStart(),
2027 diag::err_typecheck_incompatible_ownership)
2028 << SrcType << DestType << Sema::AA_Casting
2029 << SrcExpr.get()->getSourceRange();
2030 return;
2031 }
2032 }
2033 }
2034 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
2035 Self.Diag(SrcExpr.get()->getLocStart(),
2036 diag::err_arc_convesion_of_weak_unavailable)
2037 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
2038 SrcExpr = ExprError();
2039 return;
2040 }
2041 }
2042
2043 Kind = Self.PrepareScalarCast(SrcExpr, DestType);
2044 if (SrcExpr.isInvalid())
2045 return;
2046
2047 if (Kind == CK_BitCast)
2048 checkCastAlign();
2049}
2050
2051ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
2052 TypeSourceInfo *CastTypeInfo,
2053 SourceLocation RPLoc,
2054 Expr *CastExpr) {
John McCallb45ae252011-10-05 07:41:44 +00002055 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
2056 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
2057 Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd());
2058
John McCalla180f042011-10-06 23:25:11 +00002059 if (getLangOptions().CPlusPlus) {
Richard Smithc8d7f582011-11-29 22:48:16 +00002060 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false);
John McCalla180f042011-10-06 23:25:11 +00002061 } else {
2062 Op.CheckCStyleCast();
2063 }
2064
John McCallb45ae252011-10-05 07:41:44 +00002065 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00002066 return ExprError();
2067
John McCall5acb0c92011-10-17 18:40:02 +00002068 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
2069 Op.ValueKind, Op.Kind, Op.SrcExpr.take(),
2070 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc));
John McCallb45ae252011-10-05 07:41:44 +00002071}
2072
2073ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
2074 SourceLocation LPLoc,
2075 Expr *CastExpr,
2076 SourceLocation RPLoc) {
2077 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
2078 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
2079 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd());
2080
Richard Smithc8d7f582011-11-29 22:48:16 +00002081 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ true);
John McCallb45ae252011-10-05 07:41:44 +00002082 if (Op.SrcExpr.isInvalid())
2083 return ExprError();
2084
John McCall5acb0c92011-10-17 18:40:02 +00002085 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
2086 Op.ValueKind, CastTypeInfo, Op.DestRange.getBegin(),
2087 Op.Kind, Op.SrcExpr.take(), &Op.BasePath, RPLoc));
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002088}