blob: d28a24453e2c1421e56a1b62f6693021c19fed58 [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"
Sebastian Redl26d85b12008-11-05 21:50:06 +000018#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/ExprCXX.h"
21#include "clang/AST/ExprObjC.h"
John McCall437da052013-03-22 02:58:14 +000022#include "clang/AST/RecordLayout.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000023#include "clang/Basic/PartialDiagnostic.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070024#include "clang/Basic/TargetInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000025#include "clang/Sema/Initialization.h"
Sebastian Redl26d85b12008-11-05 21:50:06 +000026#include "llvm/ADT/SmallVector.h"
Sebastian Redle3dc28a2008-11-07 23:29:29 +000027#include <set>
Sebastian Redl26d85b12008-11-05 21:50:06 +000028using namespace clang;
29
Douglas Gregor8e960432010-11-08 03:40:48 +000030
Douglas Gregor8e960432010-11-08 03:40:48 +000031
Sebastian Redl9cc11e72009-07-25 15:41:38 +000032enum TryCastResult {
33 TC_NotApplicable, ///< The cast method is not applicable.
34 TC_Success, ///< The cast method is appropriate and successful.
35 TC_Failed ///< The cast method is appropriate, but failed. A
36 ///< diagnostic has been emitted.
37};
38
39enum CastType {
40 CT_Const, ///< const_cast
41 CT_Static, ///< static_cast
42 CT_Reinterpret, ///< reinterpret_cast
43 CT_Dynamic, ///< dynamic_cast
44 CT_CStyle, ///< (Type)expr
45 CT_Functional ///< Type(expr)
Sebastian Redl37d6de32008-11-08 13:00:26 +000046};
47
John McCallb45ae252011-10-05 07:41:44 +000048namespace {
49 struct CastOperation {
50 CastOperation(Sema &S, QualType destType, ExprResult src)
51 : Self(S), SrcExpr(src), DestType(destType),
52 ResultType(destType.getNonLValueExprType(S.Context)),
53 ValueKind(Expr::getValueKindForType(destType)),
John McCall5acb0c92011-10-17 18:40:02 +000054 Kind(CK_Dependent), IsARCUnbridgedCast(false) {
John McCalla180f042011-10-06 23:25:11 +000055
56 if (const BuiltinType *placeholder =
57 src.get()->getType()->getAsPlaceholderType()) {
58 PlaceholderKind = placeholder->getKind();
59 } else {
60 PlaceholderKind = (BuiltinType::Kind) 0;
61 }
62 }
Douglas Gregor8e960432010-11-08 03:40:48 +000063
John McCallb45ae252011-10-05 07:41:44 +000064 Sema &Self;
65 ExprResult SrcExpr;
66 QualType DestType;
67 QualType ResultType;
68 ExprValueKind ValueKind;
69 CastKind Kind;
John McCalla180f042011-10-06 23:25:11 +000070 BuiltinType::Kind PlaceholderKind;
John McCallb45ae252011-10-05 07:41:44 +000071 CXXCastPath BasePath;
John McCall5acb0c92011-10-17 18:40:02 +000072 bool IsARCUnbridgedCast;
Douglas Gregor8e960432010-11-08 03:40:48 +000073
John McCallb45ae252011-10-05 07:41:44 +000074 SourceRange OpRange;
75 SourceRange DestRange;
Douglas Gregor8e960432010-11-08 03:40:48 +000076
John McCalla180f042011-10-06 23:25:11 +000077 // Top-level semantics-checking routines.
John McCallb45ae252011-10-05 07:41:44 +000078 void CheckConstCast();
79 void CheckReinterpretCast();
Richard Smithc8d7f582011-11-29 22:48:16 +000080 void CheckStaticCast();
John McCallb45ae252011-10-05 07:41:44 +000081 void CheckDynamicCast();
Sebastian Redl6dc00f62012-02-12 18:41:05 +000082 void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization);
John McCalla180f042011-10-06 23:25:11 +000083 void CheckCStyleCast();
84
John McCall5acb0c92011-10-17 18:40:02 +000085 /// Complete an apparently-successful cast operation that yields
86 /// the given expression.
87 ExprResult complete(CastExpr *castExpr) {
88 // If this is an unbridged cast, wrap the result in an implicit
89 // cast that yields the unbridged-cast placeholder type.
90 if (IsARCUnbridgedCast) {
91 castExpr = ImplicitCastExpr::Create(Self.Context,
92 Self.Context.ARCUnbridgedCastTy,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070093 CK_Dependent, castExpr, nullptr,
John McCall5acb0c92011-10-17 18:40:02 +000094 castExpr->getValueKind());
95 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -070096 return castExpr;
John McCall5acb0c92011-10-17 18:40:02 +000097 }
98
John McCalla180f042011-10-06 23:25:11 +000099 // Internal convenience methods.
100
101 /// Try to handle the given placeholder expression kind. Return
102 /// true if the source expression has the appropriate placeholder
103 /// kind. A placeholder can only be claimed once.
104 bool claimPlaceholder(BuiltinType::Kind K) {
105 if (PlaceholderKind != K) return false;
106
107 PlaceholderKind = (BuiltinType::Kind) 0;
108 return true;
109 }
110
111 bool isPlaceholder() const {
112 return PlaceholderKind != 0;
113 }
114 bool isPlaceholder(BuiltinType::Kind K) const {
115 return PlaceholderKind == K;
116 }
John McCallb45ae252011-10-05 07:41:44 +0000117
118 void checkCastAlign() {
119 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
120 }
121
122 void checkObjCARCConversion(Sema::CheckedConversionKind CCK) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000123 assert(Self.getLangOpts().ObjCAutoRefCount);
John McCall5acb0c92011-10-17 18:40:02 +0000124
John McCallb45ae252011-10-05 07:41:44 +0000125 Expr *src = SrcExpr.get();
John McCall5acb0c92011-10-17 18:40:02 +0000126 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
127 Sema::ACR_unbridged)
128 IsARCUnbridgedCast = true;
John McCallb45ae252011-10-05 07:41:44 +0000129 SrcExpr = src;
130 }
John McCalla180f042011-10-06 23:25:11 +0000131
132 /// Check for and handle non-overload placeholder expressions.
133 void checkNonOverloadPlaceholders() {
134 if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload))
135 return;
136
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700137 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
John McCalla180f042011-10-06 23:25:11 +0000138 if (SrcExpr.isInvalid())
139 return;
140 PlaceholderKind = (BuiltinType::Kind) 0;
141 }
John McCallb45ae252011-10-05 07:41:44 +0000142 };
143}
Sebastian Redl37d6de32008-11-08 13:00:26 +0000144
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000145// The Try functions attempt a specific way of casting. If they succeed, they
146// return TC_Success. If their way of casting is not appropriate for the given
147// arguments, they return TC_NotApplicable and *may* set diag to a diagnostic
148// to emit if no other way succeeds. If their way of casting is appropriate but
149// fails, they return TC_Failed and *must* set diag; they can set it to 0 if
150// they emit a specialized diagnostic.
151// All diagnostics returned by these functions must expect the same three
152// arguments:
153// %0: Cast Type (a value from the CastType enumeration)
154// %1: Source Type
155// %2: Destination Type
156static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
Douglas Gregor8ec14e62011-01-26 21:04:06 +0000157 QualType DestType, bool CStyle,
158 CastKind &Kind,
Douglas Gregor88b22a42011-01-25 16:13:26 +0000159 CXXCastPath &BasePath,
160 unsigned &msg);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000161static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr,
Anders Carlssonf9d68e12010-04-24 19:36:51 +0000162 QualType DestType, bool CStyle,
163 const SourceRange &OpRange,
164 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000165 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000166 CXXCastPath &BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000167static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
168 QualType DestType, bool CStyle,
169 const SourceRange &OpRange,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +0000170 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000171 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000172 CXXCastPath &BasePath);
Douglas Gregorab15d0e2009-11-15 09:20:52 +0000173static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
174 CanQualType DestType, bool CStyle,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000175 const SourceRange &OpRange,
176 QualType OrigSrcType,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +0000177 QualType OrigDestType, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000178 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000179 CXXCastPath &BasePath);
John Wiegley429bb272011-04-08 18:41:53 +0000180static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr,
Anders Carlssoncee22422010-04-24 19:22:20 +0000181 QualType SrcType,
182 QualType DestType,bool CStyle,
183 const SourceRange &OpRange,
184 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +0000185 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +0000186 CXXCastPath &BasePath);
Anders Carlssoncee22422010-04-24 19:22:20 +0000187
John Wiegley429bb272011-04-08 18:41:53 +0000188static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000189 QualType DestType,
190 Sema::CheckedConversionKind CCK,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000191 const SourceRange &OpRange,
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000192 unsigned &msg, CastKind &Kind,
193 bool ListInitialization);
John Wiegley429bb272011-04-08 18:41:53 +0000194static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000195 QualType DestType,
196 Sema::CheckedConversionKind CCK,
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000197 const SourceRange &OpRange,
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000198 unsigned &msg, CastKind &Kind,
199 CXXCastPath &BasePath,
200 bool ListInitialization);
Richard Smith41cb3d92013-06-14 22:27:52 +0000201static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
202 QualType DestType, bool CStyle,
203 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
David Blaikie4e4d0842012-03-11 07:00:24 +0000225 if (getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis31862ba2011-07-01 22:22:50 +0000226 // Check that there are no default arguments (C++ only).
227 CheckExtraCXXDefaultArguments(D);
228 }
229
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000230 return BuildCXXNamedCast(OpLoc, Kind, TInfo, 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) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700239 ExprResult Ex = 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.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700243 bool TypeDependent =
244 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,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700260 Op.ValueKind, Op.SrcExpr.get(), DestTInfo,
Fariborz Jahanianf799ae12013-02-22 22:02:53 +0000261 OpLoc, Parens.getEnd(),
262 AngleBrackets));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000263
Anders Carlsson714179b2009-08-02 19:07:59 +0000264 case tok::kw_dynamic_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000265 if (!TypeDependent) {
John McCallb45ae252011-10-05 07:41:44 +0000266 Op.CheckDynamicCast();
267 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000268 return ExprError();
269 }
John McCall5acb0c92011-10-17 18:40:02 +0000270 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700271 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall5acb0c92011-10-17 18:40:02 +0000272 &Op.BasePath, DestTInfo,
Fariborz Jahanianf799ae12013-02-22 22:02:53 +0000273 OpLoc, Parens.getEnd(),
274 AngleBrackets));
Anders Carlsson714179b2009-08-02 19:07:59 +0000275 }
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000276 case tok::kw_reinterpret_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000277 if (!TypeDependent) {
John McCallb45ae252011-10-05 07:41:44 +0000278 Op.CheckReinterpretCast();
279 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000280 return ExprError();
281 }
John McCall5acb0c92011-10-17 18:40:02 +0000282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700283 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700284 nullptr, DestTInfo, OpLoc,
Fariborz Jahanianf799ae12013-02-22 22:02:53 +0000285 Parens.getEnd(),
286 AngleBrackets));
Anders Carlsson7f9e6462009-09-15 04:48:33 +0000287 }
Anders Carlssoncdb61972009-08-07 22:21:05 +0000288 case tok::kw_static_cast: {
John Wiegley429bb272011-04-08 18:41:53 +0000289 if (!TypeDependent) {
Richard Smithc8d7f582011-11-29 22:48:16 +0000290 Op.CheckStaticCast();
John McCallb45ae252011-10-05 07:41:44 +0000291 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000292 return ExprError();
293 }
Anders Carlsson0aebc812009-09-09 21:33:21 +0000294
John McCall5acb0c92011-10-17 18:40:02 +0000295 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700296 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall5acb0c92011-10-17 18:40:02 +0000297 &Op.BasePath, DestTInfo,
Fariborz Jahanianf799ae12013-02-22 22:02:53 +0000298 OpLoc, Parens.getEnd(),
299 AngleBrackets));
Anders Carlssoncdb61972009-08-07 22:21:05 +0000300 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000301 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000302}
303
John McCall79ab2c82011-02-14 18:34:10 +0000304/// Try to diagnose a failed overloaded cast. Returns true if
305/// diagnostics were emitted.
306static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT,
307 SourceRange range, Expr *src,
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000308 QualType destType,
309 bool listInitialization) {
John McCall79ab2c82011-02-14 18:34:10 +0000310 switch (CT) {
311 // These cast kinds don't consider user-defined conversions.
312 case CT_Const:
313 case CT_Reinterpret:
314 case CT_Dynamic:
315 return false;
316
317 // These do.
318 case CT_Static:
319 case CT_CStyle:
320 case CT_Functional:
321 break;
322 }
323
324 QualType srcType = src->getType();
325 if (!destType->isRecordType() && !srcType->isRecordType())
326 return false;
327
328 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
329 InitializationKind initKind
John McCallf85e1932011-06-15 23:02:42 +0000330 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000331 range, listInitialization)
Sebastian Redl3a45c0e2012-02-12 16:37:36 +0000332 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000333 listInitialization)
Richard Smithc8d7f582011-11-29 22:48:16 +0000334 : InitializationKind::CreateCast(/*type range?*/ range);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000335 InitializationSequence sequence(S, entity, initKind, src);
John McCall79ab2c82011-02-14 18:34:10 +0000336
Sebastian Redl383616c2011-06-05 12:23:28 +0000337 assert(sequence.Failed() && "initialization succeeded on second try?");
John McCall79ab2c82011-02-14 18:34:10 +0000338 switch (sequence.getFailureKind()) {
339 default: return false;
340
341 case InitializationSequence::FK_ConstructorOverloadFailed:
342 case InitializationSequence::FK_UserConversionOverloadFailed:
343 break;
344 }
345
346 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet();
347
348 unsigned msg = 0;
349 OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates;
350
351 switch (sequence.getFailedOverloadResult()) {
352 case OR_Success: llvm_unreachable("successful failed overload");
John McCall79ab2c82011-02-14 18:34:10 +0000353 case OR_No_Viable_Function:
354 if (candidates.empty())
355 msg = diag::err_ovl_no_conversion_in_cast;
356 else
357 msg = diag::err_ovl_no_viable_conversion_in_cast;
358 howManyCandidates = OCD_AllCandidates;
359 break;
360
361 case OR_Ambiguous:
362 msg = diag::err_ovl_ambiguous_conversion_in_cast;
363 howManyCandidates = OCD_ViableCandidates;
364 break;
365
366 case OR_Deleted:
367 msg = diag::err_ovl_deleted_conversion_in_cast;
368 howManyCandidates = OCD_ViableCandidates;
369 break;
370 }
371
372 S.Diag(range.getBegin(), msg)
373 << CT << srcType << destType
374 << range << src->getSourceRange();
375
Ahmed Charles13a140c2012-02-25 11:00:22 +0000376 candidates.NoteCandidates(S, howManyCandidates, src);
John McCall79ab2c82011-02-14 18:34:10 +0000377
378 return true;
379}
380
381/// Diagnose a failed cast.
382static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType,
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000383 SourceRange opRange, Expr *src, QualType destType,
384 bool listInitialization) {
John McCall79ab2c82011-02-14 18:34:10 +0000385 if (msg == diag::err_bad_cxx_cast_generic &&
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000386 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
387 listInitialization))
John McCall79ab2c82011-02-14 18:34:10 +0000388 return;
389
390 S.Diag(opRange.getBegin(), msg) << castType
391 << src->getType() << destType << opRange << src->getSourceRange();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700392
393 // Detect if both types are (ptr to) class, and note any incompleteness.
394 int DifferentPtrness = 0;
395 QualType From = destType;
396 if (auto Ptr = From->getAs<PointerType>()) {
397 From = Ptr->getPointeeType();
398 DifferentPtrness++;
399 }
400 QualType To = src->getType();
401 if (auto Ptr = To->getAs<PointerType>()) {
402 To = Ptr->getPointeeType();
403 DifferentPtrness--;
404 }
405 if (!DifferentPtrness) {
406 auto RecFrom = From->getAs<RecordType>();
407 auto RecTo = To->getAs<RecordType>();
408 if (RecFrom && RecTo) {
409 auto DeclFrom = RecFrom->getAsCXXRecordDecl();
410 if (!DeclFrom->isCompleteDefinition())
411 S.Diag(DeclFrom->getLocation(), diag::note_type_incomplete)
412 << DeclFrom->getDeclName();
413 auto DeclTo = RecTo->getAsCXXRecordDecl();
414 if (!DeclTo->isCompleteDefinition())
415 S.Diag(DeclTo->getLocation(), diag::note_type_incomplete)
416 << DeclTo->getDeclName();
417 }
418 }
John McCall79ab2c82011-02-14 18:34:10 +0000419}
420
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000421/// UnwrapDissimilarPointerTypes - Like Sema::UnwrapSimilarPointerTypes,
422/// this removes one level of indirection from both types, provided that they're
423/// the same kind of pointer (plain or to-member). Unlike the Sema function,
424/// this one doesn't care if the two pointers-to-member don't point into the
425/// same class. This is because CastsAwayConstness doesn't care.
Dan Gohman3c46e8d2010-07-26 21:25:24 +0000426static bool UnwrapDissimilarPointerTypes(QualType& T1, QualType& T2) {
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000427 const PointerType *T1PtrType = T1->getAs<PointerType>(),
428 *T2PtrType = T2->getAs<PointerType>();
429 if (T1PtrType && T2PtrType) {
430 T1 = T1PtrType->getPointeeType();
431 T2 = T2PtrType->getPointeeType();
432 return true;
433 }
Fariborz Jahanian72a86592010-02-03 20:32:31 +0000434 const ObjCObjectPointerType *T1ObjCPtrType =
435 T1->getAs<ObjCObjectPointerType>(),
436 *T2ObjCPtrType =
437 T2->getAs<ObjCObjectPointerType>();
438 if (T1ObjCPtrType) {
439 if (T2ObjCPtrType) {
440 T1 = T1ObjCPtrType->getPointeeType();
441 T2 = T2ObjCPtrType->getPointeeType();
442 return true;
443 }
444 else if (T2PtrType) {
445 T1 = T1ObjCPtrType->getPointeeType();
446 T2 = T2PtrType->getPointeeType();
447 return true;
448 }
449 }
450 else if (T2ObjCPtrType) {
451 if (T1PtrType) {
452 T2 = T2ObjCPtrType->getPointeeType();
453 T1 = T1PtrType->getPointeeType();
454 return true;
455 }
456 }
457
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000458 const MemberPointerType *T1MPType = T1->getAs<MemberPointerType>(),
459 *T2MPType = T2->getAs<MemberPointerType>();
460 if (T1MPType && T2MPType) {
461 T1 = T1MPType->getPointeeType();
462 T2 = T2MPType->getPointeeType();
463 return true;
464 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000465
466 const BlockPointerType *T1BPType = T1->getAs<BlockPointerType>(),
467 *T2BPType = T2->getAs<BlockPointerType>();
468 if (T1BPType && T2BPType) {
469 T1 = T1BPType->getPointeeType();
470 T2 = T2BPType->getPointeeType();
471 return true;
472 }
473
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000474 return false;
475}
476
Sebastian Redldb647282009-01-27 23:18:31 +0000477/// CastsAwayConstness - Check if the pointer conversion from SrcType to
478/// DestType casts away constness as defined in C++ 5.2.11p8ff. This is used by
479/// the cast checkers. Both arguments must denote pointer (possibly to member)
480/// types.
John McCallf85e1932011-06-15 23:02:42 +0000481///
482/// \param CheckCVR Whether to check for const/volatile/restrict qualifiers.
483///
484/// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers.
Sebastian Redl5ed66f72009-10-22 15:07:22 +0000485static bool
John McCallf85e1932011-06-15 23:02:42 +0000486CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700487 bool CheckCVR, bool CheckObjCLifetime,
488 QualType *TheOffendingSrcType = nullptr,
489 QualType *TheOffendingDestType = nullptr,
490 Qualifiers *CastAwayQualifiers = nullptr) {
John McCallf85e1932011-06-15 23:02:42 +0000491 // If the only checking we care about is for Objective-C lifetime qualifiers,
492 // and we're not in ARC mode, there's nothing to check.
493 if (!CheckCVR && CheckObjCLifetime &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000494 !Self.Context.getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +0000495 return false;
496
Sebastian Redldb647282009-01-27 23:18:31 +0000497 // Casting away constness is defined in C++ 5.2.11p8 with reference to
498 // C++ 4.4. We piggyback on Sema::IsQualificationConversion for this, since
499 // the rules are non-trivial. So first we construct Tcv *...cv* as described
500 // in C++ 5.2.11p8.
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000501 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
502 SrcType->isBlockPointerType()) &&
Sebastian Redldb647282009-01-27 23:18:31 +0000503 "Source type is not pointer or pointer to member.");
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000504 assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() ||
505 DestType->isBlockPointerType()) &&
Sebastian Redldb647282009-01-27 23:18:31 +0000506 "Destination type is not pointer or pointer to member.");
Sebastian Redl26d85b12008-11-05 21:50:06 +0000507
Douglas Gregorab15d0e2009-11-15 09:20:52 +0000508 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
509 UnwrappedDestType = Self.Context.getCanonicalType(DestType);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000510 SmallVector<Qualifiers, 8> cv1, cv2;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000511
Douglas Gregord4c5f842011-04-15 17:59:54 +0000512 // Find the qualifiers. We only care about cvr-qualifiers for the
513 // purpose of this check, because other qualifiers (address spaces,
514 // Objective-C GC, etc.) are part of the type's identity.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700515 QualType PrevUnwrappedSrcType = UnwrappedSrcType;
516 QualType PrevUnwrappedDestType = UnwrappedDestType;
Sebastian Redl76d69bb2009-11-18 18:10:53 +0000517 while (UnwrapDissimilarPointerTypes(UnwrappedSrcType, UnwrappedDestType)) {
John McCallf85e1932011-06-15 23:02:42 +0000518 // Determine the relevant qualifiers at this level.
519 Qualifiers SrcQuals, DestQuals;
Anders Carlsson52647c62010-06-04 22:47:55 +0000520 Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals);
Anders Carlsson52647c62010-06-04 22:47:55 +0000521 Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals);
John McCallf85e1932011-06-15 23:02:42 +0000522
523 Qualifiers RetainedSrcQuals, RetainedDestQuals;
524 if (CheckCVR) {
525 RetainedSrcQuals.setCVRQualifiers(SrcQuals.getCVRQualifiers());
526 RetainedDestQuals.setCVRQualifiers(DestQuals.getCVRQualifiers());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700527
528 if (RetainedSrcQuals != RetainedDestQuals && TheOffendingSrcType &&
529 TheOffendingDestType && CastAwayQualifiers) {
530 *TheOffendingSrcType = PrevUnwrappedSrcType;
531 *TheOffendingDestType = PrevUnwrappedDestType;
532 *CastAwayQualifiers = RetainedSrcQuals - RetainedDestQuals;
533 }
John McCallf85e1932011-06-15 23:02:42 +0000534 }
535
536 if (CheckObjCLifetime &&
537 !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals))
538 return true;
539
540 cv1.push_back(RetainedSrcQuals);
541 cv2.push_back(RetainedDestQuals);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700542
543 PrevUnwrappedSrcType = UnwrappedSrcType;
544 PrevUnwrappedDestType = UnwrappedDestType;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000545 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +0000546 if (cv1.empty())
547 return false;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000548
549 // Construct void pointers with those qualifiers (in reverse order of
550 // unwrapping, of course).
Sebastian Redl37d6de32008-11-08 13:00:26 +0000551 QualType SrcConstruct = Self.Context.VoidTy;
552 QualType DestConstruct = Self.Context.VoidTy;
John McCall0953e762009-09-24 19:53:00 +0000553 ASTContext &Context = Self.Context;
Craig Topper163fbf82013-07-08 03:55:09 +0000554 for (SmallVectorImpl<Qualifiers>::reverse_iterator i1 = cv1.rbegin(),
555 i2 = cv2.rbegin();
Mike Stump1eb44332009-09-09 15:08:12 +0000556 i1 != cv1.rend(); ++i1, ++i2) {
John McCall0953e762009-09-24 19:53:00 +0000557 SrcConstruct
558 = Context.getPointerType(Context.getQualifiedType(SrcConstruct, *i1));
559 DestConstruct
560 = Context.getPointerType(Context.getQualifiedType(DestConstruct, *i2));
Sebastian Redl26d85b12008-11-05 21:50:06 +0000561 }
562
563 // Test if they're compatible.
John McCallf85e1932011-06-15 23:02:42 +0000564 bool ObjCLifetimeConversion;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000565 return SrcConstruct != DestConstruct &&
John McCallf85e1932011-06-15 23:02:42 +0000566 !Self.IsQualificationConversion(SrcConstruct, DestConstruct, false,
567 ObjCLifetimeConversion);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000568}
569
Sebastian Redl26d85b12008-11-05 21:50:06 +0000570/// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid.
571/// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime-
572/// checked downcasts in class hierarchies.
John McCallb45ae252011-10-05 07:41:44 +0000573void CastOperation::CheckDynamicCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000574 if (ValueKind == VK_RValue)
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700575 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000576 else if (isPlaceholder())
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700577 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000578 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
579 return;
Eli Friedman7a420df2011-10-31 20:59:03 +0000580
John McCallb45ae252011-10-05 07:41:44 +0000581 QualType OrigSrcType = SrcExpr.get()->getType();
582 QualType DestType = Self.Context.getCanonicalType(this->DestType);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000583
584 // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type,
585 // or "pointer to cv void".
586
587 QualType DestPointee;
Ted Kremenek6217b802009-07-29 21:53:49 +0000588 const PointerType *DestPointer = DestType->getAs<PointerType>();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700589 const ReferenceType *DestReference = nullptr;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000590 if (DestPointer) {
591 DestPointee = DestPointer->getPointeeType();
John McCallf89e55a2010-11-18 06:31:45 +0000592 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
Sebastian Redl26d85b12008-11-05 21:50:06 +0000593 DestPointee = DestReference->getPointeeType();
594 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000595 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr)
John McCallb45ae252011-10-05 07:41:44 +0000596 << this->DestType << DestRange;
Eli Friedman2437c862013-07-26 23:47:47 +0000597 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000598 return;
599 }
600
Ted Kremenek6217b802009-07-29 21:53:49 +0000601 const RecordType *DestRecord = DestPointee->getAs<RecordType>();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000602 if (DestPointee->isVoidType()) {
603 assert(DestPointer && "Reference to void is not possible");
604 } else if (DestRecord) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000605 if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee,
Douglas Gregord10099e2012-05-04 16:32:21 +0000606 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman2437c862013-07-26 23:47:47 +0000607 DestRange)) {
608 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000609 return;
Eli Friedman2437c862013-07-26 23:47:47 +0000610 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000611 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000612 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000613 << DestPointee.getUnqualifiedType() << DestRange;
Eli Friedman2437c862013-07-26 23:47:47 +0000614 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000615 return;
616 }
617
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000618 // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to
619 // complete class type, [...]. If T is an lvalue reference type, v shall be
Douglas Gregordc843f22011-01-22 00:06:57 +0000620 // an lvalue of a complete class type, [...]. If T is an rvalue reference
621 // type, v shall be an expression having a complete class type, [...]
Sebastian Redl37d6de32008-11-08 13:00:26 +0000622 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType);
Sebastian Redl26d85b12008-11-05 21:50:06 +0000623 QualType SrcPointee;
624 if (DestPointer) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000625 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl26d85b12008-11-05 21:50:06 +0000626 SrcPointee = SrcPointer->getPointeeType();
627 } else {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000628 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr)
John Wiegley429bb272011-04-08 18:41:53 +0000629 << OrigSrcType << SrcExpr.get()->getSourceRange();
Eli Friedman2437c862013-07-26 23:47:47 +0000630 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000631 return;
632 }
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000633 } else if (DestReference->isLValueReferenceType()) {
John Wiegley429bb272011-04-08 18:41:53 +0000634 if (!SrcExpr.get()->isLValue()) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000635 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue)
John McCallb45ae252011-10-05 07:41:44 +0000636 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000637 }
638 SrcPointee = SrcType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000639 } else {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700640 // If we're dynamic_casting from a prvalue to an rvalue reference, we need
641 // to materialize the prvalue before we bind the reference to it.
642 if (SrcExpr.get()->isRValue())
643 SrcExpr = new (Self.Context) MaterializeTemporaryExpr(
644 SrcType, SrcExpr.get(), /*IsLValueReference*/false);
Sebastian Redl7c80bd62009-03-16 23:22:08 +0000645 SrcPointee = SrcType;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000646 }
647
Ted Kremenek6217b802009-07-29 21:53:49 +0000648 const RecordType *SrcRecord = SrcPointee->getAs<RecordType>();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000649 if (SrcRecord) {
Douglas Gregor86447ec2009-03-09 16:13:40 +0000650 if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee,
Douglas Gregord10099e2012-05-04 16:32:21 +0000651 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman2437c862013-07-26 23:47:47 +0000652 SrcExpr.get())) {
653 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000654 return;
Eli Friedman2437c862013-07-26 23:47:47 +0000655 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000656 } else {
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000657 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
John Wiegley429bb272011-04-08 18:41:53 +0000658 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman2437c862013-07-26 23:47:47 +0000659 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000660 return;
661 }
662
663 assert((DestPointer || DestReference) &&
664 "Bad destination non-ptr/ref slipped through.");
665 assert((DestRecord || DestPointee->isVoidType()) &&
666 "Bad destination pointee slipped through.");
667 assert(SrcRecord && "Bad source pointee slipped through.");
668
669 // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness.
670 if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +0000671 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away)
John McCallb45ae252011-10-05 07:41:44 +0000672 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Eli Friedman2437c862013-07-26 23:47:47 +0000673 SrcExpr = ExprError();
Sebastian Redl26d85b12008-11-05 21:50:06 +0000674 return;
675 }
676
677 // C++ 5.2.7p3: If the type of v is the same as the required result type,
678 // [except for cv].
679 if (DestRecord == SrcRecord) {
John McCall2de56d12010-08-25 11:45:40 +0000680 Kind = CK_NoOp;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000681 return;
682 }
683
684 // C++ 5.2.7p5
685 // Upcasts are resolved statically.
Sebastian Redl37d6de32008-11-08 13:00:26 +0000686 if (DestRecord && Self.IsDerivedFrom(SrcPointee, DestPointee)) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000687 if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee,
688 OpRange.getBegin(), OpRange,
Eli Friedman2437c862013-07-26 23:47:47 +0000689 &BasePath)) {
690 SrcExpr = ExprError();
691 return;
692 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700693
John McCall2de56d12010-08-25 11:45:40 +0000694 Kind = CK_DerivedToBase;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000695 return;
696 }
697
698 // C++ 5.2.7p6: Otherwise, v shall be [polymorphic].
Douglas Gregor952b0172010-02-11 01:04:33 +0000699 const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition();
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000700 assert(SrcDecl && "Definition missing");
701 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000702 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic)
John Wiegley429bb272011-04-08 18:41:53 +0000703 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman2437c862013-07-26 23:47:47 +0000704 SrcExpr = ExprError();
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000705 }
Sebastian Redl26d85b12008-11-05 21:50:06 +0000706
Eli Friedman01ae0932013-09-24 23:21:41 +0000707 // dynamic_cast is not available with -fno-rtti.
708 // As an exception, dynamic_cast to void* is available because it doesn't
709 // use RTTI.
710 if (!Self.getLangOpts().RTTI && !DestPointee->isVoidType()) {
Arnaud A. de Grandmaison789d82a2013-08-01 08:28:32 +0000711 Self.Diag(OpRange.getBegin(), diag::err_no_dynamic_cast_with_fno_rtti);
712 SrcExpr = ExprError();
713 return;
714 }
715
Sebastian Redl26d85b12008-11-05 21:50:06 +0000716 // Done. Everything else is run-time checks.
John McCall2de56d12010-08-25 11:45:40 +0000717 Kind = CK_Dynamic;
Sebastian Redl26d85b12008-11-05 21:50:06 +0000718}
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000719
720/// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid.
721/// Refer to C++ 5.2.11 for details. const_cast is typically used in code
722/// like this:
723/// const char *str = "literal";
724/// legacy_function(const_cast\<char*\>(str));
John McCallb45ae252011-10-05 07:41:44 +0000725void CastOperation::CheckConstCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000726 if (ValueKind == VK_RValue)
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700727 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000728 else if (isPlaceholder())
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700729 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000730 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
731 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000732
733 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smith41cb3d92013-06-14 22:27:52 +0000734 if (TryConstCast(Self, SrcExpr, DestType, /*CStyle*/false, msg) != TC_Success
Eli Friedman2437c862013-07-26 23:47:47 +0000735 && msg != 0) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000736 Self.Diag(OpRange.getBegin(), msg) << CT_Const
John Wiegley429bb272011-04-08 18:41:53 +0000737 << SrcExpr.get()->getType() << DestType << OpRange;
Eli Friedman2437c862013-07-26 23:47:47 +0000738 SrcExpr = ExprError();
739 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000740}
741
John McCall437da052013-03-22 02:58:14 +0000742/// Check that a reinterpret_cast\<DestType\>(SrcExpr) is not used as upcast
743/// or downcast between respective pointers or references.
744static void DiagnoseReinterpretUpDownCast(Sema &Self, const Expr *SrcExpr,
745 QualType DestType,
746 SourceRange OpRange) {
747 QualType SrcType = SrcExpr->getType();
748 // When casting from pointer or reference, get pointee type; use original
749 // type otherwise.
750 const CXXRecordDecl *SrcPointeeRD = SrcType->getPointeeCXXRecordDecl();
751 const CXXRecordDecl *SrcRD =
752 SrcPointeeRD ? SrcPointeeRD : SrcType->getAsCXXRecordDecl();
753
John McCallfdb468f2013-03-27 00:03:48 +0000754 // Examining subobjects for records is only possible if the complete and
755 // valid definition is available. Also, template instantiation is not
756 // allowed here.
757 if (!SrcRD || !SrcRD->isCompleteDefinition() || SrcRD->isInvalidDecl())
John McCall437da052013-03-22 02:58:14 +0000758 return;
759
760 const CXXRecordDecl *DestRD = DestType->getPointeeCXXRecordDecl();
761
John McCallfdb468f2013-03-27 00:03:48 +0000762 if (!DestRD || !DestRD->isCompleteDefinition() || DestRD->isInvalidDecl())
John McCall437da052013-03-22 02:58:14 +0000763 return;
764
765 enum {
766 ReinterpretUpcast,
767 ReinterpretDowncast
768 } ReinterpretKind;
769
770 CXXBasePaths BasePaths;
771
772 if (SrcRD->isDerivedFrom(DestRD, BasePaths))
773 ReinterpretKind = ReinterpretUpcast;
774 else if (DestRD->isDerivedFrom(SrcRD, BasePaths))
775 ReinterpretKind = ReinterpretDowncast;
776 else
777 return;
778
779 bool VirtualBase = true;
780 bool NonZeroOffset = false;
John McCallfdb468f2013-03-27 00:03:48 +0000781 for (CXXBasePaths::const_paths_iterator I = BasePaths.begin(),
John McCall437da052013-03-22 02:58:14 +0000782 E = BasePaths.end();
783 I != E; ++I) {
784 const CXXBasePath &Path = *I;
785 CharUnits Offset = CharUnits::Zero();
786 bool IsVirtual = false;
787 for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end();
788 IElem != EElem; ++IElem) {
789 IsVirtual = IElem->Base->isVirtual();
790 if (IsVirtual)
791 break;
792 const CXXRecordDecl *BaseRD = IElem->Base->getType()->getAsCXXRecordDecl();
793 assert(BaseRD && "Base type should be a valid unqualified class type");
John McCallfdb468f2013-03-27 00:03:48 +0000794 // Don't check if any base has invalid declaration or has no definition
795 // since it has no layout info.
796 const CXXRecordDecl *Class = IElem->Class,
797 *ClassDefinition = Class->getDefinition();
798 if (Class->isInvalidDecl() || !ClassDefinition ||
799 !ClassDefinition->isCompleteDefinition())
800 return;
801
John McCall437da052013-03-22 02:58:14 +0000802 const ASTRecordLayout &DerivedLayout =
John McCallfdb468f2013-03-27 00:03:48 +0000803 Self.Context.getASTRecordLayout(Class);
John McCall437da052013-03-22 02:58:14 +0000804 Offset += DerivedLayout.getBaseClassOffset(BaseRD);
805 }
806 if (!IsVirtual) {
807 // Don't warn if any path is a non-virtually derived base at offset zero.
808 if (Offset.isZero())
809 return;
810 // Offset makes sense only for non-virtual bases.
811 else
812 NonZeroOffset = true;
813 }
814 VirtualBase = VirtualBase && IsVirtual;
815 }
816
Andy Gibbsde7afe02013-06-19 13:33:37 +0000817 (void) NonZeroOffset; // Silence set but not used warning.
John McCall437da052013-03-22 02:58:14 +0000818 assert((VirtualBase || NonZeroOffset) &&
819 "Should have returned if has non-virtual base with zero offset");
820
821 QualType BaseType =
822 ReinterpretKind == ReinterpretUpcast? DestType : SrcType;
823 QualType DerivedType =
824 ReinterpretKind == ReinterpretUpcast? SrcType : DestType;
825
Jordan Rose5fd1fac2013-03-28 19:09:40 +0000826 SourceLocation BeginLoc = OpRange.getBegin();
827 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static)
Joerg Sonnenberger73484542013-06-26 21:31:47 +0000828 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind)
Jordan Rose5fd1fac2013-03-28 19:09:40 +0000829 << OpRange;
830 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static)
Joerg Sonnenberger73484542013-06-26 21:31:47 +0000831 << int(ReinterpretKind)
Jordan Rose5fd1fac2013-03-28 19:09:40 +0000832 << FixItHint::CreateReplacement(BeginLoc, "static_cast");
John McCall437da052013-03-22 02:58:14 +0000833}
834
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000835/// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is
836/// valid.
837/// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code
838/// like this:
839/// char *bytes = reinterpret_cast\<char*\>(int_ptr);
John McCallb45ae252011-10-05 07:41:44 +0000840void CastOperation::CheckReinterpretCast() {
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000841 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700842 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedmaned0b31f2012-01-12 00:44:34 +0000843 else
844 checkNonOverloadPlaceholders();
845 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
846 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000847
848 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCallf85e1932011-06-15 23:02:42 +0000849 TryCastResult tcr =
850 TryReinterpretCast(Self, SrcExpr, DestType,
851 /*CStyle*/false, OpRange, msg, Kind);
852 if (tcr != TC_Success && msg != 0)
Douglas Gregor8e960432010-11-08 03:40:48 +0000853 {
John Wiegley429bb272011-04-08 18:41:53 +0000854 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
855 return;
856 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor8e960432010-11-08 03:40:48 +0000857 //FIXME: &f<int>; is overloaded and resolvable
858 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload)
John Wiegley429bb272011-04-08 18:41:53 +0000859 << OverloadExpr::find(SrcExpr.get()).Expression->getName()
Douglas Gregor8e960432010-11-08 03:40:48 +0000860 << DestType << OpRange;
John Wiegley429bb272011-04-08 18:41:53 +0000861 Self.NoteAllOverloadCandidates(SrcExpr.get());
Douglas Gregor8e960432010-11-08 03:40:48 +0000862
John McCall79ab2c82011-02-14 18:34:10 +0000863 } else {
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000864 diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(),
865 DestType, /*listInitialization=*/false);
Douglas Gregor8e960432010-11-08 03:40:48 +0000866 }
Eli Friedman2437c862013-07-26 23:47:47 +0000867 SrcExpr = ExprError();
John McCall437da052013-03-22 02:58:14 +0000868 } else if (tcr == TC_Success) {
869 if (Self.getLangOpts().ObjCAutoRefCount)
870 checkObjCARCConversion(Sema::CCK_OtherCast);
871 DiagnoseReinterpretUpDownCast(Self, SrcExpr.get(), DestType, OpRange);
John McCallf85e1932011-06-15 23:02:42 +0000872 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000873}
874
875
876/// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid.
877/// Refer to C++ 5.2.9 for details. Static casts are mostly used for making
878/// implicit conversions explicit and getting rid of data loss warnings.
Richard Smithc8d7f582011-11-29 22:48:16 +0000879void CastOperation::CheckStaticCast() {
John McCalla180f042011-10-06 23:25:11 +0000880 if (isPlaceholder()) {
881 checkNonOverloadPlaceholders();
882 if (SrcExpr.isInvalid())
883 return;
884 }
885
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000886 // This test is outside everything else because it's the only case where
887 // a non-lvalue-reference target type does not lead to decay.
888 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Eli Friedman05d9d7a2009-11-16 05:44:20 +0000889 if (DestType->isVoidType()) {
John McCalla180f042011-10-06 23:25:11 +0000890 Kind = CK_ToVoid;
891
892 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall6dbba4f2011-10-11 23:14:30 +0000893 Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr,
Douglas Gregor1be8eec2011-02-19 21:32:49 +0000894 false, // Decay Function to ptr
895 true, // Complain
896 OpRange, DestType, diag::err_bad_static_cast_overload);
John McCall6dbba4f2011-10-11 23:14:30 +0000897 if (SrcExpr.isInvalid())
898 return;
Douglas Gregor1be8eec2011-02-19 21:32:49 +0000899 }
John McCalla180f042011-10-06 23:25:11 +0000900
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700901 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000902 return;
Eli Friedman05d9d7a2009-11-16 05:44:20 +0000903 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000904
John McCall6dbba4f2011-10-11 23:14:30 +0000905 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
906 !isPlaceholder(BuiltinType::Overload)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700907 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John Wiegley429bb272011-04-08 18:41:53 +0000908 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
909 return;
910 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000911
912 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCallf85e1932011-06-15 23:02:42 +0000913 TryCastResult tcr
Richard Smithc8d7f582011-11-29 22:48:16 +0000914 = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg,
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000915 Kind, BasePath, /*ListInitialization=*/false);
John McCallf85e1932011-06-15 23:02:42 +0000916 if (tcr != TC_Success && msg != 0) {
John Wiegley429bb272011-04-08 18:41:53 +0000917 if (SrcExpr.isInvalid())
918 return;
919 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
920 OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression;
Douglas Gregor8e960432010-11-08 03:40:48 +0000921 Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload)
Douglas Gregor4c9be892011-02-28 20:01:57 +0000922 << oe->getName() << DestType << OpRange
923 << oe->getQualifierLoc().getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +0000924 Self.NoteAllOverloadCandidates(SrcExpr.get());
John McCall79ab2c82011-02-14 18:34:10 +0000925 } else {
Sebastian Redl20ff0e22012-02-13 19:55:43 +0000926 diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType,
927 /*listInitialization=*/false);
Douglas Gregor8e960432010-11-08 03:40:48 +0000928 }
Eli Friedman2437c862013-07-26 23:47:47 +0000929 SrcExpr = ExprError();
John McCallf85e1932011-06-15 23:02:42 +0000930 } else if (tcr == TC_Success) {
931 if (Kind == CK_BitCast)
John McCallb45ae252011-10-05 07:41:44 +0000932 checkCastAlign();
David Blaikie4e4d0842012-03-11 07:00:24 +0000933 if (Self.getLangOpts().ObjCAutoRefCount)
Richard Smithc8d7f582011-11-29 22:48:16 +0000934 checkObjCARCConversion(Sema::CCK_OtherCast);
John McCallb45ae252011-10-05 07:41:44 +0000935 } else if (Kind == CK_BitCast) {
936 checkCastAlign();
Douglas Gregor8e960432010-11-08 03:40:48 +0000937 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000938}
939
940/// TryStaticCast - Check if a static cast can be performed, and do so if
941/// possible. If @p CStyle, ignore access restrictions on hierarchy casting
942/// and casting away constness.
John Wiegley429bb272011-04-08 18:41:53 +0000943static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
John McCallf85e1932011-06-15 23:02:42 +0000944 QualType DestType,
945 Sema::CheckedConversionKind CCK,
Anders Carlssoncb3c3082009-09-01 20:52:42 +0000946 const SourceRange &OpRange, unsigned &msg,
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000947 CastKind &Kind, CXXCastPath &BasePath,
948 bool ListInitialization) {
John McCallf85e1932011-06-15 23:02:42 +0000949 // Determine whether we have the semantics of a C-style cast.
950 bool CStyle
951 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
952
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000953 // The order the tests is not entirely arbitrary. There is one conversion
954 // that can be handled in two different ways. Given:
955 // struct A {};
956 // struct B : public A {
957 // B(); B(const A&);
958 // };
959 // const A &a = B();
960 // the cast static_cast<const B&>(a) could be seen as either a static
961 // reference downcast, or an explicit invocation of the user-defined
962 // conversion using B's conversion constructor.
963 // DR 427 specifies that the downcast is to be applied here.
964
965 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
966 // Done outside this function.
967
968 TryCastResult tcr;
969
970 // C++ 5.2.9p5, reference downcast.
971 // See the function for details.
972 // DR 427 specifies that this is to be applied before paragraph 2.
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000973 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
974 OpRange, msg, Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000975 if (tcr != TC_NotApplicable)
976 return tcr;
977
Douglas Gregordc843f22011-01-22 00:06:57 +0000978 // C++0x [expr.static.cast]p3:
979 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2
980 // T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000981 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
982 BasePath, msg);
Douglas Gregor88b22a42011-01-25 16:13:26 +0000983 if (tcr != TC_NotApplicable)
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000984 return tcr;
985
986 // C++ 5.2.9p2: An expression e can be explicitly converted to a type T
987 // [...] if the declaration "T t(e);" is well-formed, [...].
John McCallf85e1932011-06-15 23:02:42 +0000988 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
Sebastian Redl6dc00f62012-02-12 18:41:05 +0000989 Kind, ListInitialization);
John Wiegley429bb272011-04-08 18:41:53 +0000990 if (SrcExpr.isInvalid())
991 return TC_Failed;
Anders Carlsson3c31a392009-09-26 00:12:34 +0000992 if (tcr != TC_NotApplicable)
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000993 return tcr;
Anders Carlsson0aebc812009-09-09 21:33:21 +0000994
Sebastian Redl9cc11e72009-07-25 15:41:38 +0000995 // C++ 5.2.9p6: May apply the reverse of any standard conversion, except
996 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
997 // conversions, subject to further restrictions.
998 // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal
999 // of qualification conversions impossible.
1000 // In the CStyle case, the earlier attempt to const_cast should have taken
1001 // care of reverse qualification conversions.
1002
John Wiegley429bb272011-04-08 18:41:53 +00001003 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType());
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001004
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001005 // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly
Douglas Gregor1e856d92011-02-18 03:01:41 +00001006 // converted to an integral type. [...] A value of a scoped enumeration type
1007 // can also be explicitly converted to a floating-point type [...].
1008 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1009 if (Enum->getDecl()->isScoped()) {
1010 if (DestType->isBooleanType()) {
1011 Kind = CK_IntegralToBoolean;
1012 return TC_Success;
1013 } else if (DestType->isIntegralType(Self.Context)) {
1014 Kind = CK_IntegralCast;
1015 return TC_Success;
1016 } else if (DestType->isRealFloatingType()) {
1017 Kind = CK_IntegralToFloating;
1018 return TC_Success;
1019 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001020 }
1021 }
Douglas Gregor1e856d92011-02-18 03:01:41 +00001022
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001023 // Reverse integral promotion/conversion. All such conversions are themselves
1024 // again integral promotions or conversions and are thus already handled by
1025 // p2 (TryDirectInitialization above).
1026 // (Note: any data loss warnings should be suppressed.)
1027 // The exception is the reverse of enum->integer, i.e. integer->enum (and
1028 // enum->enum). See also C++ 5.2.9p7.
1029 // The same goes for reverse floating point promotion/conversion and
1030 // floating-integral conversions. Again, only floating->enum is relevant.
1031 if (DestType->isEnumeralType()) {
Eli Friedmancc2fca22011-09-02 17:38:59 +00001032 if (SrcType->isIntegralOrEnumerationType()) {
John McCall2de56d12010-08-25 11:45:40 +00001033 Kind = CK_IntegralCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001034 return TC_Success;
Eli Friedmancc2fca22011-09-02 17:38:59 +00001035 } else if (SrcType->isRealFloatingType()) {
1036 Kind = CK_FloatingToIntegral;
1037 return TC_Success;
Eli Friedman05d9d7a2009-11-16 05:44:20 +00001038 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001039 }
1040
1041 // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast.
1042 // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance.
Anders Carlsson95c5d8a2009-11-12 16:53:16 +00001043 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001044 Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001045 if (tcr != TC_NotApplicable)
1046 return tcr;
1047
1048 // Reverse member pointer conversion. C++ 4.11 specifies member pointer
1049 // conversion. C++ 5.2.9p9 has additional information.
1050 // DR54's access restrictions apply here also.
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001051 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
Anders Carlssoncee22422010-04-24 19:22:20 +00001052 OpRange, msg, Kind, BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001053 if (tcr != TC_NotApplicable)
1054 return tcr;
1055
1056 // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to
1057 // void*. C++ 5.2.9p10 specifies additional restrictions, which really is
1058 // just the usual constness stuff.
Ted Kremenek6217b802009-07-29 21:53:49 +00001059 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001060 QualType SrcPointee = SrcPointer->getPointeeType();
1061 if (SrcPointee->isVoidType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001062 if (const PointerType *DestPointer = DestType->getAs<PointerType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001063 QualType DestPointee = DestPointer->getPointeeType();
1064 if (DestPointee->isIncompleteOrObjectType()) {
1065 // This is definitely the intended conversion, but it might fail due
John McCallf85e1932011-06-15 23:02:42 +00001066 // to a qualifier violation. Note that we permit Objective-C lifetime
1067 // and GC qualifier mismatches here.
1068 if (!CStyle) {
1069 Qualifiers DestPointeeQuals = DestPointee.getQualifiers();
1070 Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers();
1071 DestPointeeQuals.removeObjCGCAttr();
1072 DestPointeeQuals.removeObjCLifetime();
1073 SrcPointeeQuals.removeObjCGCAttr();
1074 SrcPointeeQuals.removeObjCLifetime();
1075 if (DestPointeeQuals != SrcPointeeQuals &&
1076 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) {
1077 msg = diag::err_bad_cxx_cast_qualifiers_away;
1078 return TC_Failed;
1079 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001080 }
John McCall2de56d12010-08-25 11:45:40 +00001081 Kind = CK_BitCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001082 return TC_Success;
1083 }
1084 }
Fariborz Jahanian2f6c5502010-05-10 23:46:53 +00001085 else if (DestType->isObjCObjectPointerType()) {
1086 // allow both c-style cast and static_cast of objective-c pointers as
1087 // they are pervasive.
John McCall1d9b3b22011-09-09 05:25:32 +00001088 Kind = CK_CPointerToObjCPointerCast;
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +00001089 return TC_Success;
1090 }
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001091 else if (CStyle && DestType->isBlockPointerType()) {
1092 // allow c-style cast of void * to block pointers.
John McCall2de56d12010-08-25 11:45:40 +00001093 Kind = CK_AnyPointerToBlockPointerCast;
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001094 return TC_Success;
1095 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001096 }
1097 }
Fariborz Jahanian65267b22010-05-12 18:16:59 +00001098 // Allow arbitray objective-c pointer conversion with static casts.
1099 if (SrcType->isObjCObjectPointerType() &&
John McCalldaa8e4e2010-11-15 09:13:47 +00001100 DestType->isObjCObjectPointerType()) {
1101 Kind = CK_BitCast;
Fariborz Jahanian65267b22010-05-12 18:16:59 +00001102 return TC_Success;
John McCalldaa8e4e2010-11-15 09:13:47 +00001103 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001104 // Allow ns-pointer to cf-pointer conversion in either direction
1105 // with static casts.
1106 if (!CStyle &&
1107 Self.CheckTollFreeBridgeStaticCast(DestType, SrcExpr.get(), Kind))
1108 return TC_Success;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001109
1110 // See if it looks like the user is trying to convert between
1111 // related record types, and select a better diagnostic if so.
1112 if (auto SrcPointer = SrcType->getAs<PointerType>())
1113 if (auto DestPointer = DestType->getAs<PointerType>())
1114 if (SrcPointer->getPointeeType()->getAs<RecordType>() &&
1115 DestPointer->getPointeeType()->getAs<RecordType>())
1116 msg = diag::err_bad_cxx_cast_unrelated_class;
Fariborz Jahanian65267b22010-05-12 18:16:59 +00001117
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001118 // We tried everything. Everything! Nothing works! :-(
1119 return TC_NotApplicable;
1120}
1121
1122/// Tests whether a conversion according to N2844 is valid.
1123TryCastResult
1124TryLValueToRValueCast(Sema &Self, Expr *SrcExpr, QualType DestType,
Douglas Gregor8ec14e62011-01-26 21:04:06 +00001125 bool CStyle, CastKind &Kind, CXXCastPath &BasePath,
1126 unsigned &msg) {
Douglas Gregordc843f22011-01-22 00:06:57 +00001127 // C++0x [expr.static.cast]p3:
1128 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
1129 // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Ted Kremenek6217b802009-07-29 21:53:49 +00001130 const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001131 if (!R)
1132 return TC_NotApplicable;
1133
Douglas Gregordc843f22011-01-22 00:06:57 +00001134 if (!SrcExpr->isGLValue())
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001135 return TC_NotApplicable;
1136
1137 // Because we try the reference downcast before this function, from now on
1138 // this is the only cast possibility, so we issue an error if we fail now.
1139 // FIXME: Should allow casting away constness if CStyle.
1140 bool DerivedToBase;
Douglas Gregor569c3162010-08-07 11:51:51 +00001141 bool ObjCConversion;
John McCallf85e1932011-06-15 23:02:42 +00001142 bool ObjCLifetimeConversion;
Douglas Gregor8ec14e62011-01-26 21:04:06 +00001143 QualType FromType = SrcExpr->getType();
1144 QualType ToType = R->getPointeeType();
1145 if (CStyle) {
1146 FromType = FromType.getUnqualifiedType();
1147 ToType = ToType.getUnqualifiedType();
1148 }
1149
Douglas Gregor393896f2009-11-05 13:06:35 +00001150 if (Self.CompareReferenceRelationship(SrcExpr->getLocStart(),
Douglas Gregor8ec14e62011-01-26 21:04:06 +00001151 ToType, FromType,
John McCallf85e1932011-06-15 23:02:42 +00001152 DerivedToBase, ObjCConversion,
1153 ObjCLifetimeConversion)
1154 < Sema::Ref_Compatible_With_Added_Qualification) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001155 msg = diag::err_bad_lvalue_to_rvalue_cast;
1156 return TC_Failed;
1157 }
1158
Douglas Gregor88b22a42011-01-25 16:13:26 +00001159 if (DerivedToBase) {
1160 Kind = CK_DerivedToBase;
1161 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1162 /*DetectVirtual=*/true);
1163 if (!Self.IsDerivedFrom(SrcExpr->getType(), R->getPointeeType(), Paths))
1164 return TC_NotApplicable;
1165
1166 Self.BuildBasePathArray(Paths, BasePath);
1167 } else
1168 Kind = CK_NoOp;
1169
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001170 return TC_Success;
1171}
1172
1173/// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1174TryCastResult
1175TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
1176 bool CStyle, const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001177 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001178 CXXCastPath &BasePath) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001179 // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1180 // cast to type "reference to cv2 D", where D is a class derived from B,
1181 // if a valid standard conversion from "pointer to D" to "pointer to B"
1182 // exists, cv2 >= cv1, and B is not a virtual base class of D.
1183 // In addition, DR54 clarifies that the base must be accessible in the
1184 // current context. Although the wording of DR54 only applies to the pointer
1185 // variant of this rule, the intent is clearly for it to apply to the this
1186 // conversion as well.
1187
Ted Kremenek6217b802009-07-29 21:53:49 +00001188 const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001189 if (!DestReference) {
1190 return TC_NotApplicable;
1191 }
1192 bool RValueRef = DestReference->isRValueReferenceType();
John McCall7eb0a9e2010-11-24 05:12:34 +00001193 if (!RValueRef && !SrcExpr->isLValue()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001194 // We know the left side is an lvalue reference, so we can suggest a reason.
1195 msg = diag::err_bad_cxx_cast_rvalue;
1196 return TC_NotApplicable;
1197 }
1198
1199 QualType DestPointee = DestReference->getPointeeType();
1200
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001201 // FIXME: If the source is a prvalue, we should issue a warning (because the
1202 // cast always has undefined behavior), and for AST consistency, we should
1203 // materialize a temporary.
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001204 return TryStaticDowncast(Self,
1205 Self.Context.getCanonicalType(SrcExpr->getType()),
1206 Self.Context.getCanonicalType(DestPointee), CStyle,
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001207 OpRange, SrcExpr->getType(), DestType, msg, Kind,
1208 BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001209}
1210
1211/// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1212TryCastResult
1213TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
Mike Stump1eb44332009-09-09 15:08:12 +00001214 bool CStyle, const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001215 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001216 CXXCastPath &BasePath) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001217 // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1218 // type, can be converted to an rvalue of type "pointer to cv2 D", where D
1219 // is a class derived from B, if a valid standard conversion from "pointer
1220 // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1221 // class of D.
1222 // In addition, DR54 clarifies that the base must be accessible in the
1223 // current context.
1224
Ted Kremenek6217b802009-07-29 21:53:49 +00001225 const PointerType *DestPointer = DestType->getAs<PointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001226 if (!DestPointer) {
1227 return TC_NotApplicable;
1228 }
1229
Ted Kremenek6217b802009-07-29 21:53:49 +00001230 const PointerType *SrcPointer = SrcType->getAs<PointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001231 if (!SrcPointer) {
1232 msg = diag::err_bad_static_cast_pointer_nonpointer;
1233 return TC_NotApplicable;
1234 }
1235
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001236 return TryStaticDowncast(Self,
1237 Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
1238 Self.Context.getCanonicalType(DestPointer->getPointeeType()),
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001239 CStyle, OpRange, SrcType, DestType, msg, Kind,
1240 BasePath);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001241}
1242
1243/// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1244/// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001245/// DestType is possible and allowed.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001246TryCastResult
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001247TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001248 bool CStyle, const SourceRange &OpRange, QualType OrigSrcType,
Anders Carlsson95c5d8a2009-11-12 16:53:16 +00001249 QualType OrigDestType, unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +00001250 CastKind &Kind, CXXCastPath &BasePath) {
Sebastian Redl5ed66f72009-10-22 15:07:22 +00001251 // We can only work with complete types. But don't complain if it doesn't work
Douglas Gregord10099e2012-05-04 16:32:21 +00001252 if (Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0) ||
1253 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0))
Sebastian Redl5ed66f72009-10-22 15:07:22 +00001254 return TC_NotApplicable;
1255
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001256 // Downcast can only happen in class hierarchies, so we need classes.
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001257 if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001258 return TC_NotApplicable;
1259 }
1260
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001261 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001262 /*DetectVirtual=*/true);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001263 if (!Self.IsDerivedFrom(DestType, SrcType, Paths)) {
1264 return TC_NotApplicable;
1265 }
1266
1267 // Target type does derive from source type. Now we're serious. If an error
1268 // appears now, it's not ignored.
1269 // This may not be entirely in line with the standard. Take for example:
1270 // struct A {};
1271 // struct B : virtual A {
1272 // B(A&);
1273 // };
Mike Stump1eb44332009-09-09 15:08:12 +00001274 //
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001275 // void f()
1276 // {
1277 // (void)static_cast<const B&>(*((A*)0));
1278 // }
1279 // As far as the standard is concerned, p5 does not apply (A is virtual), so
1280 // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1281 // However, both GCC and Comeau reject this example, and accepting it would
1282 // mean more complex code if we're to preserve the nice error message.
1283 // FIXME: Being 100% compliant here would be nice to have.
1284
1285 // Must preserve cv, as always, unless we're in C-style mode.
1286 if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001287 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001288 return TC_Failed;
1289 }
1290
1291 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1292 // This code is analoguous to that in CheckDerivedToBaseConversion, except
1293 // that it builds the paths in reverse order.
1294 // To sum up: record all paths to the base and build a nice string from
1295 // them. Use it to spice up the error message.
1296 if (!Paths.isRecordingPaths()) {
1297 Paths.clear();
1298 Paths.setRecordingPaths(true);
1299 Self.IsDerivedFrom(DestType, SrcType, Paths);
1300 }
1301 std::string PathDisplayStr;
1302 std::set<unsigned> DisplayedPaths;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001303 for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001304 PI != PE; ++PI) {
1305 if (DisplayedPaths.insert(PI->back().SubobjectNumber).second) {
1306 // We haven't displayed a path to this particular base
1307 // class subobject yet.
1308 PathDisplayStr += "\n ";
Douglas Gregora8f32e02009-10-06 17:59:45 +00001309 for (CXXBasePath::const_reverse_iterator EI = PI->rbegin(),
1310 EE = PI->rend();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001311 EI != EE; ++EI)
1312 PathDisplayStr += EI->Base->getType().getAsString() + " -> ";
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001313 PathDisplayStr += QualType(DestType).getAsString();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001314 }
1315 }
1316
1317 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
Douglas Gregorab15d0e2009-11-15 09:20:52 +00001318 << QualType(SrcType).getUnqualifiedType()
1319 << QualType(DestType).getUnqualifiedType()
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001320 << PathDisplayStr << OpRange;
1321 msg = 0;
1322 return TC_Failed;
1323 }
1324
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001325 if (Paths.getDetectedVirtual() != nullptr) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001326 QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1327 Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1328 << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1329 msg = 0;
1330 return TC_Failed;
1331 }
1332
John McCall417d39f2011-02-14 23:21:33 +00001333 if (!CStyle) {
1334 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1335 SrcType, DestType,
1336 Paths.front(),
John McCall58e6f342010-03-16 05:22:47 +00001337 diag::err_downcast_from_inaccessible_base)) {
John McCall417d39f2011-02-14 23:21:33 +00001338 case Sema::AR_accessible:
1339 case Sema::AR_delayed: // be optimistic
1340 case Sema::AR_dependent: // be optimistic
1341 break;
1342
1343 case Sema::AR_inaccessible:
1344 msg = 0;
1345 return TC_Failed;
1346 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001347 }
1348
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001349 Self.BuildBasePathArray(Paths, BasePath);
John McCall2de56d12010-08-25 11:45:40 +00001350 Kind = CK_BaseToDerived;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001351 return TC_Success;
1352}
1353
1354/// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1355/// C++ 5.2.9p9 is valid:
1356///
1357/// An rvalue of type "pointer to member of D of type cv1 T" can be
1358/// converted to an rvalue of type "pointer to member of B of type cv2 T",
1359/// where B is a base class of D [...].
1360///
1361TryCastResult
John Wiegley429bb272011-04-08 18:41:53 +00001362TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001363 QualType DestType, bool CStyle,
1364 const SourceRange &OpRange,
John McCall2de56d12010-08-25 11:45:40 +00001365 unsigned &msg, CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00001366 CXXCastPath &BasePath) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001367 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001368 if (!DestMemPtr)
1369 return TC_NotApplicable;
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001370
1371 bool WasOverloadedFunction = false;
John McCall6bb80172010-03-30 21:47:33 +00001372 DeclAccessPair FoundOverload;
John Wiegley429bb272011-04-08 18:41:53 +00001373 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001374 if (FunctionDecl *Fn
John Wiegley429bb272011-04-08 18:41:53 +00001375 = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001376 FoundOverload)) {
1377 CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1378 SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1379 Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1380 WasOverloadedFunction = true;
1381 }
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001382 }
Douglas Gregor1a8cf732010-04-14 23:11:21 +00001383
Ted Kremenek6217b802009-07-29 21:53:49 +00001384 const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001385 if (!SrcMemPtr) {
1386 msg = diag::err_bad_static_cast_member_pointer_nonmp;
1387 return TC_NotApplicable;
1388 }
1389
1390 // T == T, modulo cv
Douglas Gregora4923eb2009-11-16 21:35:15 +00001391 if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1392 DestMemPtr->getPointeeType()))
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001393 return TC_NotApplicable;
1394
1395 // B base of D
1396 QualType SrcClass(SrcMemPtr->getClass(), 0);
1397 QualType DestClass(DestMemPtr->getClass(), 0);
Anders Carlssoncee22422010-04-24 19:22:20 +00001398 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001399 /*DetectVirtual=*/true);
Stephen Hines651f13c2014-04-23 16:59:28 -07001400 if (Self.RequireCompleteType(OpRange.getBegin(), SrcClass, 0) ||
1401 !Self.IsDerivedFrom(SrcClass, DestClass, Paths)) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001402 return TC_NotApplicable;
1403 }
1404
1405 // 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 +00001406 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001407 Paths.clear();
1408 Paths.setRecordingPaths(true);
1409 bool StillOkay = Self.IsDerivedFrom(SrcClass, DestClass, Paths);
1410 assert(StillOkay);
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +00001411 (void)StillOkay;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001412 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1413 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1414 << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1415 msg = 0;
1416 return TC_Failed;
1417 }
1418
1419 if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1420 Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1421 << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1422 msg = 0;
1423 return TC_Failed;
1424 }
1425
John McCall417d39f2011-02-14 23:21:33 +00001426 if (!CStyle) {
1427 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1428 DestClass, SrcClass,
1429 Paths.front(),
1430 diag::err_upcast_to_inaccessible_base)) {
1431 case Sema::AR_accessible:
1432 case Sema::AR_delayed:
1433 case Sema::AR_dependent:
1434 // Optimistically assume that the delayed and dependent cases
1435 // will work out.
1436 break;
1437
1438 case Sema::AR_inaccessible:
1439 msg = 0;
1440 return TC_Failed;
1441 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001442 }
1443
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001444 if (WasOverloadedFunction) {
1445 // Resolve the address of the overloaded function again, this time
1446 // allowing complaints if something goes wrong.
John Wiegley429bb272011-04-08 18:41:53 +00001447 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001448 DestType,
John McCall6bb80172010-03-30 21:47:33 +00001449 true,
1450 FoundOverload);
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001451 if (!Fn) {
1452 msg = 0;
1453 return TC_Failed;
1454 }
1455
John McCall6bb80172010-03-30 21:47:33 +00001456 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
John Wiegley429bb272011-04-08 18:41:53 +00001457 if (!SrcExpr.isUsable()) {
Douglas Gregor4ce46c22010-03-07 23:24:59 +00001458 msg = 0;
1459 return TC_Failed;
1460 }
1461 }
1462
Anders Carlssoncee22422010-04-24 19:22:20 +00001463 Self.BuildBasePathArray(Paths, BasePath);
John McCall2de56d12010-08-25 11:45:40 +00001464 Kind = CK_DerivedToBaseMemberPointer;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001465 return TC_Success;
1466}
1467
1468/// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1469/// is valid:
1470///
1471/// An expression e can be explicitly converted to a type T using a
1472/// @c static_cast if the declaration "T t(e);" is well-formed [...].
1473TryCastResult
John Wiegley429bb272011-04-08 18:41:53 +00001474TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
John McCallf85e1932011-06-15 23:02:42 +00001475 Sema::CheckedConversionKind CCK,
1476 const SourceRange &OpRange, unsigned &msg,
Sebastian Redl6dc00f62012-02-12 18:41:05 +00001477 CastKind &Kind, bool ListInitialization) {
Anders Carlssond851b372009-09-07 18:25:47 +00001478 if (DestType->isRecordType()) {
1479 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
Aaron Ballman21eb6d42012-05-07 00:02:00 +00001480 diag::err_bad_dynamic_cast_incomplete) ||
Eli Friedman860a3192012-06-16 02:19:17 +00001481 Self.RequireNonAbstractType(OpRange.getBegin(), DestType,
Aaron Ballman21eb6d42012-05-07 00:02:00 +00001482 diag::err_allocation_of_abstract_type)) {
Anders Carlssond851b372009-09-07 18:25:47 +00001483 msg = 0;
1484 return TC_Failed;
1485 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001486 } else if (DestType->isMemberPointerType()) {
1487 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1488 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0);
1489 }
Anders Carlssond851b372009-09-07 18:25:47 +00001490 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00001491
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001492 InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1493 InitializationKind InitKind
John McCallf85e1932011-06-15 23:02:42 +00001494 = (CCK == Sema::CCK_CStyleCast)
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00001495 ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange,
Sebastian Redl6dc00f62012-02-12 18:41:05 +00001496 ListInitialization)
John McCallf85e1932011-06-15 23:02:42 +00001497 : (CCK == Sema::CCK_FunctionalCast)
Sebastian Redl6dc00f62012-02-12 18:41:05 +00001498 ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization)
Richard Smithc8d7f582011-11-29 22:48:16 +00001499 : InitializationKind::CreateCast(OpRange);
John Wiegley429bb272011-04-08 18:41:53 +00001500 Expr *SrcExprRaw = SrcExpr.get();
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00001501 InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregor8e960432010-11-08 03:40:48 +00001502
1503 // At this point of CheckStaticCast, if the destination is a reference,
1504 // or the expression is an overload expression this has to work.
1505 // There is no other way that works.
1506 // On the other hand, if we're checking a C-style cast, we've still got
1507 // the reinterpret_cast way.
John McCallf85e1932011-06-15 23:02:42 +00001508 bool CStyle
1509 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Sebastian Redl383616c2011-06-05 12:23:28 +00001510 if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
Anders Carlsson3c31a392009-09-26 00:12:34 +00001511 return TC_NotApplicable;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001512
Benjamin Kramer5354e772012-08-23 23:38:35 +00001513 ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001514 if (Result.isInvalid()) {
1515 msg = 0;
1516 return TC_Failed;
1517 }
1518
Douglas Gregord6e44a32010-04-16 22:09:46 +00001519 if (InitSeq.isConstructorInitialization())
John McCall2de56d12010-08-25 11:45:40 +00001520 Kind = CK_ConstructorConversion;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001521 else
John McCall2de56d12010-08-25 11:45:40 +00001522 Kind = CK_NoOp;
Douglas Gregord6e44a32010-04-16 22:09:46 +00001523
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001524 SrcExpr = Result;
Douglas Gregorf0e43e52010-04-16 19:30:02 +00001525 return TC_Success;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001526}
1527
1528/// TryConstCast - See if a const_cast from source to destination is allowed,
1529/// and perform it if it is.
Richard Smith41cb3d92013-06-14 22:27:52 +00001530static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
1531 QualType DestType, bool CStyle,
1532 unsigned &msg) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001533 DestType = Self.Context.getCanonicalType(DestType);
Richard Smith41cb3d92013-06-14 22:27:52 +00001534 QualType SrcType = SrcExpr.get()->getType();
1535 bool NeedToMaterializeTemporary = false;
1536
Douglas Gregor575d2a32011-01-22 00:19:52 +00001537 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
Richard Smith41cb3d92013-06-14 22:27:52 +00001538 // C++11 5.2.11p4:
1539 // if a pointer to T1 can be explicitly converted to the type "pointer to
1540 // T2" using a const_cast, then the following conversions can also be
1541 // made:
1542 // -- an lvalue of type T1 can be explicitly converted to an lvalue of
1543 // type T2 using the cast const_cast<T2&>;
1544 // -- a glvalue of type T1 can be explicitly converted to an xvalue of
1545 // type T2 using the cast const_cast<T2&&>; and
1546 // -- if T1 is a class type, a prvalue of type T1 can be explicitly
1547 // converted to an xvalue of type T2 using the cast const_cast<T2&&>.
1548
1549 if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001550 // Cannot const_cast non-lvalue to lvalue reference type. But if this
1551 // is C-style, static_cast might find a way, so we simply suggest a
1552 // message and tell the parent to keep searching.
1553 msg = diag::err_bad_cxx_cast_rvalue;
1554 return TC_NotApplicable;
1555 }
1556
Richard Smith41cb3d92013-06-14 22:27:52 +00001557 if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) {
1558 if (!SrcType->isRecordType()) {
1559 // Cannot const_cast non-class prvalue to rvalue reference type. But if
1560 // this is C-style, static_cast can do this.
1561 msg = diag::err_bad_cxx_cast_rvalue;
1562 return TC_NotApplicable;
1563 }
1564
1565 // Materialize the class prvalue so that the const_cast can bind a
1566 // reference to it.
1567 NeedToMaterializeTemporary = true;
1568 }
1569
John McCall993f43f2013-05-06 21:39:12 +00001570 // It's not completely clear under the standard whether we can
1571 // const_cast bit-field gl-values. Doing so would not be
1572 // intrinsically complicated, but for now, we say no for
1573 // consistency with other compilers and await the word of the
1574 // committee.
Richard Smith41cb3d92013-06-14 22:27:52 +00001575 if (SrcExpr.get()->refersToBitField()) {
John McCall993f43f2013-05-06 21:39:12 +00001576 msg = diag::err_bad_cxx_cast_bitfield;
1577 return TC_NotApplicable;
1578 }
1579
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001580 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1581 SrcType = Self.Context.getPointerType(SrcType);
1582 }
1583
1584 // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1585 // the rules for const_cast are the same as those used for pointers.
1586
John McCalld425d2b2010-05-18 09:35:29 +00001587 if (!DestType->isPointerType() &&
1588 !DestType->isMemberPointerType() &&
1589 !DestType->isObjCObjectPointerType()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001590 // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1591 // was a reference type, we converted it to a pointer above.
1592 // The status of rvalue references isn't entirely clear, but it looks like
1593 // conversion to them is simply invalid.
1594 // C++ 5.2.11p3: For two pointer types [...]
1595 if (!CStyle)
1596 msg = diag::err_bad_const_cast_dest;
1597 return TC_NotApplicable;
1598 }
1599 if (DestType->isFunctionPointerType() ||
1600 DestType->isMemberFunctionPointerType()) {
1601 // Cannot cast direct function pointers.
1602 // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1603 // T is the ultimate pointee of source and target type.
1604 if (!CStyle)
1605 msg = diag::err_bad_const_cast_dest;
1606 return TC_NotApplicable;
1607 }
1608 SrcType = Self.Context.getCanonicalType(SrcType);
1609
1610 // Unwrap the pointers. Ignore qualifiers. Terminate early if the types are
1611 // completely equal.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001612 // C++ 5.2.11p3 describes the core semantics of const_cast. All cv specifiers
1613 // in multi-level pointers may change, but the level count must be the same,
1614 // as must be the final pointee type.
1615 while (SrcType != DestType &&
Douglas Gregor5a57efd2010-06-09 03:53:18 +00001616 Self.Context.UnwrapSimilarPointerTypes(SrcType, DestType)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001617 Qualifiers SrcQuals, DestQuals;
1618 SrcType = Self.Context.getUnqualifiedArrayType(SrcType, SrcQuals);
1619 DestType = Self.Context.getUnqualifiedArrayType(DestType, DestQuals);
1620
1621 // const_cast is permitted to strip cvr-qualifiers, only. Make sure that
1622 // the other qualifiers (e.g., address spaces) are identical.
1623 SrcQuals.removeCVRQualifiers();
1624 DestQuals.removeCVRQualifiers();
1625 if (SrcQuals != DestQuals)
1626 return TC_NotApplicable;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001627 }
1628
1629 // Since we're dealing in canonical types, the remainder must be the same.
1630 if (SrcType != DestType)
1631 return TC_NotApplicable;
1632
Richard Smith41cb3d92013-06-14 22:27:52 +00001633 if (NeedToMaterializeTemporary)
1634 // This is a const_cast from a class prvalue to an rvalue reference type.
1635 // Materialize a temporary to store the result of the conversion.
1636 SrcExpr = new (Self.Context) MaterializeTemporaryExpr(
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001637 SrcType, SrcExpr.get(), /*IsLValueReference*/ false);
Richard Smith41cb3d92013-06-14 22:27:52 +00001638
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001639 return TC_Success;
1640}
1641
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001642// Checks for undefined behavior in reinterpret_cast.
1643// The cases that is checked for is:
1644// *reinterpret_cast<T*>(&a)
1645// reinterpret_cast<T&>(a)
1646// where accessing 'a' as type 'T' will result in undefined behavior.
1647void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1648 bool IsDereference,
1649 SourceRange Range) {
1650 unsigned DiagID = IsDereference ?
1651 diag::warn_pointer_indirection_from_incompatible_type :
1652 diag::warn_undefined_reinterpret_cast;
1653
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001654 if (Diags.isIgnored(DiagID, Range.getBegin()))
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001655 return;
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001656
1657 QualType SrcTy, DestTy;
1658 if (IsDereference) {
1659 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1660 return;
1661 }
1662 SrcTy = SrcType->getPointeeType();
1663 DestTy = DestType->getPointeeType();
1664 } else {
1665 if (!DestType->getAs<ReferenceType>()) {
1666 return;
1667 }
1668 SrcTy = SrcType;
1669 DestTy = DestType->getPointeeType();
1670 }
1671
1672 // Cast is compatible if the types are the same.
1673 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1674 return;
1675 }
1676 // or one of the types is a char or void type
1677 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
1678 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1679 return;
1680 }
1681 // or one of the types is a tag type.
Chandler Carruth1f8f2d52011-05-24 07:43:19 +00001682 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001683 return;
1684 }
1685
Douglas Gregor575a1c92011-05-20 16:38:50 +00001686 // FIXME: Scoped enums?
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001687 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1688 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1689 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
1690 return;
1691 }
1692 }
1693
1694 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
1695}
Douglas Gregorfadb53b2011-03-12 01:48:56 +00001696
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00001697static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr,
1698 QualType DestType) {
1699 QualType SrcType = SrcExpr.get()->getType();
Fariborz Jahanian0c252fa2012-12-13 00:42:06 +00001700 if (Self.Context.hasSameType(SrcType, DestType))
1701 return;
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00001702 if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>())
1703 if (SrcPtrTy->isObjCSelType()) {
1704 QualType DT = DestType;
1705 if (isa<PointerType>(DestType))
1706 DT = DestType->getPointeeType();
1707 if (!DT.getUnqualifiedType()->isVoidType())
1708 Self.Diag(SrcExpr.get()->getExprLoc(),
1709 diag::warn_cast_pointer_from_sel)
1710 << SrcType << DestType << SrcExpr.get()->getSourceRange();
1711 }
1712}
1713
David Blaikie9b29f4f2012-10-16 18:53:14 +00001714static void checkIntToPointerCast(bool CStyle, SourceLocation Loc,
1715 const Expr *SrcExpr, QualType DestType,
1716 Sema &Self) {
1717 QualType SrcType = SrcExpr->getType();
1718
1719 // Not warning on reinterpret_cast, boolean, constant expressions, etc
1720 // are not explicit design choices, but consistent with GCC's behavior.
1721 // Feel free to modify them if you've reason/evidence for an alternative.
1722 if (CStyle && SrcType->isIntegralType(Self.Context)
1723 && !SrcType->isBooleanType()
1724 && !SrcType->isEnumeralType()
1725 && !SrcExpr->isIntegerConstantExpr(Self.Context)
Ted Kremenek2628b442013-05-29 21:50:46 +00001726 && Self.Context.getTypeSize(DestType) >
1727 Self.Context.getTypeSize(SrcType)) {
1728 // Separate between casts to void* and non-void* pointers.
1729 // Some APIs use (abuse) void* for something like a user context,
1730 // and often that value is an integer even if it isn't a pointer itself.
1731 // Having a separate warning flag allows users to control the warning
1732 // for their workflow.
1733 unsigned Diag = DestType->isVoidPointerType() ?
1734 diag::warn_int_to_void_pointer_cast
1735 : diag::warn_int_to_pointer_cast;
1736 Self.Diag(Loc, Diag) << SrcType << DestType;
1737 }
David Blaikie9b29f4f2012-10-16 18:53:14 +00001738}
1739
John Wiegley429bb272011-04-08 18:41:53 +00001740static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001741 QualType DestType, bool CStyle,
1742 const SourceRange &OpRange,
Anders Carlsson3c31a392009-09-26 00:12:34 +00001743 unsigned &msg,
John McCall2de56d12010-08-25 11:45:40 +00001744 CastKind &Kind) {
Douglas Gregore39a3892010-07-13 23:17:26 +00001745 bool IsLValueCast = false;
1746
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001747 DestType = Self.Context.getCanonicalType(DestType);
John Wiegley429bb272011-04-08 18:41:53 +00001748 QualType SrcType = SrcExpr.get()->getType();
Douglas Gregor8e960432010-11-08 03:40:48 +00001749
1750 // Is the source an overloaded name? (i.e. &foo)
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001751 // If so, reinterpret_cast can not help us here (13.4, p1, bullet 5) ...
1752 if (SrcType == Self.Context.OverloadTy) {
John McCall6dbba4f2011-10-11 23:14:30 +00001753 // ... unless foo<int> resolves to an lvalue unambiguously.
1754 // TODO: what if this fails because of DiagnoseUseOfDecl or something
1755 // like it?
1756 ExprResult SingleFunctionExpr = SrcExpr;
1757 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
1758 SingleFunctionExpr,
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001759 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
John McCall6dbba4f2011-10-11 23:14:30 +00001760 ) && SingleFunctionExpr.isUsable()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001761 SrcExpr = SingleFunctionExpr;
John Wiegley429bb272011-04-08 18:41:53 +00001762 SrcType = SrcExpr.get()->getType();
John McCall6dbba4f2011-10-11 23:14:30 +00001763 } else {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001764 return TC_NotApplicable;
John McCall6dbba4f2011-10-11 23:14:30 +00001765 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001766 }
Douglas Gregor8e960432010-11-08 03:40:48 +00001767
Ted Kremenek6217b802009-07-29 21:53:49 +00001768 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
Richard Smith6850faf2012-04-29 08:24:44 +00001769 if (!SrcExpr.get()->isGLValue()) {
1770 // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
1771 // similar comment in const_cast.
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001772 msg = diag::err_bad_cxx_cast_rvalue;
1773 return TC_NotApplicable;
1774 }
1775
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00001776 if (!CStyle) {
1777 Self.CheckCompatibleReinterpretCast(SrcType, DestType,
1778 /*isDereference=*/false, OpRange);
1779 }
1780
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001781 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
1782 // same effect as the conversion *reinterpret_cast<T*>(&x) with the
1783 // built-in & and * operators.
Argyrios Kyrtzidisb464a5b2011-04-22 22:31:13 +00001784
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001785 const char *inappropriate = nullptr;
Argyrios Kyrtzidisbb29d1b2011-04-22 23:57:57 +00001786 switch (SrcExpr.get()->getObjectKind()) {
Argyrios Kyrtzidise5e3d312011-04-23 01:10:24 +00001787 case OK_Ordinary:
1788 break;
Argyrios Kyrtzidisbb29d1b2011-04-22 23:57:57 +00001789 case OK_BitField: inappropriate = "bit-field"; break;
1790 case OK_VectorComponent: inappropriate = "vector element"; break;
1791 case OK_ObjCProperty: inappropriate = "property expression"; break;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00001792 case OK_ObjCSubscript: inappropriate = "container subscripting expression";
1793 break;
Argyrios Kyrtzidisbb29d1b2011-04-22 23:57:57 +00001794 }
1795 if (inappropriate) {
1796 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
1797 << inappropriate << DestType
1798 << OpRange << SrcExpr.get()->getSourceRange();
1799 msg = 0; SrcExpr = ExprError();
Argyrios Kyrtzidisb464a5b2011-04-22 22:31:13 +00001800 return TC_NotApplicable;
1801 }
1802
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001803 // This code does this transformation for the checked types.
1804 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1805 SrcType = Self.Context.getPointerType(SrcType);
Douglas Gregor8e960432010-11-08 03:40:48 +00001806
Douglas Gregore39a3892010-07-13 23:17:26 +00001807 IsLValueCast = true;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001808 }
1809
1810 // Canonicalize source for comparison.
1811 SrcType = Self.Context.getCanonicalType(SrcType);
1812
Ted Kremenek6217b802009-07-29 21:53:49 +00001813 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
1814 *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001815 if (DestMemPtr && SrcMemPtr) {
1816 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
1817 // can be explicitly converted to an rvalue of type "pointer to member
1818 // of Y of type T2" if T1 and T2 are both function types or both object
1819 // types.
1820 if (DestMemPtr->getPointeeType()->isFunctionType() !=
1821 SrcMemPtr->getPointeeType()->isFunctionType())
1822 return TC_NotApplicable;
1823
1824 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
1825 // constness.
1826 // A reinterpret_cast followed by a const_cast can, though, so in C-style,
1827 // we accept it.
John McCallf85e1932011-06-15 23:02:42 +00001828 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
1829 /*CheckObjCLifetime=*/CStyle)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001830 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001831 return TC_Failed;
1832 }
1833
Stephen Hines651f13c2014-04-23 16:59:28 -07001834 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1835 // We need to determine the inheritance model that the class will use if
1836 // haven't yet.
1837 Self.RequireCompleteType(OpRange.getBegin(), SrcType, 0);
1838 Self.RequireCompleteType(OpRange.getBegin(), DestType, 0);
1839 }
1840
Charles Davisf231df32010-08-16 05:30:44 +00001841 // Don't allow casting between member pointers of different sizes.
1842 if (Self.Context.getTypeSize(DestMemPtr) !=
1843 Self.Context.getTypeSize(SrcMemPtr)) {
1844 msg = diag::err_bad_cxx_cast_member_pointer_size;
1845 return TC_Failed;
1846 }
1847
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001848 // A valid member pointer cast.
John McCall4d4e5c12012-02-15 01:22:51 +00001849 assert(!IsLValueCast);
1850 Kind = CK_ReinterpretMemberPointer;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001851 return TC_Success;
1852 }
1853
1854 // See below for the enumeral issue.
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001855 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001856 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
1857 // type large enough to hold it. A value of std::nullptr_t can be
1858 // converted to an integral type; the conversion has the same meaning
1859 // and validity as a conversion of (void*)0 to the integral type.
1860 if (Self.Context.getTypeSize(SrcType) >
1861 Self.Context.getTypeSize(DestType)) {
1862 msg = diag::err_bad_reinterpret_cast_small_int;
1863 return TC_Failed;
1864 }
John McCall2de56d12010-08-25 11:45:40 +00001865 Kind = CK_PointerToIntegral;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001866 return TC_Success;
1867 }
1868
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001869 bool destIsVector = DestType->isVectorType();
1870 bool srcIsVector = SrcType->isVectorType();
1871 if (srcIsVector || destIsVector) {
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001872 // FIXME: Should this also apply to floating point types?
1873 bool srcIsScalar = SrcType->isIntegralType(Self.Context);
1874 bool destIsScalar = DestType->isIntegralType(Self.Context);
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001875
1876 // Check if this is a cast between a vector and something else.
1877 if (!(srcIsScalar && destIsVector) && !(srcIsVector && destIsScalar) &&
1878 !(srcIsVector && destIsVector))
1879 return TC_NotApplicable;
1880
1881 // If both types have the same size, we can successfully cast.
Douglas Gregorf2a55392009-12-22 22:47:22 +00001882 if (Self.Context.getTypeSize(SrcType)
1883 == Self.Context.getTypeSize(DestType)) {
John McCall2de56d12010-08-25 11:45:40 +00001884 Kind = CK_BitCast;
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001885 return TC_Success;
Douglas Gregorf2a55392009-12-22 22:47:22 +00001886 }
Anders Carlsson0de51bc2009-09-16 19:19:43 +00001887
1888 if (destIsScalar)
1889 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
1890 else if (srcIsScalar)
1891 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
1892 else
1893 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
1894
1895 return TC_Failed;
1896 }
Chad Rosier41f44312012-02-03 02:54:37 +00001897
1898 if (SrcType == DestType) {
1899 // C++ 5.2.10p2 has a note that mentions that, subject to all other
1900 // restrictions, a cast to the same type is allowed so long as it does not
1901 // cast away constness. In C++98, the intent was not entirely clear here,
1902 // since all other paragraphs explicitly forbid casts to the same type.
1903 // C++11 clarifies this case with p2.
1904 //
1905 // The only allowed types are: integral, enumeration, pointer, or
1906 // pointer-to-member types. We also won't restrict Obj-C pointers either.
1907 Kind = CK_NoOp;
1908 TryCastResult Result = TC_NotApplicable;
1909 if (SrcType->isIntegralOrEnumerationType() ||
1910 SrcType->isAnyPointerType() ||
1911 SrcType->isMemberPointerType() ||
1912 SrcType->isBlockPointerType()) {
1913 Result = TC_Success;
1914 }
1915 return Result;
1916 }
1917
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001918 bool destIsPtr = DestType->isAnyPointerType() ||
1919 DestType->isBlockPointerType();
1920 bool srcIsPtr = SrcType->isAnyPointerType() ||
1921 SrcType->isBlockPointerType();
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001922 if (!destIsPtr && !srcIsPtr) {
1923 // Except for std::nullptr_t->integer and lvalue->reference, which are
1924 // handled above, at least one of the two arguments must be a pointer.
1925 return TC_NotApplicable;
1926 }
1927
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001928 if (DestType->isIntegralType(Self.Context)) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001929 assert(srcIsPtr && "One type must be a pointer");
1930 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
Francois Pichet30aff5b2011-05-11 22:13:54 +00001931 // type large enough to hold it; except in Microsoft mode, where the
Hans Wennborg649c6c52013-06-06 09:16:36 +00001932 // integral type size doesn't matter (except we don't allow bool).
1933 bool MicrosoftException = Self.getLangOpts().MicrosoftExt &&
1934 !DestType->isBooleanType();
Francois Pichet30aff5b2011-05-11 22:13:54 +00001935 if ((Self.Context.getTypeSize(SrcType) >
1936 Self.Context.getTypeSize(DestType)) &&
Hans Wennborg649c6c52013-06-06 09:16:36 +00001937 !MicrosoftException) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001938 msg = diag::err_bad_reinterpret_cast_small_int;
1939 return TC_Failed;
1940 }
John McCall2de56d12010-08-25 11:45:40 +00001941 Kind = CK_PointerToIntegral;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001942 return TC_Success;
1943 }
1944
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001945 if (SrcType->isIntegralOrEnumerationType()) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001946 assert(destIsPtr && "One type must be a pointer");
David Blaikie9b29f4f2012-10-16 18:53:14 +00001947 checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType,
1948 Self);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001949 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
1950 // converted to a pointer.
John McCall404cd162010-11-13 01:35:44 +00001951 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
1952 // necessarily converted to a null pointer value.]
John McCall2de56d12010-08-25 11:45:40 +00001953 Kind = CK_IntegralToPointer;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001954 return TC_Success;
1955 }
1956
1957 if (!destIsPtr || !srcIsPtr) {
1958 // With the valid non-pointer conversions out of the way, we can be even
1959 // more stringent.
1960 return TC_NotApplicable;
1961 }
1962
1963 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
1964 // The C-style cast operator can.
John McCallf85e1932011-06-15 23:02:42 +00001965 if (CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
1966 /*CheckObjCLifetime=*/CStyle)) {
Douglas Gregord4c5f842011-04-15 17:59:54 +00001967 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001968 return TC_Failed;
1969 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001970
1971 // Cannot convert between block pointers and Objective-C object pointers.
1972 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
1973 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
1974 return TC_NotApplicable;
1975
John McCall1d9b3b22011-09-09 05:25:32 +00001976 if (IsLValueCast) {
1977 Kind = CK_LValueBitCast;
1978 } else if (DestType->isObjCObjectPointerType()) {
John McCalldc05b112011-09-10 01:16:55 +00001979 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
John McCall1d9b3b22011-09-09 05:25:32 +00001980 } else if (DestType->isBlockPointerType()) {
1981 if (!SrcType->isBlockPointerType()) {
1982 Kind = CK_AnyPointerToBlockPointerCast;
1983 } else {
1984 Kind = CK_BitCast;
1985 }
1986 } else {
1987 Kind = CK_BitCast;
1988 }
1989
Douglas Gregorbf9fb882010-07-08 20:27:32 +00001990 // Any pointer can be cast to an Objective-C pointer type with a C-style
1991 // cast.
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +00001992 if (CStyle && DestType->isObjCObjectPointerType()) {
Fariborz Jahanian92ef5d72009-12-08 23:09:15 +00001993 return TC_Success;
1994 }
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00001995 if (CStyle)
1996 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
1997
Sebastian Redl9cc11e72009-07-25 15:41:38 +00001998 // Not casting away constness, so the only remaining check is for compatible
1999 // pointer categories.
2000
2001 if (SrcType->isFunctionPointerType()) {
2002 if (DestType->isFunctionPointerType()) {
2003 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2004 // a pointer to a function of a different type.
2005 return TC_Success;
2006 }
2007
2008 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2009 // an object type or vice versa is conditionally-supported.
2010 // Compilers support it in C++03 too, though, because it's necessary for
2011 // casting the return value of dlsym() and GetProcAddress().
2012 // FIXME: Conditionally-supported behavior should be configurable in the
2013 // TargetInfo or similar.
Richard Smithebaf0e62011-10-18 20:49:44 +00002014 Self.Diag(OpRange.getBegin(),
Richard Smith80ad52f2013-01-02 11:42:31 +00002015 Self.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00002016 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2017 << OpRange;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002018 return TC_Success;
2019 }
2020
2021 if (DestType->isFunctionPointerType()) {
2022 // See above.
Richard Smithebaf0e62011-10-18 20:49:44 +00002023 Self.Diag(OpRange.getBegin(),
Richard Smith80ad52f2013-01-02 11:42:31 +00002024 Self.getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00002025 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2026 << OpRange;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002027 return TC_Success;
2028 }
Douglas Gregorbf9fb882010-07-08 20:27:32 +00002029
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002030 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2031 // a pointer to an object of different type.
2032 // Void pointers are not specified, but supported by every compiler out there.
2033 // So we finish by allowing everything that remains - it's got to be two
2034 // object pointers.
2035 return TC_Success;
John McCall79ab2c82011-02-14 18:34:10 +00002036}
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002037
Sebastian Redl6dc00f62012-02-12 18:41:05 +00002038void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2039 bool ListInitialization) {
John McCalla180f042011-10-06 23:25:11 +00002040 // Handle placeholders.
2041 if (isPlaceholder()) {
2042 // C-style casts can resolve __unknown_any types.
2043 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2044 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2045 SrcExpr.get(), Kind,
2046 ValueKind, BasePath);
2047 return;
2048 }
John McCallb45ae252011-10-05 07:41:44 +00002049
John McCalla180f042011-10-06 23:25:11 +00002050 checkNonOverloadPlaceholders();
2051 if (SrcExpr.isInvalid())
2052 return;
John McCall4919dfd2011-10-17 17:42:19 +00002053 }
John McCalla180f042011-10-06 23:25:11 +00002054
2055 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002056 // This test is outside everything else because it's the only case where
2057 // a non-lvalue-reference target type does not lead to decay.
John McCallb45ae252011-10-05 07:41:44 +00002058 if (DestType->isVoidType()) {
John McCallfb8721c2011-04-10 19:13:55 +00002059 Kind = CK_ToVoid;
2060
John McCalla180f042011-10-06 23:25:11 +00002061 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall6dbba4f2011-10-11 23:14:30 +00002062 Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2063 SrcExpr, /* Decay Function to ptr */ false,
John McCallb45ae252011-10-05 07:41:44 +00002064 /* Complain */ true, DestRange, DestType,
Douglas Gregorfadb53b2011-03-12 01:48:56 +00002065 diag::err_bad_cstyle_cast_overload);
John McCallb45ae252011-10-05 07:41:44 +00002066 if (SrcExpr.isInvalid())
2067 return;
Douglas Gregor1be8eec2011-02-19 21:32:49 +00002068 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002069
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002070 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCallb45ae252011-10-05 07:41:44 +00002071 return;
Anton Yartsevd06fea82011-03-27 09:32:40 +00002072 }
2073
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002074 // If the type is dependent, we won't do any other semantic analysis now.
Eli Friedmanf91e86c2013-09-19 01:12:33 +00002075 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2076 SrcExpr.get()->isValueDependent()) {
John McCallb45ae252011-10-05 07:41:44 +00002077 assert(Kind == CK_Dependent);
2078 return;
John McCalldaa8e4e2010-11-15 09:13:47 +00002079 }
Benjamin Kramer5b4a40a2011-07-08 20:20:17 +00002080
John McCall6dbba4f2011-10-11 23:14:30 +00002081 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
2082 !isPlaceholder(BuiltinType::Overload)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002083 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCallb45ae252011-10-05 07:41:44 +00002084 if (SrcExpr.isInvalid())
2085 return;
John Wiegley429bb272011-04-08 18:41:53 +00002086 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002087
John McCallfb8721c2011-04-10 19:13:55 +00002088 // AltiVec vector initialization with a single literal.
John McCallb45ae252011-10-05 07:41:44 +00002089 if (const VectorType *vecTy = DestType->getAs<VectorType>())
John McCallfb8721c2011-04-10 19:13:55 +00002090 if (vecTy->getVectorKind() == VectorType::AltiVecVector
John McCallb45ae252011-10-05 07:41:44 +00002091 && (SrcExpr.get()->getType()->isIntegerType()
2092 || SrcExpr.get()->getType()->isFloatingType())) {
John McCallfb8721c2011-04-10 19:13:55 +00002093 Kind = CK_VectorSplat;
John McCallb45ae252011-10-05 07:41:44 +00002094 return;
John McCallfb8721c2011-04-10 19:13:55 +00002095 }
2096
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002097 // C++ [expr.cast]p5: The conversions performed by
2098 // - a const_cast,
2099 // - a static_cast,
2100 // - a static_cast followed by a const_cast,
2101 // - a reinterpret_cast, or
2102 // - a reinterpret_cast followed by a const_cast,
2103 // can be performed using the cast notation of explicit type conversion.
2104 // [...] If a conversion can be interpreted in more than one of the ways
2105 // listed above, the interpretation that appears first in the list is used,
2106 // even if a cast resulting from that interpretation is ill-formed.
2107 // In plain language, this means trying a const_cast ...
2108 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smith41cb3d92013-06-14 22:27:52 +00002109 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
John McCallb45ae252011-10-05 07:41:44 +00002110 /*CStyle*/true, msg);
Richard Smith41cb3d92013-06-14 22:27:52 +00002111 if (SrcExpr.isInvalid())
2112 return;
Anders Carlssonda921fd2009-10-19 18:14:28 +00002113 if (tcr == TC_Success)
John McCall2de56d12010-08-25 11:45:40 +00002114 Kind = CK_NoOp;
Anders Carlssonda921fd2009-10-19 18:14:28 +00002115
John McCallf85e1932011-06-15 23:02:42 +00002116 Sema::CheckedConversionKind CCK
2117 = FunctionalStyle? Sema::CCK_FunctionalCast
2118 : Sema::CCK_CStyleCast;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002119 if (tcr == TC_NotApplicable) {
2120 // ... or if that is not possible, a static_cast, ignoring const, ...
John McCallb45ae252011-10-05 07:41:44 +00002121 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange,
Sebastian Redl6dc00f62012-02-12 18:41:05 +00002122 msg, Kind, BasePath, ListInitialization);
John McCallb45ae252011-10-05 07:41:44 +00002123 if (SrcExpr.isInvalid())
2124 return;
2125
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002126 if (tcr == TC_NotApplicable) {
2127 // ... and finally a reinterpret_cast, ignoring const.
John McCallb45ae252011-10-05 07:41:44 +00002128 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true,
2129 OpRange, msg, Kind);
2130 if (SrcExpr.isInvalid())
2131 return;
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002132 }
2133 }
2134
David Blaikie4e4d0842012-03-11 07:00:24 +00002135 if (Self.getLangOpts().ObjCAutoRefCount && tcr == TC_Success)
John McCallb45ae252011-10-05 07:41:44 +00002136 checkObjCARCConversion(CCK);
John McCallf85e1932011-06-15 23:02:42 +00002137
Nick Lewycky43328e92010-11-09 00:19:31 +00002138 if (tcr != TC_Success && msg != 0) {
John McCallb45ae252011-10-05 07:41:44 +00002139 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor8e960432010-11-08 03:40:48 +00002140 DeclAccessPair Found;
John McCallb45ae252011-10-05 07:41:44 +00002141 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2142 DestType,
2143 /*Complain*/ true,
Douglas Gregor8e960432010-11-08 03:40:48 +00002144 Found);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002145 if (Fn) {
2146 // If DestType is a function type (not to be confused with the function
2147 // pointer type), it will be possible to resolve the function address,
2148 // but the type cast should be considered as failure.
2149 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2150 Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2151 << OE->getName() << DestType << OpRange
2152 << OE->getQualifierLoc().getSourceRange();
2153 Self.NoteAllOverloadCandidates(SrcExpr.get());
2154 }
Nick Lewycky43328e92010-11-09 00:19:31 +00002155 } else {
John McCallb45ae252011-10-05 07:41:44 +00002156 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
Sebastian Redl20ff0e22012-02-13 19:55:43 +00002157 OpRange, SrcExpr.get(), DestType, ListInitialization);
Douglas Gregor8e960432010-11-08 03:40:48 +00002158 }
John McCallb45ae252011-10-05 07:41:44 +00002159 } else if (Kind == CK_BitCast) {
2160 checkCastAlign();
Douglas Gregor8e960432010-11-08 03:40:48 +00002161 }
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002162
John McCallb45ae252011-10-05 07:41:44 +00002163 // Clear out SrcExpr if there was a fatal error.
John Wiegley429bb272011-04-08 18:41:53 +00002164 if (tcr != TC_Success)
John McCallb45ae252011-10-05 07:41:44 +00002165 SrcExpr = ExprError();
2166}
2167
Fariborz Jahanianbbb8afd2012-08-17 17:22:34 +00002168/// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
2169/// non-matching type. Such as enum function call to int, int call to
2170/// pointer; etc. Cast to 'void' is an exception.
2171static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2172 QualType DestType) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002173 if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2174 SrcExpr.get()->getExprLoc()))
Fariborz Jahanianbbb8afd2012-08-17 17:22:34 +00002175 return;
2176
2177 if (!isa<CallExpr>(SrcExpr.get()))
2178 return;
2179
2180 QualType SrcType = SrcExpr.get()->getType();
2181 if (DestType.getUnqualifiedType()->isVoidType())
2182 return;
2183 if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2184 && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2185 return;
2186 if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2187 (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2188 (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2189 return;
2190 if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2191 return;
2192 if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2193 return;
2194 if (SrcType->isComplexType() && DestType->isComplexType())
2195 return;
2196 if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2197 return;
2198
2199 Self.Diag(SrcExpr.get()->getExprLoc(),
2200 diag::warn_bad_function_cast)
2201 << SrcType << DestType << SrcExpr.get()->getSourceRange();
2202}
2203
John McCalla180f042011-10-06 23:25:11 +00002204/// Check the semantics of a C-style cast operation, in C.
2205void CastOperation::CheckCStyleCast() {
David Blaikie4e4d0842012-03-11 07:00:24 +00002206 assert(!Self.getLangOpts().CPlusPlus);
John McCalla180f042011-10-06 23:25:11 +00002207
John McCall5acb0c92011-10-17 18:40:02 +00002208 // C-style casts can resolve __unknown_any types.
2209 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2210 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2211 SrcExpr.get(), Kind,
2212 ValueKind, BasePath);
2213 return;
2214 }
John McCalla180f042011-10-06 23:25:11 +00002215
2216 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2217 // type needs to be scalar.
2218 if (DestType->isVoidType()) {
2219 // We don't necessarily do lvalue-to-rvalue conversions on this.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002220 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCalla180f042011-10-06 23:25:11 +00002221 if (SrcExpr.isInvalid())
2222 return;
2223
2224 // Cast to void allows any expr type.
2225 Kind = CK_ToVoid;
2226 return;
2227 }
2228
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002229 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCalla180f042011-10-06 23:25:11 +00002230 if (SrcExpr.isInvalid())
2231 return;
2232 QualType SrcType = SrcExpr.get()->getType();
David Chisnall7a7ee302012-01-16 17:27:18 +00002233
John McCall5acb0c92011-10-17 18:40:02 +00002234 assert(!SrcType->isPlaceholderType());
John McCalla180f042011-10-06 23:25:11 +00002235
Stephen Hines651f13c2014-04-23 16:59:28 -07002236 // OpenCL v1 s6.5: Casting a pointer to address space A to a pointer to
2237 // address space B is illegal.
2238 if (Self.getLangOpts().OpenCL && DestType->isPointerType() &&
2239 SrcType->isPointerType()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002240 const PointerType *DestPtr = DestType->getAs<PointerType>();
2241 if (!DestPtr->isAddressSpaceOverlapping(*SrcType->getAs<PointerType>())) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002242 Self.Diag(OpRange.getBegin(),
2243 diag::err_typecheck_incompatible_address_space)
2244 << SrcType << DestType << Sema::AA_Casting
2245 << SrcExpr.get()->getSourceRange();
2246 SrcExpr = ExprError();
2247 return;
2248 }
2249 }
2250
John McCalla180f042011-10-06 23:25:11 +00002251 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2252 diag::err_typecheck_cast_to_incomplete)) {
2253 SrcExpr = ExprError();
2254 return;
2255 }
2256
2257 if (!DestType->isScalarType() && !DestType->isVectorType()) {
2258 const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2259
2260 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2261 // GCC struct/union extension: allow cast to self.
2262 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2263 << DestType << SrcExpr.get()->getSourceRange();
2264 Kind = CK_NoOp;
2265 return;
2266 }
2267
2268 // GCC's cast to union extension.
2269 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2270 RecordDecl *RD = DestRecordTy->getDecl();
2271 RecordDecl::field_iterator Field, FieldEnd;
2272 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
2273 Field != FieldEnd; ++Field) {
2274 if (Self.Context.hasSameUnqualifiedType(Field->getType(), SrcType) &&
2275 !Field->isUnnamedBitfield()) {
2276 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2277 << SrcExpr.get()->getSourceRange();
2278 break;
2279 }
2280 }
2281 if (Field == FieldEnd) {
2282 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2283 << SrcType << SrcExpr.get()->getSourceRange();
2284 SrcExpr = ExprError();
2285 return;
2286 }
2287 Kind = CK_ToUnion;
2288 return;
2289 }
2290
2291 // Reject any other conversions to non-scalar types.
2292 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2293 << DestType << SrcExpr.get()->getSourceRange();
2294 SrcExpr = ExprError();
2295 return;
2296 }
2297
2298 // The type we're casting to is known to be a scalar or vector.
2299
2300 // Require the operand to be a scalar or vector.
2301 if (!SrcType->isScalarType() && !SrcType->isVectorType()) {
2302 Self.Diag(SrcExpr.get()->getExprLoc(),
2303 diag::err_typecheck_expect_scalar_operand)
2304 << SrcType << SrcExpr.get()->getSourceRange();
2305 SrcExpr = ExprError();
2306 return;
2307 }
2308
2309 if (DestType->isExtVectorType()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002310 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
John McCalla180f042011-10-06 23:25:11 +00002311 return;
2312 }
2313
2314 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2315 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2316 (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2317 Kind = CK_VectorSplat;
2318 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2319 SrcExpr = ExprError();
2320 }
2321 return;
2322 }
2323
2324 if (SrcType->isVectorType()) {
2325 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2326 SrcExpr = ExprError();
2327 return;
2328 }
2329
2330 // The source and target types are both scalars, i.e.
2331 // - arithmetic types (fundamental, enum, and complex)
2332 // - all kinds of pointers
2333 // Note that member pointers were filtered out with C++, above.
2334
2335 if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2336 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2337 SrcExpr = ExprError();
2338 return;
2339 }
2340
2341 // If either type is a pointer, the other type has to be either an
2342 // integer or a pointer.
2343 if (!DestType->isArithmeticType()) {
2344 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
2345 Self.Diag(SrcExpr.get()->getExprLoc(),
2346 diag::err_cast_pointer_from_non_pointer_int)
2347 << SrcType << SrcExpr.get()->getSourceRange();
2348 SrcExpr = ExprError();
2349 return;
2350 }
David Blaikie9b29f4f2012-10-16 18:53:14 +00002351 checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(),
2352 DestType, Self);
John McCalla180f042011-10-06 23:25:11 +00002353 } else if (!SrcType->isArithmeticType()) {
2354 if (!DestType->isIntegralType(Self.Context) &&
2355 DestType->isArithmeticType()) {
2356 Self.Diag(SrcExpr.get()->getLocStart(),
2357 diag::err_cast_pointer_to_non_pointer_int)
Abramo Bagnaraf7ce1942011-11-15 11:25:38 +00002358 << DestType << SrcExpr.get()->getSourceRange();
John McCalla180f042011-10-06 23:25:11 +00002359 SrcExpr = ExprError();
2360 return;
2361 }
2362 }
2363
Joey Gouly19dbb202013-01-23 11:56:20 +00002364 if (Self.getLangOpts().OpenCL && !Self.getOpenCLOptions().cl_khr_fp16) {
2365 if (DestType->isHalfType()) {
2366 Self.Diag(SrcExpr.get()->getLocStart(), diag::err_opencl_cast_to_half)
2367 << DestType << SrcExpr.get()->getSourceRange();
2368 SrcExpr = ExprError();
2369 return;
2370 }
Joey Gouly19dbb202013-01-23 11:56:20 +00002371 }
2372
John McCalla180f042011-10-06 23:25:11 +00002373 // ARC imposes extra restrictions on casts.
David Blaikie4e4d0842012-03-11 07:00:24 +00002374 if (Self.getLangOpts().ObjCAutoRefCount) {
John McCalla180f042011-10-06 23:25:11 +00002375 checkObjCARCConversion(Sema::CCK_CStyleCast);
2376 if (SrcExpr.isInvalid())
2377 return;
2378
2379 if (const PointerType *CastPtr = DestType->getAs<PointerType>()) {
2380 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
2381 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
2382 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
2383 if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
2384 ExprPtr->getPointeeType()->isObjCLifetimeType() &&
2385 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
2386 Self.Diag(SrcExpr.get()->getLocStart(),
2387 diag::err_typecheck_incompatible_ownership)
2388 << SrcType << DestType << Sema::AA_Casting
2389 << SrcExpr.get()->getSourceRange();
2390 return;
2391 }
2392 }
2393 }
2394 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
2395 Self.Diag(SrcExpr.get()->getLocStart(),
2396 diag::err_arc_convesion_of_weak_unavailable)
2397 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
2398 SrcExpr = ExprError();
2399 return;
2400 }
2401 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002402
Fariborz Jahanian91dd9df2012-08-16 18:33:47 +00002403 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
Fariborz Jahanianbbb8afd2012-08-17 17:22:34 +00002404 DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
John McCalla180f042011-10-06 23:25:11 +00002405 Kind = Self.PrepareScalarCast(SrcExpr, DestType);
2406 if (SrcExpr.isInvalid())
2407 return;
2408
2409 if (Kind == CK_BitCast)
2410 checkCastAlign();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002411
2412 // -Wcast-qual
2413 QualType TheOffendingSrcType, TheOffendingDestType;
2414 Qualifiers CastAwayQualifiers;
2415 if (SrcType->isAnyPointerType() && DestType->isAnyPointerType() &&
2416 CastsAwayConstness(Self, SrcType, DestType, true, false,
2417 &TheOffendingSrcType, &TheOffendingDestType,
2418 &CastAwayQualifiers)) {
2419 int qualifiers = -1;
2420 if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
2421 qualifiers = 0;
2422 } else if (CastAwayQualifiers.hasConst()) {
2423 qualifiers = 1;
2424 } else if (CastAwayQualifiers.hasVolatile()) {
2425 qualifiers = 2;
2426 }
2427 // This is a variant of int **x; const int **y = (const int **)x;
2428 if (qualifiers == -1)
2429 Self.Diag(SrcExpr.get()->getLocStart(), diag::warn_cast_qual2) <<
2430 SrcType << DestType;
2431 else
2432 Self.Diag(SrcExpr.get()->getLocStart(), diag::warn_cast_qual) <<
2433 TheOffendingSrcType << TheOffendingDestType << qualifiers;
2434 }
John McCalla180f042011-10-06 23:25:11 +00002435}
2436
2437ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
2438 TypeSourceInfo *CastTypeInfo,
2439 SourceLocation RPLoc,
2440 Expr *CastExpr) {
John McCallb45ae252011-10-05 07:41:44 +00002441 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
2442 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
2443 Op.OpRange = SourceRange(LPLoc, CastExpr->getLocEnd());
2444
David Blaikie4e4d0842012-03-11 07:00:24 +00002445 if (getLangOpts().CPlusPlus) {
Sebastian Redl6dc00f62012-02-12 18:41:05 +00002446 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false,
2447 isa<InitListExpr>(CastExpr));
John McCalla180f042011-10-06 23:25:11 +00002448 } else {
2449 Op.CheckCStyleCast();
2450 }
2451
John McCallb45ae252011-10-05 07:41:44 +00002452 if (Op.SrcExpr.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00002453 return ExprError();
2454
John McCall5acb0c92011-10-17 18:40:02 +00002455 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002456 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall5acb0c92011-10-17 18:40:02 +00002457 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc));
John McCallb45ae252011-10-05 07:41:44 +00002458}
2459
2460ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
2461 SourceLocation LPLoc,
2462 Expr *CastExpr,
2463 SourceLocation RPLoc) {
Sebastian Redl20ff0e22012-02-13 19:55:43 +00002464 assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
John McCallb45ae252011-10-05 07:41:44 +00002465 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
2466 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
2467 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getLocEnd());
2468
Sebastian Redl20ff0e22012-02-13 19:55:43 +00002469 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/true, /*ListInit=*/false);
John McCallb45ae252011-10-05 07:41:44 +00002470 if (Op.SrcExpr.isInvalid())
2471 return ExprError();
Daniel Jaspera770a4d2012-07-16 08:05:07 +00002472
2473 if (CXXConstructExpr *ConstructExpr = dyn_cast<CXXConstructExpr>(Op.SrcExpr.get()))
Enea Zaffanella1245a542013-09-07 05:49:53 +00002474 ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
John McCallb45ae252011-10-05 07:41:44 +00002475
John McCall5acb0c92011-10-17 18:40:02 +00002476 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
Eli Friedmancdd4b782013-08-15 22:02:56 +00002477 Op.ValueKind, CastTypeInfo, Op.Kind,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002478 Op.SrcExpr.get(), &Op.BasePath, LPLoc, RPLoc));
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002479}