blob: 738b40ad44aed8aed2d29c8ae1fd831e5dcc34d2 [file] [log] [blame]
John McCall3cec19f2011-10-11 17:38:55 +00001//===--- SemaCast.cpp - Semantic Analysis for Casts -----------------------===//
Sebastian Redl3c5aa4d2008-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 McCall3cec19f2011-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 Redl3c5aa4d2008-11-05 21:50:06 +000014//
15//===----------------------------------------------------------------------===//
16
John McCall83024632010-08-25 22:03:47 +000017#include "clang/Sema/SemaInternal.h"
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000018#include "clang/AST/ASTContext.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/ExprCXX.h"
21#include "clang/AST/ExprObjC.h"
John McCallcda80832013-03-22 02:58:14 +000022#include "clang/AST/RecordLayout.h"
Anders Carlssond624e162009-08-26 23:45:07 +000023#include "clang/Basic/PartialDiagnostic.h"
David Majnemer1cdd96d2014-01-17 09:01:00 +000024#include "clang/Basic/TargetInfo.h"
Reid Kleckner9f497332016-05-10 21:00:03 +000025#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000026#include "clang/Sema/Initialization.h"
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000027#include "llvm/ADT/SmallVector.h"
Sebastian Redl015085f2008-11-07 23:29:29 +000028#include <set>
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000029using namespace clang;
30
Douglas Gregore81f58e2010-11-08 03:40:48 +000031
Douglas Gregore81f58e2010-11-08 03:40:48 +000032
Sebastian Redl9f831db2009-07-25 15:41:38 +000033enum TryCastResult {
34 TC_NotApplicable, ///< The cast method is not applicable.
35 TC_Success, ///< The cast method is appropriate and successful.
Richard Smithf276e2d2018-07-10 23:04:35 +000036 TC_Extension, ///< The cast method is appropriate and accepted as a
37 ///< language extension.
Sebastian Redl9f831db2009-07-25 15:41:38 +000038 TC_Failed ///< The cast method is appropriate, but failed. A
39 ///< diagnostic has been emitted.
40};
41
Richard Smithf276e2d2018-07-10 23:04:35 +000042static bool isValidCast(TryCastResult TCR) {
43 return TCR == TC_Success || TCR == TC_Extension;
44}
45
Sebastian Redl9f831db2009-07-25 15:41:38 +000046enum CastType {
47 CT_Const, ///< const_cast
48 CT_Static, ///< static_cast
49 CT_Reinterpret, ///< reinterpret_cast
50 CT_Dynamic, ///< dynamic_cast
51 CT_CStyle, ///< (Type)expr
52 CT_Functional ///< Type(expr)
Sebastian Redl842ef522008-11-08 13:00:26 +000053};
54
John McCallb50451a2011-10-05 07:41:44 +000055namespace {
56 struct CastOperation {
57 CastOperation(Sema &S, QualType destType, ExprResult src)
58 : Self(S), SrcExpr(src), DestType(destType),
59 ResultType(destType.getNonLValueExprType(S.Context)),
60 ValueKind(Expr::getValueKindForType(destType)),
John McCall4124c492011-10-17 18:40:02 +000061 Kind(CK_Dependent), IsARCUnbridgedCast(false) {
John McCall9776e432011-10-06 23:25:11 +000062
63 if (const BuiltinType *placeholder =
64 src.get()->getType()->getAsPlaceholderType()) {
65 PlaceholderKind = placeholder->getKind();
66 } else {
67 PlaceholderKind = (BuiltinType::Kind) 0;
68 }
69 }
Douglas Gregore81f58e2010-11-08 03:40:48 +000070
John McCallb50451a2011-10-05 07:41:44 +000071 Sema &Self;
72 ExprResult SrcExpr;
73 QualType DestType;
74 QualType ResultType;
75 ExprValueKind ValueKind;
76 CastKind Kind;
John McCall9776e432011-10-06 23:25:11 +000077 BuiltinType::Kind PlaceholderKind;
John McCallb50451a2011-10-05 07:41:44 +000078 CXXCastPath BasePath;
John McCall4124c492011-10-17 18:40:02 +000079 bool IsARCUnbridgedCast;
Douglas Gregore81f58e2010-11-08 03:40:48 +000080
John McCallb50451a2011-10-05 07:41:44 +000081 SourceRange OpRange;
82 SourceRange DestRange;
Douglas Gregore81f58e2010-11-08 03:40:48 +000083
John McCall9776e432011-10-06 23:25:11 +000084 // Top-level semantics-checking routines.
John McCallb50451a2011-10-05 07:41:44 +000085 void CheckConstCast();
86 void CheckReinterpretCast();
Richard Smith507840d2011-11-29 22:48:16 +000087 void CheckStaticCast();
John McCallb50451a2011-10-05 07:41:44 +000088 void CheckDynamicCast();
Sebastian Redld74dd492012-02-12 18:41:05 +000089 void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization);
John McCall9776e432011-10-06 23:25:11 +000090 void CheckCStyleCast();
91
Roman Lebedevd55661d2018-07-24 08:16:50 +000092 void updatePartOfExplicitCastFlags(CastExpr *CE) {
93 // Walk down from the CE to the OrigSrcExpr, and mark all immediate
94 // ImplicitCastExpr's as being part of ExplicitCastExpr. The original CE
95 // (which is a ExplicitCastExpr), and the OrigSrcExpr are not touched.
Roman Lebedev12216f12018-07-27 07:27:14 +000096 for (; auto *ICE = dyn_cast<ImplicitCastExpr>(CE->getSubExpr()); CE = ICE)
97 ICE->setIsPartOfExplicitCast(true);
Roman Lebedevd55661d2018-07-24 08:16:50 +000098 }
99
John McCall4124c492011-10-17 18:40:02 +0000100 /// Complete an apparently-successful cast operation that yields
101 /// the given expression.
102 ExprResult complete(CastExpr *castExpr) {
103 // If this is an unbridged cast, wrap the result in an implicit
104 // cast that yields the unbridged-cast placeholder type.
105 if (IsARCUnbridgedCast) {
106 castExpr = ImplicitCastExpr::Create(Self.Context,
107 Self.Context.ARCUnbridgedCastTy,
Craig Topperc3ec1492014-05-26 06:22:03 +0000108 CK_Dependent, castExpr, nullptr,
John McCall4124c492011-10-17 18:40:02 +0000109 castExpr->getValueKind());
110 }
Roman Lebedevd55661d2018-07-24 08:16:50 +0000111 updatePartOfExplicitCastFlags(castExpr);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000112 return castExpr;
John McCall4124c492011-10-17 18:40:02 +0000113 }
114
John McCall9776e432011-10-06 23:25:11 +0000115 // Internal convenience methods.
116
117 /// Try to handle the given placeholder expression kind. Return
118 /// true if the source expression has the appropriate placeholder
119 /// kind. A placeholder can only be claimed once.
120 bool claimPlaceholder(BuiltinType::Kind K) {
121 if (PlaceholderKind != K) return false;
122
123 PlaceholderKind = (BuiltinType::Kind) 0;
124 return true;
125 }
126
127 bool isPlaceholder() const {
128 return PlaceholderKind != 0;
129 }
130 bool isPlaceholder(BuiltinType::Kind K) const {
131 return PlaceholderKind == K;
132 }
John McCallb50451a2011-10-05 07:41:44 +0000133
Anastasia Stulova5325f832018-10-10 16:05:22 +0000134 // Language specific cast restrictions for address spaces.
135 void checkAddressSpaceCast(QualType SrcType, QualType DestType);
136
John McCallb50451a2011-10-05 07:41:44 +0000137 void checkCastAlign() {
138 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
139 }
140
Brian Kelley11352a82017-03-29 18:09:02 +0000141 void checkObjCConversion(Sema::CheckedConversionKind CCK) {
142 assert(Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers());
John McCall4124c492011-10-17 18:40:02 +0000143
John McCallb50451a2011-10-05 07:41:44 +0000144 Expr *src = SrcExpr.get();
Brian Kelley11352a82017-03-29 18:09:02 +0000145 if (Self.CheckObjCConversion(OpRange, DestType, src, CCK) ==
146 Sema::ACR_unbridged)
John McCall4124c492011-10-17 18:40:02 +0000147 IsARCUnbridgedCast = true;
John McCallb50451a2011-10-05 07:41:44 +0000148 SrcExpr = src;
149 }
John McCall9776e432011-10-06 23:25:11 +0000150
151 /// Check for and handle non-overload placeholder expressions.
152 void checkNonOverloadPlaceholders() {
153 if (!isPlaceholder() || isPlaceholder(BuiltinType::Overload))
154 return;
155
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000156 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +0000157 if (SrcExpr.isInvalid())
158 return;
159 PlaceholderKind = (BuiltinType::Kind) 0;
160 }
John McCallb50451a2011-10-05 07:41:44 +0000161 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000162}
Sebastian Redl842ef522008-11-08 13:00:26 +0000163
Roman Lebedevba80b8d2017-07-03 17:59:22 +0000164static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
165 QualType DestType);
166
Sebastian Redl9f831db2009-07-25 15:41:38 +0000167// The Try functions attempt a specific way of casting. If they succeed, they
168// return TC_Success. If their way of casting is not appropriate for the given
169// arguments, they return TC_NotApplicable and *may* set diag to a diagnostic
170// to emit if no other way succeeds. If their way of casting is appropriate but
171// fails, they return TC_Failed and *must* set diag; they can set it to 0 if
172// they emit a specialized diagnostic.
173// All diagnostics returned by these functions must expect the same three
174// arguments:
175// %0: Cast Type (a value from the CastType enumeration)
176// %1: Source Type
177// %2: Destination Type
178static TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
Douglas Gregorce950842011-01-26 21:04:06 +0000179 QualType DestType, bool CStyle,
180 CastKind &Kind,
Douglas Gregorba278e22011-01-25 16:13:26 +0000181 CXXCastPath &BasePath,
182 unsigned &msg);
Sebastian Redl9f831db2009-07-25 15:41:38 +0000183static TryCastResult TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr,
Anders Carlsson7d3360f2010-04-24 19:36:51 +0000184 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +0000185 SourceRange OpRange,
Anders Carlsson7d3360f2010-04-24 19:36:51 +0000186 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +0000187 CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +0000188 CXXCastPath &BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +0000189static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
190 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +0000191 SourceRange OpRange,
Anders Carlsson9a1cd872009-11-12 16:53:16 +0000192 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +0000193 CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +0000194 CXXCastPath &BasePath);
Douglas Gregor8f3952c2009-11-15 09:20:52 +0000195static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
196 CanQualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +0000197 SourceRange OpRange,
Sebastian Redl9f831db2009-07-25 15:41:38 +0000198 QualType OrigSrcType,
Anders Carlsson9a1cd872009-11-12 16:53:16 +0000199 QualType OrigDestType, unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +0000200 CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +0000201 CXXCastPath &BasePath);
John Wiegley01296292011-04-08 18:41:53 +0000202static TryCastResult TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr,
Anders Carlssonb78feca2010-04-24 19:22:20 +0000203 QualType SrcType,
204 QualType DestType,bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +0000205 SourceRange OpRange,
Anders Carlssonb78feca2010-04-24 19:22:20 +0000206 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +0000207 CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +0000208 CXXCastPath &BasePath);
Anders Carlssonb78feca2010-04-24 19:22:20 +0000209
John Wiegley01296292011-04-08 18:41:53 +0000210static TryCastResult TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr,
Fangrui Song6907ce22018-07-30 19:24:48 +0000211 QualType DestType,
John McCall31168b02011-06-15 23:02:42 +0000212 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +0000213 SourceRange OpRange,
Sebastian Redld74dd492012-02-12 18:41:05 +0000214 unsigned &msg, CastKind &Kind,
215 bool ListInitialization);
John Wiegley01296292011-04-08 18:41:53 +0000216static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
Fangrui Song6907ce22018-07-30 19:24:48 +0000217 QualType DestType,
John McCall31168b02011-06-15 23:02:42 +0000218 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +0000219 SourceRange OpRange,
Sebastian Redld74dd492012-02-12 18:41:05 +0000220 unsigned &msg, CastKind &Kind,
221 CXXCastPath &BasePath,
222 bool ListInitialization);
Richard Smith82c9b512013-06-14 22:27:52 +0000223static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
224 QualType DestType, bool CStyle,
225 unsigned &msg);
John Wiegley01296292011-04-08 18:41:53 +0000226static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9f831db2009-07-25 15:41:38 +0000227 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +0000228 SourceRange OpRange,
Anders Carlsson9d1b34b2009-09-26 00:12:34 +0000229 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +0000230 CastKind &Kind);
Sebastian Redl842ef522008-11-08 13:00:26 +0000231
Douglas Gregorb491ed32011-02-19 21:32:49 +0000232
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000233/// ActOnCXXNamedCast - Parse {dynamic,static,reinterpret,const}_cast's.
John McCalldadc5752010-08-24 06:29:42 +0000234ExprResult
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000235Sema::ActOnCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +0000236 SourceLocation LAngleBracketLoc, Declarator &D,
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000237 SourceLocation RAngleBracketLoc,
John McCallfaf5fb42010-08-26 23:41:50 +0000238 SourceLocation LParenLoc, Expr *E,
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000239 SourceLocation RParenLoc) {
John McCalld377e042010-01-15 19:13:16 +0000240
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +0000241 assert(!D.isInvalidType());
242
243 TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, E->getType());
244 if (D.isInvalidType())
245 return ExprError();
246
David Blaikiebbafb8a2012-03-11 07:00:24 +0000247 if (getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis7451d1c2011-07-01 22:22:50 +0000248 // Check that there are no default arguments (C++ only).
249 CheckExtraCXXDefaultArguments(D);
250 }
251
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000252 return BuildCXXNamedCast(OpLoc, Kind, TInfo, E,
John McCalld377e042010-01-15 19:13:16 +0000253 SourceRange(LAngleBracketLoc, RAngleBracketLoc),
254 SourceRange(LParenLoc, RParenLoc));
255}
256
John McCalldadc5752010-08-24 06:29:42 +0000257ExprResult
John McCalld377e042010-01-15 19:13:16 +0000258Sema::BuildCXXNamedCast(SourceLocation OpLoc, tok::TokenKind Kind,
John Wiegley01296292011-04-08 18:41:53 +0000259 TypeSourceInfo *DestTInfo, Expr *E,
John McCalld377e042010-01-15 19:13:16 +0000260 SourceRange AngleBrackets, SourceRange Parens) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000261 ExprResult Ex = E;
John McCalld377e042010-01-15 19:13:16 +0000262 QualType DestType = DestTInfo->getType();
263
Douglas Gregor19b8c4f2008-12-17 22:52:20 +0000264 // If the type is dependent, we won't do the semantic analysis now.
David Majnemere64941f2014-12-16 00:46:30 +0000265 bool TypeDependent =
266 DestType->isDependentType() || Ex.get()->isTypeDependent();
Douglas Gregor19b8c4f2008-12-17 22:52:20 +0000267
John McCallb50451a2011-10-05 07:41:44 +0000268 CastOperation Op(*this, DestType, E);
269 Op.OpRange = SourceRange(OpLoc, Parens.getEnd());
270 Op.DestRange = AngleBrackets;
John McCall29ac8e22010-11-26 10:57:22 +0000271
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000272 switch (Kind) {
John McCall8cb679e2010-11-15 09:13:47 +0000273 default: llvm_unreachable("Unknown C++ cast!");
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000274
275 case tok::kw_const_cast:
John Wiegley01296292011-04-08 18:41:53 +0000276 if (!TypeDependent) {
John McCallb50451a2011-10-05 07:41:44 +0000277 Op.CheckConstCast();
278 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +0000279 return ExprError();
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +0000280 DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
John Wiegley01296292011-04-08 18:41:53 +0000281 }
John McCall4124c492011-10-17 18:40:02 +0000282 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000283 Op.ValueKind, Op.SrcExpr.get(), DestTInfo,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000284 OpLoc, Parens.getEnd(),
285 AngleBrackets));
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000286
Anders Carlsson4ab4f7f2009-08-02 19:07:59 +0000287 case tok::kw_dynamic_cast: {
Sven van Haastregt2ca6ba12018-05-09 13:16:17 +0000288 // OpenCL C++ 1.0 s2.9: dynamic_cast is not supported.
289 if (getLangOpts().OpenCLCPlusPlus) {
290 return ExprError(Diag(OpLoc, diag::err_openclcxx_not_supported)
291 << "dynamic_cast");
292 }
293
John Wiegley01296292011-04-08 18:41:53 +0000294 if (!TypeDependent) {
John McCallb50451a2011-10-05 07:41:44 +0000295 Op.CheckDynamicCast();
296 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +0000297 return ExprError();
298 }
John McCall4124c492011-10-17 18:40:02 +0000299 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000300 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall4124c492011-10-17 18:40:02 +0000301 &Op.BasePath, DestTInfo,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000302 OpLoc, Parens.getEnd(),
303 AngleBrackets));
Anders Carlsson4ab4f7f2009-08-02 19:07:59 +0000304 }
Anders Carlsson7cd39e02009-09-15 04:48:33 +0000305 case tok::kw_reinterpret_cast: {
John Wiegley01296292011-04-08 18:41:53 +0000306 if (!TypeDependent) {
John McCallb50451a2011-10-05 07:41:44 +0000307 Op.CheckReinterpretCast();
308 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +0000309 return ExprError();
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +0000310 DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
John Wiegley01296292011-04-08 18:41:53 +0000311 }
John McCall4124c492011-10-17 18:40:02 +0000312 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000313 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000314 nullptr, DestTInfo, OpLoc,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000315 Parens.getEnd(),
316 AngleBrackets));
Anders Carlsson7cd39e02009-09-15 04:48:33 +0000317 }
Anders Carlssonf10e4142009-08-07 22:21:05 +0000318 case tok::kw_static_cast: {
John Wiegley01296292011-04-08 18:41:53 +0000319 if (!TypeDependent) {
Richard Smith507840d2011-11-29 22:48:16 +0000320 Op.CheckStaticCast();
John McCallb50451a2011-10-05 07:41:44 +0000321 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +0000322 return ExprError();
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +0000323 DiscardMisalignedMemberAddress(DestType.getTypePtr(), E);
John Wiegley01296292011-04-08 18:41:53 +0000324 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000325
John McCall4124c492011-10-17 18:40:02 +0000326 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000327 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall4124c492011-10-17 18:40:02 +0000328 &Op.BasePath, DestTInfo,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000329 OpLoc, Parens.getEnd(),
330 AngleBrackets));
Anders Carlssonf10e4142009-08-07 22:21:05 +0000331 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000332 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000333}
334
John McCall909acf82011-02-14 18:34:10 +0000335/// Try to diagnose a failed overloaded cast. Returns true if
336/// diagnostics were emitted.
337static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT,
338 SourceRange range, Expr *src,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000339 QualType destType,
340 bool listInitialization) {
John McCall909acf82011-02-14 18:34:10 +0000341 switch (CT) {
342 // These cast kinds don't consider user-defined conversions.
343 case CT_Const:
344 case CT_Reinterpret:
345 case CT_Dynamic:
346 return false;
347
348 // These do.
349 case CT_Static:
350 case CT_CStyle:
351 case CT_Functional:
352 break;
353 }
354
355 QualType srcType = src->getType();
356 if (!destType->isRecordType() && !srcType->isRecordType())
357 return false;
358
359 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
360 InitializationKind initKind
John McCall31168b02011-06-15 23:02:42 +0000361 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
Sebastian Redl2b80af42012-02-13 19:55:43 +0000362 range, listInitialization)
Sebastian Redl0501c632012-02-12 16:37:36 +0000363 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000364 listInitialization)
Richard Smith507840d2011-11-29 22:48:16 +0000365 : InitializationKind::CreateCast(/*type range?*/ range);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000366 InitializationSequence sequence(S, entity, initKind, src);
John McCall909acf82011-02-14 18:34:10 +0000367
Sebastian Redlc7ca5872011-06-05 12:23:28 +0000368 assert(sequence.Failed() && "initialization succeeded on second try?");
John McCall909acf82011-02-14 18:34:10 +0000369 switch (sequence.getFailureKind()) {
370 default: return false;
371
372 case InitializationSequence::FK_ConstructorOverloadFailed:
373 case InitializationSequence::FK_UserConversionOverloadFailed:
374 break;
375 }
376
377 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet();
378
379 unsigned msg = 0;
380 OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates;
381
382 switch (sequence.getFailedOverloadResult()) {
383 case OR_Success: llvm_unreachable("successful failed overload");
John McCall909acf82011-02-14 18:34:10 +0000384 case OR_No_Viable_Function:
385 if (candidates.empty())
386 msg = diag::err_ovl_no_conversion_in_cast;
387 else
388 msg = diag::err_ovl_no_viable_conversion_in_cast;
389 howManyCandidates = OCD_AllCandidates;
390 break;
391
392 case OR_Ambiguous:
393 msg = diag::err_ovl_ambiguous_conversion_in_cast;
394 howManyCandidates = OCD_ViableCandidates;
395 break;
396
397 case OR_Deleted:
398 msg = diag::err_ovl_deleted_conversion_in_cast;
399 howManyCandidates = OCD_ViableCandidates;
400 break;
401 }
402
403 S.Diag(range.getBegin(), msg)
404 << CT << srcType << destType
405 << range << src->getSourceRange();
406
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +0000407 candidates.NoteCandidates(S, howManyCandidates, src);
John McCall909acf82011-02-14 18:34:10 +0000408
409 return true;
410}
411
412/// Diagnose a failed cast.
413static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000414 SourceRange opRange, Expr *src, QualType destType,
415 bool listInitialization) {
John McCall909acf82011-02-14 18:34:10 +0000416 if (msg == diag::err_bad_cxx_cast_generic &&
Sebastian Redl2b80af42012-02-13 19:55:43 +0000417 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
418 listInitialization))
John McCall909acf82011-02-14 18:34:10 +0000419 return;
420
421 S.Diag(opRange.getBegin(), msg) << castType
422 << src->getType() << destType << opRange << src->getSourceRange();
Nathan Sidwellffa7dc32015-01-28 21:31:26 +0000423
424 // Detect if both types are (ptr to) class, and note any incompleteness.
425 int DifferentPtrness = 0;
426 QualType From = destType;
427 if (auto Ptr = From->getAs<PointerType>()) {
428 From = Ptr->getPointeeType();
429 DifferentPtrness++;
430 }
431 QualType To = src->getType();
432 if (auto Ptr = To->getAs<PointerType>()) {
433 To = Ptr->getPointeeType();
434 DifferentPtrness--;
435 }
436 if (!DifferentPtrness) {
437 auto RecFrom = From->getAs<RecordType>();
438 auto RecTo = To->getAs<RecordType>();
439 if (RecFrom && RecTo) {
440 auto DeclFrom = RecFrom->getAsCXXRecordDecl();
441 if (!DeclFrom->isCompleteDefinition())
442 S.Diag(DeclFrom->getLocation(), diag::note_type_incomplete)
443 << DeclFrom->getDeclName();
444 auto DeclTo = RecTo->getAsCXXRecordDecl();
445 if (!DeclTo->isCompleteDefinition())
446 S.Diag(DeclTo->getLocation(), diag::note_type_incomplete)
447 << DeclTo->getDeclName();
448 }
449 }
John McCall909acf82011-02-14 18:34:10 +0000450}
451
Richard Smithf276e2d2018-07-10 23:04:35 +0000452namespace {
453/// The kind of unwrapping we did when determining whether a conversion casts
454/// away constness.
455enum CastAwayConstnessKind {
456 /// The conversion does not cast away constness.
457 CACK_None = 0,
458 /// We unwrapped similar types.
459 CACK_Similar = 1,
460 /// We unwrapped dissimilar types with similar representations (eg, a pointer
461 /// versus an Objective-C object pointer).
462 CACK_SimilarKind = 2,
463 /// We unwrapped representationally-unrelated types, such as a pointer versus
464 /// a pointer-to-member.
465 CACK_Incoherent = 3,
466};
Sebastian Redl55db1ec2009-11-18 18:10:53 +0000467}
468
Richard Smithf276e2d2018-07-10 23:04:35 +0000469/// Unwrap one level of types for CastsAwayConstness.
470///
Richard Smitha3405ff2018-07-11 00:19:19 +0000471/// Like Sema::UnwrapSimilarTypes, this removes one level of indirection from
472/// both types, provided that they're both pointer-like or array-like. Unlike
473/// the Sema function, doesn't care if the unwrapped pieces are related.
Richard Smith5407d4f2018-07-18 20:13:36 +0000474///
475/// This function may remove additional levels as necessary for correctness:
476/// the resulting T1 is unwrapped sufficiently that it is never an array type,
477/// so that its qualifiers can be directly compared to those of T2 (which will
478/// have the combined set of qualifiers from all indermediate levels of T2),
479/// as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers
480/// with those from T2.
Richard Smithf276e2d2018-07-10 23:04:35 +0000481static CastAwayConstnessKind
482unwrapCastAwayConstnessLevel(ASTContext &Context, QualType &T1, QualType &T2) {
Richard Smith5407d4f2018-07-18 20:13:36 +0000483 enum { None, Ptr, MemPtr, BlockPtr, Array };
Richard Smithf276e2d2018-07-10 23:04:35 +0000484 auto Classify = [](QualType T) {
Richard Smith5407d4f2018-07-18 20:13:36 +0000485 if (T->isAnyPointerType()) return Ptr;
486 if (T->isMemberPointerType()) return MemPtr;
487 if (T->isBlockPointerType()) return BlockPtr;
Richard Smitha3405ff2018-07-11 00:19:19 +0000488 // We somewhat-arbitrarily don't look through VLA types here. This is at
489 // least consistent with the behavior of UnwrapSimilarTypes.
Richard Smith5407d4f2018-07-18 20:13:36 +0000490 if (T->isConstantArrayType() || T->isIncompleteArrayType()) return Array;
491 return None;
Richard Smithf276e2d2018-07-10 23:04:35 +0000492 };
493
Richard Smitha3405ff2018-07-11 00:19:19 +0000494 auto Unwrap = [&](QualType T) {
495 if (auto *AT = Context.getAsArrayType(T))
496 return AT->getElementType();
497 return T->getPointeeType();
498 };
499
Richard Smith5407d4f2018-07-18 20:13:36 +0000500 CastAwayConstnessKind Kind;
501
502 if (T2->isReferenceType()) {
503 // Special case: if the destination type is a reference type, unwrap it as
504 // the first level. (The source will have been an lvalue expression in this
505 // case, so there is no corresponding "reference to" in T1 to remove.) This
506 // simulates removing a "pointer to" from both sides.
507 T2 = T2->getPointeeType();
508 Kind = CastAwayConstnessKind::CACK_Similar;
509 } else if (Context.UnwrapSimilarTypes(T1, T2)) {
510 Kind = CastAwayConstnessKind::CACK_Similar;
511 } else {
512 // Try unwrapping mismatching levels.
513 int T1Class = Classify(T1);
514 if (T1Class == None)
515 return CastAwayConstnessKind::CACK_None;
516
517 int T2Class = Classify(T2);
518 if (T2Class == None)
519 return CastAwayConstnessKind::CACK_None;
520
521 T1 = Unwrap(T1);
522 T2 = Unwrap(T2);
523 Kind = T1Class == T2Class ? CastAwayConstnessKind::CACK_SimilarKind
524 : CastAwayConstnessKind::CACK_Incoherent;
525 }
526
527 // We've unwrapped at least one level. If the resulting T1 is a (possibly
528 // multidimensional) array type, any qualifier on any matching layer of
529 // T2 is considered to correspond to T1. Decompose down to the element
530 // type of T1 so that we can compare properly.
531 while (true) {
532 Context.UnwrapSimilarArrayTypes(T1, T2);
533
534 if (Classify(T1) != Array)
535 break;
536
537 auto T2Class = Classify(T2);
538 if (T2Class == None)
539 break;
540
541 if (T2Class != Array)
542 Kind = CastAwayConstnessKind::CACK_Incoherent;
543 else if (Kind != CastAwayConstnessKind::CACK_Incoherent)
544 Kind = CastAwayConstnessKind::CACK_SimilarKind;
545
546 T1 = Unwrap(T1);
547 T2 = Unwrap(T2).withCVRQualifiers(T2.getCVRQualifiers());
548 }
549
550 return Kind;
Richard Smithf276e2d2018-07-10 23:04:35 +0000551}
552
553/// Check if the pointer conversion from SrcType to DestType casts away
554/// constness as defined in C++ [expr.const.cast]. This is used by the cast
555/// checkers. Both arguments must denote pointer (possibly to member) types.
John McCall31168b02011-06-15 23:02:42 +0000556///
557/// \param CheckCVR Whether to check for const/volatile/restrict qualifiers.
John McCall31168b02011-06-15 23:02:42 +0000558/// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers.
Richard Smithf276e2d2018-07-10 23:04:35 +0000559static CastAwayConstnessKind
John McCall31168b02011-06-15 23:02:42 +0000560CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
Roman Divackyd5178012014-11-21 21:03:10 +0000561 bool CheckCVR, bool CheckObjCLifetime,
562 QualType *TheOffendingSrcType = nullptr,
563 QualType *TheOffendingDestType = nullptr,
564 Qualifiers *CastAwayQualifiers = nullptr) {
John McCall31168b02011-06-15 23:02:42 +0000565 // If the only checking we care about is for Objective-C lifetime qualifiers,
John McCall460ce582015-10-22 18:38:17 +0000566 // and we're not in ObjC mode, there's nothing to check.
Richard Smithf276e2d2018-07-10 23:04:35 +0000567 if (!CheckCVR && CheckObjCLifetime && !Self.Context.getLangOpts().ObjC1)
568 return CastAwayConstnessKind::CACK_None;
569
570 if (!DestType->isReferenceType()) {
571 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
572 SrcType->isBlockPointerType()) &&
573 "Source type is not pointer or pointer to member.");
574 assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() ||
575 DestType->isBlockPointerType()) &&
576 "Destination type is not pointer or pointer to member.");
577 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000578
Fangrui Song6907ce22018-07-30 19:24:48 +0000579 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
Douglas Gregor8f3952c2009-11-15 09:20:52 +0000580 UnwrappedDestType = Self.Context.getCanonicalType(DestType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000581
Fangrui Song6907ce22018-07-30 19:24:48 +0000582 // Find the qualifiers. We only care about cvr-qualifiers for the
583 // purpose of this check, because other qualifiers (address spaces,
Douglas Gregorb472e932011-04-15 17:59:54 +0000584 // Objective-C GC, etc.) are part of the type's identity.
Roman Divackyd5178012014-11-21 21:03:10 +0000585 QualType PrevUnwrappedSrcType = UnwrappedSrcType;
586 QualType PrevUnwrappedDestType = UnwrappedDestType;
Richard Smithf276e2d2018-07-10 23:04:35 +0000587 auto WorstKind = CastAwayConstnessKind::CACK_Similar;
588 bool AllConstSoFar = true;
589 while (auto Kind = unwrapCastAwayConstnessLevel(
590 Self.Context, UnwrappedSrcType, UnwrappedDestType)) {
591 // Track the worst kind of unwrap we needed to do before we found a
592 // problem.
593 if (Kind > WorstKind)
594 WorstKind = Kind;
595
John McCall31168b02011-06-15 23:02:42 +0000596 // Determine the relevant qualifiers at this level.
597 Qualifiers SrcQuals, DestQuals;
Anders Carlsson76f513f2010-06-04 22:47:55 +0000598 Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals);
Anders Carlsson76f513f2010-06-04 22:47:55 +0000599 Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals);
Akira Hatanaka8d7bdf62017-08-11 00:06:49 +0000600
601 // We do not meaningfully track object const-ness of Objective-C object
602 // types. Remove const from the source type if either the source or
603 // the destination is an Objective-C object type.
604 if (UnwrappedSrcType->isObjCObjectType() ||
605 UnwrappedDestType->isObjCObjectType())
606 SrcQuals.removeConst();
607
John McCall31168b02011-06-15 23:02:42 +0000608 if (CheckCVR) {
Richard Smithf276e2d2018-07-10 23:04:35 +0000609 Qualifiers SrcCvrQuals =
610 Qualifiers::fromCVRMask(SrcQuals.getCVRQualifiers());
611 Qualifiers DestCvrQuals =
612 Qualifiers::fromCVRMask(DestQuals.getCVRQualifiers());
Roman Divackyd5178012014-11-21 21:03:10 +0000613
Richard Smithf276e2d2018-07-10 23:04:35 +0000614 if (SrcCvrQuals != DestCvrQuals) {
615 if (CastAwayQualifiers)
616 *CastAwayQualifiers = SrcCvrQuals - DestCvrQuals;
617
618 // If we removed a cvr-qualifier, this is casting away 'constness'.
619 if (!DestCvrQuals.compatiblyIncludes(SrcCvrQuals)) {
620 if (TheOffendingSrcType)
621 *TheOffendingSrcType = PrevUnwrappedSrcType;
622 if (TheOffendingDestType)
623 *TheOffendingDestType = PrevUnwrappedDestType;
624 return WorstKind;
625 }
626
627 // If any prior level was not 'const', this is also casting away
628 // 'constness'. We noted the outermost type missing a 'const' already.
629 if (!AllConstSoFar)
630 return WorstKind;
Roman Divackyd5178012014-11-21 21:03:10 +0000631 }
John McCall31168b02011-06-15 23:02:42 +0000632 }
Richard Smithf276e2d2018-07-10 23:04:35 +0000633
John McCall31168b02011-06-15 23:02:42 +0000634 if (CheckObjCLifetime &&
635 !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals))
Richard Smithf276e2d2018-07-10 23:04:35 +0000636 return WorstKind;
637
638 // If we found our first non-const-qualified type, this may be the place
639 // where things start to go wrong.
640 if (AllConstSoFar && !DestQuals.hasConst()) {
641 AllConstSoFar = false;
642 if (TheOffendingSrcType)
643 *TheOffendingSrcType = PrevUnwrappedSrcType;
644 if (TheOffendingDestType)
645 *TheOffendingDestType = PrevUnwrappedDestType;
646 }
Roman Divackyd5178012014-11-21 21:03:10 +0000647
648 PrevUnwrappedSrcType = UnwrappedSrcType;
649 PrevUnwrappedDestType = UnwrappedDestType;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000650 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000651
Richard Smithf276e2d2018-07-10 23:04:35 +0000652 return CastAwayConstnessKind::CACK_None;
653}
654
655static TryCastResult getCastAwayConstnessCastKind(CastAwayConstnessKind CACK,
656 unsigned &DiagID) {
657 switch (CACK) {
658 case CastAwayConstnessKind::CACK_None:
659 llvm_unreachable("did not cast away constness");
660
661 case CastAwayConstnessKind::CACK_Similar:
662 // FIXME: Accept these as an extension too?
663 case CastAwayConstnessKind::CACK_SimilarKind:
664 DiagID = diag::err_bad_cxx_cast_qualifiers_away;
665 return TC_Failed;
666
667 case CastAwayConstnessKind::CACK_Incoherent:
668 DiagID = diag::ext_bad_cxx_cast_qualifiers_away_incoherent;
669 return TC_Extension;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000670 }
671
Richard Smithf276e2d2018-07-10 23:04:35 +0000672 llvm_unreachable("unexpected cast away constness kind");
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000673}
674
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000675/// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid.
676/// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime-
677/// checked downcasts in class hierarchies.
John McCallb50451a2011-10-05 07:41:44 +0000678void CastOperation::CheckDynamicCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000679 if (ValueKind == VK_RValue)
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000680 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000681 else if (isPlaceholder())
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000682 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000683 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
684 return;
Eli Friedman90a2cdf2011-10-31 20:59:03 +0000685
John McCallb50451a2011-10-05 07:41:44 +0000686 QualType OrigSrcType = SrcExpr.get()->getType();
687 QualType DestType = Self.Context.getCanonicalType(this->DestType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000688
689 // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type,
690 // or "pointer to cv void".
691
692 QualType DestPointee;
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000693 const PointerType *DestPointer = DestType->getAs<PointerType>();
Craig Topperc3ec1492014-05-26 06:22:03 +0000694 const ReferenceType *DestReference = nullptr;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000695 if (DestPointer) {
696 DestPointee = DestPointer->getPointeeType();
John McCall7decc9e2010-11-18 06:31:45 +0000697 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000698 DestPointee = DestReference->getPointeeType();
699 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000700 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr)
John McCallb50451a2011-10-05 07:41:44 +0000701 << this->DestType << DestRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000702 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000703 return;
704 }
705
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000706 const RecordType *DestRecord = DestPointee->getAs<RecordType>();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000707 if (DestPointee->isVoidType()) {
708 assert(DestPointer && "Reference to void is not possible");
709 } else if (DestRecord) {
Sebastian Redl9f831db2009-07-25 15:41:38 +0000710 if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000711 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000712 DestRange)) {
713 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000714 return;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000715 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000716 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000717 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000718 << DestPointee.getUnqualifiedType() << DestRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000719 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000720 return;
721 }
722
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000723 // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to
724 // complete class type, [...]. If T is an lvalue reference type, v shall be
Fangrui Song6907ce22018-07-30 19:24:48 +0000725 // an lvalue of a complete class type, [...]. If T is an rvalue reference
Douglas Gregor465184a2011-01-22 00:06:57 +0000726 // type, v shall be an expression having a complete class type, [...]
Sebastian Redl842ef522008-11-08 13:00:26 +0000727 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000728 QualType SrcPointee;
729 if (DestPointer) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000730 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000731 SrcPointee = SrcPointer->getPointeeType();
732 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000733 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr)
John Wiegley01296292011-04-08 18:41:53 +0000734 << OrigSrcType << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000735 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000736 return;
737 }
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000738 } else if (DestReference->isLValueReferenceType()) {
John Wiegley01296292011-04-08 18:41:53 +0000739 if (!SrcExpr.get()->isLValue()) {
Chris Lattner377d1f82008-11-18 22:52:51 +0000740 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue)
John McCallb50451a2011-10-05 07:41:44 +0000741 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000742 }
743 SrcPointee = SrcType;
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000744 } else {
Richard Smith11330852014-07-08 17:25:14 +0000745 // If we're dynamic_casting from a prvalue to an rvalue reference, we need
746 // to materialize the prvalue before we bind the reference to it.
747 if (SrcExpr.get()->isRValue())
Tim Shen4a05bb82016-06-21 20:29:17 +0000748 SrcExpr = Self.CreateMaterializeTemporaryExpr(
749 SrcType, SrcExpr.get(), /*IsLValueReference*/ false);
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000750 SrcPointee = SrcType;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000751 }
752
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000753 const RecordType *SrcRecord = SrcPointee->getAs<RecordType>();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000754 if (SrcRecord) {
Douglas Gregored0cfbd2009-03-09 16:13:40 +0000755 if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000756 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000757 SrcExpr.get())) {
758 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000759 return;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000760 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000761 } else {
Chris Lattner29e812b2008-11-20 06:06:08 +0000762 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
John Wiegley01296292011-04-08 18:41:53 +0000763 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000764 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000765 return;
766 }
767
768 assert((DestPointer || DestReference) &&
769 "Bad destination non-ptr/ref slipped through.");
770 assert((DestRecord || DestPointee->isVoidType()) &&
771 "Bad destination pointee slipped through.");
772 assert(SrcRecord && "Bad source pointee slipped through.");
773
774 // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness.
775 if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) {
Douglas Gregorb472e932011-04-15 17:59:54 +0000776 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away)
John McCallb50451a2011-10-05 07:41:44 +0000777 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000778 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000779 return;
780 }
781
782 // C++ 5.2.7p3: If the type of v is the same as the required result type,
783 // [except for cv].
784 if (DestRecord == SrcRecord) {
John McCalle3027922010-08-25 11:45:40 +0000785 Kind = CK_NoOp;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000786 return;
787 }
788
789 // C++ 5.2.7p5
790 // Upcasts are resolved statically.
Richard Smith0f59cb32015-12-18 21:45:41 +0000791 if (DestRecord &&
792 Self.IsDerivedFrom(OpRange.getBegin(), SrcPointee, DestPointee)) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000793 if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee,
Fangrui Song6907ce22018-07-30 19:24:48 +0000794 OpRange.getBegin(), OpRange,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000795 &BasePath)) {
796 SrcExpr = ExprError();
797 return;
798 }
Richard Smith11330852014-07-08 17:25:14 +0000799
John McCalle3027922010-08-25 11:45:40 +0000800 Kind = CK_DerivedToBase;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000801 return;
802 }
803
804 // C++ 5.2.7p6: Otherwise, v shall be [polymorphic].
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000805 const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition();
Sebastian Redlb426f6332008-11-06 15:59:35 +0000806 assert(SrcDecl && "Definition missing");
807 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) {
Chris Lattner29e812b2008-11-20 06:06:08 +0000808 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic)
John Wiegley01296292011-04-08 18:41:53 +0000809 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000810 SrcExpr = ExprError();
Sebastian Redlb426f6332008-11-06 15:59:35 +0000811 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000812
Eli Friedman3ce27102013-09-24 23:21:41 +0000813 // dynamic_cast is not available with -fno-rtti.
814 // As an exception, dynamic_cast to void* is available because it doesn't
815 // use RTTI.
816 if (!Self.getLangOpts().RTTI && !DestPointee->isVoidType()) {
Arnaud A. de Grandmaisoncb6f9432013-08-01 08:28:32 +0000817 Self.Diag(OpRange.getBegin(), diag::err_no_dynamic_cast_with_fno_rtti);
818 SrcExpr = ExprError();
819 return;
820 }
821
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000822 // Done. Everything else is run-time checks.
John McCalle3027922010-08-25 11:45:40 +0000823 Kind = CK_Dynamic;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000824}
Sebastian Redl9f831db2009-07-25 15:41:38 +0000825
826/// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid.
827/// Refer to C++ 5.2.11 for details. const_cast is typically used in code
828/// like this:
829/// const char *str = "literal";
830/// legacy_function(const_cast\<char*\>(str));
John McCallb50451a2011-10-05 07:41:44 +0000831void CastOperation::CheckConstCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000832 if (ValueKind == VK_RValue)
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000833 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000834 else if (isPlaceholder())
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000835 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000836 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
837 return;
Sebastian Redl9f831db2009-07-25 15:41:38 +0000838
839 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smithf276e2d2018-07-10 23:04:35 +0000840 auto TCR = TryConstCast(Self, SrcExpr, DestType, /*CStyle*/ false, msg);
841 if (TCR != TC_Success && msg != 0) {
Sebastian Redl9f831db2009-07-25 15:41:38 +0000842 Self.Diag(OpRange.getBegin(), msg) << CT_Const
John Wiegley01296292011-04-08 18:41:53 +0000843 << SrcExpr.get()->getType() << DestType << OpRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000844 }
Richard Smithf276e2d2018-07-10 23:04:35 +0000845 if (!isValidCast(TCR))
846 SrcExpr = ExprError();
Sebastian Redl9f831db2009-07-25 15:41:38 +0000847}
848
John McCallcda80832013-03-22 02:58:14 +0000849/// Check that a reinterpret_cast\<DestType\>(SrcExpr) is not used as upcast
850/// or downcast between respective pointers or references.
851static void DiagnoseReinterpretUpDownCast(Sema &Self, const Expr *SrcExpr,
852 QualType DestType,
853 SourceRange OpRange) {
854 QualType SrcType = SrcExpr->getType();
855 // When casting from pointer or reference, get pointee type; use original
856 // type otherwise.
857 const CXXRecordDecl *SrcPointeeRD = SrcType->getPointeeCXXRecordDecl();
858 const CXXRecordDecl *SrcRD =
859 SrcPointeeRD ? SrcPointeeRD : SrcType->getAsCXXRecordDecl();
860
John McCallf2abe192013-03-27 00:03:48 +0000861 // Examining subobjects for records is only possible if the complete and
862 // valid definition is available. Also, template instantiation is not
863 // allowed here.
864 if (!SrcRD || !SrcRD->isCompleteDefinition() || SrcRD->isInvalidDecl())
John McCallcda80832013-03-22 02:58:14 +0000865 return;
866
867 const CXXRecordDecl *DestRD = DestType->getPointeeCXXRecordDecl();
868
John McCallf2abe192013-03-27 00:03:48 +0000869 if (!DestRD || !DestRD->isCompleteDefinition() || DestRD->isInvalidDecl())
John McCallcda80832013-03-22 02:58:14 +0000870 return;
871
872 enum {
873 ReinterpretUpcast,
874 ReinterpretDowncast
875 } ReinterpretKind;
876
877 CXXBasePaths BasePaths;
878
879 if (SrcRD->isDerivedFrom(DestRD, BasePaths))
880 ReinterpretKind = ReinterpretUpcast;
881 else if (DestRD->isDerivedFrom(SrcRD, BasePaths))
882 ReinterpretKind = ReinterpretDowncast;
883 else
884 return;
885
886 bool VirtualBase = true;
887 bool NonZeroOffset = false;
John McCallf2abe192013-03-27 00:03:48 +0000888 for (CXXBasePaths::const_paths_iterator I = BasePaths.begin(),
John McCallcda80832013-03-22 02:58:14 +0000889 E = BasePaths.end();
890 I != E; ++I) {
891 const CXXBasePath &Path = *I;
892 CharUnits Offset = CharUnits::Zero();
893 bool IsVirtual = false;
894 for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end();
895 IElem != EElem; ++IElem) {
896 IsVirtual = IElem->Base->isVirtual();
897 if (IsVirtual)
898 break;
899 const CXXRecordDecl *BaseRD = IElem->Base->getType()->getAsCXXRecordDecl();
900 assert(BaseRD && "Base type should be a valid unqualified class type");
John McCallf2abe192013-03-27 00:03:48 +0000901 // Don't check if any base has invalid declaration or has no definition
902 // since it has no layout info.
903 const CXXRecordDecl *Class = IElem->Class,
904 *ClassDefinition = Class->getDefinition();
905 if (Class->isInvalidDecl() || !ClassDefinition ||
906 !ClassDefinition->isCompleteDefinition())
907 return;
908
John McCallcda80832013-03-22 02:58:14 +0000909 const ASTRecordLayout &DerivedLayout =
John McCallf2abe192013-03-27 00:03:48 +0000910 Self.Context.getASTRecordLayout(Class);
John McCallcda80832013-03-22 02:58:14 +0000911 Offset += DerivedLayout.getBaseClassOffset(BaseRD);
912 }
913 if (!IsVirtual) {
914 // Don't warn if any path is a non-virtually derived base at offset zero.
915 if (Offset.isZero())
916 return;
917 // Offset makes sense only for non-virtual bases.
918 else
919 NonZeroOffset = true;
920 }
921 VirtualBase = VirtualBase && IsVirtual;
922 }
923
Andy Gibbsfa5026d2013-06-19 13:33:37 +0000924 (void) NonZeroOffset; // Silence set but not used warning.
John McCallcda80832013-03-22 02:58:14 +0000925 assert((VirtualBase || NonZeroOffset) &&
926 "Should have returned if has non-virtual base with zero offset");
927
928 QualType BaseType =
929 ReinterpretKind == ReinterpretUpcast? DestType : SrcType;
930 QualType DerivedType =
931 ReinterpretKind == ReinterpretUpcast? SrcType : DestType;
932
Jordan Rose04a94d12013-03-28 19:09:40 +0000933 SourceLocation BeginLoc = OpRange.getBegin();
934 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000935 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind)
Jordan Rose04a94d12013-03-28 19:09:40 +0000936 << OpRange;
937 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000938 << int(ReinterpretKind)
Jordan Rose04a94d12013-03-28 19:09:40 +0000939 << FixItHint::CreateReplacement(BeginLoc, "static_cast");
John McCallcda80832013-03-22 02:58:14 +0000940}
941
Sebastian Redl9f831db2009-07-25 15:41:38 +0000942/// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is
943/// valid.
944/// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code
945/// like this:
946/// char *bytes = reinterpret_cast\<char*\>(int_ptr);
John McCallb50451a2011-10-05 07:41:44 +0000947void CastOperation::CheckReinterpretCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000948 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000949 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000950 else
951 checkNonOverloadPlaceholders();
952 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
953 return;
Sebastian Redl9f831db2009-07-25 15:41:38 +0000954
955 unsigned msg = diag::err_bad_cxx_cast_generic;
Fangrui Song6907ce22018-07-30 19:24:48 +0000956 TryCastResult tcr =
957 TryReinterpretCast(Self, SrcExpr, DestType,
John McCall31168b02011-06-15 23:02:42 +0000958 /*CStyle*/false, OpRange, msg, Kind);
Richard Smithf276e2d2018-07-10 23:04:35 +0000959 if (tcr != TC_Success && msg != 0) {
John Wiegley01296292011-04-08 18:41:53 +0000960 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
961 return;
962 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Fangrui Song6907ce22018-07-30 19:24:48 +0000963 //FIXME: &f<int>; is overloaded and resolvable
964 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload)
John Wiegley01296292011-04-08 18:41:53 +0000965 << OverloadExpr::find(SrcExpr.get()).Expression->getName()
Douglas Gregore81f58e2010-11-08 03:40:48 +0000966 << DestType << OpRange;
John Wiegley01296292011-04-08 18:41:53 +0000967 Self.NoteAllOverloadCandidates(SrcExpr.get());
Douglas Gregore81f58e2010-11-08 03:40:48 +0000968
John McCall909acf82011-02-14 18:34:10 +0000969 } else {
Sebastian Redl2b80af42012-02-13 19:55:43 +0000970 diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(),
971 DestType, /*listInitialization=*/false);
Douglas Gregore81f58e2010-11-08 03:40:48 +0000972 }
Richard Smithf276e2d2018-07-10 23:04:35 +0000973 }
974
975 if (isValidCast(tcr)) {
Brian Kelley762f9282017-03-29 18:16:38 +0000976 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
Brian Kelley11352a82017-03-29 18:09:02 +0000977 checkObjCConversion(Sema::CCK_OtherCast);
John McCallcda80832013-03-22 02:58:14 +0000978 DiagnoseReinterpretUpDownCast(Self, SrcExpr.get(), DestType, OpRange);
Richard Smithf276e2d2018-07-10 23:04:35 +0000979 } else {
980 SrcExpr = ExprError();
John McCall31168b02011-06-15 23:02:42 +0000981 }
Sebastian Redl9f831db2009-07-25 15:41:38 +0000982}
983
984
985/// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid.
986/// Refer to C++ 5.2.9 for details. Static casts are mostly used for making
987/// implicit conversions explicit and getting rid of data loss warnings.
Richard Smith507840d2011-11-29 22:48:16 +0000988void CastOperation::CheckStaticCast() {
John McCall9776e432011-10-06 23:25:11 +0000989 if (isPlaceholder()) {
990 checkNonOverloadPlaceholders();
991 if (SrcExpr.isInvalid())
992 return;
993 }
994
Sebastian Redl9f831db2009-07-25 15:41:38 +0000995 // This test is outside everything else because it's the only case where
996 // a non-lvalue-reference target type does not lead to decay.
997 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Eli Friedman03bf60a2009-11-16 05:44:20 +0000998 if (DestType->isVoidType()) {
John McCall9776e432011-10-06 23:25:11 +0000999 Kind = CK_ToVoid;
1000
1001 if (claimPlaceholder(BuiltinType::Overload)) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001002 Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr,
1003 false, // Decay Function to ptr
Douglas Gregorb491ed32011-02-19 21:32:49 +00001004 true, // Complain
1005 OpRange, DestType, diag::err_bad_static_cast_overload);
John McCall50a2c2c2011-10-11 23:14:30 +00001006 if (SrcExpr.isInvalid())
1007 return;
Douglas Gregorb491ed32011-02-19 21:32:49 +00001008 }
John McCall9776e432011-10-06 23:25:11 +00001009
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001010 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
Sebastian Redl9f831db2009-07-25 15:41:38 +00001011 return;
Eli Friedman03bf60a2009-11-16 05:44:20 +00001012 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001013
John McCall50a2c2c2011-10-11 23:14:30 +00001014 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
1015 !isPlaceholder(BuiltinType::Overload)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001016 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00001017 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
1018 return;
1019 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001020
1021 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCall31168b02011-06-15 23:02:42 +00001022 TryCastResult tcr
Richard Smith507840d2011-11-29 22:48:16 +00001023 = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001024 Kind, BasePath, /*ListInitialization=*/false);
John McCall31168b02011-06-15 23:02:42 +00001025 if (tcr != TC_Success && msg != 0) {
John Wiegley01296292011-04-08 18:41:53 +00001026 if (SrcExpr.isInvalid())
1027 return;
1028 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1029 OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression;
Douglas Gregore81f58e2010-11-08 03:40:48 +00001030 Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload)
Fangrui Song6907ce22018-07-30 19:24:48 +00001031 << oe->getName() << DestType << OpRange
Douglas Gregor0da1d432011-02-28 20:01:57 +00001032 << oe->getQualifierLoc().getSourceRange();
John Wiegley01296292011-04-08 18:41:53 +00001033 Self.NoteAllOverloadCandidates(SrcExpr.get());
John McCall909acf82011-02-14 18:34:10 +00001034 } else {
Sebastian Redl2b80af42012-02-13 19:55:43 +00001035 diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType,
1036 /*listInitialization=*/false);
Douglas Gregore81f58e2010-11-08 03:40:48 +00001037 }
Richard Smithf276e2d2018-07-10 23:04:35 +00001038 }
1039
1040 if (isValidCast(tcr)) {
John McCall31168b02011-06-15 23:02:42 +00001041 if (Kind == CK_BitCast)
John McCallb50451a2011-10-05 07:41:44 +00001042 checkCastAlign();
Brian Kelley762f9282017-03-29 18:16:38 +00001043 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
Brian Kelley11352a82017-03-29 18:09:02 +00001044 checkObjCConversion(Sema::CCK_OtherCast);
Richard Smithf276e2d2018-07-10 23:04:35 +00001045 } else {
1046 SrcExpr = ExprError();
Douglas Gregore81f58e2010-11-08 03:40:48 +00001047 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001048}
1049
Yaxun Liu4b06ffe2018-08-03 03:18:56 +00001050static bool IsAddressSpaceConversion(QualType SrcType, QualType DestType) {
1051 auto *SrcPtrType = SrcType->getAs<PointerType>();
1052 if (!SrcPtrType)
1053 return false;
1054 auto *DestPtrType = DestType->getAs<PointerType>();
1055 if (!DestPtrType)
1056 return false;
1057 return SrcPtrType->getPointeeType().getAddressSpace() !=
1058 DestPtrType->getPointeeType().getAddressSpace();
1059}
1060
Sebastian Redl9f831db2009-07-25 15:41:38 +00001061/// TryStaticCast - Check if a static cast can be performed, and do so if
1062/// possible. If @p CStyle, ignore access restrictions on hierarchy casting
1063/// and casting away constness.
John Wiegley01296292011-04-08 18:41:53 +00001064static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
Fangrui Song6907ce22018-07-30 19:24:48 +00001065 QualType DestType,
John McCall31168b02011-06-15 23:02:42 +00001066 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +00001067 SourceRange OpRange, unsigned &msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001068 CastKind &Kind, CXXCastPath &BasePath,
1069 bool ListInitialization) {
John McCall31168b02011-06-15 23:02:42 +00001070 // Determine whether we have the semantics of a C-style cast.
Fangrui Song6907ce22018-07-30 19:24:48 +00001071 bool CStyle
John McCall31168b02011-06-15 23:02:42 +00001072 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Fangrui Song6907ce22018-07-30 19:24:48 +00001073
Sebastian Redl9f831db2009-07-25 15:41:38 +00001074 // The order the tests is not entirely arbitrary. There is one conversion
1075 // that can be handled in two different ways. Given:
1076 // struct A {};
1077 // struct B : public A {
1078 // B(); B(const A&);
1079 // };
1080 // const A &a = B();
1081 // the cast static_cast<const B&>(a) could be seen as either a static
1082 // reference downcast, or an explicit invocation of the user-defined
1083 // conversion using B's conversion constructor.
1084 // DR 427 specifies that the downcast is to be applied here.
1085
1086 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
1087 // Done outside this function.
1088
1089 TryCastResult tcr;
1090
1091 // C++ 5.2.9p5, reference downcast.
1092 // See the function for details.
1093 // DR 427 specifies that this is to be applied before paragraph 2.
Sebastian Redld74dd492012-02-12 18:41:05 +00001094 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
1095 OpRange, msg, Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001096 if (tcr != TC_NotApplicable)
1097 return tcr;
1098
Fangrui Song6907ce22018-07-30 19:24:48 +00001099 // C++11 [expr.static.cast]p3:
Douglas Gregor465184a2011-01-22 00:06:57 +00001100 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2
1101 // T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001102 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
Sebastian Redld74dd492012-02-12 18:41:05 +00001103 BasePath, msg);
Douglas Gregorba278e22011-01-25 16:13:26 +00001104 if (tcr != TC_NotApplicable)
Sebastian Redl9f831db2009-07-25 15:41:38 +00001105 return tcr;
1106
1107 // C++ 5.2.9p2: An expression e can be explicitly converted to a type T
1108 // [...] if the declaration "T t(e);" is well-formed, [...].
John McCall31168b02011-06-15 23:02:42 +00001109 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001110 Kind, ListInitialization);
John Wiegley01296292011-04-08 18:41:53 +00001111 if (SrcExpr.isInvalid())
1112 return TC_Failed;
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00001113 if (tcr != TC_NotApplicable)
Sebastian Redl9f831db2009-07-25 15:41:38 +00001114 return tcr;
Fangrui Song6907ce22018-07-30 19:24:48 +00001115
Sebastian Redl9f831db2009-07-25 15:41:38 +00001116 // C++ 5.2.9p6: May apply the reverse of any standard conversion, except
1117 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
1118 // conversions, subject to further restrictions.
1119 // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal
1120 // of qualification conversions impossible.
1121 // In the CStyle case, the earlier attempt to const_cast should have taken
1122 // care of reverse qualification conversions.
1123
John Wiegley01296292011-04-08 18:41:53 +00001124 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType());
Sebastian Redl9f831db2009-07-25 15:41:38 +00001125
Douglas Gregor0bf31402010-10-08 23:50:27 +00001126 // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly
Douglas Gregorb327eac2011-02-18 03:01:41 +00001127 // converted to an integral type. [...] A value of a scoped enumeration type
1128 // can also be explicitly converted to a floating-point type [...].
1129 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1130 if (Enum->getDecl()->isScoped()) {
1131 if (DestType->isBooleanType()) {
1132 Kind = CK_IntegralToBoolean;
1133 return TC_Success;
1134 } else if (DestType->isIntegralType(Self.Context)) {
1135 Kind = CK_IntegralCast;
1136 return TC_Success;
1137 } else if (DestType->isRealFloatingType()) {
1138 Kind = CK_IntegralToFloating;
1139 return TC_Success;
1140 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00001141 }
1142 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001143
Sebastian Redl9f831db2009-07-25 15:41:38 +00001144 // Reverse integral promotion/conversion. All such conversions are themselves
1145 // again integral promotions or conversions and are thus already handled by
1146 // p2 (TryDirectInitialization above).
1147 // (Note: any data loss warnings should be suppressed.)
1148 // The exception is the reverse of enum->integer, i.e. integer->enum (and
1149 // enum->enum). See also C++ 5.2.9p7.
1150 // The same goes for reverse floating point promotion/conversion and
1151 // floating-integral conversions. Again, only floating->enum is relevant.
1152 if (DestType->isEnumeralType()) {
Eli Friedman29538892011-09-02 17:38:59 +00001153 if (SrcType->isIntegralOrEnumerationType()) {
John McCalle3027922010-08-25 11:45:40 +00001154 Kind = CK_IntegralCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001155 return TC_Success;
Eli Friedman29538892011-09-02 17:38:59 +00001156 } else if (SrcType->isRealFloatingType()) {
1157 Kind = CK_FloatingToIntegral;
1158 return TC_Success;
Eli Friedman03bf60a2009-11-16 05:44:20 +00001159 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001160 }
1161
1162 // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast.
1163 // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance.
Anders Carlsson9a1cd872009-11-12 16:53:16 +00001164 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001165 Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001166 if (tcr != TC_NotApplicable)
1167 return tcr;
1168
1169 // Reverse member pointer conversion. C++ 4.11 specifies member pointer
1170 // conversion. C++ 5.2.9p9 has additional information.
1171 // DR54's access restrictions apply here also.
Douglas Gregorc934bc82010-03-07 23:24:59 +00001172 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
Anders Carlssonb78feca2010-04-24 19:22:20 +00001173 OpRange, msg, Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001174 if (tcr != TC_NotApplicable)
1175 return tcr;
1176
1177 // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to
1178 // void*. C++ 5.2.9p10 specifies additional restrictions, which really is
1179 // just the usual constness stuff.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001180 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001181 QualType SrcPointee = SrcPointer->getPointeeType();
1182 if (SrcPointee->isVoidType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001183 if (const PointerType *DestPointer = DestType->getAs<PointerType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001184 QualType DestPointee = DestPointer->getPointeeType();
1185 if (DestPointee->isIncompleteOrObjectType()) {
1186 // This is definitely the intended conversion, but it might fail due
John McCall31168b02011-06-15 23:02:42 +00001187 // to a qualifier violation. Note that we permit Objective-C lifetime
1188 // and GC qualifier mismatches here.
1189 if (!CStyle) {
1190 Qualifiers DestPointeeQuals = DestPointee.getQualifiers();
1191 Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers();
1192 DestPointeeQuals.removeObjCGCAttr();
1193 DestPointeeQuals.removeObjCLifetime();
1194 SrcPointeeQuals.removeObjCGCAttr();
1195 SrcPointeeQuals.removeObjCLifetime();
1196 if (DestPointeeQuals != SrcPointeeQuals &&
1197 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) {
1198 msg = diag::err_bad_cxx_cast_qualifiers_away;
1199 return TC_Failed;
1200 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001201 }
Yaxun Liu4b06ffe2018-08-03 03:18:56 +00001202 Kind = IsAddressSpaceConversion(SrcType, DestType)
1203 ? CK_AddressSpaceConversion
1204 : CK_BitCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001205 return TC_Success;
1206 }
David Majnemer85bd1202015-06-02 22:15:12 +00001207
1208 // Microsoft permits static_cast from 'pointer-to-void' to
1209 // 'pointer-to-function'.
David Majnemer78324f22015-06-09 02:41:08 +00001210 if (!CStyle && Self.getLangOpts().MSVCCompat &&
1211 DestPointee->isFunctionType()) {
David Majnemer85bd1202015-06-02 22:15:12 +00001212 Self.Diag(OpRange.getBegin(), diag::ext_ms_cast_fn_obj) << OpRange;
1213 Kind = CK_BitCast;
1214 return TC_Success;
1215 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001216 }
Fariborz Jahanianeee16692010-05-10 23:46:53 +00001217 else if (DestType->isObjCObjectPointerType()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001218 // allow both c-style cast and static_cast of objective-c pointers as
Fariborz Jahanianeee16692010-05-10 23:46:53 +00001219 // they are pervasive.
John McCall9320b872011-09-09 05:25:32 +00001220 Kind = CK_CPointerToObjCPointerCast;
Fariborz Jahanian859c4152009-12-08 23:09:15 +00001221 return TC_Success;
1222 }
Fariborz Jahanianffe912c2009-12-11 22:40:48 +00001223 else if (CStyle && DestType->isBlockPointerType()) {
1224 // allow c-style cast of void * to block pointers.
John McCalle3027922010-08-25 11:45:40 +00001225 Kind = CK_AnyPointerToBlockPointerCast;
Fariborz Jahanianffe912c2009-12-11 22:40:48 +00001226 return TC_Success;
1227 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001228 }
1229 }
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00001230 // Allow arbitrary objective-c pointer conversion with static casts.
Fariborz Jahanianb0901b72010-05-12 18:16:59 +00001231 if (SrcType->isObjCObjectPointerType() &&
John McCall8cb679e2010-11-15 09:13:47 +00001232 DestType->isObjCObjectPointerType()) {
1233 Kind = CK_BitCast;
Fariborz Jahanianb0901b72010-05-12 18:16:59 +00001234 return TC_Success;
John McCall8cb679e2010-11-15 09:13:47 +00001235 }
Fariborz Jahanianc70a5432014-05-10 17:40:11 +00001236 // Allow ns-pointer to cf-pointer conversion in either direction
1237 // with static casts.
1238 if (!CStyle &&
1239 Self.CheckTollFreeBridgeStaticCast(DestType, SrcExpr.get(), Kind))
1240 return TC_Success;
Nathan Sidwellffa7dc32015-01-28 21:31:26 +00001241
1242 // See if it looks like the user is trying to convert between
1243 // related record types, and select a better diagnostic if so.
1244 if (auto SrcPointer = SrcType->getAs<PointerType>())
1245 if (auto DestPointer = DestType->getAs<PointerType>())
1246 if (SrcPointer->getPointeeType()->getAs<RecordType>() &&
1247 DestPointer->getPointeeType()->getAs<RecordType>())
1248 msg = diag::err_bad_cxx_cast_unrelated_class;
Fangrui Song6907ce22018-07-30 19:24:48 +00001249
Sebastian Redl9f831db2009-07-25 15:41:38 +00001250 // We tried everything. Everything! Nothing works! :-(
1251 return TC_NotApplicable;
1252}
1253
1254/// Tests whether a conversion according to N2844 is valid.
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001255TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
1256 QualType DestType, bool CStyle,
1257 CastKind &Kind, CXXCastPath &BasePath,
1258 unsigned &msg) {
Davide Italianoa2275912015-07-12 22:10:56 +00001259 // C++11 [expr.static.cast]p3:
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001260 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
Douglas Gregor465184a2011-01-22 00:06:57 +00001261 // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001262 const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001263 if (!R)
1264 return TC_NotApplicable;
1265
Douglas Gregor465184a2011-01-22 00:06:57 +00001266 if (!SrcExpr->isGLValue())
Sebastian Redl9f831db2009-07-25 15:41:38 +00001267 return TC_NotApplicable;
1268
1269 // Because we try the reference downcast before this function, from now on
1270 // this is the only cast possibility, so we issue an error if we fail now.
1271 // FIXME: Should allow casting away constness if CStyle.
1272 bool DerivedToBase;
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00001273 bool ObjCConversion;
John McCall31168b02011-06-15 23:02:42 +00001274 bool ObjCLifetimeConversion;
Douglas Gregorce950842011-01-26 21:04:06 +00001275 QualType FromType = SrcExpr->getType();
1276 QualType ToType = R->getPointeeType();
1277 if (CStyle) {
1278 FromType = FromType.getUnqualifiedType();
1279 ToType = ToType.getUnqualifiedType();
1280 }
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001281
1282 Sema::ReferenceCompareResult RefResult = Self.CompareReferenceRelationship(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001283 SrcExpr->getBeginLoc(), ToType, FromType, DerivedToBase, ObjCConversion,
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001284 ObjCLifetimeConversion);
1285 if (RefResult != Sema::Ref_Compatible) {
1286 if (CStyle || RefResult == Sema::Ref_Incompatible)
Davide Italianoa2275912015-07-12 22:10:56 +00001287 return TC_NotApplicable;
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001288 // Diagnose types which are reference-related but not compatible here since
1289 // we can provide better diagnostics. In these cases forwarding to
1290 // [expr.static.cast]p4 should never result in a well-formed cast.
1291 msg = SrcExpr->isLValue() ? diag::err_bad_lvalue_to_rvalue_cast
1292 : diag::err_bad_rvalue_to_rvalue_cast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001293 return TC_Failed;
1294 }
1295
Douglas Gregorba278e22011-01-25 16:13:26 +00001296 if (DerivedToBase) {
1297 Kind = CK_DerivedToBase;
1298 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1299 /*DetectVirtual=*/true);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001300 if (!Self.IsDerivedFrom(SrcExpr->getBeginLoc(), SrcExpr->getType(),
Richard Smith0f59cb32015-12-18 21:45:41 +00001301 R->getPointeeType(), Paths))
Douglas Gregorba278e22011-01-25 16:13:26 +00001302 return TC_NotApplicable;
Fangrui Song6907ce22018-07-30 19:24:48 +00001303
Douglas Gregorba278e22011-01-25 16:13:26 +00001304 Self.BuildBasePathArray(Paths, BasePath);
1305 } else
1306 Kind = CK_NoOp;
Fangrui Song6907ce22018-07-30 19:24:48 +00001307
Sebastian Redl9f831db2009-07-25 15:41:38 +00001308 return TC_Success;
1309}
1310
1311/// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1312TryCastResult
1313TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001314 bool CStyle, SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001315 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001316 CXXCastPath &BasePath) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001317 // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1318 // cast to type "reference to cv2 D", where D is a class derived from B,
1319 // if a valid standard conversion from "pointer to D" to "pointer to B"
1320 // exists, cv2 >= cv1, and B is not a virtual base class of D.
1321 // In addition, DR54 clarifies that the base must be accessible in the
1322 // current context. Although the wording of DR54 only applies to the pointer
1323 // variant of this rule, the intent is clearly for it to apply to the this
1324 // conversion as well.
1325
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001326 const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001327 if (!DestReference) {
1328 return TC_NotApplicable;
1329 }
1330 bool RValueRef = DestReference->isRValueReferenceType();
John McCall086a4642010-11-24 05:12:34 +00001331 if (!RValueRef && !SrcExpr->isLValue()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001332 // We know the left side is an lvalue reference, so we can suggest a reason.
1333 msg = diag::err_bad_cxx_cast_rvalue;
1334 return TC_NotApplicable;
1335 }
1336
1337 QualType DestPointee = DestReference->getPointeeType();
1338
Richard Smith11330852014-07-08 17:25:14 +00001339 // FIXME: If the source is a prvalue, we should issue a warning (because the
1340 // cast always has undefined behavior), and for AST consistency, we should
1341 // materialize a temporary.
Fangrui Song6907ce22018-07-30 19:24:48 +00001342 return TryStaticDowncast(Self,
1343 Self.Context.getCanonicalType(SrcExpr->getType()),
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001344 Self.Context.getCanonicalType(DestPointee), CStyle,
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001345 OpRange, SrcExpr->getType(), DestType, msg, Kind,
1346 BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001347}
1348
1349/// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1350TryCastResult
1351TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001352 bool CStyle, SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001353 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001354 CXXCastPath &BasePath) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001355 // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1356 // type, can be converted to an rvalue of type "pointer to cv2 D", where D
1357 // is a class derived from B, if a valid standard conversion from "pointer
1358 // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1359 // class of D.
1360 // In addition, DR54 clarifies that the base must be accessible in the
1361 // current context.
1362
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001363 const PointerType *DestPointer = DestType->getAs<PointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001364 if (!DestPointer) {
1365 return TC_NotApplicable;
1366 }
1367
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001368 const PointerType *SrcPointer = SrcType->getAs<PointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001369 if (!SrcPointer) {
1370 msg = diag::err_bad_static_cast_pointer_nonpointer;
1371 return TC_NotApplicable;
1372 }
1373
Fangrui Song6907ce22018-07-30 19:24:48 +00001374 return TryStaticDowncast(Self,
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001375 Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
Fangrui Song6907ce22018-07-30 19:24:48 +00001376 Self.Context.getCanonicalType(DestPointer->getPointeeType()),
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001377 CStyle, OpRange, SrcType, DestType, msg, Kind,
1378 BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001379}
1380
1381/// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1382/// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001383/// DestType is possible and allowed.
Sebastian Redl9f831db2009-07-25 15:41:38 +00001384TryCastResult
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001385TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001386 bool CStyle, SourceRange OpRange, QualType OrigSrcType,
Fangrui Song6907ce22018-07-30 19:24:48 +00001387 QualType OrigDestType, unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +00001388 CastKind &Kind, CXXCastPath &BasePath) {
Sebastian Redl802f14c2009-10-22 15:07:22 +00001389 // We can only work with complete types. But don't complain if it doesn't work
Richard Smithdb0ac552015-12-18 22:40:25 +00001390 if (!Self.isCompleteType(OpRange.getBegin(), SrcType) ||
1391 !Self.isCompleteType(OpRange.getBegin(), DestType))
Sebastian Redl802f14c2009-10-22 15:07:22 +00001392 return TC_NotApplicable;
1393
Sebastian Redl9f831db2009-07-25 15:41:38 +00001394 // Downcast can only happen in class hierarchies, so we need classes.
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001395 if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001396 return TC_NotApplicable;
1397 }
1398
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001399 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregor36d1b142009-10-06 17:59:45 +00001400 /*DetectVirtual=*/true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001401 if (!Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001402 return TC_NotApplicable;
1403 }
1404
1405 // Target type does derive from source type. Now we're serious. If an error
1406 // appears now, it's not ignored.
1407 // This may not be entirely in line with the standard. Take for example:
1408 // struct A {};
1409 // struct B : virtual A {
1410 // B(A&);
1411 // };
Mike Stump11289f42009-09-09 15:08:12 +00001412 //
Sebastian Redl9f831db2009-07-25 15:41:38 +00001413 // void f()
1414 // {
1415 // (void)static_cast<const B&>(*((A*)0));
1416 // }
1417 // As far as the standard is concerned, p5 does not apply (A is virtual), so
1418 // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1419 // However, both GCC and Comeau reject this example, and accepting it would
1420 // mean more complex code if we're to preserve the nice error message.
1421 // FIXME: Being 100% compliant here would be nice to have.
1422
1423 // Must preserve cv, as always, unless we're in C-style mode.
1424 if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
Douglas Gregorb472e932011-04-15 17:59:54 +00001425 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001426 return TC_Failed;
1427 }
1428
1429 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1430 // This code is analoguous to that in CheckDerivedToBaseConversion, except
1431 // that it builds the paths in reverse order.
1432 // To sum up: record all paths to the base and build a nice string from
1433 // them. Use it to spice up the error message.
1434 if (!Paths.isRecordingPaths()) {
1435 Paths.clear();
1436 Paths.setRecordingPaths(true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001437 Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001438 }
1439 std::string PathDisplayStr;
1440 std::set<unsigned> DisplayedPaths;
David Majnemerf7e36092016-06-23 00:15:04 +00001441 for (clang::CXXBasePath &Path : Paths) {
1442 if (DisplayedPaths.insert(Path.back().SubobjectNumber).second) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001443 // We haven't displayed a path to this particular base
1444 // class subobject yet.
1445 PathDisplayStr += "\n ";
David Majnemerf7e36092016-06-23 00:15:04 +00001446 for (CXXBasePathElement &PE : llvm::reverse(Path))
1447 PathDisplayStr += PE.Base->getType().getAsString() + " -> ";
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001448 PathDisplayStr += QualType(DestType).getAsString();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001449 }
1450 }
1451
1452 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
Fangrui Song6907ce22018-07-30 19:24:48 +00001453 << QualType(SrcType).getUnqualifiedType()
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001454 << QualType(DestType).getUnqualifiedType()
Sebastian Redl9f831db2009-07-25 15:41:38 +00001455 << PathDisplayStr << OpRange;
1456 msg = 0;
1457 return TC_Failed;
1458 }
1459
Craig Topperc3ec1492014-05-26 06:22:03 +00001460 if (Paths.getDetectedVirtual() != nullptr) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001461 QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1462 Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1463 << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1464 msg = 0;
1465 return TC_Failed;
1466 }
1467
John McCallfe9cf0a2011-02-14 23:21:33 +00001468 if (!CStyle) {
Dmitry Polukhin5b4faee2016-04-28 09:56:22 +00001469 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1470 SrcType, DestType,
1471 Paths.front(),
1472 diag::err_downcast_from_inaccessible_base)) {
John McCallfe9cf0a2011-02-14 23:21:33 +00001473 case Sema::AR_accessible:
1474 case Sema::AR_delayed: // be optimistic
1475 case Sema::AR_dependent: // be optimistic
1476 break;
1477
1478 case Sema::AR_inaccessible:
1479 msg = 0;
1480 return TC_Failed;
1481 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001482 }
1483
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001484 Self.BuildBasePathArray(Paths, BasePath);
John McCalle3027922010-08-25 11:45:40 +00001485 Kind = CK_BaseToDerived;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001486 return TC_Success;
1487}
1488
1489/// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1490/// C++ 5.2.9p9 is valid:
1491///
1492/// An rvalue of type "pointer to member of D of type cv1 T" can be
1493/// converted to an rvalue of type "pointer to member of B of type cv2 T",
1494/// where B is a base class of D [...].
1495///
1496TryCastResult
Fangrui Song6907ce22018-07-30 19:24:48 +00001497TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
1498 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +00001499 SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001500 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001501 CXXCastPath &BasePath) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001502 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001503 if (!DestMemPtr)
1504 return TC_NotApplicable;
Douglas Gregorc934bc82010-03-07 23:24:59 +00001505
1506 bool WasOverloadedFunction = false;
John McCall16df1e52010-03-30 21:47:33 +00001507 DeclAccessPair FoundOverload;
John Wiegley01296292011-04-08 18:41:53 +00001508 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor064fdb22010-04-14 23:11:21 +00001509 if (FunctionDecl *Fn
John Wiegley01296292011-04-08 18:41:53 +00001510 = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
Douglas Gregor064fdb22010-04-14 23:11:21 +00001511 FoundOverload)) {
1512 CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1513 SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1514 Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1515 WasOverloadedFunction = true;
1516 }
Douglas Gregorc934bc82010-03-07 23:24:59 +00001517 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001518
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001519 const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001520 if (!SrcMemPtr) {
1521 msg = diag::err_bad_static_cast_member_pointer_nonmp;
1522 return TC_NotApplicable;
1523 }
Richard Smithdb0ac552015-12-18 22:40:25 +00001524
1525 // Lock down the inheritance model right now in MS ABI, whether or not the
1526 // pointee types are the same.
David Majnemeraf382652016-03-22 16:44:39 +00001527 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Richard Smithdb0ac552015-12-18 22:40:25 +00001528 (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
David Majnemeraf382652016-03-22 16:44:39 +00001529 (void)Self.isCompleteType(OpRange.getBegin(), DestType);
1530 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001531
1532 // T == T, modulo cv
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00001533 if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1534 DestMemPtr->getPointeeType()))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001535 return TC_NotApplicable;
1536
1537 // B base of D
1538 QualType SrcClass(SrcMemPtr->getClass(), 0);
1539 QualType DestClass(DestMemPtr->getClass(), 0);
Anders Carlssonb78feca2010-04-24 19:22:20 +00001540 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl9f831db2009-07-25 15:41:38 +00001541 /*DetectVirtual=*/true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001542 if (!Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001543 return TC_NotApplicable;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001544
1545 // B is a base of D. But is it an allowed base? If not, it's a hard error.
Douglas Gregor27ac4292010-05-21 20:29:55 +00001546 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001547 Paths.clear();
1548 Paths.setRecordingPaths(true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001549 bool StillOkay =
1550 Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001551 assert(StillOkay);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +00001552 (void)StillOkay;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001553 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1554 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1555 << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1556 msg = 0;
1557 return TC_Failed;
1558 }
1559
1560 if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1561 Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1562 << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1563 msg = 0;
1564 return TC_Failed;
1565 }
1566
John McCallfe9cf0a2011-02-14 23:21:33 +00001567 if (!CStyle) {
1568 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1569 DestClass, SrcClass,
1570 Paths.front(),
1571 diag::err_upcast_to_inaccessible_base)) {
1572 case Sema::AR_accessible:
1573 case Sema::AR_delayed:
1574 case Sema::AR_dependent:
1575 // Optimistically assume that the delayed and dependent cases
1576 // will work out.
1577 break;
1578
1579 case Sema::AR_inaccessible:
1580 msg = 0;
1581 return TC_Failed;
1582 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001583 }
1584
Douglas Gregorc934bc82010-03-07 23:24:59 +00001585 if (WasOverloadedFunction) {
1586 // Resolve the address of the overloaded function again, this time
1587 // allowing complaints if something goes wrong.
Fangrui Song6907ce22018-07-30 19:24:48 +00001588 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
1589 DestType,
John McCall16df1e52010-03-30 21:47:33 +00001590 true,
1591 FoundOverload);
Douglas Gregorc934bc82010-03-07 23:24:59 +00001592 if (!Fn) {
1593 msg = 0;
1594 return TC_Failed;
1595 }
1596
John McCall16df1e52010-03-30 21:47:33 +00001597 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
John Wiegley01296292011-04-08 18:41:53 +00001598 if (!SrcExpr.isUsable()) {
Douglas Gregorc934bc82010-03-07 23:24:59 +00001599 msg = 0;
1600 return TC_Failed;
1601 }
1602 }
1603
Anders Carlssonb78feca2010-04-24 19:22:20 +00001604 Self.BuildBasePathArray(Paths, BasePath);
John McCalle3027922010-08-25 11:45:40 +00001605 Kind = CK_DerivedToBaseMemberPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001606 return TC_Success;
1607}
1608
1609/// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1610/// is valid:
1611///
1612/// An expression e can be explicitly converted to a type T using a
1613/// @c static_cast if the declaration "T t(e);" is well-formed [...].
1614TryCastResult
John Wiegley01296292011-04-08 18:41:53 +00001615TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
Fangrui Song6907ce22018-07-30 19:24:48 +00001616 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +00001617 SourceRange OpRange, unsigned &msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001618 CastKind &Kind, bool ListInitialization) {
Anders Carlsson85ec4ff2009-09-07 18:25:47 +00001619 if (DestType->isRecordType()) {
1620 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
Aaron Ballmanea032142012-05-07 00:02:00 +00001621 diag::err_bad_dynamic_cast_incomplete) ||
Eli Friedman93ee5ca2012-06-16 02:19:17 +00001622 Self.RequireNonAbstractType(OpRange.getBegin(), DestType,
Aaron Ballmanea032142012-05-07 00:02:00 +00001623 diag::err_allocation_of_abstract_type)) {
Anders Carlsson85ec4ff2009-09-07 18:25:47 +00001624 msg = 0;
1625 return TC_Failed;
1626 }
1627 }
Sebastian Redl0501c632012-02-12 16:37:36 +00001628
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001629 InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1630 InitializationKind InitKind
John McCall31168b02011-06-15 23:02:42 +00001631 = (CCK == Sema::CCK_CStyleCast)
Sebastian Redl0501c632012-02-12 16:37:36 +00001632 ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange,
Sebastian Redld74dd492012-02-12 18:41:05 +00001633 ListInitialization)
John McCall31168b02011-06-15 23:02:42 +00001634 : (CCK == Sema::CCK_FunctionalCast)
Sebastian Redld74dd492012-02-12 18:41:05 +00001635 ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization)
Richard Smith507840d2011-11-29 22:48:16 +00001636 : InitializationKind::CreateCast(OpRange);
John Wiegley01296292011-04-08 18:41:53 +00001637 Expr *SrcExprRaw = SrcExpr.get();
Richard Smithb8c0f552016-12-09 18:49:13 +00001638 // FIXME: Per DR242, we should check for an implicit conversion sequence
1639 // or for a constructor that could be invoked by direct-initialization
1640 // here, not for an initialization sequence.
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00001641 InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregore81f58e2010-11-08 03:40:48 +00001642
1643 // At this point of CheckStaticCast, if the destination is a reference,
Fangrui Song6907ce22018-07-30 19:24:48 +00001644 // or the expression is an overload expression this has to work.
Douglas Gregore81f58e2010-11-08 03:40:48 +00001645 // There is no other way that works.
1646 // On the other hand, if we're checking a C-style cast, we've still got
1647 // the reinterpret_cast way.
Fangrui Song6907ce22018-07-30 19:24:48 +00001648 bool CStyle
John McCall31168b02011-06-15 23:02:42 +00001649 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Sebastian Redlc7ca5872011-06-05 12:23:28 +00001650 if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00001651 return TC_NotApplicable;
Fangrui Song6907ce22018-07-30 19:24:48 +00001652
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001653 ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001654 if (Result.isInvalid()) {
1655 msg = 0;
1656 return TC_Failed;
1657 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001658
Douglas Gregorb33eed02010-04-16 22:09:46 +00001659 if (InitSeq.isConstructorInitialization())
John McCalle3027922010-08-25 11:45:40 +00001660 Kind = CK_ConstructorConversion;
Douglas Gregorb33eed02010-04-16 22:09:46 +00001661 else
John McCalle3027922010-08-25 11:45:40 +00001662 Kind = CK_NoOp;
Fangrui Song6907ce22018-07-30 19:24:48 +00001663
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001664 SrcExpr = Result;
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001665 return TC_Success;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001666}
1667
1668/// TryConstCast - See if a const_cast from source to destination is allowed,
1669/// and perform it if it is.
Richard Smith82c9b512013-06-14 22:27:52 +00001670static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
1671 QualType DestType, bool CStyle,
1672 unsigned &msg) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001673 DestType = Self.Context.getCanonicalType(DestType);
Richard Smith82c9b512013-06-14 22:27:52 +00001674 QualType SrcType = SrcExpr.get()->getType();
1675 bool NeedToMaterializeTemporary = false;
1676
Douglas Gregorc1ed20c2011-01-22 00:19:52 +00001677 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
Richard Smith82c9b512013-06-14 22:27:52 +00001678 // C++11 5.2.11p4:
1679 // if a pointer to T1 can be explicitly converted to the type "pointer to
1680 // T2" using a const_cast, then the following conversions can also be
1681 // made:
1682 // -- an lvalue of type T1 can be explicitly converted to an lvalue of
1683 // type T2 using the cast const_cast<T2&>;
1684 // -- a glvalue of type T1 can be explicitly converted to an xvalue of
1685 // type T2 using the cast const_cast<T2&&>; and
1686 // -- if T1 is a class type, a prvalue of type T1 can be explicitly
1687 // converted to an xvalue of type T2 using the cast const_cast<T2&&>.
1688
1689 if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001690 // Cannot const_cast non-lvalue to lvalue reference type. But if this
1691 // is C-style, static_cast might find a way, so we simply suggest a
1692 // message and tell the parent to keep searching.
1693 msg = diag::err_bad_cxx_cast_rvalue;
1694 return TC_NotApplicable;
1695 }
1696
Richard Smith82c9b512013-06-14 22:27:52 +00001697 if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) {
1698 if (!SrcType->isRecordType()) {
1699 // Cannot const_cast non-class prvalue to rvalue reference type. But if
1700 // this is C-style, static_cast can do this.
1701 msg = diag::err_bad_cxx_cast_rvalue;
1702 return TC_NotApplicable;
1703 }
1704
1705 // Materialize the class prvalue so that the const_cast can bind a
1706 // reference to it.
1707 NeedToMaterializeTemporary = true;
1708 }
1709
John McCalld25db7e2013-05-06 21:39:12 +00001710 // It's not completely clear under the standard whether we can
1711 // const_cast bit-field gl-values. Doing so would not be
1712 // intrinsically complicated, but for now, we say no for
1713 // consistency with other compilers and await the word of the
1714 // committee.
Richard Smith82c9b512013-06-14 22:27:52 +00001715 if (SrcExpr.get()->refersToBitField()) {
John McCalld25db7e2013-05-06 21:39:12 +00001716 msg = diag::err_bad_cxx_cast_bitfield;
1717 return TC_NotApplicable;
1718 }
1719
Sebastian Redl9f831db2009-07-25 15:41:38 +00001720 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1721 SrcType = Self.Context.getPointerType(SrcType);
1722 }
1723
1724 // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1725 // the rules for const_cast are the same as those used for pointers.
1726
John McCall0e704f72010-05-18 09:35:29 +00001727 if (!DestType->isPointerType() &&
1728 !DestType->isMemberPointerType() &&
1729 !DestType->isObjCObjectPointerType()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001730 // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1731 // was a reference type, we converted it to a pointer above.
1732 // The status of rvalue references isn't entirely clear, but it looks like
1733 // conversion to them is simply invalid.
1734 // C++ 5.2.11p3: For two pointer types [...]
1735 if (!CStyle)
1736 msg = diag::err_bad_const_cast_dest;
1737 return TC_NotApplicable;
1738 }
1739 if (DestType->isFunctionPointerType() ||
1740 DestType->isMemberFunctionPointerType()) {
1741 // Cannot cast direct function pointers.
1742 // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1743 // T is the ultimate pointee of source and target type.
1744 if (!CStyle)
1745 msg = diag::err_bad_const_cast_dest;
1746 return TC_NotApplicable;
1747 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001748
Richard Smitha3405ff2018-07-11 00:19:19 +00001749 // C++ [expr.const.cast]p3:
1750 // "For two similar types T1 and T2, [...]"
1751 //
1752 // We only allow a const_cast to change cvr-qualifiers, not other kinds of
1753 // type qualifiers. (Likewise, we ignore other changes when determining
1754 // whether a cast casts away constness.)
1755 if (!Self.Context.hasCvrSimilarType(SrcType, DestType))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001756 return TC_NotApplicable;
1757
Richard Smith82c9b512013-06-14 22:27:52 +00001758 if (NeedToMaterializeTemporary)
1759 // This is a const_cast from a class prvalue to an rvalue reference type.
1760 // Materialize a temporary to store the result of the conversion.
Richard Smithb8c0f552016-12-09 18:49:13 +00001761 SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcExpr.get()->getType(),
1762 SrcExpr.get(),
Tim Shen4a05bb82016-06-21 20:29:17 +00001763 /*IsLValueReference*/ false);
Richard Smith82c9b512013-06-14 22:27:52 +00001764
Sebastian Redl9f831db2009-07-25 15:41:38 +00001765 return TC_Success;
1766}
1767
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001768// Checks for undefined behavior in reinterpret_cast.
1769// The cases that is checked for is:
1770// *reinterpret_cast<T*>(&a)
1771// reinterpret_cast<T&>(a)
1772// where accessing 'a' as type 'T' will result in undefined behavior.
1773void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1774 bool IsDereference,
1775 SourceRange Range) {
1776 unsigned DiagID = IsDereference ?
1777 diag::warn_pointer_indirection_from_incompatible_type :
1778 diag::warn_undefined_reinterpret_cast;
1779
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001780 if (Diags.isIgnored(DiagID, Range.getBegin()))
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001781 return;
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001782
1783 QualType SrcTy, DestTy;
1784 if (IsDereference) {
1785 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1786 return;
1787 }
1788 SrcTy = SrcType->getPointeeType();
1789 DestTy = DestType->getPointeeType();
1790 } else {
1791 if (!DestType->getAs<ReferenceType>()) {
1792 return;
1793 }
1794 SrcTy = SrcType;
1795 DestTy = DestType->getPointeeType();
1796 }
1797
1798 // Cast is compatible if the types are the same.
1799 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1800 return;
1801 }
1802 // or one of the types is a char or void type
1803 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
1804 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1805 return;
1806 }
1807 // or one of the types is a tag type.
Chandler Carruth0dc3f8d2011-05-24 07:43:19 +00001808 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001809 return;
1810 }
1811
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00001812 // FIXME: Scoped enums?
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001813 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1814 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1815 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
1816 return;
1817 }
1818 }
1819
1820 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
1821}
Douglas Gregor1beec452011-03-12 01:48:56 +00001822
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00001823static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr,
1824 QualType DestType) {
1825 QualType SrcType = SrcExpr.get()->getType();
Fariborz Jahanianb4873882012-12-13 00:42:06 +00001826 if (Self.Context.hasSameType(SrcType, DestType))
1827 return;
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00001828 if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>())
1829 if (SrcPtrTy->isObjCSelType()) {
1830 QualType DT = DestType;
1831 if (isa<PointerType>(DestType))
1832 DT = DestType->getPointeeType();
1833 if (!DT.getUnqualifiedType()->isVoidType())
1834 Self.Diag(SrcExpr.get()->getExprLoc(),
1835 diag::warn_cast_pointer_from_sel)
1836 << SrcType << DestType << SrcExpr.get()->getSourceRange();
1837 }
1838}
1839
Reid Kleckner9f497332016-05-10 21:00:03 +00001840/// Diagnose casts that change the calling convention of a pointer to a function
1841/// defined in the current TU.
1842static void DiagnoseCallingConvCast(Sema &Self, const ExprResult &SrcExpr,
1843 QualType DstType, SourceRange OpRange) {
1844 // Check if this cast would change the calling convention of a function
1845 // pointer type.
1846 QualType SrcType = SrcExpr.get()->getType();
1847 if (Self.Context.hasSameType(SrcType, DstType) ||
1848 !SrcType->isFunctionPointerType() || !DstType->isFunctionPointerType())
1849 return;
1850 const auto *SrcFTy =
1851 SrcType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
1852 const auto *DstFTy =
1853 DstType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
1854 CallingConv SrcCC = SrcFTy->getCallConv();
1855 CallingConv DstCC = DstFTy->getCallConv();
1856 if (SrcCC == DstCC)
1857 return;
1858
1859 // We have a calling convention cast. Check if the source is a pointer to a
1860 // known, specific function that has already been defined.
1861 Expr *Src = SrcExpr.get()->IgnoreParenImpCasts();
1862 if (auto *UO = dyn_cast<UnaryOperator>(Src))
1863 if (UO->getOpcode() == UO_AddrOf)
1864 Src = UO->getSubExpr()->IgnoreParenImpCasts();
1865 auto *DRE = dyn_cast<DeclRefExpr>(Src);
1866 if (!DRE)
1867 return;
1868 auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
Reid Kleckner0b009e82017-01-31 19:37:45 +00001869 if (!FD)
Reid Kleckner9f497332016-05-10 21:00:03 +00001870 return;
1871
Reid Kleckner43be52a2016-05-11 17:43:13 +00001872 // Only warn if we are casting from the default convention to a non-default
1873 // convention. This can happen when the programmer forgot to apply the calling
Reid Kleckner0b009e82017-01-31 19:37:45 +00001874 // convention to the function declaration and then inserted this cast to
Reid Kleckner43be52a2016-05-11 17:43:13 +00001875 // satisfy the type system.
1876 CallingConv DefaultCC = Self.getASTContext().getDefaultCallingConvention(
1877 FD->isVariadic(), FD->isCXXInstanceMember());
1878 if (DstCC == DefaultCC || SrcCC != DefaultCC)
1879 return;
1880
Reid Kleckner9f497332016-05-10 21:00:03 +00001881 // Diagnose this cast, as it is probably bad.
1882 StringRef SrcCCName = FunctionType::getNameForCallConv(SrcCC);
1883 StringRef DstCCName = FunctionType::getNameForCallConv(DstCC);
1884 Self.Diag(OpRange.getBegin(), diag::warn_cast_calling_conv)
1885 << SrcCCName << DstCCName << OpRange;
1886
1887 // The checks above are cheaper than checking if the diagnostic is enabled.
1888 // However, it's worth checking if the warning is enabled before we construct
1889 // a fixit.
1890 if (Self.Diags.isIgnored(diag::warn_cast_calling_conv, OpRange.getBegin()))
1891 return;
1892
1893 // Try to suggest a fixit to change the calling convention of the function
1894 // whose address was taken. Try to use the latest macro for the convention.
1895 // For example, users probably want to write "WINAPI" instead of "__stdcall"
1896 // to match the Windows header declarations.
Reid Kleckner0b009e82017-01-31 19:37:45 +00001897 SourceLocation NameLoc = FD->getFirstDecl()->getNameInfo().getLoc();
Reid Kleckner9f497332016-05-10 21:00:03 +00001898 Preprocessor &PP = Self.getPreprocessor();
1899 SmallVector<TokenValue, 6> AttrTokens;
1900 SmallString<64> CCAttrText;
1901 llvm::raw_svector_ostream OS(CCAttrText);
1902 if (Self.getLangOpts().MicrosoftExt) {
1903 // __stdcall or __vectorcall
1904 OS << "__" << DstCCName;
1905 IdentifierInfo *II = PP.getIdentifierInfo(OS.str());
1906 AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
1907 ? TokenValue(II->getTokenID())
1908 : TokenValue(II));
1909 } else {
1910 // __attribute__((stdcall)) or __attribute__((vectorcall))
1911 OS << "__attribute__((" << DstCCName << "))";
1912 AttrTokens.push_back(tok::kw___attribute);
1913 AttrTokens.push_back(tok::l_paren);
1914 AttrTokens.push_back(tok::l_paren);
1915 IdentifierInfo *II = PP.getIdentifierInfo(DstCCName);
1916 AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
1917 ? TokenValue(II->getTokenID())
1918 : TokenValue(II));
1919 AttrTokens.push_back(tok::r_paren);
1920 AttrTokens.push_back(tok::r_paren);
1921 }
1922 StringRef AttrSpelling = PP.getLastMacroWithSpelling(NameLoc, AttrTokens);
1923 if (!AttrSpelling.empty())
1924 CCAttrText = AttrSpelling;
1925 OS << ' ';
1926 Self.Diag(NameLoc, diag::note_change_calling_conv_fixit)
1927 << FD << DstCCName << FixItHint::CreateInsertion(NameLoc, CCAttrText);
1928}
1929
David Blaikie282ad872012-10-16 18:53:14 +00001930static void checkIntToPointerCast(bool CStyle, SourceLocation Loc,
1931 const Expr *SrcExpr, QualType DestType,
1932 Sema &Self) {
1933 QualType SrcType = SrcExpr->getType();
1934
1935 // Not warning on reinterpret_cast, boolean, constant expressions, etc
1936 // are not explicit design choices, but consistent with GCC's behavior.
1937 // Feel free to modify them if you've reason/evidence for an alternative.
1938 if (CStyle && SrcType->isIntegralType(Self.Context)
1939 && !SrcType->isBooleanType()
1940 && !SrcType->isEnumeralType()
1941 && !SrcExpr->isIntegerConstantExpr(Self.Context)
Ted Kremeneke3dc7f72013-05-29 21:50:46 +00001942 && Self.Context.getTypeSize(DestType) >
1943 Self.Context.getTypeSize(SrcType)) {
1944 // Separate between casts to void* and non-void* pointers.
1945 // Some APIs use (abuse) void* for something like a user context,
1946 // and often that value is an integer even if it isn't a pointer itself.
1947 // Having a separate warning flag allows users to control the warning
1948 // for their workflow.
1949 unsigned Diag = DestType->isVoidPointerType() ?
1950 diag::warn_int_to_void_pointer_cast
1951 : diag::warn_int_to_pointer_cast;
1952 Self.Diag(Loc, Diag) << SrcType << DestType;
1953 }
David Blaikie282ad872012-10-16 18:53:14 +00001954}
1955
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001956static bool fixOverloadedReinterpretCastExpr(Sema &Self, QualType DestType,
1957 ExprResult &Result) {
1958 // We can only fix an overloaded reinterpret_cast if
1959 // - it is a template with explicit arguments that resolves to an lvalue
1960 // unambiguously, or
1961 // - it is the only function in an overload set that may have its address
1962 // taken.
1963
1964 Expr *E = Result.get();
1965 // TODO: what if this fails because of DiagnoseUseOfDecl or something
1966 // like it?
1967 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
1968 Result,
1969 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
1970 ) &&
1971 Result.isUsable())
1972 return true;
1973
George Burgess IVbeca4a32016-06-08 00:34:22 +00001974 // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
1975 // preserves Result.
1976 Result = E;
George Burgess IV1dbfa852017-05-09 04:06:24 +00001977 if (!Self.resolveAndFixAddressOfOnlyViableOverloadCandidate(
1978 Result, /*DoFunctionPointerConversion=*/true))
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001979 return false;
George Burgess IVbeca4a32016-06-08 00:34:22 +00001980 return Result.isUsable();
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001981}
1982
John Wiegley01296292011-04-08 18:41:53 +00001983static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9f831db2009-07-25 15:41:38 +00001984 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +00001985 SourceRange OpRange,
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00001986 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +00001987 CastKind &Kind) {
Douglas Gregor51954272010-07-13 23:17:26 +00001988 bool IsLValueCast = false;
Fangrui Song6907ce22018-07-30 19:24:48 +00001989
Sebastian Redl9f831db2009-07-25 15:41:38 +00001990 DestType = Self.Context.getCanonicalType(DestType);
John Wiegley01296292011-04-08 18:41:53 +00001991 QualType SrcType = SrcExpr.get()->getType();
Douglas Gregore81f58e2010-11-08 03:40:48 +00001992
1993 // Is the source an overloaded name? (i.e. &foo)
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001994 // If so, reinterpret_cast generally can not help us here (13.4, p1, bullet 5)
Douglas Gregorb491ed32011-02-19 21:32:49 +00001995 if (SrcType == Self.Context.OverloadTy) {
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001996 ExprResult FixedExpr = SrcExpr;
1997 if (!fixOverloadedReinterpretCastExpr(Self, DestType, FixedExpr))
Douglas Gregorb491ed32011-02-19 21:32:49 +00001998 return TC_NotApplicable;
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001999
2000 assert(FixedExpr.isUsable() && "Invalid result fixing overloaded expr");
2001 SrcExpr = FixedExpr;
2002 SrcType = SrcExpr.get()->getType();
Douglas Gregorb491ed32011-02-19 21:32:49 +00002003 }
Douglas Gregore81f58e2010-11-08 03:40:48 +00002004
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002005 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
Richard Smithdb05f1f2012-04-29 08:24:44 +00002006 if (!SrcExpr.get()->isGLValue()) {
2007 // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
2008 // similar comment in const_cast.
Sebastian Redl9f831db2009-07-25 15:41:38 +00002009 msg = diag::err_bad_cxx_cast_rvalue;
2010 return TC_NotApplicable;
2011 }
2012
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00002013 if (!CStyle) {
2014 Self.CheckCompatibleReinterpretCast(SrcType, DestType,
2015 /*isDereference=*/false, OpRange);
2016 }
2017
Sebastian Redl9f831db2009-07-25 15:41:38 +00002018 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
2019 // same effect as the conversion *reinterpret_cast<T*>(&x) with the
2020 // built-in & and * operators.
Argyrios Kyrtzidis47a12852011-04-22 22:31:13 +00002021
Craig Topperc3ec1492014-05-26 06:22:03 +00002022 const char *inappropriate = nullptr;
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002023 switch (SrcExpr.get()->getObjectKind()) {
Argyrios Kyrtzidis3d2185b2011-04-23 01:10:24 +00002024 case OK_Ordinary:
2025 break;
Richard Smithb8c0f552016-12-09 18:49:13 +00002026 case OK_BitField:
2027 msg = diag::err_bad_cxx_cast_bitfield;
2028 return TC_NotApplicable;
2029 // FIXME: Use a specific diagnostic for the rest of these cases.
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002030 case OK_VectorComponent: inappropriate = "vector element"; break;
2031 case OK_ObjCProperty: inappropriate = "property expression"; break;
Fangrui Song6907ce22018-07-30 19:24:48 +00002032 case OK_ObjCSubscript: inappropriate = "container subscripting expression";
Ted Kremeneke65b0862012-03-06 20:05:56 +00002033 break;
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002034 }
2035 if (inappropriate) {
2036 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
2037 << inappropriate << DestType
2038 << OpRange << SrcExpr.get()->getSourceRange();
2039 msg = 0; SrcExpr = ExprError();
Argyrios Kyrtzidis47a12852011-04-22 22:31:13 +00002040 return TC_NotApplicable;
2041 }
2042
Sebastian Redl9f831db2009-07-25 15:41:38 +00002043 // This code does this transformation for the checked types.
2044 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
2045 SrcType = Self.Context.getPointerType(SrcType);
Fangrui Song6907ce22018-07-30 19:24:48 +00002046
Douglas Gregor51954272010-07-13 23:17:26 +00002047 IsLValueCast = true;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002048 }
2049
2050 // Canonicalize source for comparison.
2051 SrcType = Self.Context.getCanonicalType(SrcType);
2052
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002053 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
2054 *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00002055 if (DestMemPtr && SrcMemPtr) {
2056 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
2057 // can be explicitly converted to an rvalue of type "pointer to member
2058 // of Y of type T2" if T1 and T2 are both function types or both object
2059 // types.
David Majnemer5fd33e02015-04-24 01:25:08 +00002060 if (DestMemPtr->isMemberFunctionPointer() !=
2061 SrcMemPtr->isMemberFunctionPointer())
Sebastian Redl9f831db2009-07-25 15:41:38 +00002062 return TC_NotApplicable;
2063
David Majnemer1cdd96d2014-01-17 09:01:00 +00002064 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2065 // We need to determine the inheritance model that the class will use if
2066 // haven't yet.
Richard Smithdb0ac552015-12-18 22:40:25 +00002067 (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
2068 (void)Self.isCompleteType(OpRange.getBegin(), DestType);
David Majnemer1cdd96d2014-01-17 09:01:00 +00002069 }
2070
Charles Davisebab1ed2010-08-16 05:30:44 +00002071 // Don't allow casting between member pointers of different sizes.
2072 if (Self.Context.getTypeSize(DestMemPtr) !=
2073 Self.Context.getTypeSize(SrcMemPtr)) {
2074 msg = diag::err_bad_cxx_cast_member_pointer_size;
2075 return TC_Failed;
2076 }
2077
Richard Smithf276e2d2018-07-10 23:04:35 +00002078 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
2079 // constness.
2080 // A reinterpret_cast followed by a const_cast can, though, so in C-style,
2081 // we accept it.
2082 if (auto CACK =
2083 CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2084 /*CheckObjCLifetime=*/CStyle))
2085 return getCastAwayConstnessCastKind(CACK, msg);
2086
Sebastian Redl9f831db2009-07-25 15:41:38 +00002087 // A valid member pointer cast.
John McCallc62bb392012-02-15 01:22:51 +00002088 assert(!IsLValueCast);
2089 Kind = CK_ReinterpretMemberPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002090 return TC_Success;
2091 }
2092
2093 // See below for the enumeral issue.
Douglas Gregor6972a622010-06-16 00:35:25 +00002094 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002095 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
2096 // type large enough to hold it. A value of std::nullptr_t can be
2097 // converted to an integral type; the conversion has the same meaning
2098 // and validity as a conversion of (void*)0 to the integral type.
2099 if (Self.Context.getTypeSize(SrcType) >
2100 Self.Context.getTypeSize(DestType)) {
2101 msg = diag::err_bad_reinterpret_cast_small_int;
2102 return TC_Failed;
2103 }
John McCalle3027922010-08-25 11:45:40 +00002104 Kind = CK_PointerToIntegral;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002105 return TC_Success;
2106 }
2107
John McCall1c78f082015-07-23 23:54:07 +00002108 // Allow reinterpret_casts between vectors of the same size and
2109 // between vectors and integers of the same size.
Anders Carlsson570af5d2009-09-16 19:19:43 +00002110 bool destIsVector = DestType->isVectorType();
2111 bool srcIsVector = SrcType->isVectorType();
2112 if (srcIsVector || destIsVector) {
John McCall1c78f082015-07-23 23:54:07 +00002113 // The non-vector type, if any, must have integral type. This is
2114 // the same rule that C vector casts use; note, however, that enum
2115 // types are not integral in C++.
2116 if ((!destIsVector && !DestType->isIntegralType(Self.Context)) ||
2117 (!srcIsVector && !SrcType->isIntegralType(Self.Context)))
Anders Carlsson570af5d2009-09-16 19:19:43 +00002118 return TC_NotApplicable;
2119
John McCall1c78f082015-07-23 23:54:07 +00002120 // The size we want to consider is eltCount * eltSize.
2121 // That's exactly what the lax-conversion rules will check.
2122 if (Self.areLaxCompatibleVectorTypes(SrcType, DestType)) {
John McCalle3027922010-08-25 11:45:40 +00002123 Kind = CK_BitCast;
Anders Carlsson570af5d2009-09-16 19:19:43 +00002124 return TC_Success;
Douglas Gregor19fc0b72009-12-22 22:47:22 +00002125 }
John McCall1c78f082015-07-23 23:54:07 +00002126
2127 // Otherwise, pick a reasonable diagnostic.
2128 if (!destIsVector)
Anders Carlsson570af5d2009-09-16 19:19:43 +00002129 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
John McCall1c78f082015-07-23 23:54:07 +00002130 else if (!srcIsVector)
Anders Carlsson570af5d2009-09-16 19:19:43 +00002131 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
2132 else
2133 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
Fangrui Song6907ce22018-07-30 19:24:48 +00002134
Anders Carlsson570af5d2009-09-16 19:19:43 +00002135 return TC_Failed;
2136 }
Chad Rosier96c755d12012-02-03 02:54:37 +00002137
2138 if (SrcType == DestType) {
2139 // C++ 5.2.10p2 has a note that mentions that, subject to all other
2140 // restrictions, a cast to the same type is allowed so long as it does not
Fangrui Song6907ce22018-07-30 19:24:48 +00002141 // cast away constness. In C++98, the intent was not entirely clear here,
Chad Rosier96c755d12012-02-03 02:54:37 +00002142 // since all other paragraphs explicitly forbid casts to the same type.
2143 // C++11 clarifies this case with p2.
2144 //
Fangrui Song6907ce22018-07-30 19:24:48 +00002145 // The only allowed types are: integral, enumeration, pointer, or
Chad Rosier96c755d12012-02-03 02:54:37 +00002146 // pointer-to-member types. We also won't restrict Obj-C pointers either.
2147 Kind = CK_NoOp;
2148 TryCastResult Result = TC_NotApplicable;
2149 if (SrcType->isIntegralOrEnumerationType() ||
2150 SrcType->isAnyPointerType() ||
2151 SrcType->isMemberPointerType() ||
2152 SrcType->isBlockPointerType()) {
2153 Result = TC_Success;
2154 }
2155 return Result;
2156 }
2157
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002158 bool destIsPtr = DestType->isAnyPointerType() ||
2159 DestType->isBlockPointerType();
2160 bool srcIsPtr = SrcType->isAnyPointerType() ||
2161 SrcType->isBlockPointerType();
Sebastian Redl9f831db2009-07-25 15:41:38 +00002162 if (!destIsPtr && !srcIsPtr) {
2163 // Except for std::nullptr_t->integer and lvalue->reference, which are
2164 // handled above, at least one of the two arguments must be a pointer.
2165 return TC_NotApplicable;
2166 }
2167
Douglas Gregor6972a622010-06-16 00:35:25 +00002168 if (DestType->isIntegralType(Self.Context)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002169 assert(srcIsPtr && "One type must be a pointer");
2170 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
Francois Pichetb796b632011-05-11 22:13:54 +00002171 // type large enough to hold it; except in Microsoft mode, where the
Hans Wennborg15439bc2013-06-06 09:16:36 +00002172 // integral type size doesn't matter (except we don't allow bool).
2173 bool MicrosoftException = Self.getLangOpts().MicrosoftExt &&
2174 !DestType->isBooleanType();
Francois Pichetb796b632011-05-11 22:13:54 +00002175 if ((Self.Context.getTypeSize(SrcType) >
2176 Self.Context.getTypeSize(DestType)) &&
Hans Wennborg15439bc2013-06-06 09:16:36 +00002177 !MicrosoftException) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002178 msg = diag::err_bad_reinterpret_cast_small_int;
2179 return TC_Failed;
2180 }
John McCalle3027922010-08-25 11:45:40 +00002181 Kind = CK_PointerToIntegral;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002182 return TC_Success;
2183 }
2184
Douglas Gregorb90df602010-06-16 00:17:44 +00002185 if (SrcType->isIntegralOrEnumerationType()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002186 assert(destIsPtr && "One type must be a pointer");
David Blaikie282ad872012-10-16 18:53:14 +00002187 checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType,
2188 Self);
Sebastian Redl9f831db2009-07-25 15:41:38 +00002189 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
2190 // converted to a pointer.
John McCalle84af4e2010-11-13 01:35:44 +00002191 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
2192 // necessarily converted to a null pointer value.]
John McCalle3027922010-08-25 11:45:40 +00002193 Kind = CK_IntegralToPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002194 return TC_Success;
2195 }
2196
2197 if (!destIsPtr || !srcIsPtr) {
2198 // With the valid non-pointer conversions out of the way, we can be even
2199 // more stringent.
2200 return TC_NotApplicable;
2201 }
2202
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002203 // Cannot convert between block pointers and Objective-C object pointers.
2204 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
2205 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
2206 return TC_NotApplicable;
2207
Richard Smithf276e2d2018-07-10 23:04:35 +00002208 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
2209 // The C-style cast operator can.
2210 TryCastResult SuccessResult = TC_Success;
2211 if (auto CACK =
2212 CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2213 /*CheckObjCLifetime=*/CStyle))
2214 SuccessResult = getCastAwayConstnessCastKind(CACK, msg);
2215
John McCall9320b872011-09-09 05:25:32 +00002216 if (IsLValueCast) {
2217 Kind = CK_LValueBitCast;
2218 } else if (DestType->isObjCObjectPointerType()) {
John McCallcd78e802011-09-10 01:16:55 +00002219 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
John McCall9320b872011-09-09 05:25:32 +00002220 } else if (DestType->isBlockPointerType()) {
2221 if (!SrcType->isBlockPointerType()) {
2222 Kind = CK_AnyPointerToBlockPointerCast;
2223 } else {
2224 Kind = CK_BitCast;
2225 }
Yaxun Liu99a9f752018-07-20 11:32:51 +00002226 } else if (IsAddressSpaceConversion(SrcType, DestType)) {
2227 Kind = CK_AddressSpaceConversion;
John McCall9320b872011-09-09 05:25:32 +00002228 } else {
2229 Kind = CK_BitCast;
2230 }
2231
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002232 // Any pointer can be cast to an Objective-C pointer type with a C-style
2233 // cast.
Fariborz Jahanian859c4152009-12-08 23:09:15 +00002234 if (CStyle && DestType->isObjCObjectPointerType()) {
Richard Smithf276e2d2018-07-10 23:04:35 +00002235 return SuccessResult;
Fariborz Jahanian859c4152009-12-08 23:09:15 +00002236 }
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00002237 if (CStyle)
2238 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
Reid Kleckner9f497332016-05-10 21:00:03 +00002239
2240 DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
2241
Sebastian Redl9f831db2009-07-25 15:41:38 +00002242 // Not casting away constness, so the only remaining check is for compatible
2243 // pointer categories.
2244
2245 if (SrcType->isFunctionPointerType()) {
2246 if (DestType->isFunctionPointerType()) {
2247 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2248 // a pointer to a function of a different type.
Richard Smithf276e2d2018-07-10 23:04:35 +00002249 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002250 }
2251
2252 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2253 // an object type or vice versa is conditionally-supported.
2254 // Compilers support it in C++03 too, though, because it's necessary for
2255 // casting the return value of dlsym() and GetProcAddress().
2256 // FIXME: Conditionally-supported behavior should be configurable in the
2257 // TargetInfo or similar.
Richard Smith0bf8a4922011-10-18 20:49:44 +00002258 Self.Diag(OpRange.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002259 Self.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00002260 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2261 << OpRange;
Richard Smithf276e2d2018-07-10 23:04:35 +00002262 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002263 }
2264
2265 if (DestType->isFunctionPointerType()) {
2266 // See above.
Richard Smith0bf8a4922011-10-18 20:49:44 +00002267 Self.Diag(OpRange.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002268 Self.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00002269 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2270 << OpRange;
Richard Smithf276e2d2018-07-10 23:04:35 +00002271 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002272 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002273
Sebastian Redl9f831db2009-07-25 15:41:38 +00002274 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2275 // a pointer to an object of different type.
2276 // Void pointers are not specified, but supported by every compiler out there.
2277 // So we finish by allowing everything that remains - it's got to be two
2278 // object pointers.
Richard Smithf276e2d2018-07-10 23:04:35 +00002279 return SuccessResult;
2280}
Sebastian Redl9f831db2009-07-25 15:41:38 +00002281
Anastasia Stulova5325f832018-10-10 16:05:22 +00002282void CastOperation::checkAddressSpaceCast(QualType SrcType, QualType DestType) {
2283 // In OpenCL only conversions between pointers to objects in overlapping
2284 // addr spaces are allowed. v2.0 s6.5.5 - Generic addr space overlaps
2285 // with any named one, except for constant.
2286 if (Self.getLangOpts().OpenCL) {
2287 auto SrcPtrType = SrcType->getAs<PointerType>();
2288 if (!SrcPtrType)
2289 return;
2290 auto DestPtrType = DestType->getAs<PointerType>();
2291 if (!DestPtrType)
2292 return;
2293 if (!DestPtrType->isAddressSpaceOverlapping(*SrcPtrType)) {
2294 Self.Diag(OpRange.getBegin(),
2295 diag::err_typecheck_incompatible_address_space)
2296 << SrcType << DestType << Sema::AA_Casting
2297 << SrcExpr.get()->getSourceRange();
2298 SrcExpr = ExprError();
2299 }
2300 }
2301}
2302
Sebastian Redld74dd492012-02-12 18:41:05 +00002303void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2304 bool ListInitialization) {
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002305 assert(Self.getLangOpts().CPlusPlus);
2306
John McCall9776e432011-10-06 23:25:11 +00002307 // Handle placeholders.
2308 if (isPlaceholder()) {
2309 // C-style casts can resolve __unknown_any types.
2310 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2311 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2312 SrcExpr.get(), Kind,
2313 ValueKind, BasePath);
2314 return;
2315 }
John McCallb50451a2011-10-05 07:41:44 +00002316
John McCall9776e432011-10-06 23:25:11 +00002317 checkNonOverloadPlaceholders();
2318 if (SrcExpr.isInvalid())
2319 return;
John McCalla072f5d2011-10-17 17:42:19 +00002320 }
John McCall9776e432011-10-06 23:25:11 +00002321
2322 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Sebastian Redl9f831db2009-07-25 15:41:38 +00002323 // This test is outside everything else because it's the only case where
2324 // a non-lvalue-reference target type does not lead to decay.
John McCallb50451a2011-10-05 07:41:44 +00002325 if (DestType->isVoidType()) {
John McCall3aef3d82011-04-10 19:13:55 +00002326 Kind = CK_ToVoid;
2327
John McCall9776e432011-10-06 23:25:11 +00002328 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall50a2c2c2011-10-11 23:14:30 +00002329 Self.ResolveAndFixSingleFunctionTemplateSpecialization(
Fangrui Song6907ce22018-07-30 19:24:48 +00002330 SrcExpr, /* Decay Function to ptr */ false,
John McCallb50451a2011-10-05 07:41:44 +00002331 /* Complain */ true, DestRange, DestType,
Douglas Gregor1beec452011-03-12 01:48:56 +00002332 diag::err_bad_cstyle_cast_overload);
John McCallb50451a2011-10-05 07:41:44 +00002333 if (SrcExpr.isInvalid())
2334 return;
Douglas Gregorb491ed32011-02-19 21:32:49 +00002335 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002336
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002337 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002338 return;
Anton Yartsev28ccef72011-03-27 09:32:40 +00002339 }
2340
Sebastian Redl9f831db2009-07-25 15:41:38 +00002341 // If the type is dependent, we won't do any other semantic analysis now.
Eli Friedman71271082013-09-19 01:12:33 +00002342 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2343 SrcExpr.get()->isValueDependent()) {
John McCallb50451a2011-10-05 07:41:44 +00002344 assert(Kind == CK_Dependent);
2345 return;
John McCall8cb679e2010-11-15 09:13:47 +00002346 }
Benjamin Kramer65cc1072011-07-08 20:20:17 +00002347
John McCall50a2c2c2011-10-11 23:14:30 +00002348 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
2349 !isPlaceholder(BuiltinType::Overload)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002350 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002351 if (SrcExpr.isInvalid())
2352 return;
John Wiegley01296292011-04-08 18:41:53 +00002353 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002354
John McCall3aef3d82011-04-10 19:13:55 +00002355 // AltiVec vector initialization with a single literal.
John McCallb50451a2011-10-05 07:41:44 +00002356 if (const VectorType *vecTy = DestType->getAs<VectorType>())
John McCall3aef3d82011-04-10 19:13:55 +00002357 if (vecTy->getVectorKind() == VectorType::AltiVecVector
John McCallb50451a2011-10-05 07:41:44 +00002358 && (SrcExpr.get()->getType()->isIntegerType()
2359 || SrcExpr.get()->getType()->isFloatingType())) {
John McCall3aef3d82011-04-10 19:13:55 +00002360 Kind = CK_VectorSplat;
George Burgess IVdf1ed002016-01-13 01:52:39 +00002361 SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002362 return;
John McCall3aef3d82011-04-10 19:13:55 +00002363 }
2364
Sebastian Redl9f831db2009-07-25 15:41:38 +00002365 // C++ [expr.cast]p5: The conversions performed by
2366 // - a const_cast,
2367 // - a static_cast,
2368 // - a static_cast followed by a const_cast,
2369 // - a reinterpret_cast, or
2370 // - a reinterpret_cast followed by a const_cast,
2371 // can be performed using the cast notation of explicit type conversion.
2372 // [...] If a conversion can be interpreted in more than one of the ways
2373 // listed above, the interpretation that appears first in the list is used,
2374 // even if a cast resulting from that interpretation is ill-formed.
2375 // In plain language, this means trying a const_cast ...
2376 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smith82c9b512013-06-14 22:27:52 +00002377 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
John McCallb50451a2011-10-05 07:41:44 +00002378 /*CStyle*/true, msg);
Richard Smith82c9b512013-06-14 22:27:52 +00002379 if (SrcExpr.isInvalid())
2380 return;
Richard Smithf276e2d2018-07-10 23:04:35 +00002381 if (isValidCast(tcr))
John McCalle3027922010-08-25 11:45:40 +00002382 Kind = CK_NoOp;
Anders Carlsson027732b2009-10-19 18:14:28 +00002383
John McCall31168b02011-06-15 23:02:42 +00002384 Sema::CheckedConversionKind CCK
2385 = FunctionalStyle? Sema::CCK_FunctionalCast
2386 : Sema::CCK_CStyleCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002387 if (tcr == TC_NotApplicable) {
2388 // ... or if that is not possible, a static_cast, ignoring const, ...
John McCallb50451a2011-10-05 07:41:44 +00002389 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange,
Sebastian Redld74dd492012-02-12 18:41:05 +00002390 msg, Kind, BasePath, ListInitialization);
John McCallb50451a2011-10-05 07:41:44 +00002391 if (SrcExpr.isInvalid())
2392 return;
2393
Sebastian Redl9f831db2009-07-25 15:41:38 +00002394 if (tcr == TC_NotApplicable) {
2395 // ... and finally a reinterpret_cast, ignoring const.
John McCallb50451a2011-10-05 07:41:44 +00002396 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/true,
2397 OpRange, msg, Kind);
2398 if (SrcExpr.isInvalid())
2399 return;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002400 }
2401 }
2402
Brian Kelley11352a82017-03-29 18:09:02 +00002403 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
Richard Smithf276e2d2018-07-10 23:04:35 +00002404 isValidCast(tcr))
Brian Kelley11352a82017-03-29 18:09:02 +00002405 checkObjCConversion(CCK);
John McCall31168b02011-06-15 23:02:42 +00002406
Nick Lewycky14d88eb2010-11-09 00:19:31 +00002407 if (tcr != TC_Success && msg != 0) {
John McCallb50451a2011-10-05 07:41:44 +00002408 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregore81f58e2010-11-08 03:40:48 +00002409 DeclAccessPair Found;
John McCallb50451a2011-10-05 07:41:44 +00002410 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2411 DestType,
2412 /*Complain*/ true,
Douglas Gregore81f58e2010-11-08 03:40:48 +00002413 Found);
Logan Chienaf24ad92014-04-13 16:08:24 +00002414 if (Fn) {
2415 // If DestType is a function type (not to be confused with the function
2416 // pointer type), it will be possible to resolve the function address,
2417 // but the type cast should be considered as failure.
2418 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2419 Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2420 << OE->getName() << DestType << OpRange
2421 << OE->getQualifierLoc().getSourceRange();
2422 Self.NoteAllOverloadCandidates(SrcExpr.get());
2423 }
Nick Lewycky14d88eb2010-11-09 00:19:31 +00002424 } else {
John McCallb50451a2011-10-05 07:41:44 +00002425 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
Sebastian Redl2b80af42012-02-13 19:55:43 +00002426 OpRange, SrcExpr.get(), DestType, ListInitialization);
Douglas Gregore81f58e2010-11-08 03:40:48 +00002427 }
2428 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002429
Anastasia Stulova5325f832018-10-10 16:05:22 +00002430 checkAddressSpaceCast(SrcExpr.get()->getType(), DestType);
2431
Richard Smithf276e2d2018-07-10 23:04:35 +00002432 if (isValidCast(tcr)) {
2433 if (Kind == CK_BitCast)
2434 checkCastAlign();
2435 } else {
John McCallb50451a2011-10-05 07:41:44 +00002436 SrcExpr = ExprError();
Richard Smithf276e2d2018-07-10 23:04:35 +00002437 }
John McCallb50451a2011-10-05 07:41:44 +00002438}
2439
Fangrui Song6907ce22018-07-30 19:24:48 +00002440/// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002441/// non-matching type. Such as enum function call to int, int call to
2442/// pointer; etc. Cast to 'void' is an exception.
2443static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2444 QualType DestType) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002445 if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2446 SrcExpr.get()->getExprLoc()))
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002447 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002448
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002449 if (!isa<CallExpr>(SrcExpr.get()))
2450 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002451
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002452 QualType SrcType = SrcExpr.get()->getType();
2453 if (DestType.getUnqualifiedType()->isVoidType())
2454 return;
2455 if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2456 && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2457 return;
2458 if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2459 (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2460 (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2461 return;
2462 if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2463 return;
2464 if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2465 return;
2466 if (SrcType->isComplexType() && DestType->isComplexType())
2467 return;
2468 if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2469 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002470
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002471 Self.Diag(SrcExpr.get()->getExprLoc(),
2472 diag::warn_bad_function_cast)
2473 << SrcType << DestType << SrcExpr.get()->getSourceRange();
2474}
2475
John McCall9776e432011-10-06 23:25:11 +00002476/// Check the semantics of a C-style cast operation, in C.
2477void CastOperation::CheckCStyleCast() {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002478 assert(!Self.getLangOpts().CPlusPlus);
John McCall9776e432011-10-06 23:25:11 +00002479
John McCall4124c492011-10-17 18:40:02 +00002480 // C-style casts can resolve __unknown_any types.
2481 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2482 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2483 SrcExpr.get(), Kind,
2484 ValueKind, BasePath);
2485 return;
2486 }
John McCall9776e432011-10-06 23:25:11 +00002487
2488 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2489 // type needs to be scalar.
2490 if (DestType->isVoidType()) {
2491 // We don't necessarily do lvalue-to-rvalue conversions on this.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002492 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002493 if (SrcExpr.isInvalid())
2494 return;
2495
2496 // Cast to void allows any expr type.
2497 Kind = CK_ToVoid;
2498 return;
2499 }
2500
George Burgess IV5f21c712015-10-12 19:57:04 +00002501 // Overloads are allowed with C extensions, so we need to support them.
2502 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2503 DeclAccessPair DAP;
2504 if (FunctionDecl *FD = Self.ResolveAddressOfOverloadedFunction(
2505 SrcExpr.get(), DestType, /*Complain=*/true, DAP))
2506 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr.get(), DAP, FD);
2507 else
2508 return;
2509 assert(SrcExpr.isUsable());
2510 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002511 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002512 if (SrcExpr.isInvalid())
2513 return;
2514 QualType SrcType = SrcExpr.get()->getType();
David Chisnallfa35df62012-01-16 17:27:18 +00002515
John McCall4124c492011-10-17 18:40:02 +00002516 assert(!SrcType->isPlaceholderType());
John McCall9776e432011-10-06 23:25:11 +00002517
Anastasia Stulova5325f832018-10-10 16:05:22 +00002518 checkAddressSpaceCast(SrcType, DestType);
2519 if (SrcExpr.isInvalid())
2520 return;
Joey Gouly8fc32f02014-01-14 12:47:29 +00002521
John McCall9776e432011-10-06 23:25:11 +00002522 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2523 diag::err_typecheck_cast_to_incomplete)) {
2524 SrcExpr = ExprError();
2525 return;
2526 }
2527
2528 if (!DestType->isScalarType() && !DestType->isVectorType()) {
2529 const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2530
2531 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2532 // GCC struct/union extension: allow cast to self.
2533 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2534 << DestType << SrcExpr.get()->getSourceRange();
2535 Kind = CK_NoOp;
2536 return;
2537 }
2538
2539 // GCC's cast to union extension.
2540 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2541 RecordDecl *RD = DestRecordTy->getDecl();
John McCallf1ef7962017-08-15 21:42:47 +00002542 if (CastExpr::getTargetFieldForToUnionCast(RD, SrcType)) {
2543 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2544 << SrcExpr.get()->getSourceRange();
2545 Kind = CK_ToUnion;
2546 return;
2547 } else {
John McCall9776e432011-10-06 23:25:11 +00002548 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2549 << SrcType << SrcExpr.get()->getSourceRange();
2550 SrcExpr = ExprError();
2551 return;
2552 }
John McCall9776e432011-10-06 23:25:11 +00002553 }
2554
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002555 // OpenCL v2.0 s6.13.10 - Allow casts from '0' to event_t type.
2556 if (Self.getLangOpts().OpenCL && DestType->isEventT()) {
2557 llvm::APSInt CastInt;
2558 if (SrcExpr.get()->EvaluateAsInt(CastInt, Self.Context)) {
2559 if (0 == CastInt) {
2560 Kind = CK_ZeroToOCLEvent;
2561 return;
2562 }
2563 Self.Diag(OpRange.getBegin(),
Richard Smithf8812672016-12-02 22:38:31 +00002564 diag::err_opencl_cast_non_zero_to_event_t)
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002565 << CastInt.toString(10) << SrcExpr.get()->getSourceRange();
2566 SrcExpr = ExprError();
2567 return;
2568 }
2569 }
2570
John McCall9776e432011-10-06 23:25:11 +00002571 // Reject any other conversions to non-scalar types.
2572 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2573 << DestType << SrcExpr.get()->getSourceRange();
2574 SrcExpr = ExprError();
2575 return;
2576 }
2577
2578 // The type we're casting to is known to be a scalar or vector.
2579
2580 // Require the operand to be a scalar or vector.
2581 if (!SrcType->isScalarType() && !SrcType->isVectorType()) {
2582 Self.Diag(SrcExpr.get()->getExprLoc(),
2583 diag::err_typecheck_expect_scalar_operand)
2584 << SrcType << SrcExpr.get()->getSourceRange();
2585 SrcExpr = ExprError();
2586 return;
2587 }
2588
2589 if (DestType->isExtVectorType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002590 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
John McCall9776e432011-10-06 23:25:11 +00002591 return;
2592 }
2593
2594 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2595 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2596 (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2597 Kind = CK_VectorSplat;
George Burgess IVdf1ed002016-01-13 01:52:39 +00002598 SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002599 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2600 SrcExpr = ExprError();
2601 }
2602 return;
2603 }
2604
2605 if (SrcType->isVectorType()) {
2606 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2607 SrcExpr = ExprError();
2608 return;
2609 }
2610
2611 // The source and target types are both scalars, i.e.
2612 // - arithmetic types (fundamental, enum, and complex)
2613 // - all kinds of pointers
2614 // Note that member pointers were filtered out with C++, above.
2615
2616 if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2617 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2618 SrcExpr = ExprError();
2619 return;
2620 }
2621
2622 // If either type is a pointer, the other type has to be either an
2623 // integer or a pointer.
2624 if (!DestType->isArithmeticType()) {
2625 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
2626 Self.Diag(SrcExpr.get()->getExprLoc(),
2627 diag::err_cast_pointer_from_non_pointer_int)
2628 << SrcType << SrcExpr.get()->getSourceRange();
2629 SrcExpr = ExprError();
2630 return;
2631 }
David Blaikie282ad872012-10-16 18:53:14 +00002632 checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(),
2633 DestType, Self);
John McCall9776e432011-10-06 23:25:11 +00002634 } else if (!SrcType->isArithmeticType()) {
2635 if (!DestType->isIntegralType(Self.Context) &&
2636 DestType->isArithmeticType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002637 Self.Diag(SrcExpr.get()->getBeginLoc(),
2638 diag::err_cast_pointer_to_non_pointer_int)
2639 << DestType << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002640 SrcExpr = ExprError();
2641 return;
2642 }
2643 }
2644
Yaxun Liu5b746652016-12-18 05:18:55 +00002645 if (Self.getLangOpts().OpenCL &&
2646 !Self.getOpenCLOptions().isEnabled("cl_khr_fp16")) {
Joey Goulydd7f4562013-01-23 11:56:20 +00002647 if (DestType->isHalfType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002648 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::err_opencl_cast_to_half)
2649 << DestType << SrcExpr.get()->getSourceRange();
Joey Goulydd7f4562013-01-23 11:56:20 +00002650 SrcExpr = ExprError();
2651 return;
2652 }
Joey Goulydd7f4562013-01-23 11:56:20 +00002653 }
2654
John McCall9776e432011-10-06 23:25:11 +00002655 // ARC imposes extra restrictions on casts.
Brian Kelley11352a82017-03-29 18:09:02 +00002656 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) {
2657 checkObjCConversion(Sema::CCK_CStyleCast);
John McCall9776e432011-10-06 23:25:11 +00002658 if (SrcExpr.isInvalid())
2659 return;
Brian Kelley11352a82017-03-29 18:09:02 +00002660
2661 const PointerType *CastPtr = DestType->getAs<PointerType>();
2662 if (Self.getLangOpts().ObjCAutoRefCount && CastPtr) {
John McCall9776e432011-10-06 23:25:11 +00002663 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
2664 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
2665 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
Fangrui Song6907ce22018-07-30 19:24:48 +00002666 if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
John McCall9776e432011-10-06 23:25:11 +00002667 ExprPtr->getPointeeType()->isObjCLifetimeType() &&
2668 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002669 Self.Diag(SrcExpr.get()->getBeginLoc(),
John McCall9776e432011-10-06 23:25:11 +00002670 diag::err_typecheck_incompatible_ownership)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002671 << SrcType << DestType << Sema::AA_Casting
2672 << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002673 return;
2674 }
2675 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002676 }
John McCall9776e432011-10-06 23:25:11 +00002677 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002678 Self.Diag(SrcExpr.get()->getBeginLoc(),
John McCall9776e432011-10-06 23:25:11 +00002679 diag::err_arc_convesion_of_weak_unavailable)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002680 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002681 SrcExpr = ExprError();
2682 return;
2683 }
2684 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002685
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00002686 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
Reid Kleckner9f497332016-05-10 21:00:03 +00002687 DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002688 DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
John McCall9776e432011-10-06 23:25:11 +00002689 Kind = Self.PrepareScalarCast(SrcExpr, DestType);
2690 if (SrcExpr.isInvalid())
2691 return;
2692
2693 if (Kind == CK_BitCast)
2694 checkCastAlign();
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002695}
Roman Divackyd5178012014-11-21 21:03:10 +00002696
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002697/// DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either
2698/// const, volatile or both.
2699static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
2700 QualType DestType) {
2701 if (SrcExpr.isInvalid())
2702 return;
2703
2704 QualType SrcType = SrcExpr.get()->getType();
2705 if (!((SrcType->isAnyPointerType() && DestType->isAnyPointerType()) ||
2706 DestType->isLValueReferenceType()))
2707 return;
2708
Roman Divackyd5178012014-11-21 21:03:10 +00002709 QualType TheOffendingSrcType, TheOffendingDestType;
2710 Qualifiers CastAwayQualifiers;
Richard Smithf276e2d2018-07-10 23:04:35 +00002711 if (CastsAwayConstness(Self, SrcType, DestType, true, false,
2712 &TheOffendingSrcType, &TheOffendingDestType,
2713 &CastAwayQualifiers) !=
2714 CastAwayConstnessKind::CACK_Similar)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002715 return;
2716
Richard Smithf276e2d2018-07-10 23:04:35 +00002717 // FIXME: 'restrict' is not properly handled here.
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002718 int qualifiers = -1;
2719 if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
2720 qualifiers = 0;
2721 } else if (CastAwayQualifiers.hasConst()) {
2722 qualifiers = 1;
2723 } else if (CastAwayQualifiers.hasVolatile()) {
2724 qualifiers = 2;
Roman Divackyd5178012014-11-21 21:03:10 +00002725 }
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002726 // This is a variant of int **x; const int **y = (const int **)x;
2727 if (qualifiers == -1)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002728 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual2)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002729 << SrcType << DestType;
2730 else
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002731 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002732 << TheOffendingSrcType << TheOffendingDestType << qualifiers;
John McCall9776e432011-10-06 23:25:11 +00002733}
2734
2735ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
2736 TypeSourceInfo *CastTypeInfo,
2737 SourceLocation RPLoc,
2738 Expr *CastExpr) {
Fangrui Song6907ce22018-07-30 19:24:48 +00002739 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
John McCallb50451a2011-10-05 07:41:44 +00002740 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002741 Op.OpRange = SourceRange(LPLoc, CastExpr->getEndLoc());
John McCallb50451a2011-10-05 07:41:44 +00002742
David Blaikiebbafb8a2012-03-11 07:00:24 +00002743 if (getLangOpts().CPlusPlus) {
Sebastian Redld74dd492012-02-12 18:41:05 +00002744 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/ false,
2745 isa<InitListExpr>(CastExpr));
John McCall9776e432011-10-06 23:25:11 +00002746 } else {
2747 Op.CheckCStyleCast();
2748 }
2749
John McCallb50451a2011-10-05 07:41:44 +00002750 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00002751 return ExprError();
2752
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002753 // -Wcast-qual
2754 DiagnoseCastQual(Op.Self, Op.SrcExpr, Op.DestType);
2755
John McCall4124c492011-10-17 18:40:02 +00002756 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002757 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall4124c492011-10-17 18:40:02 +00002758 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc));
John McCallb50451a2011-10-05 07:41:44 +00002759}
2760
2761ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
Richard Smith60437622017-02-09 19:17:44 +00002762 QualType Type,
John McCallb50451a2011-10-05 07:41:44 +00002763 SourceLocation LPLoc,
2764 Expr *CastExpr,
2765 SourceLocation RPLoc) {
Sebastian Redl2b80af42012-02-13 19:55:43 +00002766 assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
Richard Smith60437622017-02-09 19:17:44 +00002767 CastOperation Op(*this, Type, CastExpr);
John McCallb50451a2011-10-05 07:41:44 +00002768 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002769 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getEndLoc());
John McCallb50451a2011-10-05 07:41:44 +00002770
Sebastian Redl2b80af42012-02-13 19:55:43 +00002771 Op.CheckCXXCStyleCast(/*FunctionalStyle=*/true, /*ListInit=*/false);
John McCallb50451a2011-10-05 07:41:44 +00002772 if (Op.SrcExpr.isInvalid())
2773 return ExprError();
Olivier Goffart1ba7dc32015-09-04 10:17:10 +00002774
2775 auto *SubExpr = Op.SrcExpr.get();
2776 if (auto *BindExpr = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
2777 SubExpr = BindExpr->getSubExpr();
2778 if (auto *ConstructExpr = dyn_cast<CXXConstructExpr>(SubExpr))
Enea Zaffanella76e98fe2013-09-07 05:49:53 +00002779 ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
John McCallb50451a2011-10-05 07:41:44 +00002780
John McCall4124c492011-10-17 18:40:02 +00002781 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
Eli Friedman89fe0d52013-08-15 22:02:56 +00002782 Op.ValueKind, CastTypeInfo, Op.Kind,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002783 Op.SrcExpr.get(), &Op.BasePath, LPLoc, RPLoc));
Sebastian Redl9f831db2009-07-25 15:41:38 +00002784}