blob: 0ebb5c68f7c2350c9328125317a1992faff8b6ab [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +00006//
7//===----------------------------------------------------------------------===//
8//
John McCall3cec19f2011-10-11 17:38:55 +00009// This file implements semantic analysis for cast expressions, including
10// 1) C-style casts like '(int) x'
11// 2) C++ functional casts like 'int(x)'
12// 3) C++ named casts like 'static_cast<int>(x)'
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000013//
14//===----------------------------------------------------------------------===//
15
John McCall83024632010-08-25 22:03:47 +000016#include "clang/Sema/SemaInternal.h"
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000017#include "clang/AST/ASTContext.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "clang/AST/ExprCXX.h"
20#include "clang/AST/ExprObjC.h"
John McCallcda80832013-03-22 02:58:14 +000021#include "clang/AST/RecordLayout.h"
Anders Carlssond624e162009-08-26 23:45:07 +000022#include "clang/Basic/PartialDiagnostic.h"
David Majnemer1cdd96d2014-01-17 09:01:00 +000023#include "clang/Basic/TargetInfo.h"
Reid Kleckner9f497332016-05-10 21:00:03 +000024#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000025#include "clang/Sema/Initialization.h"
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000026#include "llvm/ADT/SmallVector.h"
Sebastian Redl015085f2008-11-07 23:29:29 +000027#include <set>
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +000028using namespace clang;
29
Douglas Gregore81f58e2010-11-08 03:40:48 +000030
Douglas Gregore81f58e2010-11-08 03:40:48 +000031
Sebastian Redl9f831db2009-07-25 15:41:38 +000032enum TryCastResult {
33 TC_NotApplicable, ///< The cast method is not applicable.
34 TC_Success, ///< The cast method is appropriate and successful.
Richard Smithf276e2d2018-07-10 23:04:35 +000035 TC_Extension, ///< The cast method is appropriate and accepted as a
36 ///< language extension.
Sebastian Redl9f831db2009-07-25 15:41:38 +000037 TC_Failed ///< The cast method is appropriate, but failed. A
38 ///< diagnostic has been emitted.
39};
40
Richard Smithf276e2d2018-07-10 23:04:35 +000041static bool isValidCast(TryCastResult TCR) {
42 return TCR == TC_Success || TCR == TC_Extension;
43}
44
Sebastian Redl9f831db2009-07-25 15:41:38 +000045enum CastType {
46 CT_Const, ///< const_cast
47 CT_Static, ///< static_cast
48 CT_Reinterpret, ///< reinterpret_cast
49 CT_Dynamic, ///< dynamic_cast
50 CT_CStyle, ///< (Type)expr
51 CT_Functional ///< Type(expr)
Sebastian Redl842ef522008-11-08 13:00:26 +000052};
53
John McCallb50451a2011-10-05 07:41:44 +000054namespace {
55 struct CastOperation {
56 CastOperation(Sema &S, QualType destType, ExprResult src)
57 : Self(S), SrcExpr(src), DestType(destType),
58 ResultType(destType.getNonLValueExprType(S.Context)),
59 ValueKind(Expr::getValueKindForType(destType)),
John McCall4124c492011-10-17 18:40:02 +000060 Kind(CK_Dependent), IsARCUnbridgedCast(false) {
John McCall9776e432011-10-06 23:25:11 +000061
62 if (const BuiltinType *placeholder =
63 src.get()->getType()->getAsPlaceholderType()) {
64 PlaceholderKind = placeholder->getKind();
65 } else {
66 PlaceholderKind = (BuiltinType::Kind) 0;
67 }
68 }
Douglas Gregore81f58e2010-11-08 03:40:48 +000069
John McCallb50451a2011-10-05 07:41:44 +000070 Sema &Self;
71 ExprResult SrcExpr;
72 QualType DestType;
73 QualType ResultType;
74 ExprValueKind ValueKind;
75 CastKind Kind;
John McCall9776e432011-10-06 23:25:11 +000076 BuiltinType::Kind PlaceholderKind;
John McCallb50451a2011-10-05 07:41:44 +000077 CXXCastPath BasePath;
John McCall4124c492011-10-17 18:40:02 +000078 bool IsARCUnbridgedCast;
Douglas Gregore81f58e2010-11-08 03:40:48 +000079
John McCallb50451a2011-10-05 07:41:44 +000080 SourceRange OpRange;
81 SourceRange DestRange;
Douglas Gregore81f58e2010-11-08 03:40:48 +000082
John McCall9776e432011-10-06 23:25:11 +000083 // Top-level semantics-checking routines.
John McCallb50451a2011-10-05 07:41:44 +000084 void CheckConstCast();
85 void CheckReinterpretCast();
Richard Smith507840d2011-11-29 22:48:16 +000086 void CheckStaticCast();
John McCallb50451a2011-10-05 07:41:44 +000087 void CheckDynamicCast();
Sebastian Redld74dd492012-02-12 18:41:05 +000088 void CheckCXXCStyleCast(bool FunctionalCast, bool ListInitialization);
John McCall9776e432011-10-06 23:25:11 +000089 void CheckCStyleCast();
Erik Pilkingtoneee944e2019-07-02 18:28:13 +000090 void CheckBuiltinBitCast();
John McCall9776e432011-10-06 23:25:11 +000091
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: {
Anastasia Stulova46b55fa2019-07-18 10:02:35 +0000288 // dynamic_cast is not supported in C++ for OpenCL.
Sven van Haastregt2ca6ba12018-05-09 13:16:17 +0000289 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
Erik Pilkingtoneee944e2019-07-02 18:28:13 +0000335ExprResult Sema::ActOnBuiltinBitCastExpr(SourceLocation KWLoc, Declarator &D,
336 ExprResult Operand,
337 SourceLocation RParenLoc) {
338 assert(!D.isInvalidType());
339
340 TypeSourceInfo *TInfo = GetTypeForDeclaratorCast(D, Operand.get()->getType());
341 if (D.isInvalidType())
342 return ExprError();
343
344 return BuildBuiltinBitCastExpr(KWLoc, TInfo, Operand.get(), RParenLoc);
345}
346
347ExprResult Sema::BuildBuiltinBitCastExpr(SourceLocation KWLoc,
348 TypeSourceInfo *TSI, Expr *Operand,
349 SourceLocation RParenLoc) {
350 CastOperation Op(*this, TSI->getType(), Operand);
351 Op.OpRange = SourceRange(KWLoc, RParenLoc);
352 TypeLoc TL = TSI->getTypeLoc();
353 Op.DestRange = SourceRange(TL.getBeginLoc(), TL.getEndLoc());
354
355 if (!Operand->isTypeDependent() && !TSI->getType()->isDependentType()) {
356 Op.CheckBuiltinBitCast();
357 if (Op.SrcExpr.isInvalid())
358 return ExprError();
359 }
360
361 BuiltinBitCastExpr *BCE =
362 new (Context) BuiltinBitCastExpr(Op.ResultType, Op.ValueKind, Op.Kind,
363 Op.SrcExpr.get(), TSI, KWLoc, RParenLoc);
364 return Op.complete(BCE);
365}
366
John McCall909acf82011-02-14 18:34:10 +0000367/// Try to diagnose a failed overloaded cast. Returns true if
368/// diagnostics were emitted.
369static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT,
370 SourceRange range, Expr *src,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000371 QualType destType,
372 bool listInitialization) {
John McCall909acf82011-02-14 18:34:10 +0000373 switch (CT) {
374 // These cast kinds don't consider user-defined conversions.
375 case CT_Const:
376 case CT_Reinterpret:
377 case CT_Dynamic:
378 return false;
379
380 // These do.
381 case CT_Static:
382 case CT_CStyle:
383 case CT_Functional:
384 break;
385 }
386
387 QualType srcType = src->getType();
388 if (!destType->isRecordType() && !srcType->isRecordType())
389 return false;
390
391 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
392 InitializationKind initKind
John McCall31168b02011-06-15 23:02:42 +0000393 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
Sebastian Redl2b80af42012-02-13 19:55:43 +0000394 range, listInitialization)
Sebastian Redl0501c632012-02-12 16:37:36 +0000395 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000396 listInitialization)
Richard Smith507840d2011-11-29 22:48:16 +0000397 : InitializationKind::CreateCast(/*type range?*/ range);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000398 InitializationSequence sequence(S, entity, initKind, src);
John McCall909acf82011-02-14 18:34:10 +0000399
Sebastian Redlc7ca5872011-06-05 12:23:28 +0000400 assert(sequence.Failed() && "initialization succeeded on second try?");
John McCall909acf82011-02-14 18:34:10 +0000401 switch (sequence.getFailureKind()) {
402 default: return false;
403
404 case InitializationSequence::FK_ConstructorOverloadFailed:
405 case InitializationSequence::FK_UserConversionOverloadFailed:
406 break;
407 }
408
409 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet();
410
411 unsigned msg = 0;
412 OverloadCandidateDisplayKind howManyCandidates = OCD_AllCandidates;
413
414 switch (sequence.getFailedOverloadResult()) {
415 case OR_Success: llvm_unreachable("successful failed overload");
John McCall909acf82011-02-14 18:34:10 +0000416 case OR_No_Viable_Function:
417 if (candidates.empty())
418 msg = diag::err_ovl_no_conversion_in_cast;
419 else
420 msg = diag::err_ovl_no_viable_conversion_in_cast;
421 howManyCandidates = OCD_AllCandidates;
422 break;
423
424 case OR_Ambiguous:
425 msg = diag::err_ovl_ambiguous_conversion_in_cast;
426 howManyCandidates = OCD_ViableCandidates;
427 break;
428
429 case OR_Deleted:
430 msg = diag::err_ovl_deleted_conversion_in_cast;
431 howManyCandidates = OCD_ViableCandidates;
432 break;
433 }
434
David Blaikie5e328052019-05-03 00:44:50 +0000435 candidates.NoteCandidates(
436 PartialDiagnosticAt(range.getBegin(),
437 S.PDiag(msg) << CT << srcType << destType << range
438 << src->getSourceRange()),
439 S, howManyCandidates, src);
John McCall909acf82011-02-14 18:34:10 +0000440
441 return true;
442}
443
444/// Diagnose a failed cast.
445static void diagnoseBadCast(Sema &S, unsigned msg, CastType castType,
Sebastian Redl2b80af42012-02-13 19:55:43 +0000446 SourceRange opRange, Expr *src, QualType destType,
447 bool listInitialization) {
John McCall909acf82011-02-14 18:34:10 +0000448 if (msg == diag::err_bad_cxx_cast_generic &&
Sebastian Redl2b80af42012-02-13 19:55:43 +0000449 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
450 listInitialization))
John McCall909acf82011-02-14 18:34:10 +0000451 return;
452
453 S.Diag(opRange.getBegin(), msg) << castType
454 << src->getType() << destType << opRange << src->getSourceRange();
Nathan Sidwellffa7dc32015-01-28 21:31:26 +0000455
456 // Detect if both types are (ptr to) class, and note any incompleteness.
457 int DifferentPtrness = 0;
458 QualType From = destType;
459 if (auto Ptr = From->getAs<PointerType>()) {
460 From = Ptr->getPointeeType();
461 DifferentPtrness++;
462 }
463 QualType To = src->getType();
464 if (auto Ptr = To->getAs<PointerType>()) {
465 To = Ptr->getPointeeType();
466 DifferentPtrness--;
467 }
468 if (!DifferentPtrness) {
469 auto RecFrom = From->getAs<RecordType>();
470 auto RecTo = To->getAs<RecordType>();
471 if (RecFrom && RecTo) {
472 auto DeclFrom = RecFrom->getAsCXXRecordDecl();
473 if (!DeclFrom->isCompleteDefinition())
474 S.Diag(DeclFrom->getLocation(), diag::note_type_incomplete)
475 << DeclFrom->getDeclName();
476 auto DeclTo = RecTo->getAsCXXRecordDecl();
477 if (!DeclTo->isCompleteDefinition())
478 S.Diag(DeclTo->getLocation(), diag::note_type_incomplete)
479 << DeclTo->getDeclName();
480 }
481 }
John McCall909acf82011-02-14 18:34:10 +0000482}
483
Richard Smithf276e2d2018-07-10 23:04:35 +0000484namespace {
485/// The kind of unwrapping we did when determining whether a conversion casts
486/// away constness.
487enum CastAwayConstnessKind {
488 /// The conversion does not cast away constness.
489 CACK_None = 0,
490 /// We unwrapped similar types.
491 CACK_Similar = 1,
492 /// We unwrapped dissimilar types with similar representations (eg, a pointer
493 /// versus an Objective-C object pointer).
494 CACK_SimilarKind = 2,
495 /// We unwrapped representationally-unrelated types, such as a pointer versus
496 /// a pointer-to-member.
497 CACK_Incoherent = 3,
498};
Sebastian Redl55db1ec2009-11-18 18:10:53 +0000499}
500
Richard Smithf276e2d2018-07-10 23:04:35 +0000501/// Unwrap one level of types for CastsAwayConstness.
502///
Richard Smitha3405ff2018-07-11 00:19:19 +0000503/// Like Sema::UnwrapSimilarTypes, this removes one level of indirection from
504/// both types, provided that they're both pointer-like or array-like. Unlike
505/// the Sema function, doesn't care if the unwrapped pieces are related.
Richard Smith5407d4f2018-07-18 20:13:36 +0000506///
507/// This function may remove additional levels as necessary for correctness:
508/// the resulting T1 is unwrapped sufficiently that it is never an array type,
509/// so that its qualifiers can be directly compared to those of T2 (which will
510/// have the combined set of qualifiers from all indermediate levels of T2),
511/// as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers
512/// with those from T2.
Richard Smithf276e2d2018-07-10 23:04:35 +0000513static CastAwayConstnessKind
514unwrapCastAwayConstnessLevel(ASTContext &Context, QualType &T1, QualType &T2) {
Richard Smith5407d4f2018-07-18 20:13:36 +0000515 enum { None, Ptr, MemPtr, BlockPtr, Array };
Richard Smithf276e2d2018-07-10 23:04:35 +0000516 auto Classify = [](QualType T) {
Richard Smith5407d4f2018-07-18 20:13:36 +0000517 if (T->isAnyPointerType()) return Ptr;
518 if (T->isMemberPointerType()) return MemPtr;
519 if (T->isBlockPointerType()) return BlockPtr;
Richard Smitha3405ff2018-07-11 00:19:19 +0000520 // We somewhat-arbitrarily don't look through VLA types here. This is at
521 // least consistent with the behavior of UnwrapSimilarTypes.
Richard Smith5407d4f2018-07-18 20:13:36 +0000522 if (T->isConstantArrayType() || T->isIncompleteArrayType()) return Array;
523 return None;
Richard Smithf276e2d2018-07-10 23:04:35 +0000524 };
525
Richard Smitha3405ff2018-07-11 00:19:19 +0000526 auto Unwrap = [&](QualType T) {
527 if (auto *AT = Context.getAsArrayType(T))
528 return AT->getElementType();
529 return T->getPointeeType();
530 };
531
Richard Smith5407d4f2018-07-18 20:13:36 +0000532 CastAwayConstnessKind Kind;
533
534 if (T2->isReferenceType()) {
535 // Special case: if the destination type is a reference type, unwrap it as
536 // the first level. (The source will have been an lvalue expression in this
537 // case, so there is no corresponding "reference to" in T1 to remove.) This
538 // simulates removing a "pointer to" from both sides.
539 T2 = T2->getPointeeType();
540 Kind = CastAwayConstnessKind::CACK_Similar;
541 } else if (Context.UnwrapSimilarTypes(T1, T2)) {
542 Kind = CastAwayConstnessKind::CACK_Similar;
543 } else {
544 // Try unwrapping mismatching levels.
545 int T1Class = Classify(T1);
546 if (T1Class == None)
547 return CastAwayConstnessKind::CACK_None;
548
549 int T2Class = Classify(T2);
550 if (T2Class == None)
551 return CastAwayConstnessKind::CACK_None;
552
553 T1 = Unwrap(T1);
554 T2 = Unwrap(T2);
555 Kind = T1Class == T2Class ? CastAwayConstnessKind::CACK_SimilarKind
556 : CastAwayConstnessKind::CACK_Incoherent;
557 }
558
559 // We've unwrapped at least one level. If the resulting T1 is a (possibly
560 // multidimensional) array type, any qualifier on any matching layer of
561 // T2 is considered to correspond to T1. Decompose down to the element
562 // type of T1 so that we can compare properly.
563 while (true) {
564 Context.UnwrapSimilarArrayTypes(T1, T2);
565
566 if (Classify(T1) != Array)
567 break;
568
569 auto T2Class = Classify(T2);
570 if (T2Class == None)
571 break;
572
573 if (T2Class != Array)
574 Kind = CastAwayConstnessKind::CACK_Incoherent;
575 else if (Kind != CastAwayConstnessKind::CACK_Incoherent)
576 Kind = CastAwayConstnessKind::CACK_SimilarKind;
577
578 T1 = Unwrap(T1);
579 T2 = Unwrap(T2).withCVRQualifiers(T2.getCVRQualifiers());
580 }
581
582 return Kind;
Richard Smithf276e2d2018-07-10 23:04:35 +0000583}
584
585/// Check if the pointer conversion from SrcType to DestType casts away
586/// constness as defined in C++ [expr.const.cast]. This is used by the cast
587/// checkers. Both arguments must denote pointer (possibly to member) types.
John McCall31168b02011-06-15 23:02:42 +0000588///
589/// \param CheckCVR Whether to check for const/volatile/restrict qualifiers.
John McCall31168b02011-06-15 23:02:42 +0000590/// \param CheckObjCLifetime Whether to check Objective-C lifetime qualifiers.
Richard Smithf276e2d2018-07-10 23:04:35 +0000591static CastAwayConstnessKind
John McCall31168b02011-06-15 23:02:42 +0000592CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
Roman Divackyd5178012014-11-21 21:03:10 +0000593 bool CheckCVR, bool CheckObjCLifetime,
594 QualType *TheOffendingSrcType = nullptr,
595 QualType *TheOffendingDestType = nullptr,
596 Qualifiers *CastAwayQualifiers = nullptr) {
John McCall31168b02011-06-15 23:02:42 +0000597 // If the only checking we care about is for Objective-C lifetime qualifiers,
John McCall460ce582015-10-22 18:38:17 +0000598 // and we're not in ObjC mode, there's nothing to check.
Erik Pilkingtonfa983902018-10-30 20:31:30 +0000599 if (!CheckCVR && CheckObjCLifetime && !Self.Context.getLangOpts().ObjC)
Richard Smithf276e2d2018-07-10 23:04:35 +0000600 return CastAwayConstnessKind::CACK_None;
601
602 if (!DestType->isReferenceType()) {
603 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() ||
604 SrcType->isBlockPointerType()) &&
605 "Source type is not pointer or pointer to member.");
606 assert((DestType->isAnyPointerType() || DestType->isMemberPointerType() ||
607 DestType->isBlockPointerType()) &&
608 "Destination type is not pointer or pointer to member.");
609 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000610
Fangrui Song6907ce22018-07-30 19:24:48 +0000611 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType),
Douglas Gregor8f3952c2009-11-15 09:20:52 +0000612 UnwrappedDestType = Self.Context.getCanonicalType(DestType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000613
Fangrui Song6907ce22018-07-30 19:24:48 +0000614 // Find the qualifiers. We only care about cvr-qualifiers for the
615 // purpose of this check, because other qualifiers (address spaces,
Douglas Gregorb472e932011-04-15 17:59:54 +0000616 // Objective-C GC, etc.) are part of the type's identity.
Roman Divackyd5178012014-11-21 21:03:10 +0000617 QualType PrevUnwrappedSrcType = UnwrappedSrcType;
618 QualType PrevUnwrappedDestType = UnwrappedDestType;
Richard Smithf276e2d2018-07-10 23:04:35 +0000619 auto WorstKind = CastAwayConstnessKind::CACK_Similar;
620 bool AllConstSoFar = true;
621 while (auto Kind = unwrapCastAwayConstnessLevel(
622 Self.Context, UnwrappedSrcType, UnwrappedDestType)) {
623 // Track the worst kind of unwrap we needed to do before we found a
624 // problem.
625 if (Kind > WorstKind)
626 WorstKind = Kind;
627
John McCall31168b02011-06-15 23:02:42 +0000628 // Determine the relevant qualifiers at this level.
629 Qualifiers SrcQuals, DestQuals;
Anders Carlsson76f513f2010-06-04 22:47:55 +0000630 Self.Context.getUnqualifiedArrayType(UnwrappedSrcType, SrcQuals);
Anders Carlsson76f513f2010-06-04 22:47:55 +0000631 Self.Context.getUnqualifiedArrayType(UnwrappedDestType, DestQuals);
Akira Hatanaka8d7bdf62017-08-11 00:06:49 +0000632
633 // We do not meaningfully track object const-ness of Objective-C object
634 // types. Remove const from the source type if either the source or
635 // the destination is an Objective-C object type.
636 if (UnwrappedSrcType->isObjCObjectType() ||
637 UnwrappedDestType->isObjCObjectType())
638 SrcQuals.removeConst();
639
John McCall31168b02011-06-15 23:02:42 +0000640 if (CheckCVR) {
Richard Smithf276e2d2018-07-10 23:04:35 +0000641 Qualifiers SrcCvrQuals =
642 Qualifiers::fromCVRMask(SrcQuals.getCVRQualifiers());
643 Qualifiers DestCvrQuals =
644 Qualifiers::fromCVRMask(DestQuals.getCVRQualifiers());
Roman Divackyd5178012014-11-21 21:03:10 +0000645
Richard Smithf276e2d2018-07-10 23:04:35 +0000646 if (SrcCvrQuals != DestCvrQuals) {
647 if (CastAwayQualifiers)
648 *CastAwayQualifiers = SrcCvrQuals - DestCvrQuals;
649
650 // If we removed a cvr-qualifier, this is casting away 'constness'.
651 if (!DestCvrQuals.compatiblyIncludes(SrcCvrQuals)) {
652 if (TheOffendingSrcType)
653 *TheOffendingSrcType = PrevUnwrappedSrcType;
654 if (TheOffendingDestType)
655 *TheOffendingDestType = PrevUnwrappedDestType;
656 return WorstKind;
657 }
658
659 // If any prior level was not 'const', this is also casting away
660 // 'constness'. We noted the outermost type missing a 'const' already.
661 if (!AllConstSoFar)
662 return WorstKind;
Roman Divackyd5178012014-11-21 21:03:10 +0000663 }
John McCall31168b02011-06-15 23:02:42 +0000664 }
Richard Smithf276e2d2018-07-10 23:04:35 +0000665
John McCall31168b02011-06-15 23:02:42 +0000666 if (CheckObjCLifetime &&
667 !DestQuals.compatiblyIncludesObjCLifetime(SrcQuals))
Richard Smithf276e2d2018-07-10 23:04:35 +0000668 return WorstKind;
669
670 // If we found our first non-const-qualified type, this may be the place
671 // where things start to go wrong.
672 if (AllConstSoFar && !DestQuals.hasConst()) {
673 AllConstSoFar = false;
674 if (TheOffendingSrcType)
675 *TheOffendingSrcType = PrevUnwrappedSrcType;
676 if (TheOffendingDestType)
677 *TheOffendingDestType = PrevUnwrappedDestType;
678 }
Roman Divackyd5178012014-11-21 21:03:10 +0000679
680 PrevUnwrappedSrcType = UnwrappedSrcType;
681 PrevUnwrappedDestType = UnwrappedDestType;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000682 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000683
Richard Smithf276e2d2018-07-10 23:04:35 +0000684 return CastAwayConstnessKind::CACK_None;
685}
686
687static TryCastResult getCastAwayConstnessCastKind(CastAwayConstnessKind CACK,
688 unsigned &DiagID) {
689 switch (CACK) {
690 case CastAwayConstnessKind::CACK_None:
691 llvm_unreachable("did not cast away constness");
692
693 case CastAwayConstnessKind::CACK_Similar:
694 // FIXME: Accept these as an extension too?
695 case CastAwayConstnessKind::CACK_SimilarKind:
696 DiagID = diag::err_bad_cxx_cast_qualifiers_away;
697 return TC_Failed;
698
699 case CastAwayConstnessKind::CACK_Incoherent:
700 DiagID = diag::ext_bad_cxx_cast_qualifiers_away_incoherent;
701 return TC_Extension;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000702 }
703
Richard Smithf276e2d2018-07-10 23:04:35 +0000704 llvm_unreachable("unexpected cast away constness kind");
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000705}
706
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000707/// CheckDynamicCast - Check that a dynamic_cast\<DestType\>(SrcExpr) is valid.
708/// Refer to C++ 5.2.7 for details. Dynamic casts are used mostly for runtime-
709/// checked downcasts in class hierarchies.
John McCallb50451a2011-10-05 07:41:44 +0000710void CastOperation::CheckDynamicCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000711 if (ValueKind == VK_RValue)
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000712 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000713 else if (isPlaceholder())
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000714 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000715 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
716 return;
Eli Friedman90a2cdf2011-10-31 20:59:03 +0000717
John McCallb50451a2011-10-05 07:41:44 +0000718 QualType OrigSrcType = SrcExpr.get()->getType();
719 QualType DestType = Self.Context.getCanonicalType(this->DestType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000720
721 // C++ 5.2.7p1: T shall be a pointer or reference to a complete class type,
722 // or "pointer to cv void".
723
724 QualType DestPointee;
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000725 const PointerType *DestPointer = DestType->getAs<PointerType>();
Craig Topperc3ec1492014-05-26 06:22:03 +0000726 const ReferenceType *DestReference = nullptr;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000727 if (DestPointer) {
728 DestPointee = DestPointer->getPointeeType();
John McCall7decc9e2010-11-18 06:31:45 +0000729 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000730 DestPointee = DestReference->getPointeeType();
731 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000732 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ref_or_ptr)
John McCallb50451a2011-10-05 07:41:44 +0000733 << this->DestType << DestRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000734 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000735 return;
736 }
737
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000738 const RecordType *DestRecord = DestPointee->getAs<RecordType>();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000739 if (DestPointee->isVoidType()) {
740 assert(DestPointer && "Reference to void is not possible");
741 } else if (DestRecord) {
Sebastian Redl9f831db2009-07-25 15:41:38 +0000742 if (Self.RequireCompleteType(OpRange.getBegin(), DestPointee,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000743 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000744 DestRange)) {
745 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000746 return;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000747 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000748 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000749 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000750 << DestPointee.getUnqualifiedType() << DestRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000751 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000752 return;
753 }
754
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000755 // C++0x 5.2.7p2: If T is a pointer type, v shall be an rvalue of a pointer to
756 // complete class type, [...]. If T is an lvalue reference type, v shall be
Fangrui Song6907ce22018-07-30 19:24:48 +0000757 // an lvalue of a complete class type, [...]. If T is an rvalue reference
Douglas Gregor465184a2011-01-22 00:06:57 +0000758 // type, v shall be an expression having a complete class type, [...]
Sebastian Redl842ef522008-11-08 13:00:26 +0000759 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType);
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000760 QualType SrcPointee;
761 if (DestPointer) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000762 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000763 SrcPointee = SrcPointer->getPointeeType();
764 } else {
Chris Lattner377d1f82008-11-18 22:52:51 +0000765 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_ptr)
John Wiegley01296292011-04-08 18:41:53 +0000766 << OrigSrcType << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000767 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000768 return;
769 }
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000770 } else if (DestReference->isLValueReferenceType()) {
John Wiegley01296292011-04-08 18:41:53 +0000771 if (!SrcExpr.get()->isLValue()) {
Chris Lattner377d1f82008-11-18 22:52:51 +0000772 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_rvalue)
John McCallb50451a2011-10-05 07:41:44 +0000773 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000774 }
775 SrcPointee = SrcType;
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000776 } else {
Richard Smith11330852014-07-08 17:25:14 +0000777 // If we're dynamic_casting from a prvalue to an rvalue reference, we need
778 // to materialize the prvalue before we bind the reference to it.
779 if (SrcExpr.get()->isRValue())
Tim Shen4a05bb82016-06-21 20:29:17 +0000780 SrcExpr = Self.CreateMaterializeTemporaryExpr(
781 SrcType, SrcExpr.get(), /*IsLValueReference*/ false);
Sebastian Redl0f8b23f2009-03-16 23:22:08 +0000782 SrcPointee = SrcType;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000783 }
784
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000785 const RecordType *SrcRecord = SrcPointee->getAs<RecordType>();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000786 if (SrcRecord) {
Douglas Gregored0cfbd2009-03-09 16:13:40 +0000787 if (Self.RequireCompleteType(OpRange.getBegin(), SrcPointee,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000788 diag::err_bad_dynamic_cast_incomplete,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000789 SrcExpr.get())) {
790 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000791 return;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000792 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000793 } else {
Chris Lattner29e812b2008-11-20 06:06:08 +0000794 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_class)
John Wiegley01296292011-04-08 18:41:53 +0000795 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000796 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000797 return;
798 }
799
800 assert((DestPointer || DestReference) &&
801 "Bad destination non-ptr/ref slipped through.");
802 assert((DestRecord || DestPointee->isVoidType()) &&
803 "Bad destination pointee slipped through.");
804 assert(SrcRecord && "Bad source pointee slipped through.");
805
806 // C++ 5.2.7p1: The dynamic_cast operator shall not cast away constness.
807 if (!DestPointee.isAtLeastAsQualifiedAs(SrcPointee)) {
Douglas Gregorb472e932011-04-15 17:59:54 +0000808 Self.Diag(OpRange.getBegin(), diag::err_bad_cxx_cast_qualifiers_away)
John McCallb50451a2011-10-05 07:41:44 +0000809 << CT_Dynamic << OrigSrcType << this->DestType << OpRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000810 SrcExpr = ExprError();
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000811 return;
812 }
813
814 // C++ 5.2.7p3: If the type of v is the same as the required result type,
815 // [except for cv].
816 if (DestRecord == SrcRecord) {
John McCalle3027922010-08-25 11:45:40 +0000817 Kind = CK_NoOp;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000818 return;
819 }
820
821 // C++ 5.2.7p5
822 // Upcasts are resolved statically.
Richard Smith0f59cb32015-12-18 21:45:41 +0000823 if (DestRecord &&
824 Self.IsDerivedFrom(OpRange.getBegin(), SrcPointee, DestPointee)) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000825 if (Self.CheckDerivedToBaseConversion(SrcPointee, DestPointee,
Fangrui Song6907ce22018-07-30 19:24:48 +0000826 OpRange.getBegin(), OpRange,
Eli Friedman3fd26b82013-07-26 23:47:47 +0000827 &BasePath)) {
828 SrcExpr = ExprError();
829 return;
830 }
Richard Smith11330852014-07-08 17:25:14 +0000831
John McCalle3027922010-08-25 11:45:40 +0000832 Kind = CK_DerivedToBase;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000833 return;
834 }
835
836 // C++ 5.2.7p6: Otherwise, v shall be [polymorphic].
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000837 const RecordDecl *SrcDecl = SrcRecord->getDecl()->getDefinition();
Sebastian Redlb426f6332008-11-06 15:59:35 +0000838 assert(SrcDecl && "Definition missing");
839 if (!cast<CXXRecordDecl>(SrcDecl)->isPolymorphic()) {
Chris Lattner29e812b2008-11-20 06:06:08 +0000840 Self.Diag(OpRange.getBegin(), diag::err_bad_dynamic_cast_not_polymorphic)
John Wiegley01296292011-04-08 18:41:53 +0000841 << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
Eli Friedman3fd26b82013-07-26 23:47:47 +0000842 SrcExpr = ExprError();
Sebastian Redlb426f6332008-11-06 15:59:35 +0000843 }
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000844
Eli Friedman3ce27102013-09-24 23:21:41 +0000845 // dynamic_cast is not available with -fno-rtti.
846 // As an exception, dynamic_cast to void* is available because it doesn't
847 // use RTTI.
848 if (!Self.getLangOpts().RTTI && !DestPointee->isVoidType()) {
Arnaud A. de Grandmaisoncb6f9432013-08-01 08:28:32 +0000849 Self.Diag(OpRange.getBegin(), diag::err_no_dynamic_cast_with_fno_rtti);
850 SrcExpr = ExprError();
851 return;
852 }
853
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000854 // Done. Everything else is run-time checks.
John McCalle3027922010-08-25 11:45:40 +0000855 Kind = CK_Dynamic;
Sebastian Redl3c5aa4d2008-11-05 21:50:06 +0000856}
Sebastian Redl9f831db2009-07-25 15:41:38 +0000857
858/// CheckConstCast - Check that a const_cast\<DestType\>(SrcExpr) is valid.
859/// Refer to C++ 5.2.11 for details. const_cast is typically used in code
860/// like this:
861/// const char *str = "literal";
862/// legacy_function(const_cast\<char*\>(str));
John McCallb50451a2011-10-05 07:41:44 +0000863void CastOperation::CheckConstCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000864 if (ValueKind == VK_RValue)
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000865 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000866 else if (isPlaceholder())
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000867 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000868 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
869 return;
Sebastian Redl9f831db2009-07-25 15:41:38 +0000870
871 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smithf276e2d2018-07-10 23:04:35 +0000872 auto TCR = TryConstCast(Self, SrcExpr, DestType, /*CStyle*/ false, msg);
873 if (TCR != TC_Success && msg != 0) {
Sebastian Redl9f831db2009-07-25 15:41:38 +0000874 Self.Diag(OpRange.getBegin(), msg) << CT_Const
John Wiegley01296292011-04-08 18:41:53 +0000875 << SrcExpr.get()->getType() << DestType << OpRange;
Eli Friedman3fd26b82013-07-26 23:47:47 +0000876 }
Richard Smithf276e2d2018-07-10 23:04:35 +0000877 if (!isValidCast(TCR))
878 SrcExpr = ExprError();
Sebastian Redl9f831db2009-07-25 15:41:38 +0000879}
880
John McCallcda80832013-03-22 02:58:14 +0000881/// Check that a reinterpret_cast\<DestType\>(SrcExpr) is not used as upcast
882/// or downcast between respective pointers or references.
883static void DiagnoseReinterpretUpDownCast(Sema &Self, const Expr *SrcExpr,
884 QualType DestType,
885 SourceRange OpRange) {
886 QualType SrcType = SrcExpr->getType();
887 // When casting from pointer or reference, get pointee type; use original
888 // type otherwise.
889 const CXXRecordDecl *SrcPointeeRD = SrcType->getPointeeCXXRecordDecl();
890 const CXXRecordDecl *SrcRD =
891 SrcPointeeRD ? SrcPointeeRD : SrcType->getAsCXXRecordDecl();
892
John McCallf2abe192013-03-27 00:03:48 +0000893 // Examining subobjects for records is only possible if the complete and
894 // valid definition is available. Also, template instantiation is not
895 // allowed here.
896 if (!SrcRD || !SrcRD->isCompleteDefinition() || SrcRD->isInvalidDecl())
John McCallcda80832013-03-22 02:58:14 +0000897 return;
898
899 const CXXRecordDecl *DestRD = DestType->getPointeeCXXRecordDecl();
900
John McCallf2abe192013-03-27 00:03:48 +0000901 if (!DestRD || !DestRD->isCompleteDefinition() || DestRD->isInvalidDecl())
John McCallcda80832013-03-22 02:58:14 +0000902 return;
903
904 enum {
905 ReinterpretUpcast,
906 ReinterpretDowncast
907 } ReinterpretKind;
908
909 CXXBasePaths BasePaths;
910
911 if (SrcRD->isDerivedFrom(DestRD, BasePaths))
912 ReinterpretKind = ReinterpretUpcast;
913 else if (DestRD->isDerivedFrom(SrcRD, BasePaths))
914 ReinterpretKind = ReinterpretDowncast;
915 else
916 return;
917
918 bool VirtualBase = true;
919 bool NonZeroOffset = false;
John McCallf2abe192013-03-27 00:03:48 +0000920 for (CXXBasePaths::const_paths_iterator I = BasePaths.begin(),
John McCallcda80832013-03-22 02:58:14 +0000921 E = BasePaths.end();
922 I != E; ++I) {
923 const CXXBasePath &Path = *I;
924 CharUnits Offset = CharUnits::Zero();
925 bool IsVirtual = false;
926 for (CXXBasePath::const_iterator IElem = Path.begin(), EElem = Path.end();
927 IElem != EElem; ++IElem) {
928 IsVirtual = IElem->Base->isVirtual();
929 if (IsVirtual)
930 break;
931 const CXXRecordDecl *BaseRD = IElem->Base->getType()->getAsCXXRecordDecl();
932 assert(BaseRD && "Base type should be a valid unqualified class type");
John McCallf2abe192013-03-27 00:03:48 +0000933 // Don't check if any base has invalid declaration or has no definition
934 // since it has no layout info.
935 const CXXRecordDecl *Class = IElem->Class,
936 *ClassDefinition = Class->getDefinition();
937 if (Class->isInvalidDecl() || !ClassDefinition ||
938 !ClassDefinition->isCompleteDefinition())
939 return;
940
John McCallcda80832013-03-22 02:58:14 +0000941 const ASTRecordLayout &DerivedLayout =
John McCallf2abe192013-03-27 00:03:48 +0000942 Self.Context.getASTRecordLayout(Class);
John McCallcda80832013-03-22 02:58:14 +0000943 Offset += DerivedLayout.getBaseClassOffset(BaseRD);
944 }
945 if (!IsVirtual) {
946 // Don't warn if any path is a non-virtually derived base at offset zero.
947 if (Offset.isZero())
948 return;
949 // Offset makes sense only for non-virtual bases.
950 else
951 NonZeroOffset = true;
952 }
953 VirtualBase = VirtualBase && IsVirtual;
954 }
955
Andy Gibbsfa5026d2013-06-19 13:33:37 +0000956 (void) NonZeroOffset; // Silence set but not used warning.
John McCallcda80832013-03-22 02:58:14 +0000957 assert((VirtualBase || NonZeroOffset) &&
958 "Should have returned if has non-virtual base with zero offset");
959
960 QualType BaseType =
961 ReinterpretKind == ReinterpretUpcast? DestType : SrcType;
962 QualType DerivedType =
963 ReinterpretKind == ReinterpretUpcast? SrcType : DestType;
964
Jordan Rose04a94d12013-03-28 19:09:40 +0000965 SourceLocation BeginLoc = OpRange.getBegin();
966 Self.Diag(BeginLoc, diag::warn_reinterpret_different_from_static)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000967 << DerivedType << BaseType << !VirtualBase << int(ReinterpretKind)
Jordan Rose04a94d12013-03-28 19:09:40 +0000968 << OpRange;
969 Self.Diag(BeginLoc, diag::note_reinterpret_updowncast_use_static)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000970 << int(ReinterpretKind)
Jordan Rose04a94d12013-03-28 19:09:40 +0000971 << FixItHint::CreateReplacement(BeginLoc, "static_cast");
John McCallcda80832013-03-22 02:58:14 +0000972}
973
Sebastian Redl9f831db2009-07-25 15:41:38 +0000974/// CheckReinterpretCast - Check that a reinterpret_cast\<DestType\>(SrcExpr) is
975/// valid.
976/// Refer to C++ 5.2.10 for details. reinterpret_cast is typically used in code
977/// like this:
978/// char *bytes = reinterpret_cast\<char*\>(int_ptr);
John McCallb50451a2011-10-05 07:41:44 +0000979void CastOperation::CheckReinterpretCast() {
Eli Friedman42b199c2012-01-12 00:44:34 +0000980 if (ValueKind == VK_RValue && !isPlaceholder(BuiltinType::Overload))
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000981 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
Eli Friedman42b199c2012-01-12 00:44:34 +0000982 else
983 checkNonOverloadPlaceholders();
984 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
985 return;
Sebastian Redl9f831db2009-07-25 15:41:38 +0000986
987 unsigned msg = diag::err_bad_cxx_cast_generic;
Fangrui Song6907ce22018-07-30 19:24:48 +0000988 TryCastResult tcr =
989 TryReinterpretCast(Self, SrcExpr, DestType,
John McCall31168b02011-06-15 23:02:42 +0000990 /*CStyle*/false, OpRange, msg, Kind);
Richard Smithf276e2d2018-07-10 23:04:35 +0000991 if (tcr != TC_Success && msg != 0) {
John Wiegley01296292011-04-08 18:41:53 +0000992 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
993 return;
994 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Fangrui Song6907ce22018-07-30 19:24:48 +0000995 //FIXME: &f<int>; is overloaded and resolvable
996 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_overload)
John Wiegley01296292011-04-08 18:41:53 +0000997 << OverloadExpr::find(SrcExpr.get()).Expression->getName()
Douglas Gregore81f58e2010-11-08 03:40:48 +0000998 << DestType << OpRange;
John Wiegley01296292011-04-08 18:41:53 +0000999 Self.NoteAllOverloadCandidates(SrcExpr.get());
Douglas Gregore81f58e2010-11-08 03:40:48 +00001000
John McCall909acf82011-02-14 18:34:10 +00001001 } else {
Sebastian Redl2b80af42012-02-13 19:55:43 +00001002 diagnoseBadCast(Self, msg, CT_Reinterpret, OpRange, SrcExpr.get(),
1003 DestType, /*listInitialization=*/false);
Douglas Gregore81f58e2010-11-08 03:40:48 +00001004 }
Richard Smithf276e2d2018-07-10 23:04:35 +00001005 }
1006
1007 if (isValidCast(tcr)) {
Brian Kelley762f9282017-03-29 18:16:38 +00001008 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
Brian Kelley11352a82017-03-29 18:09:02 +00001009 checkObjCConversion(Sema::CCK_OtherCast);
John McCallcda80832013-03-22 02:58:14 +00001010 DiagnoseReinterpretUpDownCast(Self, SrcExpr.get(), DestType, OpRange);
Richard Smithf276e2d2018-07-10 23:04:35 +00001011 } else {
1012 SrcExpr = ExprError();
John McCall31168b02011-06-15 23:02:42 +00001013 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001014}
1015
1016
1017/// CheckStaticCast - Check that a static_cast\<DestType\>(SrcExpr) is valid.
1018/// Refer to C++ 5.2.9 for details. Static casts are mostly used for making
1019/// implicit conversions explicit and getting rid of data loss warnings.
Richard Smith507840d2011-11-29 22:48:16 +00001020void CastOperation::CheckStaticCast() {
John McCall9776e432011-10-06 23:25:11 +00001021 if (isPlaceholder()) {
1022 checkNonOverloadPlaceholders();
1023 if (SrcExpr.isInvalid())
1024 return;
1025 }
1026
Sebastian Redl9f831db2009-07-25 15:41:38 +00001027 // This test is outside everything else because it's the only case where
1028 // a non-lvalue-reference target type does not lead to decay.
1029 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Eli Friedman03bf60a2009-11-16 05:44:20 +00001030 if (DestType->isVoidType()) {
John McCall9776e432011-10-06 23:25:11 +00001031 Kind = CK_ToVoid;
1032
1033 if (claimPlaceholder(BuiltinType::Overload)) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001034 Self.ResolveAndFixSingleFunctionTemplateSpecialization(SrcExpr,
1035 false, // Decay Function to ptr
Douglas Gregorb491ed32011-02-19 21:32:49 +00001036 true, // Complain
1037 OpRange, DestType, diag::err_bad_static_cast_overload);
John McCall50a2c2c2011-10-11 23:14:30 +00001038 if (SrcExpr.isInvalid())
1039 return;
Douglas Gregorb491ed32011-02-19 21:32:49 +00001040 }
John McCall9776e432011-10-06 23:25:11 +00001041
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001042 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
Sebastian Redl9f831db2009-07-25 15:41:38 +00001043 return;
Eli Friedman03bf60a2009-11-16 05:44:20 +00001044 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001045
John McCall50a2c2c2011-10-11 23:14:30 +00001046 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
1047 !isPlaceholder(BuiltinType::Overload)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001048 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00001049 if (SrcExpr.isInvalid()) // if conversion failed, don't report another error
1050 return;
1051 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001052
1053 unsigned msg = diag::err_bad_cxx_cast_generic;
John McCall31168b02011-06-15 23:02:42 +00001054 TryCastResult tcr
Richard Smith507840d2011-11-29 22:48:16 +00001055 = TryStaticCast(Self, SrcExpr, DestType, Sema::CCK_OtherCast, OpRange, msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001056 Kind, BasePath, /*ListInitialization=*/false);
John McCall31168b02011-06-15 23:02:42 +00001057 if (tcr != TC_Success && msg != 0) {
John Wiegley01296292011-04-08 18:41:53 +00001058 if (SrcExpr.isInvalid())
1059 return;
1060 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
1061 OverloadExpr* oe = OverloadExpr::find(SrcExpr.get()).Expression;
Douglas Gregore81f58e2010-11-08 03:40:48 +00001062 Self.Diag(OpRange.getBegin(), diag::err_bad_static_cast_overload)
Fangrui Song6907ce22018-07-30 19:24:48 +00001063 << oe->getName() << DestType << OpRange
Douglas Gregor0da1d432011-02-28 20:01:57 +00001064 << oe->getQualifierLoc().getSourceRange();
John Wiegley01296292011-04-08 18:41:53 +00001065 Self.NoteAllOverloadCandidates(SrcExpr.get());
John McCall909acf82011-02-14 18:34:10 +00001066 } else {
Sebastian Redl2b80af42012-02-13 19:55:43 +00001067 diagnoseBadCast(Self, msg, CT_Static, OpRange, SrcExpr.get(), DestType,
1068 /*listInitialization=*/false);
Douglas Gregore81f58e2010-11-08 03:40:48 +00001069 }
Richard Smithf276e2d2018-07-10 23:04:35 +00001070 }
1071
1072 if (isValidCast(tcr)) {
John McCall31168b02011-06-15 23:02:42 +00001073 if (Kind == CK_BitCast)
John McCallb50451a2011-10-05 07:41:44 +00001074 checkCastAlign();
Brian Kelley762f9282017-03-29 18:16:38 +00001075 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
Brian Kelley11352a82017-03-29 18:09:02 +00001076 checkObjCConversion(Sema::CCK_OtherCast);
Richard Smithf276e2d2018-07-10 23:04:35 +00001077 } else {
1078 SrcExpr = ExprError();
Douglas Gregore81f58e2010-11-08 03:40:48 +00001079 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001080}
1081
Yaxun Liu4b06ffe2018-08-03 03:18:56 +00001082static bool IsAddressSpaceConversion(QualType SrcType, QualType DestType) {
1083 auto *SrcPtrType = SrcType->getAs<PointerType>();
1084 if (!SrcPtrType)
1085 return false;
1086 auto *DestPtrType = DestType->getAs<PointerType>();
1087 if (!DestPtrType)
1088 return false;
1089 return SrcPtrType->getPointeeType().getAddressSpace() !=
1090 DestPtrType->getPointeeType().getAddressSpace();
1091}
1092
Sebastian Redl9f831db2009-07-25 15:41:38 +00001093/// TryStaticCast - Check if a static cast can be performed, and do so if
1094/// possible. If @p CStyle, ignore access restrictions on hierarchy casting
1095/// and casting away constness.
John Wiegley01296292011-04-08 18:41:53 +00001096static TryCastResult TryStaticCast(Sema &Self, ExprResult &SrcExpr,
Fangrui Song6907ce22018-07-30 19:24:48 +00001097 QualType DestType,
John McCall31168b02011-06-15 23:02:42 +00001098 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +00001099 SourceRange OpRange, unsigned &msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001100 CastKind &Kind, CXXCastPath &BasePath,
1101 bool ListInitialization) {
John McCall31168b02011-06-15 23:02:42 +00001102 // Determine whether we have the semantics of a C-style cast.
Fangrui Song6907ce22018-07-30 19:24:48 +00001103 bool CStyle
John McCall31168b02011-06-15 23:02:42 +00001104 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Fangrui Song6907ce22018-07-30 19:24:48 +00001105
Sebastian Redl9f831db2009-07-25 15:41:38 +00001106 // The order the tests is not entirely arbitrary. There is one conversion
1107 // that can be handled in two different ways. Given:
1108 // struct A {};
1109 // struct B : public A {
1110 // B(); B(const A&);
1111 // };
1112 // const A &a = B();
1113 // the cast static_cast<const B&>(a) could be seen as either a static
1114 // reference downcast, or an explicit invocation of the user-defined
1115 // conversion using B's conversion constructor.
1116 // DR 427 specifies that the downcast is to be applied here.
1117
1118 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
1119 // Done outside this function.
1120
1121 TryCastResult tcr;
1122
1123 // C++ 5.2.9p5, reference downcast.
1124 // See the function for details.
1125 // DR 427 specifies that this is to be applied before paragraph 2.
Sebastian Redld74dd492012-02-12 18:41:05 +00001126 tcr = TryStaticReferenceDowncast(Self, SrcExpr.get(), DestType, CStyle,
1127 OpRange, msg, Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001128 if (tcr != TC_NotApplicable)
1129 return tcr;
1130
Fangrui Song6907ce22018-07-30 19:24:48 +00001131 // C++11 [expr.static.cast]p3:
Douglas Gregor465184a2011-01-22 00:06:57 +00001132 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to cv2
1133 // T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001134 tcr = TryLValueToRValueCast(Self, SrcExpr.get(), DestType, CStyle, Kind,
Sebastian Redld74dd492012-02-12 18:41:05 +00001135 BasePath, msg);
Douglas Gregorba278e22011-01-25 16:13:26 +00001136 if (tcr != TC_NotApplicable)
Sebastian Redl9f831db2009-07-25 15:41:38 +00001137 return tcr;
1138
1139 // C++ 5.2.9p2: An expression e can be explicitly converted to a type T
1140 // [...] if the declaration "T t(e);" is well-formed, [...].
John McCall31168b02011-06-15 23:02:42 +00001141 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001142 Kind, ListInitialization);
John Wiegley01296292011-04-08 18:41:53 +00001143 if (SrcExpr.isInvalid())
1144 return TC_Failed;
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00001145 if (tcr != TC_NotApplicable)
Sebastian Redl9f831db2009-07-25 15:41:38 +00001146 return tcr;
Fangrui Song6907ce22018-07-30 19:24:48 +00001147
Sebastian Redl9f831db2009-07-25 15:41:38 +00001148 // C++ 5.2.9p6: May apply the reverse of any standard conversion, except
1149 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
1150 // conversions, subject to further restrictions.
1151 // Also, C++ 5.2.9p1 forbids casting away constness, which makes reversal
1152 // of qualification conversions impossible.
1153 // In the CStyle case, the earlier attempt to const_cast should have taken
1154 // care of reverse qualification conversions.
1155
John Wiegley01296292011-04-08 18:41:53 +00001156 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType());
Sebastian Redl9f831db2009-07-25 15:41:38 +00001157
Douglas Gregor0bf31402010-10-08 23:50:27 +00001158 // C++0x 5.2.9p9: A value of a scoped enumeration type can be explicitly
Douglas Gregorb327eac2011-02-18 03:01:41 +00001159 // converted to an integral type. [...] A value of a scoped enumeration type
1160 // can also be explicitly converted to a floating-point type [...].
1161 if (const EnumType *Enum = SrcType->getAs<EnumType>()) {
1162 if (Enum->getDecl()->isScoped()) {
1163 if (DestType->isBooleanType()) {
1164 Kind = CK_IntegralToBoolean;
1165 return TC_Success;
1166 } else if (DestType->isIntegralType(Self.Context)) {
1167 Kind = CK_IntegralCast;
1168 return TC_Success;
1169 } else if (DestType->isRealFloatingType()) {
1170 Kind = CK_IntegralToFloating;
1171 return TC_Success;
1172 }
Douglas Gregor0bf31402010-10-08 23:50:27 +00001173 }
1174 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001175
Sebastian Redl9f831db2009-07-25 15:41:38 +00001176 // Reverse integral promotion/conversion. All such conversions are themselves
1177 // again integral promotions or conversions and are thus already handled by
1178 // p2 (TryDirectInitialization above).
1179 // (Note: any data loss warnings should be suppressed.)
1180 // The exception is the reverse of enum->integer, i.e. integer->enum (and
1181 // enum->enum). See also C++ 5.2.9p7.
1182 // The same goes for reverse floating point promotion/conversion and
1183 // floating-integral conversions. Again, only floating->enum is relevant.
1184 if (DestType->isEnumeralType()) {
Eli Friedman29538892011-09-02 17:38:59 +00001185 if (SrcType->isIntegralOrEnumerationType()) {
John McCalle3027922010-08-25 11:45:40 +00001186 Kind = CK_IntegralCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001187 return TC_Success;
Eli Friedman29538892011-09-02 17:38:59 +00001188 } else if (SrcType->isRealFloatingType()) {
1189 Kind = CK_FloatingToIntegral;
1190 return TC_Success;
Eli Friedman03bf60a2009-11-16 05:44:20 +00001191 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001192 }
1193
1194 // Reverse pointer upcast. C++ 4.10p3 specifies pointer upcast.
1195 // C++ 5.2.9p8 additionally disallows a cast path through virtual inheritance.
Anders Carlsson9a1cd872009-11-12 16:53:16 +00001196 tcr = TryStaticPointerDowncast(Self, SrcType, DestType, CStyle, OpRange, msg,
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001197 Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001198 if (tcr != TC_NotApplicable)
1199 return tcr;
1200
1201 // Reverse member pointer conversion. C++ 4.11 specifies member pointer
1202 // conversion. C++ 5.2.9p9 has additional information.
1203 // DR54's access restrictions apply here also.
Douglas Gregorc934bc82010-03-07 23:24:59 +00001204 tcr = TryStaticMemberPointerUpcast(Self, SrcExpr, SrcType, DestType, CStyle,
Anders Carlssonb78feca2010-04-24 19:22:20 +00001205 OpRange, msg, Kind, BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001206 if (tcr != TC_NotApplicable)
1207 return tcr;
1208
1209 // Reverse pointer conversion to void*. C++ 4.10.p2 specifies conversion to
1210 // void*. C++ 5.2.9p10 specifies additional restrictions, which really is
1211 // just the usual constness stuff.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001212 if (const PointerType *SrcPointer = SrcType->getAs<PointerType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001213 QualType SrcPointee = SrcPointer->getPointeeType();
1214 if (SrcPointee->isVoidType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001215 if (const PointerType *DestPointer = DestType->getAs<PointerType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001216 QualType DestPointee = DestPointer->getPointeeType();
1217 if (DestPointee->isIncompleteOrObjectType()) {
1218 // This is definitely the intended conversion, but it might fail due
John McCall31168b02011-06-15 23:02:42 +00001219 // to a qualifier violation. Note that we permit Objective-C lifetime
1220 // and GC qualifier mismatches here.
1221 if (!CStyle) {
1222 Qualifiers DestPointeeQuals = DestPointee.getQualifiers();
1223 Qualifiers SrcPointeeQuals = SrcPointee.getQualifiers();
1224 DestPointeeQuals.removeObjCGCAttr();
1225 DestPointeeQuals.removeObjCLifetime();
1226 SrcPointeeQuals.removeObjCGCAttr();
1227 SrcPointeeQuals.removeObjCLifetime();
1228 if (DestPointeeQuals != SrcPointeeQuals &&
1229 !DestPointeeQuals.compatiblyIncludes(SrcPointeeQuals)) {
1230 msg = diag::err_bad_cxx_cast_qualifiers_away;
1231 return TC_Failed;
1232 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001233 }
Yaxun Liu4b06ffe2018-08-03 03:18:56 +00001234 Kind = IsAddressSpaceConversion(SrcType, DestType)
1235 ? CK_AddressSpaceConversion
1236 : CK_BitCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001237 return TC_Success;
1238 }
David Majnemer85bd1202015-06-02 22:15:12 +00001239
1240 // Microsoft permits static_cast from 'pointer-to-void' to
1241 // 'pointer-to-function'.
David Majnemer78324f22015-06-09 02:41:08 +00001242 if (!CStyle && Self.getLangOpts().MSVCCompat &&
1243 DestPointee->isFunctionType()) {
David Majnemer85bd1202015-06-02 22:15:12 +00001244 Self.Diag(OpRange.getBegin(), diag::ext_ms_cast_fn_obj) << OpRange;
1245 Kind = CK_BitCast;
1246 return TC_Success;
1247 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001248 }
Fariborz Jahanianeee16692010-05-10 23:46:53 +00001249 else if (DestType->isObjCObjectPointerType()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001250 // allow both c-style cast and static_cast of objective-c pointers as
Fariborz Jahanianeee16692010-05-10 23:46:53 +00001251 // they are pervasive.
John McCall9320b872011-09-09 05:25:32 +00001252 Kind = CK_CPointerToObjCPointerCast;
Fariborz Jahanian859c4152009-12-08 23:09:15 +00001253 return TC_Success;
1254 }
Fariborz Jahanianffe912c2009-12-11 22:40:48 +00001255 else if (CStyle && DestType->isBlockPointerType()) {
1256 // allow c-style cast of void * to block pointers.
John McCalle3027922010-08-25 11:45:40 +00001257 Kind = CK_AnyPointerToBlockPointerCast;
Fariborz Jahanianffe912c2009-12-11 22:40:48 +00001258 return TC_Success;
1259 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001260 }
1261 }
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00001262 // Allow arbitrary objective-c pointer conversion with static casts.
Fariborz Jahanianb0901b72010-05-12 18:16:59 +00001263 if (SrcType->isObjCObjectPointerType() &&
John McCall8cb679e2010-11-15 09:13:47 +00001264 DestType->isObjCObjectPointerType()) {
1265 Kind = CK_BitCast;
Fariborz Jahanianb0901b72010-05-12 18:16:59 +00001266 return TC_Success;
John McCall8cb679e2010-11-15 09:13:47 +00001267 }
Fariborz Jahanianc70a5432014-05-10 17:40:11 +00001268 // Allow ns-pointer to cf-pointer conversion in either direction
1269 // with static casts.
1270 if (!CStyle &&
1271 Self.CheckTollFreeBridgeStaticCast(DestType, SrcExpr.get(), Kind))
1272 return TC_Success;
Nathan Sidwellffa7dc32015-01-28 21:31:26 +00001273
1274 // See if it looks like the user is trying to convert between
1275 // related record types, and select a better diagnostic if so.
1276 if (auto SrcPointer = SrcType->getAs<PointerType>())
1277 if (auto DestPointer = DestType->getAs<PointerType>())
1278 if (SrcPointer->getPointeeType()->getAs<RecordType>() &&
1279 DestPointer->getPointeeType()->getAs<RecordType>())
1280 msg = diag::err_bad_cxx_cast_unrelated_class;
Fangrui Song6907ce22018-07-30 19:24:48 +00001281
Sebastian Redl9f831db2009-07-25 15:41:38 +00001282 // We tried everything. Everything! Nothing works! :-(
1283 return TC_NotApplicable;
1284}
1285
1286/// Tests whether a conversion according to N2844 is valid.
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001287TryCastResult TryLValueToRValueCast(Sema &Self, Expr *SrcExpr,
1288 QualType DestType, bool CStyle,
1289 CastKind &Kind, CXXCastPath &BasePath,
1290 unsigned &msg) {
Davide Italianoa2275912015-07-12 22:10:56 +00001291 // C++11 [expr.static.cast]p3:
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001292 // A glvalue of type "cv1 T1" can be cast to type "rvalue reference to
Douglas Gregor465184a2011-01-22 00:06:57 +00001293 // cv2 T2" if "cv2 T2" is reference-compatible with "cv1 T1".
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001294 const RValueReferenceType *R = DestType->getAs<RValueReferenceType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001295 if (!R)
1296 return TC_NotApplicable;
1297
Douglas Gregor465184a2011-01-22 00:06:57 +00001298 if (!SrcExpr->isGLValue())
Sebastian Redl9f831db2009-07-25 15:41:38 +00001299 return TC_NotApplicable;
1300
1301 // Because we try the reference downcast before this function, from now on
1302 // this is the only cast possibility, so we issue an error if we fail now.
1303 // FIXME: Should allow casting away constness if CStyle.
1304 bool DerivedToBase;
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +00001305 bool ObjCConversion;
John McCall31168b02011-06-15 23:02:42 +00001306 bool ObjCLifetimeConversion;
Peter Collingbourne766f1582019-10-19 00:34:54 +00001307 bool FunctionConversion;
Douglas Gregorce950842011-01-26 21:04:06 +00001308 QualType FromType = SrcExpr->getType();
1309 QualType ToType = R->getPointeeType();
1310 if (CStyle) {
1311 FromType = FromType.getUnqualifiedType();
1312 ToType = ToType.getUnqualifiedType();
1313 }
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001314
1315 Sema::ReferenceCompareResult RefResult = Self.CompareReferenceRelationship(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001316 SrcExpr->getBeginLoc(), ToType, FromType, DerivedToBase, ObjCConversion,
Peter Collingbourne766f1582019-10-19 00:34:54 +00001317 ObjCLifetimeConversion, FunctionConversion);
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001318 if (RefResult != Sema::Ref_Compatible) {
1319 if (CStyle || RefResult == Sema::Ref_Incompatible)
Davide Italianoa2275912015-07-12 22:10:56 +00001320 return TC_NotApplicable;
Eric Fiseliere4e9e282016-11-03 02:13:17 +00001321 // Diagnose types which are reference-related but not compatible here since
1322 // we can provide better diagnostics. In these cases forwarding to
1323 // [expr.static.cast]p4 should never result in a well-formed cast.
1324 msg = SrcExpr->isLValue() ? diag::err_bad_lvalue_to_rvalue_cast
1325 : diag::err_bad_rvalue_to_rvalue_cast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001326 return TC_Failed;
1327 }
1328
Douglas Gregorba278e22011-01-25 16:13:26 +00001329 if (DerivedToBase) {
1330 Kind = CK_DerivedToBase;
1331 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1332 /*DetectVirtual=*/true);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001333 if (!Self.IsDerivedFrom(SrcExpr->getBeginLoc(), SrcExpr->getType(),
Richard Smith0f59cb32015-12-18 21:45:41 +00001334 R->getPointeeType(), Paths))
Douglas Gregorba278e22011-01-25 16:13:26 +00001335 return TC_NotApplicable;
Fangrui Song6907ce22018-07-30 19:24:48 +00001336
Douglas Gregorba278e22011-01-25 16:13:26 +00001337 Self.BuildBasePathArray(Paths, BasePath);
1338 } else
1339 Kind = CK_NoOp;
Fangrui Song6907ce22018-07-30 19:24:48 +00001340
Sebastian Redl9f831db2009-07-25 15:41:38 +00001341 return TC_Success;
1342}
1343
1344/// Tests whether a conversion according to C++ 5.2.9p5 is valid.
1345TryCastResult
1346TryStaticReferenceDowncast(Sema &Self, Expr *SrcExpr, QualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001347 bool CStyle, SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001348 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001349 CXXCastPath &BasePath) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001350 // C++ 5.2.9p5: An lvalue of type "cv1 B", where B is a class type, can be
1351 // cast to type "reference to cv2 D", where D is a class derived from B,
1352 // if a valid standard conversion from "pointer to D" to "pointer to B"
1353 // exists, cv2 >= cv1, and B is not a virtual base class of D.
1354 // In addition, DR54 clarifies that the base must be accessible in the
1355 // current context. Although the wording of DR54 only applies to the pointer
1356 // variant of this rule, the intent is clearly for it to apply to the this
1357 // conversion as well.
1358
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001359 const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001360 if (!DestReference) {
1361 return TC_NotApplicable;
1362 }
1363 bool RValueRef = DestReference->isRValueReferenceType();
John McCall086a4642010-11-24 05:12:34 +00001364 if (!RValueRef && !SrcExpr->isLValue()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001365 // We know the left side is an lvalue reference, so we can suggest a reason.
1366 msg = diag::err_bad_cxx_cast_rvalue;
1367 return TC_NotApplicable;
1368 }
1369
1370 QualType DestPointee = DestReference->getPointeeType();
1371
Richard Smith11330852014-07-08 17:25:14 +00001372 // FIXME: If the source is a prvalue, we should issue a warning (because the
1373 // cast always has undefined behavior), and for AST consistency, we should
1374 // materialize a temporary.
Fangrui Song6907ce22018-07-30 19:24:48 +00001375 return TryStaticDowncast(Self,
1376 Self.Context.getCanonicalType(SrcExpr->getType()),
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001377 Self.Context.getCanonicalType(DestPointee), CStyle,
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001378 OpRange, SrcExpr->getType(), DestType, msg, Kind,
1379 BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001380}
1381
1382/// Tests whether a conversion according to C++ 5.2.9p8 is valid.
1383TryCastResult
1384TryStaticPointerDowncast(Sema &Self, QualType SrcType, QualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001385 bool CStyle, SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001386 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001387 CXXCastPath &BasePath) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001388 // C++ 5.2.9p8: An rvalue of type "pointer to cv1 B", where B is a class
1389 // type, can be converted to an rvalue of type "pointer to cv2 D", where D
1390 // is a class derived from B, if a valid standard conversion from "pointer
1391 // to D" to "pointer to B" exists, cv2 >= cv1, and B is not a virtual base
1392 // class of D.
1393 // In addition, DR54 clarifies that the base must be accessible in the
1394 // current context.
1395
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001396 const PointerType *DestPointer = DestType->getAs<PointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001397 if (!DestPointer) {
1398 return TC_NotApplicable;
1399 }
1400
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001401 const PointerType *SrcPointer = SrcType->getAs<PointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001402 if (!SrcPointer) {
1403 msg = diag::err_bad_static_cast_pointer_nonpointer;
1404 return TC_NotApplicable;
1405 }
1406
Fangrui Song6907ce22018-07-30 19:24:48 +00001407 return TryStaticDowncast(Self,
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001408 Self.Context.getCanonicalType(SrcPointer->getPointeeType()),
Fangrui Song6907ce22018-07-30 19:24:48 +00001409 Self.Context.getCanonicalType(DestPointer->getPointeeType()),
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001410 CStyle, OpRange, SrcType, DestType, msg, Kind,
1411 BasePath);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001412}
1413
1414/// TryStaticDowncast - Common functionality of TryStaticReferenceDowncast and
1415/// TryStaticPointerDowncast. Tests whether a static downcast from SrcType to
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001416/// DestType is possible and allowed.
Sebastian Redl9f831db2009-07-25 15:41:38 +00001417TryCastResult
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001418TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType,
Craig Toppere335f252015-10-04 04:53:55 +00001419 bool CStyle, SourceRange OpRange, QualType OrigSrcType,
Fangrui Song6907ce22018-07-30 19:24:48 +00001420 QualType OrigDestType, unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +00001421 CastKind &Kind, CXXCastPath &BasePath) {
Sebastian Redl802f14c2009-10-22 15:07:22 +00001422 // We can only work with complete types. But don't complain if it doesn't work
Richard Smithdb0ac552015-12-18 22:40:25 +00001423 if (!Self.isCompleteType(OpRange.getBegin(), SrcType) ||
1424 !Self.isCompleteType(OpRange.getBegin(), DestType))
Sebastian Redl802f14c2009-10-22 15:07:22 +00001425 return TC_NotApplicable;
1426
Sebastian Redl9f831db2009-07-25 15:41:38 +00001427 // Downcast can only happen in class hierarchies, so we need classes.
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001428 if (!DestType->getAs<RecordType>() || !SrcType->getAs<RecordType>()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001429 return TC_NotApplicable;
1430 }
1431
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001432 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregor36d1b142009-10-06 17:59:45 +00001433 /*DetectVirtual=*/true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001434 if (!Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001435 return TC_NotApplicable;
1436 }
1437
1438 // Target type does derive from source type. Now we're serious. If an error
1439 // appears now, it's not ignored.
1440 // This may not be entirely in line with the standard. Take for example:
1441 // struct A {};
1442 // struct B : virtual A {
1443 // B(A&);
1444 // };
Mike Stump11289f42009-09-09 15:08:12 +00001445 //
Sebastian Redl9f831db2009-07-25 15:41:38 +00001446 // void f()
1447 // {
1448 // (void)static_cast<const B&>(*((A*)0));
1449 // }
1450 // As far as the standard is concerned, p5 does not apply (A is virtual), so
1451 // p2 should be used instead - "const B& t(*((A*)0));" is perfectly valid.
1452 // However, both GCC and Comeau reject this example, and accepting it would
1453 // mean more complex code if we're to preserve the nice error message.
1454 // FIXME: Being 100% compliant here would be nice to have.
1455
1456 // Must preserve cv, as always, unless we're in C-style mode.
1457 if (!CStyle && !DestType.isAtLeastAsQualifiedAs(SrcType)) {
Douglas Gregorb472e932011-04-15 17:59:54 +00001458 msg = diag::err_bad_cxx_cast_qualifiers_away;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001459 return TC_Failed;
1460 }
1461
1462 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1463 // This code is analoguous to that in CheckDerivedToBaseConversion, except
1464 // that it builds the paths in reverse order.
1465 // To sum up: record all paths to the base and build a nice string from
1466 // them. Use it to spice up the error message.
1467 if (!Paths.isRecordingPaths()) {
1468 Paths.clear();
1469 Paths.setRecordingPaths(true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001470 Self.IsDerivedFrom(OpRange.getBegin(), DestType, SrcType, Paths);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001471 }
1472 std::string PathDisplayStr;
1473 std::set<unsigned> DisplayedPaths;
David Majnemerf7e36092016-06-23 00:15:04 +00001474 for (clang::CXXBasePath &Path : Paths) {
1475 if (DisplayedPaths.insert(Path.back().SubobjectNumber).second) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001476 // We haven't displayed a path to this particular base
1477 // class subobject yet.
1478 PathDisplayStr += "\n ";
David Majnemerf7e36092016-06-23 00:15:04 +00001479 for (CXXBasePathElement &PE : llvm::reverse(Path))
1480 PathDisplayStr += PE.Base->getType().getAsString() + " -> ";
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001481 PathDisplayStr += QualType(DestType).getAsString();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001482 }
1483 }
1484
1485 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_base_to_derived_cast)
Fangrui Song6907ce22018-07-30 19:24:48 +00001486 << QualType(SrcType).getUnqualifiedType()
Douglas Gregor8f3952c2009-11-15 09:20:52 +00001487 << QualType(DestType).getUnqualifiedType()
Sebastian Redl9f831db2009-07-25 15:41:38 +00001488 << PathDisplayStr << OpRange;
1489 msg = 0;
1490 return TC_Failed;
1491 }
1492
Craig Topperc3ec1492014-05-26 06:22:03 +00001493 if (Paths.getDetectedVirtual() != nullptr) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001494 QualType VirtualBase(Paths.getDetectedVirtual(), 0);
1495 Self.Diag(OpRange.getBegin(), diag::err_static_downcast_via_virtual)
1496 << OrigSrcType << OrigDestType << VirtualBase << OpRange;
1497 msg = 0;
1498 return TC_Failed;
1499 }
1500
John McCallfe9cf0a2011-02-14 23:21:33 +00001501 if (!CStyle) {
Dmitry Polukhin5b4faee2016-04-28 09:56:22 +00001502 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1503 SrcType, DestType,
1504 Paths.front(),
1505 diag::err_downcast_from_inaccessible_base)) {
John McCallfe9cf0a2011-02-14 23:21:33 +00001506 case Sema::AR_accessible:
1507 case Sema::AR_delayed: // be optimistic
1508 case Sema::AR_dependent: // be optimistic
1509 break;
1510
1511 case Sema::AR_inaccessible:
1512 msg = 0;
1513 return TC_Failed;
1514 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001515 }
1516
Anders Carlsson7d3360f2010-04-24 19:36:51 +00001517 Self.BuildBasePathArray(Paths, BasePath);
John McCalle3027922010-08-25 11:45:40 +00001518 Kind = CK_BaseToDerived;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001519 return TC_Success;
1520}
1521
1522/// TryStaticMemberPointerUpcast - Tests whether a conversion according to
1523/// C++ 5.2.9p9 is valid:
1524///
1525/// An rvalue of type "pointer to member of D of type cv1 T" can be
1526/// converted to an rvalue of type "pointer to member of B of type cv2 T",
1527/// where B is a base class of D [...].
1528///
1529TryCastResult
Fangrui Song6907ce22018-07-30 19:24:48 +00001530TryStaticMemberPointerUpcast(Sema &Self, ExprResult &SrcExpr, QualType SrcType,
1531 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +00001532 SourceRange OpRange,
John McCalle3027922010-08-25 11:45:40 +00001533 unsigned &msg, CastKind &Kind,
John McCallcf142162010-08-07 06:22:56 +00001534 CXXCastPath &BasePath) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001535 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001536 if (!DestMemPtr)
1537 return TC_NotApplicable;
Douglas Gregorc934bc82010-03-07 23:24:59 +00001538
1539 bool WasOverloadedFunction = false;
John McCall16df1e52010-03-30 21:47:33 +00001540 DeclAccessPair FoundOverload;
John Wiegley01296292011-04-08 18:41:53 +00001541 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregor064fdb22010-04-14 23:11:21 +00001542 if (FunctionDecl *Fn
John Wiegley01296292011-04-08 18:41:53 +00001543 = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(), DestType, false,
Douglas Gregor064fdb22010-04-14 23:11:21 +00001544 FoundOverload)) {
1545 CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
1546 SrcType = Self.Context.getMemberPointerType(Fn->getType(),
1547 Self.Context.getTypeDeclType(M->getParent()).getTypePtr());
1548 WasOverloadedFunction = true;
1549 }
Douglas Gregorc934bc82010-03-07 23:24:59 +00001550 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001551
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001552 const MemberPointerType *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00001553 if (!SrcMemPtr) {
1554 msg = diag::err_bad_static_cast_member_pointer_nonmp;
1555 return TC_NotApplicable;
1556 }
Richard Smithdb0ac552015-12-18 22:40:25 +00001557
1558 // Lock down the inheritance model right now in MS ABI, whether or not the
1559 // pointee types are the same.
David Majnemeraf382652016-03-22 16:44:39 +00001560 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Richard Smithdb0ac552015-12-18 22:40:25 +00001561 (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
David Majnemeraf382652016-03-22 16:44:39 +00001562 (void)Self.isCompleteType(OpRange.getBegin(), DestType);
1563 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001564
1565 // T == T, modulo cv
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00001566 if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
1567 DestMemPtr->getPointeeType()))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001568 return TC_NotApplicable;
1569
1570 // B base of D
1571 QualType SrcClass(SrcMemPtr->getClass(), 0);
1572 QualType DestClass(DestMemPtr->getClass(), 0);
Anders Carlssonb78feca2010-04-24 19:22:20 +00001573 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Sebastian Redl9f831db2009-07-25 15:41:38 +00001574 /*DetectVirtual=*/true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001575 if (!Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001576 return TC_NotApplicable;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001577
1578 // 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 +00001579 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001580 Paths.clear();
1581 Paths.setRecordingPaths(true);
Richard Smith0f59cb32015-12-18 21:45:41 +00001582 bool StillOkay =
1583 Self.IsDerivedFrom(OpRange.getBegin(), SrcClass, DestClass, Paths);
Sebastian Redl9f831db2009-07-25 15:41:38 +00001584 assert(StillOkay);
Jeffrey Yasskinb3321532010-12-23 01:01:28 +00001585 (void)StillOkay;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001586 std::string PathDisplayStr = Self.getAmbiguousPathsDisplayString(Paths);
1587 Self.Diag(OpRange.getBegin(), diag::err_ambiguous_memptr_conv)
1588 << 1 << SrcClass << DestClass << PathDisplayStr << OpRange;
1589 msg = 0;
1590 return TC_Failed;
1591 }
1592
1593 if (const RecordType *VBase = Paths.getDetectedVirtual()) {
1594 Self.Diag(OpRange.getBegin(), diag::err_memptr_conv_via_virtual)
1595 << SrcClass << DestClass << QualType(VBase, 0) << OpRange;
1596 msg = 0;
1597 return TC_Failed;
1598 }
1599
John McCallfe9cf0a2011-02-14 23:21:33 +00001600 if (!CStyle) {
1601 switch (Self.CheckBaseClassAccess(OpRange.getBegin(),
1602 DestClass, SrcClass,
1603 Paths.front(),
1604 diag::err_upcast_to_inaccessible_base)) {
1605 case Sema::AR_accessible:
1606 case Sema::AR_delayed:
1607 case Sema::AR_dependent:
1608 // Optimistically assume that the delayed and dependent cases
1609 // will work out.
1610 break;
1611
1612 case Sema::AR_inaccessible:
1613 msg = 0;
1614 return TC_Failed;
1615 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001616 }
1617
Douglas Gregorc934bc82010-03-07 23:24:59 +00001618 if (WasOverloadedFunction) {
1619 // Resolve the address of the overloaded function again, this time
1620 // allowing complaints if something goes wrong.
Fangrui Song6907ce22018-07-30 19:24:48 +00001621 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
1622 DestType,
John McCall16df1e52010-03-30 21:47:33 +00001623 true,
1624 FoundOverload);
Douglas Gregorc934bc82010-03-07 23:24:59 +00001625 if (!Fn) {
1626 msg = 0;
1627 return TC_Failed;
1628 }
1629
John McCall16df1e52010-03-30 21:47:33 +00001630 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr, FoundOverload, Fn);
John Wiegley01296292011-04-08 18:41:53 +00001631 if (!SrcExpr.isUsable()) {
Douglas Gregorc934bc82010-03-07 23:24:59 +00001632 msg = 0;
1633 return TC_Failed;
1634 }
1635 }
1636
Anders Carlssonb78feca2010-04-24 19:22:20 +00001637 Self.BuildBasePathArray(Paths, BasePath);
John McCalle3027922010-08-25 11:45:40 +00001638 Kind = CK_DerivedToBaseMemberPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001639 return TC_Success;
1640}
1641
1642/// TryStaticImplicitCast - Tests whether a conversion according to C++ 5.2.9p2
1643/// is valid:
1644///
1645/// An expression e can be explicitly converted to a type T using a
1646/// @c static_cast if the declaration "T t(e);" is well-formed [...].
1647TryCastResult
John Wiegley01296292011-04-08 18:41:53 +00001648TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
Fangrui Song6907ce22018-07-30 19:24:48 +00001649 Sema::CheckedConversionKind CCK,
Craig Toppere335f252015-10-04 04:53:55 +00001650 SourceRange OpRange, unsigned &msg,
Sebastian Redld74dd492012-02-12 18:41:05 +00001651 CastKind &Kind, bool ListInitialization) {
Anders Carlsson85ec4ff2009-09-07 18:25:47 +00001652 if (DestType->isRecordType()) {
1653 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
Aaron Ballmanea032142012-05-07 00:02:00 +00001654 diag::err_bad_dynamic_cast_incomplete) ||
Eli Friedman93ee5ca2012-06-16 02:19:17 +00001655 Self.RequireNonAbstractType(OpRange.getBegin(), DestType,
Aaron Ballmanea032142012-05-07 00:02:00 +00001656 diag::err_allocation_of_abstract_type)) {
Anders Carlsson85ec4ff2009-09-07 18:25:47 +00001657 msg = 0;
1658 return TC_Failed;
1659 }
1660 }
Sebastian Redl0501c632012-02-12 16:37:36 +00001661
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001662 InitializedEntity Entity = InitializedEntity::InitializeTemporary(DestType);
1663 InitializationKind InitKind
John McCall31168b02011-06-15 23:02:42 +00001664 = (CCK == Sema::CCK_CStyleCast)
Sebastian Redl0501c632012-02-12 16:37:36 +00001665 ? InitializationKind::CreateCStyleCast(OpRange.getBegin(), OpRange,
Sebastian Redld74dd492012-02-12 18:41:05 +00001666 ListInitialization)
John McCall31168b02011-06-15 23:02:42 +00001667 : (CCK == Sema::CCK_FunctionalCast)
Sebastian Redld74dd492012-02-12 18:41:05 +00001668 ? InitializationKind::CreateFunctionalCast(OpRange, ListInitialization)
Richard Smith507840d2011-11-29 22:48:16 +00001669 : InitializationKind::CreateCast(OpRange);
John Wiegley01296292011-04-08 18:41:53 +00001670 Expr *SrcExprRaw = SrcExpr.get();
Richard Smithb8c0f552016-12-09 18:49:13 +00001671 // FIXME: Per DR242, we should check for an implicit conversion sequence
1672 // or for a constructor that could be invoked by direct-initialization
1673 // here, not for an initialization sequence.
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00001674 InitializationSequence InitSeq(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregore81f58e2010-11-08 03:40:48 +00001675
1676 // At this point of CheckStaticCast, if the destination is a reference,
Fangrui Song6907ce22018-07-30 19:24:48 +00001677 // or the expression is an overload expression this has to work.
Douglas Gregore81f58e2010-11-08 03:40:48 +00001678 // There is no other way that works.
1679 // On the other hand, if we're checking a C-style cast, we've still got
1680 // the reinterpret_cast way.
Fangrui Song6907ce22018-07-30 19:24:48 +00001681 bool CStyle
John McCall31168b02011-06-15 23:02:42 +00001682 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
Sebastian Redlc7ca5872011-06-05 12:23:28 +00001683 if (InitSeq.Failed() && (CStyle || !DestType->isReferenceType()))
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00001684 return TC_NotApplicable;
Fangrui Song6907ce22018-07-30 19:24:48 +00001685
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001686 ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001687 if (Result.isInvalid()) {
1688 msg = 0;
1689 return TC_Failed;
1690 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001691
Douglas Gregorb33eed02010-04-16 22:09:46 +00001692 if (InitSeq.isConstructorInitialization())
John McCalle3027922010-08-25 11:45:40 +00001693 Kind = CK_ConstructorConversion;
Douglas Gregorb33eed02010-04-16 22:09:46 +00001694 else
John McCalle3027922010-08-25 11:45:40 +00001695 Kind = CK_NoOp;
Fangrui Song6907ce22018-07-30 19:24:48 +00001696
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001697 SrcExpr = Result;
Douglas Gregor5c8ffab2010-04-16 19:30:02 +00001698 return TC_Success;
Sebastian Redl9f831db2009-07-25 15:41:38 +00001699}
1700
1701/// TryConstCast - See if a const_cast from source to destination is allowed,
1702/// and perform it if it is.
Richard Smith82c9b512013-06-14 22:27:52 +00001703static TryCastResult TryConstCast(Sema &Self, ExprResult &SrcExpr,
1704 QualType DestType, bool CStyle,
1705 unsigned &msg) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001706 DestType = Self.Context.getCanonicalType(DestType);
Richard Smith82c9b512013-06-14 22:27:52 +00001707 QualType SrcType = SrcExpr.get()->getType();
1708 bool NeedToMaterializeTemporary = false;
1709
Douglas Gregorc1ed20c2011-01-22 00:19:52 +00001710 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
Richard Smith82c9b512013-06-14 22:27:52 +00001711 // C++11 5.2.11p4:
1712 // if a pointer to T1 can be explicitly converted to the type "pointer to
1713 // T2" using a const_cast, then the following conversions can also be
1714 // made:
1715 // -- an lvalue of type T1 can be explicitly converted to an lvalue of
1716 // type T2 using the cast const_cast<T2&>;
1717 // -- a glvalue of type T1 can be explicitly converted to an xvalue of
1718 // type T2 using the cast const_cast<T2&&>; and
1719 // -- if T1 is a class type, a prvalue of type T1 can be explicitly
1720 // converted to an xvalue of type T2 using the cast const_cast<T2&&>.
1721
1722 if (isa<LValueReferenceType>(DestTypeTmp) && !SrcExpr.get()->isLValue()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001723 // Cannot const_cast non-lvalue to lvalue reference type. But if this
1724 // is C-style, static_cast might find a way, so we simply suggest a
1725 // message and tell the parent to keep searching.
1726 msg = diag::err_bad_cxx_cast_rvalue;
1727 return TC_NotApplicable;
1728 }
1729
Richard Smith82c9b512013-06-14 22:27:52 +00001730 if (isa<RValueReferenceType>(DestTypeTmp) && SrcExpr.get()->isRValue()) {
1731 if (!SrcType->isRecordType()) {
1732 // Cannot const_cast non-class prvalue to rvalue reference type. But if
1733 // this is C-style, static_cast can do this.
1734 msg = diag::err_bad_cxx_cast_rvalue;
1735 return TC_NotApplicable;
1736 }
1737
1738 // Materialize the class prvalue so that the const_cast can bind a
1739 // reference to it.
1740 NeedToMaterializeTemporary = true;
1741 }
1742
John McCalld25db7e2013-05-06 21:39:12 +00001743 // It's not completely clear under the standard whether we can
1744 // const_cast bit-field gl-values. Doing so would not be
1745 // intrinsically complicated, but for now, we say no for
1746 // consistency with other compilers and await the word of the
1747 // committee.
Richard Smith82c9b512013-06-14 22:27:52 +00001748 if (SrcExpr.get()->refersToBitField()) {
John McCalld25db7e2013-05-06 21:39:12 +00001749 msg = diag::err_bad_cxx_cast_bitfield;
1750 return TC_NotApplicable;
1751 }
1752
Sebastian Redl9f831db2009-07-25 15:41:38 +00001753 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
1754 SrcType = Self.Context.getPointerType(SrcType);
1755 }
1756
1757 // C++ 5.2.11p5: For a const_cast involving pointers to data members [...]
1758 // the rules for const_cast are the same as those used for pointers.
1759
John McCall0e704f72010-05-18 09:35:29 +00001760 if (!DestType->isPointerType() &&
1761 !DestType->isMemberPointerType() &&
1762 !DestType->isObjCObjectPointerType()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00001763 // Cannot cast to non-pointer, non-reference type. Note that, if DestType
1764 // was a reference type, we converted it to a pointer above.
1765 // The status of rvalue references isn't entirely clear, but it looks like
1766 // conversion to them is simply invalid.
1767 // C++ 5.2.11p3: For two pointer types [...]
1768 if (!CStyle)
1769 msg = diag::err_bad_const_cast_dest;
1770 return TC_NotApplicable;
1771 }
1772 if (DestType->isFunctionPointerType() ||
1773 DestType->isMemberFunctionPointerType()) {
1774 // Cannot cast direct function pointers.
1775 // C++ 5.2.11p2: [...] where T is any object type or the void type [...]
1776 // T is the ultimate pointee of source and target type.
1777 if (!CStyle)
1778 msg = diag::err_bad_const_cast_dest;
1779 return TC_NotApplicable;
1780 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00001781
Richard Smitha3405ff2018-07-11 00:19:19 +00001782 // C++ [expr.const.cast]p3:
1783 // "For two similar types T1 and T2, [...]"
1784 //
1785 // We only allow a const_cast to change cvr-qualifiers, not other kinds of
1786 // type qualifiers. (Likewise, we ignore other changes when determining
1787 // whether a cast casts away constness.)
1788 if (!Self.Context.hasCvrSimilarType(SrcType, DestType))
Sebastian Redl9f831db2009-07-25 15:41:38 +00001789 return TC_NotApplicable;
1790
Richard Smith82c9b512013-06-14 22:27:52 +00001791 if (NeedToMaterializeTemporary)
1792 // This is a const_cast from a class prvalue to an rvalue reference type.
1793 // Materialize a temporary to store the result of the conversion.
Richard Smithb8c0f552016-12-09 18:49:13 +00001794 SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcExpr.get()->getType(),
1795 SrcExpr.get(),
Tim Shen4a05bb82016-06-21 20:29:17 +00001796 /*IsLValueReference*/ false);
Richard Smith82c9b512013-06-14 22:27:52 +00001797
Sebastian Redl9f831db2009-07-25 15:41:38 +00001798 return TC_Success;
1799}
1800
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001801// Checks for undefined behavior in reinterpret_cast.
1802// The cases that is checked for is:
1803// *reinterpret_cast<T*>(&a)
1804// reinterpret_cast<T&>(a)
1805// where accessing 'a' as type 'T' will result in undefined behavior.
1806void Sema::CheckCompatibleReinterpretCast(QualType SrcType, QualType DestType,
1807 bool IsDereference,
1808 SourceRange Range) {
1809 unsigned DiagID = IsDereference ?
1810 diag::warn_pointer_indirection_from_incompatible_type :
1811 diag::warn_undefined_reinterpret_cast;
1812
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001813 if (Diags.isIgnored(DiagID, Range.getBegin()))
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001814 return;
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001815
1816 QualType SrcTy, DestTy;
1817 if (IsDereference) {
1818 if (!SrcType->getAs<PointerType>() || !DestType->getAs<PointerType>()) {
1819 return;
1820 }
1821 SrcTy = SrcType->getPointeeType();
1822 DestTy = DestType->getPointeeType();
1823 } else {
1824 if (!DestType->getAs<ReferenceType>()) {
1825 return;
1826 }
1827 SrcTy = SrcType;
1828 DestTy = DestType->getPointeeType();
1829 }
1830
1831 // Cast is compatible if the types are the same.
1832 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1833 return;
1834 }
1835 // or one of the types is a char or void type
1836 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
1837 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1838 return;
1839 }
1840 // or one of the types is a tag type.
Chandler Carruth0dc3f8d2011-05-24 07:43:19 +00001841 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001842 return;
1843 }
1844
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00001845 // FIXME: Scoped enums?
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00001846 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1847 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1848 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
1849 return;
1850 }
1851 }
1852
1853 Diag(Range.getBegin(), DiagID) << SrcType << DestType << Range;
1854}
Douglas Gregor1beec452011-03-12 01:48:56 +00001855
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00001856static void DiagnoseCastOfObjCSEL(Sema &Self, const ExprResult &SrcExpr,
1857 QualType DestType) {
1858 QualType SrcType = SrcExpr.get()->getType();
Fariborz Jahanianb4873882012-12-13 00:42:06 +00001859 if (Self.Context.hasSameType(SrcType, DestType))
1860 return;
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00001861 if (const PointerType *SrcPtrTy = SrcType->getAs<PointerType>())
1862 if (SrcPtrTy->isObjCSelType()) {
1863 QualType DT = DestType;
1864 if (isa<PointerType>(DestType))
1865 DT = DestType->getPointeeType();
1866 if (!DT.getUnqualifiedType()->isVoidType())
1867 Self.Diag(SrcExpr.get()->getExprLoc(),
1868 diag::warn_cast_pointer_from_sel)
1869 << SrcType << DestType << SrcExpr.get()->getSourceRange();
1870 }
1871}
1872
Reid Kleckner9f497332016-05-10 21:00:03 +00001873/// Diagnose casts that change the calling convention of a pointer to a function
1874/// defined in the current TU.
1875static void DiagnoseCallingConvCast(Sema &Self, const ExprResult &SrcExpr,
1876 QualType DstType, SourceRange OpRange) {
1877 // Check if this cast would change the calling convention of a function
1878 // pointer type.
1879 QualType SrcType = SrcExpr.get()->getType();
1880 if (Self.Context.hasSameType(SrcType, DstType) ||
1881 !SrcType->isFunctionPointerType() || !DstType->isFunctionPointerType())
1882 return;
1883 const auto *SrcFTy =
1884 SrcType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
1885 const auto *DstFTy =
1886 DstType->castAs<PointerType>()->getPointeeType()->castAs<FunctionType>();
1887 CallingConv SrcCC = SrcFTy->getCallConv();
1888 CallingConv DstCC = DstFTy->getCallConv();
1889 if (SrcCC == DstCC)
1890 return;
1891
1892 // We have a calling convention cast. Check if the source is a pointer to a
1893 // known, specific function that has already been defined.
1894 Expr *Src = SrcExpr.get()->IgnoreParenImpCasts();
1895 if (auto *UO = dyn_cast<UnaryOperator>(Src))
1896 if (UO->getOpcode() == UO_AddrOf)
1897 Src = UO->getSubExpr()->IgnoreParenImpCasts();
1898 auto *DRE = dyn_cast<DeclRefExpr>(Src);
1899 if (!DRE)
1900 return;
1901 auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
Reid Kleckner0b009e82017-01-31 19:37:45 +00001902 if (!FD)
Reid Kleckner9f497332016-05-10 21:00:03 +00001903 return;
1904
Reid Kleckner43be52a2016-05-11 17:43:13 +00001905 // Only warn if we are casting from the default convention to a non-default
1906 // convention. This can happen when the programmer forgot to apply the calling
Reid Kleckner0b009e82017-01-31 19:37:45 +00001907 // convention to the function declaration and then inserted this cast to
Reid Kleckner43be52a2016-05-11 17:43:13 +00001908 // satisfy the type system.
1909 CallingConv DefaultCC = Self.getASTContext().getDefaultCallingConvention(
1910 FD->isVariadic(), FD->isCXXInstanceMember());
1911 if (DstCC == DefaultCC || SrcCC != DefaultCC)
1912 return;
1913
Reid Kleckner9f497332016-05-10 21:00:03 +00001914 // Diagnose this cast, as it is probably bad.
1915 StringRef SrcCCName = FunctionType::getNameForCallConv(SrcCC);
1916 StringRef DstCCName = FunctionType::getNameForCallConv(DstCC);
1917 Self.Diag(OpRange.getBegin(), diag::warn_cast_calling_conv)
1918 << SrcCCName << DstCCName << OpRange;
1919
1920 // The checks above are cheaper than checking if the diagnostic is enabled.
1921 // However, it's worth checking if the warning is enabled before we construct
1922 // a fixit.
1923 if (Self.Diags.isIgnored(diag::warn_cast_calling_conv, OpRange.getBegin()))
1924 return;
1925
1926 // Try to suggest a fixit to change the calling convention of the function
1927 // whose address was taken. Try to use the latest macro for the convention.
1928 // For example, users probably want to write "WINAPI" instead of "__stdcall"
1929 // to match the Windows header declarations.
Reid Kleckner0b009e82017-01-31 19:37:45 +00001930 SourceLocation NameLoc = FD->getFirstDecl()->getNameInfo().getLoc();
Reid Kleckner9f497332016-05-10 21:00:03 +00001931 Preprocessor &PP = Self.getPreprocessor();
1932 SmallVector<TokenValue, 6> AttrTokens;
1933 SmallString<64> CCAttrText;
1934 llvm::raw_svector_ostream OS(CCAttrText);
1935 if (Self.getLangOpts().MicrosoftExt) {
1936 // __stdcall or __vectorcall
1937 OS << "__" << DstCCName;
1938 IdentifierInfo *II = PP.getIdentifierInfo(OS.str());
1939 AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
1940 ? TokenValue(II->getTokenID())
1941 : TokenValue(II));
1942 } else {
1943 // __attribute__((stdcall)) or __attribute__((vectorcall))
1944 OS << "__attribute__((" << DstCCName << "))";
1945 AttrTokens.push_back(tok::kw___attribute);
1946 AttrTokens.push_back(tok::l_paren);
1947 AttrTokens.push_back(tok::l_paren);
1948 IdentifierInfo *II = PP.getIdentifierInfo(DstCCName);
1949 AttrTokens.push_back(II->isKeyword(Self.getLangOpts())
1950 ? TokenValue(II->getTokenID())
1951 : TokenValue(II));
1952 AttrTokens.push_back(tok::r_paren);
1953 AttrTokens.push_back(tok::r_paren);
1954 }
1955 StringRef AttrSpelling = PP.getLastMacroWithSpelling(NameLoc, AttrTokens);
1956 if (!AttrSpelling.empty())
1957 CCAttrText = AttrSpelling;
1958 OS << ' ';
1959 Self.Diag(NameLoc, diag::note_change_calling_conv_fixit)
1960 << FD << DstCCName << FixItHint::CreateInsertion(NameLoc, CCAttrText);
1961}
1962
David Blaikie282ad872012-10-16 18:53:14 +00001963static void checkIntToPointerCast(bool CStyle, SourceLocation Loc,
1964 const Expr *SrcExpr, QualType DestType,
1965 Sema &Self) {
1966 QualType SrcType = SrcExpr->getType();
1967
1968 // Not warning on reinterpret_cast, boolean, constant expressions, etc
1969 // are not explicit design choices, but consistent with GCC's behavior.
1970 // Feel free to modify them if you've reason/evidence for an alternative.
1971 if (CStyle && SrcType->isIntegralType(Self.Context)
1972 && !SrcType->isBooleanType()
1973 && !SrcType->isEnumeralType()
1974 && !SrcExpr->isIntegerConstantExpr(Self.Context)
Ted Kremeneke3dc7f72013-05-29 21:50:46 +00001975 && Self.Context.getTypeSize(DestType) >
1976 Self.Context.getTypeSize(SrcType)) {
1977 // Separate between casts to void* and non-void* pointers.
1978 // Some APIs use (abuse) void* for something like a user context,
1979 // and often that value is an integer even if it isn't a pointer itself.
1980 // Having a separate warning flag allows users to control the warning
1981 // for their workflow.
1982 unsigned Diag = DestType->isVoidPointerType() ?
1983 diag::warn_int_to_void_pointer_cast
1984 : diag::warn_int_to_pointer_cast;
1985 Self.Diag(Loc, Diag) << SrcType << DestType;
1986 }
David Blaikie282ad872012-10-16 18:53:14 +00001987}
1988
George Burgess IV3cde9bf2016-03-19 21:36:10 +00001989static bool fixOverloadedReinterpretCastExpr(Sema &Self, QualType DestType,
1990 ExprResult &Result) {
1991 // We can only fix an overloaded reinterpret_cast if
1992 // - it is a template with explicit arguments that resolves to an lvalue
1993 // unambiguously, or
1994 // - it is the only function in an overload set that may have its address
1995 // taken.
1996
1997 Expr *E = Result.get();
1998 // TODO: what if this fails because of DiagnoseUseOfDecl or something
1999 // like it?
2000 if (Self.ResolveAndFixSingleFunctionTemplateSpecialization(
2001 Result,
2002 Expr::getValueKindForType(DestType) == VK_RValue // Convert Fun to Ptr
2003 ) &&
2004 Result.isUsable())
2005 return true;
2006
George Burgess IVbeca4a32016-06-08 00:34:22 +00002007 // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
2008 // preserves Result.
2009 Result = E;
George Burgess IV1dbfa852017-05-09 04:06:24 +00002010 if (!Self.resolveAndFixAddressOfOnlyViableOverloadCandidate(
2011 Result, /*DoFunctionPointerConversion=*/true))
George Burgess IV3cde9bf2016-03-19 21:36:10 +00002012 return false;
George Burgess IVbeca4a32016-06-08 00:34:22 +00002013 return Result.isUsable();
George Burgess IV3cde9bf2016-03-19 21:36:10 +00002014}
2015
John Wiegley01296292011-04-08 18:41:53 +00002016static TryCastResult TryReinterpretCast(Sema &Self, ExprResult &SrcExpr,
Sebastian Redl9f831db2009-07-25 15:41:38 +00002017 QualType DestType, bool CStyle,
Craig Toppere335f252015-10-04 04:53:55 +00002018 SourceRange OpRange,
Anders Carlsson9d1b34b2009-09-26 00:12:34 +00002019 unsigned &msg,
John McCalle3027922010-08-25 11:45:40 +00002020 CastKind &Kind) {
Douglas Gregor51954272010-07-13 23:17:26 +00002021 bool IsLValueCast = false;
Fangrui Song6907ce22018-07-30 19:24:48 +00002022
Sebastian Redl9f831db2009-07-25 15:41:38 +00002023 DestType = Self.Context.getCanonicalType(DestType);
John Wiegley01296292011-04-08 18:41:53 +00002024 QualType SrcType = SrcExpr.get()->getType();
Douglas Gregore81f58e2010-11-08 03:40:48 +00002025
2026 // Is the source an overloaded name? (i.e. &foo)
George Burgess IV3cde9bf2016-03-19 21:36:10 +00002027 // If so, reinterpret_cast generally can not help us here (13.4, p1, bullet 5)
Douglas Gregorb491ed32011-02-19 21:32:49 +00002028 if (SrcType == Self.Context.OverloadTy) {
George Burgess IV3cde9bf2016-03-19 21:36:10 +00002029 ExprResult FixedExpr = SrcExpr;
2030 if (!fixOverloadedReinterpretCastExpr(Self, DestType, FixedExpr))
Douglas Gregorb491ed32011-02-19 21:32:49 +00002031 return TC_NotApplicable;
George Burgess IV3cde9bf2016-03-19 21:36:10 +00002032
2033 assert(FixedExpr.isUsable() && "Invalid result fixing overloaded expr");
2034 SrcExpr = FixedExpr;
2035 SrcType = SrcExpr.get()->getType();
Douglas Gregorb491ed32011-02-19 21:32:49 +00002036 }
Douglas Gregore81f58e2010-11-08 03:40:48 +00002037
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002038 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
Richard Smithdb05f1f2012-04-29 08:24:44 +00002039 if (!SrcExpr.get()->isGLValue()) {
2040 // Cannot cast non-glvalue to (lvalue or rvalue) reference type. See the
2041 // similar comment in const_cast.
Sebastian Redl9f831db2009-07-25 15:41:38 +00002042 msg = diag::err_bad_cxx_cast_rvalue;
2043 return TC_NotApplicable;
2044 }
2045
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00002046 if (!CStyle) {
2047 Self.CheckCompatibleReinterpretCast(SrcType, DestType,
Rui Ueyama49a3ad22019-07-16 04:46:31 +00002048 /*IsDereference=*/false, OpRange);
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00002049 }
2050
Sebastian Redl9f831db2009-07-25 15:41:38 +00002051 // C++ 5.2.10p10: [...] a reference cast reinterpret_cast<T&>(x) has the
2052 // same effect as the conversion *reinterpret_cast<T*>(&x) with the
2053 // built-in & and * operators.
Argyrios Kyrtzidis47a12852011-04-22 22:31:13 +00002054
Craig Topperc3ec1492014-05-26 06:22:03 +00002055 const char *inappropriate = nullptr;
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002056 switch (SrcExpr.get()->getObjectKind()) {
Argyrios Kyrtzidis3d2185b2011-04-23 01:10:24 +00002057 case OK_Ordinary:
2058 break;
Richard Smithb8c0f552016-12-09 18:49:13 +00002059 case OK_BitField:
2060 msg = diag::err_bad_cxx_cast_bitfield;
2061 return TC_NotApplicable;
2062 // FIXME: Use a specific diagnostic for the rest of these cases.
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002063 case OK_VectorComponent: inappropriate = "vector element"; break;
2064 case OK_ObjCProperty: inappropriate = "property expression"; break;
Fangrui Song6907ce22018-07-30 19:24:48 +00002065 case OK_ObjCSubscript: inappropriate = "container subscripting expression";
Ted Kremeneke65b0862012-03-06 20:05:56 +00002066 break;
Argyrios Kyrtzidisbf042312011-04-22 23:57:57 +00002067 }
2068 if (inappropriate) {
2069 Self.Diag(OpRange.getBegin(), diag::err_bad_reinterpret_cast_reference)
2070 << inappropriate << DestType
2071 << OpRange << SrcExpr.get()->getSourceRange();
2072 msg = 0; SrcExpr = ExprError();
Argyrios Kyrtzidis47a12852011-04-22 22:31:13 +00002073 return TC_NotApplicable;
2074 }
2075
Sebastian Redl9f831db2009-07-25 15:41:38 +00002076 // This code does this transformation for the checked types.
2077 DestType = Self.Context.getPointerType(DestTypeTmp->getPointeeType());
2078 SrcType = Self.Context.getPointerType(SrcType);
Fangrui Song6907ce22018-07-30 19:24:48 +00002079
Douglas Gregor51954272010-07-13 23:17:26 +00002080 IsLValueCast = true;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002081 }
2082
2083 // Canonicalize source for comparison.
2084 SrcType = Self.Context.getCanonicalType(SrcType);
2085
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002086 const MemberPointerType *DestMemPtr = DestType->getAs<MemberPointerType>(),
2087 *SrcMemPtr = SrcType->getAs<MemberPointerType>();
Sebastian Redl9f831db2009-07-25 15:41:38 +00002088 if (DestMemPtr && SrcMemPtr) {
2089 // C++ 5.2.10p9: An rvalue of type "pointer to member of X of type T1"
2090 // can be explicitly converted to an rvalue of type "pointer to member
2091 // of Y of type T2" if T1 and T2 are both function types or both object
2092 // types.
David Majnemer5fd33e02015-04-24 01:25:08 +00002093 if (DestMemPtr->isMemberFunctionPointer() !=
2094 SrcMemPtr->isMemberFunctionPointer())
Sebastian Redl9f831db2009-07-25 15:41:38 +00002095 return TC_NotApplicable;
2096
David Majnemer1cdd96d2014-01-17 09:01:00 +00002097 if (Self.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
2098 // We need to determine the inheritance model that the class will use if
2099 // haven't yet.
Richard Smithdb0ac552015-12-18 22:40:25 +00002100 (void)Self.isCompleteType(OpRange.getBegin(), SrcType);
2101 (void)Self.isCompleteType(OpRange.getBegin(), DestType);
David Majnemer1cdd96d2014-01-17 09:01:00 +00002102 }
2103
Charles Davisebab1ed2010-08-16 05:30:44 +00002104 // Don't allow casting between member pointers of different sizes.
2105 if (Self.Context.getTypeSize(DestMemPtr) !=
2106 Self.Context.getTypeSize(SrcMemPtr)) {
2107 msg = diag::err_bad_cxx_cast_member_pointer_size;
2108 return TC_Failed;
2109 }
2110
Richard Smithf276e2d2018-07-10 23:04:35 +00002111 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away
2112 // constness.
2113 // A reinterpret_cast followed by a const_cast can, though, so in C-style,
2114 // we accept it.
2115 if (auto CACK =
2116 CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2117 /*CheckObjCLifetime=*/CStyle))
2118 return getCastAwayConstnessCastKind(CACK, msg);
2119
Sebastian Redl9f831db2009-07-25 15:41:38 +00002120 // A valid member pointer cast.
John McCallc62bb392012-02-15 01:22:51 +00002121 assert(!IsLValueCast);
2122 Kind = CK_ReinterpretMemberPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002123 return TC_Success;
2124 }
2125
2126 // See below for the enumeral issue.
Douglas Gregor6972a622010-06-16 00:35:25 +00002127 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002128 // C++0x 5.2.10p4: A pointer can be explicitly converted to any integral
2129 // type large enough to hold it. A value of std::nullptr_t can be
2130 // converted to an integral type; the conversion has the same meaning
2131 // and validity as a conversion of (void*)0 to the integral type.
2132 if (Self.Context.getTypeSize(SrcType) >
2133 Self.Context.getTypeSize(DestType)) {
2134 msg = diag::err_bad_reinterpret_cast_small_int;
2135 return TC_Failed;
2136 }
John McCalle3027922010-08-25 11:45:40 +00002137 Kind = CK_PointerToIntegral;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002138 return TC_Success;
2139 }
2140
John McCall1c78f082015-07-23 23:54:07 +00002141 // Allow reinterpret_casts between vectors of the same size and
2142 // between vectors and integers of the same size.
Anders Carlsson570af5d2009-09-16 19:19:43 +00002143 bool destIsVector = DestType->isVectorType();
2144 bool srcIsVector = SrcType->isVectorType();
2145 if (srcIsVector || destIsVector) {
John McCall1c78f082015-07-23 23:54:07 +00002146 // The non-vector type, if any, must have integral type. This is
2147 // the same rule that C vector casts use; note, however, that enum
2148 // types are not integral in C++.
2149 if ((!destIsVector && !DestType->isIntegralType(Self.Context)) ||
2150 (!srcIsVector && !SrcType->isIntegralType(Self.Context)))
Anders Carlsson570af5d2009-09-16 19:19:43 +00002151 return TC_NotApplicable;
2152
John McCall1c78f082015-07-23 23:54:07 +00002153 // The size we want to consider is eltCount * eltSize.
2154 // That's exactly what the lax-conversion rules will check.
2155 if (Self.areLaxCompatibleVectorTypes(SrcType, DestType)) {
John McCalle3027922010-08-25 11:45:40 +00002156 Kind = CK_BitCast;
Anders Carlsson570af5d2009-09-16 19:19:43 +00002157 return TC_Success;
Douglas Gregor19fc0b72009-12-22 22:47:22 +00002158 }
John McCall1c78f082015-07-23 23:54:07 +00002159
2160 // Otherwise, pick a reasonable diagnostic.
2161 if (!destIsVector)
Anders Carlsson570af5d2009-09-16 19:19:43 +00002162 msg = diag::err_bad_cxx_cast_vector_to_scalar_different_size;
John McCall1c78f082015-07-23 23:54:07 +00002163 else if (!srcIsVector)
Anders Carlsson570af5d2009-09-16 19:19:43 +00002164 msg = diag::err_bad_cxx_cast_scalar_to_vector_different_size;
2165 else
2166 msg = diag::err_bad_cxx_cast_vector_to_vector_different_size;
Fangrui Song6907ce22018-07-30 19:24:48 +00002167
Anders Carlsson570af5d2009-09-16 19:19:43 +00002168 return TC_Failed;
2169 }
Chad Rosier96c755d12012-02-03 02:54:37 +00002170
2171 if (SrcType == DestType) {
2172 // C++ 5.2.10p2 has a note that mentions that, subject to all other
2173 // restrictions, a cast to the same type is allowed so long as it does not
Fangrui Song6907ce22018-07-30 19:24:48 +00002174 // cast away constness. In C++98, the intent was not entirely clear here,
Chad Rosier96c755d12012-02-03 02:54:37 +00002175 // since all other paragraphs explicitly forbid casts to the same type.
2176 // C++11 clarifies this case with p2.
2177 //
Fangrui Song6907ce22018-07-30 19:24:48 +00002178 // The only allowed types are: integral, enumeration, pointer, or
Chad Rosier96c755d12012-02-03 02:54:37 +00002179 // pointer-to-member types. We also won't restrict Obj-C pointers either.
2180 Kind = CK_NoOp;
2181 TryCastResult Result = TC_NotApplicable;
2182 if (SrcType->isIntegralOrEnumerationType() ||
2183 SrcType->isAnyPointerType() ||
2184 SrcType->isMemberPointerType() ||
2185 SrcType->isBlockPointerType()) {
2186 Result = TC_Success;
2187 }
2188 return Result;
2189 }
2190
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002191 bool destIsPtr = DestType->isAnyPointerType() ||
2192 DestType->isBlockPointerType();
2193 bool srcIsPtr = SrcType->isAnyPointerType() ||
2194 SrcType->isBlockPointerType();
Sebastian Redl9f831db2009-07-25 15:41:38 +00002195 if (!destIsPtr && !srcIsPtr) {
2196 // Except for std::nullptr_t->integer and lvalue->reference, which are
2197 // handled above, at least one of the two arguments must be a pointer.
2198 return TC_NotApplicable;
2199 }
2200
Douglas Gregor6972a622010-06-16 00:35:25 +00002201 if (DestType->isIntegralType(Self.Context)) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002202 assert(srcIsPtr && "One type must be a pointer");
2203 // C++ 5.2.10p4: A pointer can be explicitly converted to any integral
Francois Pichetb796b632011-05-11 22:13:54 +00002204 // type large enough to hold it; except in Microsoft mode, where the
Hans Wennborg15439bc2013-06-06 09:16:36 +00002205 // integral type size doesn't matter (except we don't allow bool).
2206 bool MicrosoftException = Self.getLangOpts().MicrosoftExt &&
2207 !DestType->isBooleanType();
Francois Pichetb796b632011-05-11 22:13:54 +00002208 if ((Self.Context.getTypeSize(SrcType) >
2209 Self.Context.getTypeSize(DestType)) &&
Hans Wennborg15439bc2013-06-06 09:16:36 +00002210 !MicrosoftException) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002211 msg = diag::err_bad_reinterpret_cast_small_int;
2212 return TC_Failed;
2213 }
John McCalle3027922010-08-25 11:45:40 +00002214 Kind = CK_PointerToIntegral;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002215 return TC_Success;
2216 }
2217
Douglas Gregorb90df602010-06-16 00:17:44 +00002218 if (SrcType->isIntegralOrEnumerationType()) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00002219 assert(destIsPtr && "One type must be a pointer");
David Blaikie282ad872012-10-16 18:53:14 +00002220 checkIntToPointerCast(CStyle, OpRange.getBegin(), SrcExpr.get(), DestType,
2221 Self);
Sebastian Redl9f831db2009-07-25 15:41:38 +00002222 // C++ 5.2.10p5: A value of integral or enumeration type can be explicitly
2223 // converted to a pointer.
John McCalle84af4e2010-11-13 01:35:44 +00002224 // C++ 5.2.10p9: [Note: ...a null pointer constant of integral type is not
2225 // necessarily converted to a null pointer value.]
John McCalle3027922010-08-25 11:45:40 +00002226 Kind = CK_IntegralToPointer;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002227 return TC_Success;
2228 }
2229
2230 if (!destIsPtr || !srcIsPtr) {
2231 // With the valid non-pointer conversions out of the way, we can be even
2232 // more stringent.
2233 return TC_NotApplicable;
2234 }
2235
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002236 // Cannot convert between block pointers and Objective-C object pointers.
2237 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) ||
2238 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType()))
2239 return TC_NotApplicable;
2240
Richard Smithf276e2d2018-07-10 23:04:35 +00002241 // C++ 5.2.10p2: The reinterpret_cast operator shall not cast away constness.
2242 // The C-style cast operator can.
2243 TryCastResult SuccessResult = TC_Success;
2244 if (auto CACK =
2245 CastsAwayConstness(Self, SrcType, DestType, /*CheckCVR=*/!CStyle,
2246 /*CheckObjCLifetime=*/CStyle))
2247 SuccessResult = getCastAwayConstnessCastKind(CACK, msg);
2248
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002249 if (IsAddressSpaceConversion(SrcType, DestType)) {
2250 Kind = CK_AddressSpaceConversion;
2251 assert(SrcType->isPointerType() && DestType->isPointerType());
2252 if (!CStyle &&
2253 !DestType->getPointeeType().getQualifiers().isAddressSpaceSupersetOf(
2254 SrcType->getPointeeType().getQualifiers())) {
2255 SuccessResult = TC_Failed;
2256 }
2257 } else if (IsLValueCast) {
John McCall9320b872011-09-09 05:25:32 +00002258 Kind = CK_LValueBitCast;
2259 } else if (DestType->isObjCObjectPointerType()) {
John McCallcd78e802011-09-10 01:16:55 +00002260 Kind = Self.PrepareCastToObjCObjectPointer(SrcExpr);
John McCall9320b872011-09-09 05:25:32 +00002261 } else if (DestType->isBlockPointerType()) {
2262 if (!SrcType->isBlockPointerType()) {
2263 Kind = CK_AnyPointerToBlockPointerCast;
2264 } else {
2265 Kind = CK_BitCast;
2266 }
2267 } else {
2268 Kind = CK_BitCast;
2269 }
2270
Douglas Gregoreaff2cb2010-07-08 20:27:32 +00002271 // Any pointer can be cast to an Objective-C pointer type with a C-style
2272 // cast.
Fariborz Jahanian859c4152009-12-08 23:09:15 +00002273 if (CStyle && DestType->isObjCObjectPointerType()) {
Richard Smithf276e2d2018-07-10 23:04:35 +00002274 return SuccessResult;
Fariborz Jahanian859c4152009-12-08 23:09:15 +00002275 }
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00002276 if (CStyle)
2277 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
Reid Kleckner9f497332016-05-10 21:00:03 +00002278
2279 DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
2280
Sebastian Redl9f831db2009-07-25 15:41:38 +00002281 // Not casting away constness, so the only remaining check is for compatible
2282 // pointer categories.
2283
2284 if (SrcType->isFunctionPointerType()) {
2285 if (DestType->isFunctionPointerType()) {
2286 // C++ 5.2.10p6: A pointer to a function can be explicitly converted to
2287 // a pointer to a function of a different type.
Richard Smithf276e2d2018-07-10 23:04:35 +00002288 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002289 }
2290
2291 // C++0x 5.2.10p8: Converting a pointer to a function into a pointer to
2292 // an object type or vice versa is conditionally-supported.
2293 // Compilers support it in C++03 too, though, because it's necessary for
2294 // casting the return value of dlsym() and GetProcAddress().
2295 // FIXME: Conditionally-supported behavior should be configurable in the
2296 // TargetInfo or similar.
Richard Smith0bf8a4922011-10-18 20:49:44 +00002297 Self.Diag(OpRange.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002298 Self.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00002299 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2300 << OpRange;
Richard Smithf276e2d2018-07-10 23:04:35 +00002301 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002302 }
2303
2304 if (DestType->isFunctionPointerType()) {
2305 // See above.
Richard Smith0bf8a4922011-10-18 20:49:44 +00002306 Self.Diag(OpRange.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002307 Self.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00002308 diag::warn_cxx98_compat_cast_fn_obj : diag::ext_cast_fn_obj)
2309 << OpRange;
Richard Smithf276e2d2018-07-10 23:04:35 +00002310 return SuccessResult;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002311 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002312
Sebastian Redl9f831db2009-07-25 15:41:38 +00002313 // C++ 5.2.10p7: A pointer to an object can be explicitly converted to
2314 // a pointer to an object of different type.
2315 // Void pointers are not specified, but supported by every compiler out there.
2316 // So we finish by allowing everything that remains - it's got to be two
2317 // object pointers.
Richard Smithf276e2d2018-07-10 23:04:35 +00002318 return SuccessResult;
2319}
Sebastian Redl9f831db2009-07-25 15:41:38 +00002320
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002321static TryCastResult TryAddressSpaceCast(Sema &Self, ExprResult &SrcExpr,
2322 QualType DestType, bool CStyle,
2323 unsigned &msg) {
2324 if (!Self.getLangOpts().OpenCL)
2325 // FIXME: As compiler doesn't have any information about overlapping addr
2326 // spaces at the moment we have to be permissive here.
2327 return TC_NotApplicable;
2328 // Even though the logic below is general enough and can be applied to
2329 // non-OpenCL mode too, we fast-path above because no other languages
2330 // define overlapping address spaces currently.
2331 auto SrcType = SrcExpr.get()->getType();
2332 auto SrcPtrType = SrcType->getAs<PointerType>();
2333 if (!SrcPtrType)
2334 return TC_NotApplicable;
2335 auto DestPtrType = DestType->getAs<PointerType>();
2336 if (!DestPtrType)
2337 return TC_NotApplicable;
2338 auto SrcPointeeType = SrcPtrType->getPointeeType();
2339 auto DestPointeeType = DestPtrType->getPointeeType();
2340 if (SrcPointeeType.getAddressSpace() == DestPointeeType.getAddressSpace())
2341 return TC_NotApplicable;
2342 if (!DestPtrType->isAddressSpaceOverlapping(*SrcPtrType)) {
2343 msg = diag::err_bad_cxx_cast_addr_space_mismatch;
2344 return TC_Failed;
2345 }
2346 auto SrcPointeeTypeWithoutAS =
2347 Self.Context.removeAddrSpaceQualType(SrcPointeeType.getCanonicalType());
2348 auto DestPointeeTypeWithoutAS =
2349 Self.Context.removeAddrSpaceQualType(DestPointeeType.getCanonicalType());
2350 return Self.Context.hasSameType(SrcPointeeTypeWithoutAS,
2351 DestPointeeTypeWithoutAS)
2352 ? TC_Success
2353 : TC_NotApplicable;
2354}
2355
Anastasia Stulova5325f832018-10-10 16:05:22 +00002356void CastOperation::checkAddressSpaceCast(QualType SrcType, QualType DestType) {
2357 // In OpenCL only conversions between pointers to objects in overlapping
2358 // addr spaces are allowed. v2.0 s6.5.5 - Generic addr space overlaps
2359 // with any named one, except for constant.
Anastasia Stulova5b6dda32019-05-08 14:23:49 +00002360
2361 // Converting the top level pointee addrspace is permitted for compatible
2362 // addrspaces (such as 'generic int *' to 'local int *' or vice versa), but
2363 // if any of the nested pointee addrspaces differ, we emit a warning
2364 // regardless of addrspace compatibility. This makes
2365 // local int ** p;
2366 // return (generic int **) p;
2367 // warn even though local -> generic is permitted.
Anastasia Stulova5325f832018-10-10 16:05:22 +00002368 if (Self.getLangOpts().OpenCL) {
Anastasia Stulova5b6dda32019-05-08 14:23:49 +00002369 const Type *DestPtr, *SrcPtr;
2370 bool Nested = false;
2371 unsigned DiagID = diag::err_typecheck_incompatible_address_space;
2372 DestPtr = Self.getASTContext().getCanonicalType(DestType.getTypePtr()),
2373 SrcPtr = Self.getASTContext().getCanonicalType(SrcType.getTypePtr());
2374
2375 while (isa<PointerType>(DestPtr) && isa<PointerType>(SrcPtr)) {
2376 const PointerType *DestPPtr = cast<PointerType>(DestPtr);
2377 const PointerType *SrcPPtr = cast<PointerType>(SrcPtr);
2378 QualType DestPPointee = DestPPtr->getPointeeType();
2379 QualType SrcPPointee = SrcPPtr->getPointeeType();
2380 if (Nested ? DestPPointee.getAddressSpace() !=
2381 SrcPPointee.getAddressSpace()
2382 : !DestPPtr->isAddressSpaceOverlapping(*SrcPPtr)) {
2383 Self.Diag(OpRange.getBegin(), DiagID)
2384 << SrcType << DestType << Sema::AA_Casting
2385 << SrcExpr.get()->getSourceRange();
2386 if (!Nested)
2387 SrcExpr = ExprError();
2388 return;
2389 }
2390
2391 DestPtr = DestPPtr->getPointeeType().getTypePtr();
2392 SrcPtr = SrcPPtr->getPointeeType().getTypePtr();
2393 Nested = true;
2394 DiagID = diag::ext_nested_pointer_qualifier_mismatch;
Anastasia Stulova5325f832018-10-10 16:05:22 +00002395 }
2396 }
2397}
2398
Sebastian Redld74dd492012-02-12 18:41:05 +00002399void CastOperation::CheckCXXCStyleCast(bool FunctionalStyle,
2400 bool ListInitialization) {
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002401 assert(Self.getLangOpts().CPlusPlus);
2402
John McCall9776e432011-10-06 23:25:11 +00002403 // Handle placeholders.
2404 if (isPlaceholder()) {
2405 // C-style casts can resolve __unknown_any types.
2406 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2407 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2408 SrcExpr.get(), Kind,
2409 ValueKind, BasePath);
2410 return;
2411 }
John McCallb50451a2011-10-05 07:41:44 +00002412
John McCall9776e432011-10-06 23:25:11 +00002413 checkNonOverloadPlaceholders();
2414 if (SrcExpr.isInvalid())
2415 return;
John McCalla072f5d2011-10-17 17:42:19 +00002416 }
John McCall9776e432011-10-06 23:25:11 +00002417
2418 // C++ 5.2.9p4: Any expression can be explicitly converted to type "cv void".
Sebastian Redl9f831db2009-07-25 15:41:38 +00002419 // This test is outside everything else because it's the only case where
2420 // a non-lvalue-reference target type does not lead to decay.
John McCallb50451a2011-10-05 07:41:44 +00002421 if (DestType->isVoidType()) {
John McCall3aef3d82011-04-10 19:13:55 +00002422 Kind = CK_ToVoid;
2423
John McCall9776e432011-10-06 23:25:11 +00002424 if (claimPlaceholder(BuiltinType::Overload)) {
John McCall50a2c2c2011-10-11 23:14:30 +00002425 Self.ResolveAndFixSingleFunctionTemplateSpecialization(
Fangrui Song6907ce22018-07-30 19:24:48 +00002426 SrcExpr, /* Decay Function to ptr */ false,
John McCallb50451a2011-10-05 07:41:44 +00002427 /* Complain */ true, DestRange, DestType,
Douglas Gregor1beec452011-03-12 01:48:56 +00002428 diag::err_bad_cstyle_cast_overload);
John McCallb50451a2011-10-05 07:41:44 +00002429 if (SrcExpr.isInvalid())
2430 return;
Douglas Gregorb491ed32011-02-19 21:32:49 +00002431 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002432
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002433 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002434 return;
Anton Yartsev28ccef72011-03-27 09:32:40 +00002435 }
2436
Sebastian Redl9f831db2009-07-25 15:41:38 +00002437 // If the type is dependent, we won't do any other semantic analysis now.
Eli Friedman71271082013-09-19 01:12:33 +00002438 if (DestType->isDependentType() || SrcExpr.get()->isTypeDependent() ||
2439 SrcExpr.get()->isValueDependent()) {
John McCallb50451a2011-10-05 07:41:44 +00002440 assert(Kind == CK_Dependent);
2441 return;
John McCall8cb679e2010-11-15 09:13:47 +00002442 }
Benjamin Kramer65cc1072011-07-08 20:20:17 +00002443
John McCall50a2c2c2011-10-11 23:14:30 +00002444 if (ValueKind == VK_RValue && !DestType->isRecordType() &&
2445 !isPlaceholder(BuiltinType::Overload)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002446 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002447 if (SrcExpr.isInvalid())
2448 return;
John Wiegley01296292011-04-08 18:41:53 +00002449 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002450
John McCall3aef3d82011-04-10 19:13:55 +00002451 // AltiVec vector initialization with a single literal.
John McCallb50451a2011-10-05 07:41:44 +00002452 if (const VectorType *vecTy = DestType->getAs<VectorType>())
John McCall3aef3d82011-04-10 19:13:55 +00002453 if (vecTy->getVectorKind() == VectorType::AltiVecVector
John McCallb50451a2011-10-05 07:41:44 +00002454 && (SrcExpr.get()->getType()->isIntegerType()
2455 || SrcExpr.get()->getType()->isFloatingType())) {
John McCall3aef3d82011-04-10 19:13:55 +00002456 Kind = CK_VectorSplat;
George Burgess IVdf1ed002016-01-13 01:52:39 +00002457 SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
John McCallb50451a2011-10-05 07:41:44 +00002458 return;
John McCall3aef3d82011-04-10 19:13:55 +00002459 }
2460
Sebastian Redl9f831db2009-07-25 15:41:38 +00002461 // C++ [expr.cast]p5: The conversions performed by
2462 // - a const_cast,
2463 // - a static_cast,
2464 // - a static_cast followed by a const_cast,
2465 // - a reinterpret_cast, or
2466 // - a reinterpret_cast followed by a const_cast,
2467 // can be performed using the cast notation of explicit type conversion.
2468 // [...] If a conversion can be interpreted in more than one of the ways
2469 // listed above, the interpretation that appears first in the list is used,
2470 // even if a cast resulting from that interpretation is ill-formed.
2471 // In plain language, this means trying a const_cast ...
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002472 // Note that for address space we check compatibility after const_cast.
Sebastian Redl9f831db2009-07-25 15:41:38 +00002473 unsigned msg = diag::err_bad_cxx_cast_generic;
Richard Smith82c9b512013-06-14 22:27:52 +00002474 TryCastResult tcr = TryConstCast(Self, SrcExpr, DestType,
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002475 /*CStyle*/ true, msg);
Richard Smith82c9b512013-06-14 22:27:52 +00002476 if (SrcExpr.isInvalid())
2477 return;
Richard Smithf276e2d2018-07-10 23:04:35 +00002478 if (isValidCast(tcr))
John McCalle3027922010-08-25 11:45:40 +00002479 Kind = CK_NoOp;
Anders Carlsson027732b2009-10-19 18:14:28 +00002480
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002481 Sema::CheckedConversionKind CCK =
2482 FunctionalStyle ? Sema::CCK_FunctionalCast : Sema::CCK_CStyleCast;
Sebastian Redl9f831db2009-07-25 15:41:38 +00002483 if (tcr == TC_NotApplicable) {
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002484 tcr = TryAddressSpaceCast(Self, SrcExpr, DestType, /*CStyle*/ true, msg);
John McCallb50451a2011-10-05 07:41:44 +00002485 if (SrcExpr.isInvalid())
2486 return;
Anastasia Stulova5099aef2019-06-03 15:42:36 +00002487
2488 if (isValidCast(tcr))
2489 Kind = CK_AddressSpaceConversion;
2490
Sebastian Redl9f831db2009-07-25 15:41:38 +00002491 if (tcr == TC_NotApplicable) {
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002492 // ... or if that is not possible, a static_cast, ignoring const, ...
2493 tcr = TryStaticCast(Self, SrcExpr, DestType, CCK, OpRange, msg, Kind,
2494 BasePath, ListInitialization);
John McCallb50451a2011-10-05 07:41:44 +00002495 if (SrcExpr.isInvalid())
2496 return;
Anastasia Stulova6f7c5362019-03-07 17:06:30 +00002497
2498 if (tcr == TC_NotApplicable) {
2499 // ... and finally a reinterpret_cast, ignoring const.
2500 tcr = TryReinterpretCast(Self, SrcExpr, DestType, /*CStyle*/ true,
2501 OpRange, msg, Kind);
2502 if (SrcExpr.isInvalid())
2503 return;
2504 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002505 }
2506 }
2507
Brian Kelley11352a82017-03-29 18:09:02 +00002508 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
Richard Smithf276e2d2018-07-10 23:04:35 +00002509 isValidCast(tcr))
Brian Kelley11352a82017-03-29 18:09:02 +00002510 checkObjCConversion(CCK);
John McCall31168b02011-06-15 23:02:42 +00002511
Nick Lewycky14d88eb2010-11-09 00:19:31 +00002512 if (tcr != TC_Success && msg != 0) {
John McCallb50451a2011-10-05 07:41:44 +00002513 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
Douglas Gregore81f58e2010-11-08 03:40:48 +00002514 DeclAccessPair Found;
John McCallb50451a2011-10-05 07:41:44 +00002515 FunctionDecl *Fn = Self.ResolveAddressOfOverloadedFunction(SrcExpr.get(),
2516 DestType,
2517 /*Complain*/ true,
Douglas Gregore81f58e2010-11-08 03:40:48 +00002518 Found);
Logan Chienaf24ad92014-04-13 16:08:24 +00002519 if (Fn) {
2520 // If DestType is a function type (not to be confused with the function
2521 // pointer type), it will be possible to resolve the function address,
2522 // but the type cast should be considered as failure.
2523 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression;
2524 Self.Diag(OpRange.getBegin(), diag::err_bad_cstyle_cast_overload)
2525 << OE->getName() << DestType << OpRange
2526 << OE->getQualifierLoc().getSourceRange();
2527 Self.NoteAllOverloadCandidates(SrcExpr.get());
2528 }
Nick Lewycky14d88eb2010-11-09 00:19:31 +00002529 } else {
John McCallb50451a2011-10-05 07:41:44 +00002530 diagnoseBadCast(Self, msg, (FunctionalStyle ? CT_Functional : CT_CStyle),
Sebastian Redl2b80af42012-02-13 19:55:43 +00002531 OpRange, SrcExpr.get(), DestType, ListInitialization);
Douglas Gregore81f58e2010-11-08 03:40:48 +00002532 }
2533 }
Sebastian Redl9f831db2009-07-25 15:41:38 +00002534
Richard Smithf276e2d2018-07-10 23:04:35 +00002535 if (isValidCast(tcr)) {
2536 if (Kind == CK_BitCast)
2537 checkCastAlign();
2538 } else {
John McCallb50451a2011-10-05 07:41:44 +00002539 SrcExpr = ExprError();
Richard Smithf276e2d2018-07-10 23:04:35 +00002540 }
John McCallb50451a2011-10-05 07:41:44 +00002541}
2542
Fangrui Song6907ce22018-07-30 19:24:48 +00002543/// DiagnoseBadFunctionCast - Warn whenever a function call is cast to a
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002544/// non-matching type. Such as enum function call to int, int call to
2545/// pointer; etc. Cast to 'void' is an exception.
2546static void DiagnoseBadFunctionCast(Sema &Self, const ExprResult &SrcExpr,
2547 QualType DestType) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002548 if (Self.Diags.isIgnored(diag::warn_bad_function_cast,
2549 SrcExpr.get()->getExprLoc()))
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002550 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002551
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002552 if (!isa<CallExpr>(SrcExpr.get()))
2553 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002554
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002555 QualType SrcType = SrcExpr.get()->getType();
2556 if (DestType.getUnqualifiedType()->isVoidType())
2557 return;
2558 if ((SrcType->isAnyPointerType() || SrcType->isBlockPointerType())
2559 && (DestType->isAnyPointerType() || DestType->isBlockPointerType()))
2560 return;
2561 if (SrcType->isIntegerType() && DestType->isIntegerType() &&
2562 (SrcType->isBooleanType() == DestType->isBooleanType()) &&
2563 (SrcType->isEnumeralType() == DestType->isEnumeralType()))
2564 return;
2565 if (SrcType->isRealFloatingType() && DestType->isRealFloatingType())
2566 return;
2567 if (SrcType->isEnumeralType() && DestType->isEnumeralType())
2568 return;
2569 if (SrcType->isComplexType() && DestType->isComplexType())
2570 return;
2571 if (SrcType->isComplexIntegerType() && DestType->isComplexIntegerType())
2572 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002573
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002574 Self.Diag(SrcExpr.get()->getExprLoc(),
2575 diag::warn_bad_function_cast)
2576 << SrcType << DestType << SrcExpr.get()->getSourceRange();
2577}
2578
John McCall9776e432011-10-06 23:25:11 +00002579/// Check the semantics of a C-style cast operation, in C.
2580void CastOperation::CheckCStyleCast() {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002581 assert(!Self.getLangOpts().CPlusPlus);
John McCall9776e432011-10-06 23:25:11 +00002582
John McCall4124c492011-10-17 18:40:02 +00002583 // C-style casts can resolve __unknown_any types.
2584 if (claimPlaceholder(BuiltinType::UnknownAny)) {
2585 SrcExpr = Self.checkUnknownAnyCast(DestRange, DestType,
2586 SrcExpr.get(), Kind,
2587 ValueKind, BasePath);
2588 return;
2589 }
John McCall9776e432011-10-06 23:25:11 +00002590
2591 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
2592 // type needs to be scalar.
2593 if (DestType->isVoidType()) {
2594 // We don't necessarily do lvalue-to-rvalue conversions on this.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002595 SrcExpr = Self.IgnoredValueConversions(SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002596 if (SrcExpr.isInvalid())
2597 return;
2598
2599 // Cast to void allows any expr type.
2600 Kind = CK_ToVoid;
2601 return;
2602 }
2603
George Burgess IV5f21c712015-10-12 19:57:04 +00002604 // Overloads are allowed with C extensions, so we need to support them.
2605 if (SrcExpr.get()->getType() == Self.Context.OverloadTy) {
2606 DeclAccessPair DAP;
2607 if (FunctionDecl *FD = Self.ResolveAddressOfOverloadedFunction(
2608 SrcExpr.get(), DestType, /*Complain=*/true, DAP))
2609 SrcExpr = Self.FixOverloadedFunctionReference(SrcExpr.get(), DAP, FD);
2610 else
2611 return;
2612 assert(SrcExpr.isUsable());
2613 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002614 SrcExpr = Self.DefaultFunctionArrayLvalueConversion(SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002615 if (SrcExpr.isInvalid())
2616 return;
2617 QualType SrcType = SrcExpr.get()->getType();
David Chisnallfa35df62012-01-16 17:27:18 +00002618
John McCall4124c492011-10-17 18:40:02 +00002619 assert(!SrcType->isPlaceholderType());
John McCall9776e432011-10-06 23:25:11 +00002620
Anastasia Stulova5325f832018-10-10 16:05:22 +00002621 checkAddressSpaceCast(SrcType, DestType);
2622 if (SrcExpr.isInvalid())
2623 return;
Joey Gouly8fc32f02014-01-14 12:47:29 +00002624
John McCall9776e432011-10-06 23:25:11 +00002625 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2626 diag::err_typecheck_cast_to_incomplete)) {
2627 SrcExpr = ExprError();
2628 return;
2629 }
2630
2631 if (!DestType->isScalarType() && !DestType->isVectorType()) {
2632 const RecordType *DestRecordTy = DestType->getAs<RecordType>();
2633
2634 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
2635 // GCC struct/union extension: allow cast to self.
2636 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_nonscalar)
2637 << DestType << SrcExpr.get()->getSourceRange();
2638 Kind = CK_NoOp;
2639 return;
2640 }
2641
2642 // GCC's cast to union extension.
2643 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) {
2644 RecordDecl *RD = DestRecordTy->getDecl();
John McCallf1ef7962017-08-15 21:42:47 +00002645 if (CastExpr::getTargetFieldForToUnionCast(RD, SrcType)) {
2646 Self.Diag(OpRange.getBegin(), diag::ext_typecheck_cast_to_union)
2647 << SrcExpr.get()->getSourceRange();
2648 Kind = CK_ToUnion;
2649 return;
2650 } else {
John McCall9776e432011-10-06 23:25:11 +00002651 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cast_to_union_no_type)
2652 << SrcType << SrcExpr.get()->getSourceRange();
2653 SrcExpr = ExprError();
2654 return;
2655 }
John McCall9776e432011-10-06 23:25:11 +00002656 }
2657
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002658 // OpenCL v2.0 s6.13.10 - Allow casts from '0' to event_t type.
2659 if (Self.getLangOpts().OpenCL && DestType->isEventT()) {
Fangrui Song407659a2018-11-30 23:41:18 +00002660 Expr::EvalResult Result;
2661 if (SrcExpr.get()->EvaluateAsInt(Result, Self.Context)) {
2662 llvm::APSInt CastInt = Result.Val.getInt();
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002663 if (0 == CastInt) {
Andrew Savonichevb555b762018-10-23 15:19:20 +00002664 Kind = CK_ZeroToOCLOpaqueType;
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002665 return;
2666 }
2667 Self.Diag(OpRange.getBegin(),
Richard Smithf8812672016-12-02 22:38:31 +00002668 diag::err_opencl_cast_non_zero_to_event_t)
Yaxun Liuc537c8a2016-05-20 17:18:16 +00002669 << CastInt.toString(10) << SrcExpr.get()->getSourceRange();
2670 SrcExpr = ExprError();
2671 return;
2672 }
2673 }
2674
John McCall9776e432011-10-06 23:25:11 +00002675 // Reject any other conversions to non-scalar types.
2676 Self.Diag(OpRange.getBegin(), diag::err_typecheck_cond_expect_scalar)
2677 << DestType << SrcExpr.get()->getSourceRange();
2678 SrcExpr = ExprError();
2679 return;
2680 }
2681
2682 // The type we're casting to is known to be a scalar or vector.
2683
2684 // Require the operand to be a scalar or vector.
2685 if (!SrcType->isScalarType() && !SrcType->isVectorType()) {
2686 Self.Diag(SrcExpr.get()->getExprLoc(),
2687 diag::err_typecheck_expect_scalar_operand)
2688 << SrcType << SrcExpr.get()->getSourceRange();
2689 SrcExpr = ExprError();
2690 return;
2691 }
2692
2693 if (DestType->isExtVectorType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002694 SrcExpr = Self.CheckExtVectorCast(OpRange, DestType, SrcExpr.get(), Kind);
John McCall9776e432011-10-06 23:25:11 +00002695 return;
2696 }
2697
2698 if (const VectorType *DestVecTy = DestType->getAs<VectorType>()) {
2699 if (DestVecTy->getVectorKind() == VectorType::AltiVecVector &&
2700 (SrcType->isIntegerType() || SrcType->isFloatingType())) {
2701 Kind = CK_VectorSplat;
George Burgess IVdf1ed002016-01-13 01:52:39 +00002702 SrcExpr = Self.prepareVectorSplat(DestType, SrcExpr.get());
John McCall9776e432011-10-06 23:25:11 +00002703 } else if (Self.CheckVectorCast(OpRange, DestType, SrcType, Kind)) {
2704 SrcExpr = ExprError();
2705 }
2706 return;
2707 }
2708
2709 if (SrcType->isVectorType()) {
2710 if (Self.CheckVectorCast(OpRange, SrcType, DestType, Kind))
2711 SrcExpr = ExprError();
2712 return;
2713 }
2714
2715 // The source and target types are both scalars, i.e.
2716 // - arithmetic types (fundamental, enum, and complex)
2717 // - all kinds of pointers
2718 // Note that member pointers were filtered out with C++, above.
2719
2720 if (isa<ObjCSelectorExpr>(SrcExpr.get())) {
2721 Self.Diag(SrcExpr.get()->getExprLoc(), diag::err_cast_selector_expr);
2722 SrcExpr = ExprError();
2723 return;
2724 }
2725
2726 // If either type is a pointer, the other type has to be either an
2727 // integer or a pointer.
2728 if (!DestType->isArithmeticType()) {
2729 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) {
2730 Self.Diag(SrcExpr.get()->getExprLoc(),
2731 diag::err_cast_pointer_from_non_pointer_int)
2732 << SrcType << SrcExpr.get()->getSourceRange();
2733 SrcExpr = ExprError();
2734 return;
2735 }
David Blaikie282ad872012-10-16 18:53:14 +00002736 checkIntToPointerCast(/* CStyle */ true, OpRange.getBegin(), SrcExpr.get(),
2737 DestType, Self);
John McCall9776e432011-10-06 23:25:11 +00002738 } else if (!SrcType->isArithmeticType()) {
2739 if (!DestType->isIntegralType(Self.Context) &&
2740 DestType->isArithmeticType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002741 Self.Diag(SrcExpr.get()->getBeginLoc(),
2742 diag::err_cast_pointer_to_non_pointer_int)
2743 << DestType << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002744 SrcExpr = ExprError();
2745 return;
2746 }
2747 }
2748
Yaxun Liu5b746652016-12-18 05:18:55 +00002749 if (Self.getLangOpts().OpenCL &&
2750 !Self.getOpenCLOptions().isEnabled("cl_khr_fp16")) {
Joey Goulydd7f4562013-01-23 11:56:20 +00002751 if (DestType->isHalfType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002752 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::err_opencl_cast_to_half)
2753 << DestType << SrcExpr.get()->getSourceRange();
Joey Goulydd7f4562013-01-23 11:56:20 +00002754 SrcExpr = ExprError();
2755 return;
2756 }
Joey Goulydd7f4562013-01-23 11:56:20 +00002757 }
2758
John McCall9776e432011-10-06 23:25:11 +00002759 // ARC imposes extra restrictions on casts.
Brian Kelley11352a82017-03-29 18:09:02 +00002760 if (Self.getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) {
2761 checkObjCConversion(Sema::CCK_CStyleCast);
John McCall9776e432011-10-06 23:25:11 +00002762 if (SrcExpr.isInvalid())
2763 return;
Brian Kelley11352a82017-03-29 18:09:02 +00002764
2765 const PointerType *CastPtr = DestType->getAs<PointerType>();
2766 if (Self.getLangOpts().ObjCAutoRefCount && CastPtr) {
John McCall9776e432011-10-06 23:25:11 +00002767 if (const PointerType *ExprPtr = SrcType->getAs<PointerType>()) {
2768 Qualifiers CastQuals = CastPtr->getPointeeType().getQualifiers();
2769 Qualifiers ExprQuals = ExprPtr->getPointeeType().getQualifiers();
Fangrui Song6907ce22018-07-30 19:24:48 +00002770 if (CastPtr->getPointeeType()->isObjCLifetimeType() &&
John McCall9776e432011-10-06 23:25:11 +00002771 ExprPtr->getPointeeType()->isObjCLifetimeType() &&
2772 !CastQuals.compatiblyIncludesObjCLifetime(ExprQuals)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002773 Self.Diag(SrcExpr.get()->getBeginLoc(),
John McCall9776e432011-10-06 23:25:11 +00002774 diag::err_typecheck_incompatible_ownership)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002775 << SrcType << DestType << Sema::AA_Casting
2776 << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002777 return;
2778 }
2779 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002780 }
John McCall9776e432011-10-06 23:25:11 +00002781 else if (!Self.CheckObjCARCUnavailableWeakConversion(DestType, SrcType)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002782 Self.Diag(SrcExpr.get()->getBeginLoc(),
John McCall9776e432011-10-06 23:25:11 +00002783 diag::err_arc_convesion_of_weak_unavailable)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002784 << 1 << SrcType << DestType << SrcExpr.get()->getSourceRange();
John McCall9776e432011-10-06 23:25:11 +00002785 SrcExpr = ExprError();
2786 return;
2787 }
2788 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002789
Fariborz Jahanian5ad96592012-08-16 18:33:47 +00002790 DiagnoseCastOfObjCSEL(Self, SrcExpr, DestType);
Reid Kleckner9f497332016-05-10 21:00:03 +00002791 DiagnoseCallingConvCast(Self, SrcExpr, DestType, OpRange);
Fariborz Jahanian91f548b2012-08-17 17:22:34 +00002792 DiagnoseBadFunctionCast(Self, SrcExpr, DestType);
John McCall9776e432011-10-06 23:25:11 +00002793 Kind = Self.PrepareScalarCast(SrcExpr, DestType);
2794 if (SrcExpr.isInvalid())
2795 return;
2796
2797 if (Kind == CK_BitCast)
2798 checkCastAlign();
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002799}
Roman Divackyd5178012014-11-21 21:03:10 +00002800
Erik Pilkingtoneee944e2019-07-02 18:28:13 +00002801void CastOperation::CheckBuiltinBitCast() {
2802 QualType SrcType = SrcExpr.get()->getType();
Erik Pilkingtoneee944e2019-07-02 18:28:13 +00002803
Erik Pilkington0a223d92019-08-12 18:31:27 +00002804 if (Self.RequireCompleteType(OpRange.getBegin(), DestType,
2805 diag::err_typecheck_cast_to_incomplete) ||
2806 Self.RequireCompleteType(OpRange.getBegin(), SrcType,
2807 diag::err_incomplete_type)) {
2808 SrcExpr = ExprError();
2809 return;
2810 }
2811
Erik Pilkington055fcec2019-08-12 19:29:43 +00002812 if (SrcExpr.get()->isRValue())
2813 SrcExpr = Self.CreateMaterializeTemporaryExpr(SrcType, SrcExpr.get(),
2814 /*IsLValueReference=*/false);
2815
Erik Pilkingtoneee944e2019-07-02 18:28:13 +00002816 CharUnits DestSize = Self.Context.getTypeSizeInChars(DestType);
2817 CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
2818 if (DestSize != SourceSize) {
2819 Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
2820 << (int)SourceSize.getQuantity() << (int)DestSize.getQuantity();
2821 SrcExpr = ExprError();
2822 return;
2823 }
2824
2825 if (!DestType.isTriviallyCopyableType(Self.Context)) {
2826 Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
2827 << 1;
2828 SrcExpr = ExprError();
2829 return;
2830 }
2831
2832 if (!SrcType.isTriviallyCopyableType(Self.Context)) {
2833 Self.Diag(OpRange.getBegin(), diag::err_bit_cast_non_trivially_copyable)
2834 << 0;
2835 SrcExpr = ExprError();
2836 return;
2837 }
2838
Erik Pilkingtoneee944e2019-07-02 18:28:13 +00002839 Kind = CK_LValueToRValueBitCast;
2840}
2841
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002842/// DiagnoseCastQual - Warn whenever casts discards a qualifiers, be it either
2843/// const, volatile or both.
2844static void DiagnoseCastQual(Sema &Self, const ExprResult &SrcExpr,
2845 QualType DestType) {
2846 if (SrcExpr.isInvalid())
2847 return;
2848
2849 QualType SrcType = SrcExpr.get()->getType();
2850 if (!((SrcType->isAnyPointerType() && DestType->isAnyPointerType()) ||
2851 DestType->isLValueReferenceType()))
2852 return;
2853
Roman Divackyd5178012014-11-21 21:03:10 +00002854 QualType TheOffendingSrcType, TheOffendingDestType;
2855 Qualifiers CastAwayQualifiers;
Richard Smithf276e2d2018-07-10 23:04:35 +00002856 if (CastsAwayConstness(Self, SrcType, DestType, true, false,
2857 &TheOffendingSrcType, &TheOffendingDestType,
2858 &CastAwayQualifiers) !=
2859 CastAwayConstnessKind::CACK_Similar)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002860 return;
2861
Richard Smithf276e2d2018-07-10 23:04:35 +00002862 // FIXME: 'restrict' is not properly handled here.
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002863 int qualifiers = -1;
2864 if (CastAwayQualifiers.hasConst() && CastAwayQualifiers.hasVolatile()) {
2865 qualifiers = 0;
2866 } else if (CastAwayQualifiers.hasConst()) {
2867 qualifiers = 1;
2868 } else if (CastAwayQualifiers.hasVolatile()) {
2869 qualifiers = 2;
Roman Divackyd5178012014-11-21 21:03:10 +00002870 }
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002871 // This is a variant of int **x; const int **y = (const int **)x;
2872 if (qualifiers == -1)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002873 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual2)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002874 << SrcType << DestType;
2875 else
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002876 Self.Diag(SrcExpr.get()->getBeginLoc(), diag::warn_cast_qual)
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002877 << TheOffendingSrcType << TheOffendingDestType << qualifiers;
John McCall9776e432011-10-06 23:25:11 +00002878}
2879
2880ExprResult Sema::BuildCStyleCastExpr(SourceLocation LPLoc,
2881 TypeSourceInfo *CastTypeInfo,
2882 SourceLocation RPLoc,
2883 Expr *CastExpr) {
Fangrui Song6907ce22018-07-30 19:24:48 +00002884 CastOperation Op(*this, CastTypeInfo->getType(), CastExpr);
John McCallb50451a2011-10-05 07:41:44 +00002885 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002886 Op.OpRange = SourceRange(LPLoc, CastExpr->getEndLoc());
John McCallb50451a2011-10-05 07:41:44 +00002887
David Blaikiebbafb8a2012-03-11 07:00:24 +00002888 if (getLangOpts().CPlusPlus) {
Rui Ueyama49a3ad22019-07-16 04:46:31 +00002889 Op.CheckCXXCStyleCast(/*FunctionalCast=*/ false,
Sebastian Redld74dd492012-02-12 18:41:05 +00002890 isa<InitListExpr>(CastExpr));
John McCall9776e432011-10-06 23:25:11 +00002891 } else {
2892 Op.CheckCStyleCast();
2893 }
2894
John McCallb50451a2011-10-05 07:41:44 +00002895 if (Op.SrcExpr.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00002896 return ExprError();
2897
Roman Lebedevba80b8d2017-07-03 17:59:22 +00002898 // -Wcast-qual
2899 DiagnoseCastQual(Op.Self, Op.SrcExpr, Op.DestType);
2900
John McCall4124c492011-10-17 18:40:02 +00002901 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002902 Op.ValueKind, Op.Kind, Op.SrcExpr.get(),
John McCall4124c492011-10-17 18:40:02 +00002903 &Op.BasePath, CastTypeInfo, LPLoc, RPLoc));
John McCallb50451a2011-10-05 07:41:44 +00002904}
2905
2906ExprResult Sema::BuildCXXFunctionalCastExpr(TypeSourceInfo *CastTypeInfo,
Richard Smith60437622017-02-09 19:17:44 +00002907 QualType Type,
John McCallb50451a2011-10-05 07:41:44 +00002908 SourceLocation LPLoc,
2909 Expr *CastExpr,
2910 SourceLocation RPLoc) {
Sebastian Redl2b80af42012-02-13 19:55:43 +00002911 assert(LPLoc.isValid() && "List-initialization shouldn't get here.");
Richard Smith60437622017-02-09 19:17:44 +00002912 CastOperation Op(*this, Type, CastExpr);
John McCallb50451a2011-10-05 07:41:44 +00002913 Op.DestRange = CastTypeInfo->getTypeLoc().getSourceRange();
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002914 Op.OpRange = SourceRange(Op.DestRange.getBegin(), CastExpr->getEndLoc());
John McCallb50451a2011-10-05 07:41:44 +00002915
Rui Ueyama49a3ad22019-07-16 04:46:31 +00002916 Op.CheckCXXCStyleCast(/*FunctionalCast=*/true, /*ListInit=*/false);
John McCallb50451a2011-10-05 07:41:44 +00002917 if (Op.SrcExpr.isInvalid())
2918 return ExprError();
Olivier Goffart1ba7dc32015-09-04 10:17:10 +00002919
2920 auto *SubExpr = Op.SrcExpr.get();
2921 if (auto *BindExpr = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
2922 SubExpr = BindExpr->getSubExpr();
2923 if (auto *ConstructExpr = dyn_cast<CXXConstructExpr>(SubExpr))
Enea Zaffanella76e98fe2013-09-07 05:49:53 +00002924 ConstructExpr->setParenOrBraceRange(SourceRange(LPLoc, RPLoc));
John McCallb50451a2011-10-05 07:41:44 +00002925
John McCall4124c492011-10-17 18:40:02 +00002926 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
Eli Friedman89fe0d52013-08-15 22:02:56 +00002927 Op.ValueKind, CastTypeInfo, Op.Kind,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002928 Op.SrcExpr.get(), &Op.BasePath, LPLoc, RPLoc));
Sebastian Redl9f831db2009-07-25 15:41:38 +00002929}