blob: b0e6acaedb965d9d2af642af3b13bb267d319cdd [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Faisal Valifad9e132013-09-26 19:54:12 +000017#include "clang/AST/ASTLambda.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000018#include "clang/AST/ASTMutationListener.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/CharUnits.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000024#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000025#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Aaron Ballmanfff32482012-12-09 17:45:41 +000029#include "clang/Basic/TargetInfo.h"
Richard Smith4ac537b2013-07-23 08:14:48 +000030#include "clang/Lex/LiteralSupport.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000031#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000032#include "clang/Sema/CXXFieldCollector.h"
33#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/Initialization.h"
35#include "clang/Sema/Lookup.h"
36#include "clang/Sema/ParsedTemplate.h"
37#include "clang/Sema/Scope.h"
38#include "clang/Sema/ScopeInfo.h"
Stephen Hines176edba2014-12-01 14:53:08 -080039#include "clang/Sema/Template.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000040#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000041#include "llvm/ADT/SmallString.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000042#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000043#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000044
45using namespace clang;
46
Chris Lattner8123a952008-04-10 02:22:51 +000047//===----------------------------------------------------------------------===//
48// CheckDefaultArgumentVisitor
49//===----------------------------------------------------------------------===//
50
Chris Lattner9e979552008-04-12 23:52:44 +000051namespace {
52 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
53 /// the default argument of a parameter to determine whether it
54 /// contains any ill-formed subexpressions. For example, this will
55 /// diagnose the use of local variables or parameters within the
56 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000057 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000058 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000059 Expr *DefaultArg;
60 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000061
Chris Lattner9e979552008-04-12 23:52:44 +000062 public:
Mike Stump1eb44332009-09-09 15:08:12 +000063 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000064 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000065
Chris Lattner9e979552008-04-12 23:52:44 +000066 bool VisitExpr(Expr *Node);
67 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000068 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000069 bool VisitLambdaExpr(LambdaExpr *Lambda);
John McCall045d2522013-04-09 01:56:28 +000070 bool VisitPseudoObjectExpr(PseudoObjectExpr *POE);
Chris Lattner9e979552008-04-12 23:52:44 +000071 };
Chris Lattner8123a952008-04-10 02:22:51 +000072
Chris Lattner9e979552008-04-12 23:52:44 +000073 /// VisitExpr - Visit all of the children of this expression.
74 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
75 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000076 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000077 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000078 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000079 }
80
Chris Lattner9e979552008-04-12 23:52:44 +000081 /// VisitDeclRefExpr - Visit a reference to a declaration, to
82 /// determine whether this declaration can be used in the default
83 /// argument expression.
84 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000085 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000086 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
87 // C++ [dcl.fct.default]p9
88 // Default arguments are evaluated each time the function is
89 // called. The order of evaluation of function arguments is
90 // unspecified. Consequently, parameters of a function shall not
91 // be used in default argument expressions, even if they are not
92 // evaluated. Parameters of a function declared before a default
93 // argument expression are in scope and can hide namespace and
94 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000095 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000096 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000097 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000098 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000099 // C++ [dcl.fct.default]p7
100 // Local variables shall not be used in default argument
101 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +0000102 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000103 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000104 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000105 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000106 }
Chris Lattner8123a952008-04-10 02:22:51 +0000107
Douglas Gregor3996f232008-11-04 13:41:56 +0000108 return false;
109 }
Chris Lattner9e979552008-04-12 23:52:44 +0000110
Douglas Gregor796da182008-11-04 14:32:21 +0000111 /// VisitCXXThisExpr - Visit a C++ "this" expression.
112 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
113 // C++ [dcl.fct.default]p8:
114 // The keyword this shall not be used in a default argument of a
115 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000116 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000117 diag::err_param_default_argument_references_this)
118 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000119 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000120
John McCall045d2522013-04-09 01:56:28 +0000121 bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) {
122 bool Invalid = false;
123 for (PseudoObjectExpr::semantics_iterator
124 i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) {
125 Expr *E = *i;
126
127 // Look through bindings.
128 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
129 E = OVE->getSourceExpr();
130 assert(E && "pseudo-object binding without source expression?");
131 }
132
133 Invalid |= Visit(E);
134 }
135 return Invalid;
136 }
137
Douglas Gregorf0459f82012-02-10 23:30:22 +0000138 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
139 // C++11 [expr.lambda.prim]p13:
140 // A lambda-expression appearing in a default argument shall not
141 // implicitly or explicitly capture any entity.
142 if (Lambda->capture_begin() == Lambda->capture_end())
143 return false;
144
145 return S->Diag(Lambda->getLocStart(),
146 diag::err_lambda_capture_default_arg);
147 }
Chris Lattner8123a952008-04-10 02:22:51 +0000148}
149
Richard Smith0b0ca472013-04-10 06:11:48 +0000150void
151Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
152 const CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000153 // If we have an MSAny spec already, don't bother.
154 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000155 return;
156
157 const FunctionProtoType *Proto
158 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000159 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
160 if (!Proto)
161 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000162
163 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
164
165 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000166 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000167 ClearExceptions();
168 ComputedEST = EST;
169 return;
170 }
171
Richard Smith7a614d82011-06-11 17:19:42 +0000172 // FIXME: If the call to this decl is using any of its default arguments, we
173 // need to search them for potentially-throwing calls.
174
Sean Hunt001cad92011-05-10 00:49:42 +0000175 // If this function has a basic noexcept, it doesn't affect the outcome.
176 if (EST == EST_BasicNoexcept)
177 return;
178
179 // If we have a throw-all spec at this point, ignore the function.
180 if (ComputedEST == EST_None)
181 return;
182
183 // If we're still at noexcept(true) and there's a nothrow() callee,
184 // change to that specification.
185 if (EST == EST_DynamicNone) {
186 if (ComputedEST == EST_BasicNoexcept)
187 ComputedEST = EST_DynamicNone;
188 return;
189 }
190
191 // Check out noexcept specs.
192 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000193 FunctionProtoType::NoexceptResult NR =
194 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000195 assert(NR != FunctionProtoType::NR_NoNoexcept &&
196 "Must have noexcept result for EST_ComputedNoexcept.");
197 assert(NR != FunctionProtoType::NR_Dependent &&
198 "Should not generate implicit declarations for dependent cases, "
199 "and don't know how to handle them anyway.");
200
201 // noexcept(false) -> no spec on the new function
202 if (NR == FunctionProtoType::NR_Throw) {
203 ClearExceptions();
204 ComputedEST = EST_None;
205 }
206 // noexcept(true) won't change anything either.
207 return;
208 }
209
210 assert(EST == EST_Dynamic && "EST case not considered earlier.");
211 assert(ComputedEST != EST_None &&
212 "Shouldn't collect exceptions when throw-all is guaranteed.");
213 ComputedEST = EST_Dynamic;
214 // Record the exceptions in this function's exception specification.
Stephen Hines651f13c2014-04-23 16:59:28 -0700215 for (const auto &E : Proto->exceptions())
Stephen Hines176edba2014-12-01 14:53:08 -0800216 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second)
Stephen Hines651f13c2014-04-23 16:59:28 -0700217 Exceptions.push_back(E);
Sean Hunt001cad92011-05-10 00:49:42 +0000218}
219
Richard Smith7a614d82011-06-11 17:19:42 +0000220void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000221 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000222 return;
223
224 // FIXME:
225 //
226 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000227 // [An] implicit exception-specification specifies the type-id T if and
228 // only if T is allowed by the exception-specification of a function directly
229 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000230 // function it directly invokes allows all exceptions, and f shall allow no
231 // exceptions if every function it directly invokes allows no exceptions.
232 //
233 // Note in particular that if an implicit exception-specification is generated
234 // for a function containing a throw-expression, that specification can still
235 // be noexcept(true).
236 //
237 // Note also that 'directly invoked' is not defined in the standard, and there
238 // is no indication that we should only consider potentially-evaluated calls.
239 //
240 // Ultimately we should implement the intent of the standard: the exception
241 // specification should be the set of exceptions which can be thrown by the
242 // implicit definition. For now, we assume that any non-nothrow expression can
243 // throw any exception.
244
Richard Smithe6975e92012-04-17 00:58:00 +0000245 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000246 ComputedEST = EST_None;
247}
248
Anders Carlssoned961f92009-08-25 02:29:20 +0000249bool
John McCall9ae2f072010-08-23 23:25:46 +0000250Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000251 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000252 if (RequireCompleteType(Param->getLocation(), Param->getType(),
253 diag::err_typecheck_decl_incomplete_type)) {
254 Param->setInvalidDecl();
255 return true;
256 }
257
Anders Carlssoned961f92009-08-25 02:29:20 +0000258 // C++ [dcl.fct.default]p5
259 // A default argument expression is implicitly converted (clause
260 // 4) to the parameter type. The default argument expression has
261 // the same semantic constraints as the initializer expression in
262 // a declaration of a variable of the parameter type, using the
263 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000264 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
265 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000266 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
267 EqualLoc);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000268 InitializationSequence InitSeq(*this, Entity, Kind, Arg);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000269 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000270 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000271 return true;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700272 Arg = Result.getAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000273
Richard Smith6c3af3d2013-01-17 01:17:56 +0000274 CheckCompletedExpr(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000275 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Anders Carlssoned961f92009-08-25 02:29:20 +0000277 // Okay: add the default argument to the parameter
278 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000280 // We have already instantiated this parameter; provide each of the
281 // instantiations with the uninstantiated default argument.
282 UnparsedDefaultArgInstantiationsMap::iterator InstPos
283 = UnparsedDefaultArgInstantiations.find(Param);
284 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
285 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
286 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
287
288 // We're done tracking this parameter's instantiations.
289 UnparsedDefaultArgInstantiations.erase(InstPos);
290 }
291
Anders Carlsson9351c172009-08-25 03:18:48 +0000292 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000293}
294
Chris Lattner8123a952008-04-10 02:22:51 +0000295/// ActOnParamDefaultArgument - Check whether the default argument
296/// provided for a function parameter is well-formed. If so, attach it
297/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000298void
John McCalld226f652010-08-21 09:40:31 +0000299Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000300 Expr *DefaultArg) {
301 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000302 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000303
John McCalld226f652010-08-21 09:40:31 +0000304 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000305 UnparsedDefaultArgLocs.erase(Param);
306
Chris Lattner3d1cee32008-04-08 05:04:30 +0000307 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000308 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000309 Diag(EqualLoc, diag::err_param_default_argument)
310 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000311 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000312 return;
313 }
314
Douglas Gregor6f526752010-12-16 08:48:57 +0000315 // Check for unexpanded parameter packs.
316 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
317 Param->setInvalidDecl();
318 return;
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -0700319 }
320
321 // C++11 [dcl.fct.default]p3
322 // A default argument expression [...] shall not be specified for a
323 // parameter pack.
324 if (Param->isParameterPack()) {
325 Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack)
326 << DefaultArg->getSourceRange();
327 return;
328 }
329
Anders Carlsson66e30672009-08-25 01:02:06 +0000330 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000331 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
332 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000333 Param->setInvalidDecl();
334 return;
335 }
Mike Stump1eb44332009-09-09 15:08:12 +0000336
John McCall9ae2f072010-08-23 23:25:46 +0000337 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000338}
339
Douglas Gregor61366e92008-12-24 00:01:03 +0000340/// ActOnParamUnparsedDefaultArgument - We've seen a default
341/// argument for a function parameter, but we can't parse it yet
342/// because we're inside a class definition. Note that this default
343/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000344void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000345 SourceLocation EqualLoc,
346 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000347 if (!param)
348 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000349
John McCalld226f652010-08-21 09:40:31 +0000350 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Nick Lewyckyee0bc3b2013-09-22 10:06:57 +0000351 Param->setUnparsedDefaultArg();
Anders Carlsson5e300d12009-06-12 16:51:40 +0000352 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000353}
354
Douglas Gregor72b505b2008-12-16 21:30:33 +0000355/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
356/// the default argument for the parameter param failed.
Stephen Hines176edba2014-12-01 14:53:08 -0800357void Sema::ActOnParamDefaultArgumentError(Decl *param,
358 SourceLocation EqualLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000359 if (!param)
360 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000361
John McCalld226f652010-08-21 09:40:31 +0000362 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000363 Param->setInvalidDecl();
Anders Carlsson5e300d12009-06-12 16:51:40 +0000364 UnparsedDefaultArgLocs.erase(Param);
Stephen Hines176edba2014-12-01 14:53:08 -0800365 Param->setDefaultArg(new(Context)
366 OpaqueValueExpr(EqualLoc,
367 Param->getType().getNonReferenceType(),
368 VK_RValue));
Douglas Gregor72b505b2008-12-16 21:30:33 +0000369}
370
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000371/// CheckExtraCXXDefaultArguments - Check for any extra default
372/// arguments in the declarator, which is not a function declaration
373/// or definition and therefore is not permitted to have default
374/// arguments. This routine should be invoked for every declarator
375/// that is not a function declaration or definition.
376void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
377 // C++ [dcl.fct.default]p3
378 // A default argument expression shall be specified only in the
379 // parameter-declaration-clause of a function declaration or in a
380 // template-parameter (14.1). It shall not be specified for a
381 // parameter pack. If it is specified in a
382 // parameter-declaration-clause, it shall not occur within a
383 // declarator or abstract-declarator of a parameter-declaration.
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000384 bool MightBeFunction = D.isFunctionDeclarationContext();
Chris Lattnerb28317a2009-03-28 19:18:32 +0000385 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000386 DeclaratorChunk &chunk = D.getTypeObject(i);
387 if (chunk.Kind == DeclaratorChunk::Function) {
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000388 if (MightBeFunction) {
389 // This is a function declaration. It can have default arguments, but
390 // keep looking in case its return type is a function type with default
391 // arguments.
392 MightBeFunction = false;
393 continue;
394 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700395 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e;
396 ++argIdx) {
397 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000398 if (Param->hasUnparsedDefaultArg()) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700399 CachedTokens *Toks = chunk.Fun.Params[argIdx].DefaultArgTokens;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700400 SourceRange SR;
401 if (Toks->size() > 1)
402 SR = SourceRange((*Toks)[1].getLocation(),
403 Toks->back().getLocation());
404 else
405 SR = UnparsedDefaultArgLocs[Param];
Douglas Gregor72b505b2008-12-16 21:30:33 +0000406 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700407 << SR;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000408 delete Toks;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700409 chunk.Fun.Params[argIdx].DefaultArgTokens = nullptr;
Douglas Gregor61366e92008-12-24 00:01:03 +0000410 } else if (Param->getDefaultArg()) {
411 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
412 << Param->getDefaultArg()->getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700413 Param->setDefaultArg(nullptr);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000414 }
415 }
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000416 } else if (chunk.Kind != DeclaratorChunk::Paren) {
417 MightBeFunction = false;
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000418 }
419 }
420}
421
David Majnemerf6a144f2013-06-25 23:09:30 +0000422static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) {
423 for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) {
424 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
425 if (!PVD->hasDefaultArg())
426 return false;
427 if (!PVD->hasInheritedDefaultArg())
428 return true;
429 }
430 return false;
431}
432
Craig Topper1a6eac82012-09-21 04:33:26 +0000433/// MergeCXXFunctionDecl - Merge two declarations of the same C++
434/// function, once we already know that they have the same
435/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
436/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000437bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
438 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000439 bool Invalid = false;
440
Chris Lattner3d1cee32008-04-08 05:04:30 +0000441 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000442 // For non-template functions, default arguments can be added in
443 // later declarations of a function in the same
444 // scope. Declarations in different scopes have completely
445 // distinct sets of default arguments. That is, declarations in
446 // inner scopes do not acquire default arguments from
447 // declarations in outer scopes, and vice versa. In a given
448 // function declaration, all parameters subsequent to a
449 // parameter with a default argument shall have default
450 // arguments supplied in this or previous declarations. A
451 // default argument shall not be redefined by a later
452 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 //
454 // C++ [dcl.fct.default]p6:
Richard Smitha41c97a2013-09-20 01:15:31 +0000455 // Except for member functions of class templates, the default arguments
456 // in a member function definition that appears outside of the class
457 // definition are added to the set of default arguments provided by the
Douglas Gregor6cc15182009-09-11 18:44:32 +0000458 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000459 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
460 ParmVarDecl *OldParam = Old->getParamDecl(p);
461 ParmVarDecl *NewParam = New->getParamDecl(p);
462
James Molloy9cda03f2012-03-13 08:55:35 +0000463 bool OldParamHasDfl = OldParam->hasDefaultArg();
464 bool NewParamHasDfl = NewParam->hasDefaultArg();
465
Richard Smitha41c97a2013-09-20 01:15:31 +0000466 // The declaration context corresponding to the scope is the semantic
467 // parent, unless this is a local function declaration, in which case
468 // it is that surrounding function.
Stephen Hines176edba2014-12-01 14:53:08 -0800469 DeclContext *ScopeDC = New->isLocalExternDecl()
470 ? New->getLexicalDeclContext()
471 : New->getDeclContext();
472 if (S && !isDeclInScope(Old, ScopeDC, S) &&
Richard Smitha41c97a2013-09-20 01:15:31 +0000473 !New->getDeclContext()->isRecord())
James Molloy9cda03f2012-03-13 08:55:35 +0000474 // Ignore default parameters of old decl if they are not in
Richard Smitha41c97a2013-09-20 01:15:31 +0000475 // the same scope and this is not an out-of-line definition of
476 // a member function.
James Molloy9cda03f2012-03-13 08:55:35 +0000477 OldParamHasDfl = false;
Stephen Hines176edba2014-12-01 14:53:08 -0800478 if (New->isLocalExternDecl() != Old->isLocalExternDecl())
479 // If only one of these is a local function declaration, then they are
480 // declared in different scopes, even though isDeclInScope may think
481 // they're in the same scope. (If both are local, the scope check is
482 // sufficent, and if neither is local, then they are in the same scope.)
483 OldParamHasDfl = false;
James Molloy9cda03f2012-03-13 08:55:35 +0000484
485 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000486
Francois Pichet8d051e02011-04-10 03:03:52 +0000487 unsigned DiagDefaultParamID =
488 diag::err_param_default_argument_redefinition;
489
490 // MSVC accepts that default parameters be redefined for member functions
491 // of template class. The new default parameter's value is ignored.
492 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000493 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000494 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
495 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000496 // Merge the old default argument into the new parameter.
497 NewParam->setHasInheritedDefaultArg();
498 if (OldParam->hasUninstantiatedDefaultArg())
499 NewParam->setUninstantiatedDefaultArg(
500 OldParam->getUninstantiatedDefaultArg());
501 else
502 NewParam->setDefaultArg(OldParam->getInit());
Stephen Hines176edba2014-12-01 14:53:08 -0800503 DiagDefaultParamID = diag::ext_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000504 Invalid = false;
505 }
506 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000507
Francois Pichet8cf90492011-04-10 04:58:30 +0000508 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
509 // hint here. Alternatively, we could walk the type-source information
510 // for NewParam to find the last source location in the type... but it
511 // isn't worth the effort right now. This is the kind of test case that
512 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000513 // int f(int);
514 // void g(int (*fp)(int) = f);
515 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000516 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000517 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000518
519 // Look for the function declaration where the default argument was
520 // actually written, which may be a declaration prior to Old.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700521 for (auto Older = Old; OldParam->hasInheritedDefaultArg();) {
522 Older = Older->getPreviousDecl();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000523 OldParam = Older->getParamDecl(p);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700524 }
525
Douglas Gregor6cc15182009-09-11 18:44:32 +0000526 Diag(OldParam->getLocation(), diag::note_previous_definition)
527 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000528 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000529 // Merge the old default argument into the new parameter.
530 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000531 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000532 NewParam->setHasInheritedDefaultArg();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700533 if (OldParam->hasUnparsedDefaultArg())
534 NewParam->setUnparsedDefaultArg();
535 else if (OldParam->hasUninstantiatedDefaultArg())
Douglas Gregord85cef52009-09-17 19:51:30 +0000536 NewParam->setUninstantiatedDefaultArg(
537 OldParam->getUninstantiatedDefaultArg());
538 else
John McCall3d6c1782010-05-04 01:53:42 +0000539 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000540 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000541 if (New->getDescribedFunctionTemplate()) {
542 // Paragraph 4, quoted above, only applies to non-template functions.
543 Diag(NewParam->getLocation(),
544 diag::err_param_default_argument_template_redecl)
545 << NewParam->getDefaultArgRange();
546 Diag(Old->getLocation(), diag::note_template_prev_declaration)
547 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000548 } else if (New->getTemplateSpecializationKind()
549 != TSK_ImplicitInstantiation &&
550 New->getTemplateSpecializationKind() != TSK_Undeclared) {
551 // C++ [temp.expr.spec]p21:
552 // Default function arguments shall not be specified in a declaration
553 // or a definition for one of the following explicit specializations:
554 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000555 // - the explicit specialization of a member function template;
556 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000557 // template where the class template specialization to which the
558 // member function specialization belongs is implicitly
559 // instantiated.
560 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
561 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
562 << New->getDeclName()
563 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000564 } else if (New->getDeclContext()->isDependentContext()) {
565 // C++ [dcl.fct.default]p6 (DR217):
566 // Default arguments for a member function of a class template shall
567 // be specified on the initial declaration of the member function
568 // within the class template.
569 //
570 // Reading the tea leaves a bit in DR217 and its reference to DR205
571 // leads me to the conclusion that one cannot add default function
572 // arguments for an out-of-line definition of a member function of a
573 // dependent type.
574 int WhichKind = 2;
575 if (CXXRecordDecl *Record
576 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
577 if (Record->getDescribedClassTemplate())
578 WhichKind = 0;
579 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
580 WhichKind = 1;
581 else
582 WhichKind = 2;
583 }
584
585 Diag(NewParam->getLocation(),
586 diag::err_param_default_argument_member_template_redecl)
587 << WhichKind
588 << NewParam->getDefaultArgRange();
589 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000590 }
591 }
592
Richard Smithb8abff62012-11-28 03:45:24 +0000593 // DR1344: If a default argument is added outside a class definition and that
594 // default argument makes the function a special member function, the program
595 // is ill-formed. This can only happen for constructors.
596 if (isa<CXXConstructorDecl>(New) &&
597 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
598 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
599 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
600 if (NewSM != OldSM) {
601 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
602 assert(NewParam->hasDefaultArg());
603 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
604 << NewParam->getDefaultArgRange() << NewSM;
605 Diag(Old->getLocation(), diag::note_previous_declaration);
606 }
607 }
608
Stephen Hines651f13c2014-04-23 16:59:28 -0700609 const FunctionDecl *Def;
Richard Smithff234882012-02-20 23:28:05 +0000610 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000611 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000612 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000613 if (New->isConstexpr() != Old->isConstexpr()) {
614 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
615 << New << New->isConstexpr();
616 Diag(Old->getLocation(), diag::note_previous_declaration);
617 Invalid = true;
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -0700618 } else if (!Old->getMostRecentDecl()->isInlined() && New->isInlined() &&
619 Old->isDefined(Def)) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700620 // C++11 [dcl.fcn.spec]p4:
621 // If the definition of a function appears in a translation unit before its
622 // first declaration as inline, the program is ill-formed.
623 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
624 Diag(Def->getLocation(), diag::note_previous_definition);
625 Invalid = true;
Richard Smith9f569cc2011-10-01 02:31:28 +0000626 }
627
David Majnemerf6a144f2013-06-25 23:09:30 +0000628 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default
NAKAMURA Takumifd527a42013-07-17 17:57:52 +0000629 // argument expression, that declaration shall be a definition and shall be
David Majnemerf6a144f2013-06-25 23:09:30 +0000630 // the only declaration of the function or function template in the
631 // translation unit.
632 if (Old->getFriendObjectKind() == Decl::FOK_Undeclared &&
633 functionDeclHasDefaultArgument(Old)) {
634 Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
635 Diag(Old->getLocation(), diag::note_previous_declaration);
636 Invalid = true;
637 }
638
Douglas Gregore13ad832010-02-12 07:32:17 +0000639 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000640 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000641
Douglas Gregorcda9c672009-02-16 17:45:42 +0000642 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000643}
644
Sebastian Redl60618fa2011-03-12 11:50:43 +0000645/// \brief Merge the exception specifications of two variable declarations.
646///
647/// This is called when there's a redeclaration of a VarDecl. The function
648/// checks if the redeclaration might have an exception specification and
649/// validates compatibility and merges the specs if necessary.
650void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
651 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000652 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000653 return;
654
655 assert(Context.hasSameType(New->getType(), Old->getType()) &&
656 "Should only be called if types are otherwise the same.");
657
658 QualType NewType = New->getType();
659 QualType OldType = Old->getType();
660
661 // We're only interested in pointers and references to functions, as well
662 // as pointers to member functions.
663 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
664 NewType = R->getPointeeType();
665 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
666 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
667 NewType = P->getPointeeType();
668 OldType = OldType->getAs<PointerType>()->getPointeeType();
669 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
670 NewType = M->getPointeeType();
671 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
672 }
673
674 if (!NewType->isFunctionProtoType())
675 return;
676
677 // There's lots of special cases for functions. For function pointers, system
678 // libraries are hopefully not as broken so that we don't need these
679 // workarounds.
680 if (CheckEquivalentExceptionSpec(
681 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
682 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
683 New->setInvalidDecl();
684 }
685}
686
Chris Lattner3d1cee32008-04-08 05:04:30 +0000687/// CheckCXXDefaultArguments - Verify that the default arguments for a
688/// function declaration are well-formed according to C++
689/// [dcl.fct.default].
690void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
691 unsigned NumParams = FD->getNumParams();
692 unsigned p;
693
694 // Find first parameter with a default argument
695 for (p = 0; p < NumParams; ++p) {
696 ParmVarDecl *Param = FD->getParamDecl(p);
Richard Smith7974c602013-04-17 16:25:20 +0000697 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000698 break;
699 }
700
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -0700701 // C++11 [dcl.fct.default]p4:
702 // In a given function declaration, each parameter subsequent to a parameter
703 // with a default argument shall have a default argument supplied in this or
704 // a previous declaration or shall be a function parameter pack. A default
705 // argument shall not be redefined by a later declaration (not even to the
706 // same value).
Chris Lattner3d1cee32008-04-08 05:04:30 +0000707 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000708 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000709 ParmVarDecl *Param = FD->getParamDecl(p);
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -0700710 if (!Param->hasDefaultArg() && !Param->isParameterPack()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000711 if (Param->isInvalidDecl())
712 /* We already complained about this parameter. */;
713 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000714 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000715 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000716 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000717 else
Mike Stump1eb44332009-09-09 15:08:12 +0000718 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000719 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Chris Lattner3d1cee32008-04-08 05:04:30 +0000721 LastMissingDefaultArg = p;
722 }
723 }
724
725 if (LastMissingDefaultArg > 0) {
726 // Some default arguments were missing. Clear out all of the
727 // default arguments up to (and including) the last missing
728 // default argument, so that we leave the function parameters
729 // in a semantically valid state.
730 for (p = 0; p <= LastMissingDefaultArg; ++p) {
731 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000732 if (Param->hasDefaultArg()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700733 Param->setDefaultArg(nullptr);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000734 }
735 }
736 }
737}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000738
Richard Smith9f569cc2011-10-01 02:31:28 +0000739// CheckConstexprParameterTypes - Check whether a function's parameter types
740// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000741// diagnostic and return false.
742static bool CheckConstexprParameterTypes(Sema &SemaRef,
743 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000744 unsigned ArgIndex = 0;
745 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -0700746 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(),
747 e = FT->param_type_end();
748 i != e; ++i, ++ArgIndex) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000749 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
750 SourceLocation ParamLoc = PD->getLocation();
751 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000752 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000753 diag::err_constexpr_non_literal_param,
754 ArgIndex+1, PD->getSourceRange(),
755 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000756 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000757 }
Joao Matos17d35c32012-08-31 22:18:20 +0000758 return true;
759}
760
761/// \brief Get diagnostic %select index for tag kind for
762/// record diagnostic message.
763/// WARNING: Indexes apply to particular diagnostics only!
764///
765/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000766static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000767 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000768 case TTK_Struct: return 0;
769 case TTK_Interface: return 1;
770 case TTK_Class: return 2;
771 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000772 }
Joao Matos17d35c32012-08-31 22:18:20 +0000773}
774
775// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
776// the requirements of a constexpr function definition or a constexpr
777// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000778// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000779//
Richard Smith86c3ae42012-02-13 03:54:03 +0000780// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
781bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000782 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
783 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000784 // C++11 [dcl.constexpr]p4:
785 // The definition of a constexpr constructor shall satisfy the following
786 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000787 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000788 const CXXRecordDecl *RD = MD->getParent();
789 if (RD->getNumVBases()) {
790 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
791 << isa<CXXConstructorDecl>(NewFD)
792 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
Stephen Hines651f13c2014-04-23 16:59:28 -0700793 for (const auto &I : RD->vbases())
794 Diag(I.getLocStart(),
795 diag::note_constexpr_virtual_base_here) << I.getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000796 return false;
797 }
Richard Smith35340502012-01-13 04:54:00 +0000798 }
799
800 if (!isa<CXXConstructorDecl>(NewFD)) {
801 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000802 // The definition of a constexpr function shall satisfy the following
803 // constraints:
804 // - it shall not be virtual;
805 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
806 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000807 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000808
Richard Smith86c3ae42012-02-13 03:54:03 +0000809 // If it's not obvious why this function is virtual, find an overridden
810 // function which uses the 'virtual' keyword.
811 const CXXMethodDecl *WrittenVirtual = Method;
812 while (!WrittenVirtual->isVirtualAsWritten())
813 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
814 if (WrittenVirtual != Method)
815 Diag(WrittenVirtual->getLocation(),
816 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000817 return false;
818 }
819
820 // - its return type shall be a literal type;
Stephen Hines651f13c2014-04-23 16:59:28 -0700821 QualType RT = NewFD->getReturnType();
Richard Smith9f569cc2011-10-01 02:31:28 +0000822 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000823 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000824 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000825 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000826 }
827
Richard Smith35340502012-01-13 04:54:00 +0000828 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000829 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000830 return false;
831
Richard Smith9f569cc2011-10-01 02:31:28 +0000832 return true;
833}
834
835/// Check the given declaration statement is legal within a constexpr function
Richard Smitha10b9782013-04-22 15:31:51 +0000836/// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3.
Richard Smith9f569cc2011-10-01 02:31:28 +0000837///
Richard Smitha10b9782013-04-22 15:31:51 +0000838/// \return true if the body is OK (maybe only as an extension), false if we
839/// have diagnosed a problem.
Richard Smith9f569cc2011-10-01 02:31:28 +0000840static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
Richard Smitha10b9782013-04-22 15:31:51 +0000841 DeclStmt *DS, SourceLocation &Cxx1yLoc) {
842 // C++11 [dcl.constexpr]p3 and p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000843 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
844 // contain only
Stephen Hines651f13c2014-04-23 16:59:28 -0700845 for (const auto *DclIt : DS->decls()) {
846 switch (DclIt->getKind()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000847 case Decl::StaticAssert:
848 case Decl::Using:
849 case Decl::UsingShadow:
850 case Decl::UsingDirective:
851 case Decl::UnresolvedUsingTypename:
Richard Smitha10b9782013-04-22 15:31:51 +0000852 case Decl::UnresolvedUsingValue:
Richard Smith9f569cc2011-10-01 02:31:28 +0000853 // - static_assert-declarations
854 // - using-declarations,
855 // - using-directives,
856 continue;
857
858 case Decl::Typedef:
859 case Decl::TypeAlias: {
860 // - typedef declarations and alias-declarations that do not define
861 // classes or enumerations,
Stephen Hines651f13c2014-04-23 16:59:28 -0700862 const auto *TN = cast<TypedefNameDecl>(DclIt);
Richard Smith9f569cc2011-10-01 02:31:28 +0000863 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
864 // Don't allow variably-modified types in constexpr functions.
865 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
866 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
867 << TL.getSourceRange() << TL.getType()
868 << isa<CXXConstructorDecl>(Dcl);
869 return false;
870 }
871 continue;
872 }
873
874 case Decl::Enum:
875 case Decl::CXXRecord:
Richard Smitha10b9782013-04-22 15:31:51 +0000876 // C++1y allows types to be defined, not just declared.
Stephen Hines651f13c2014-04-23 16:59:28 -0700877 if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition())
Richard Smitha10b9782013-04-22 15:31:51 +0000878 SemaRef.Diag(DS->getLocStart(),
Stephen Hines176edba2014-12-01 14:53:08 -0800879 SemaRef.getLangOpts().CPlusPlus14
Richard Smitha10b9782013-04-22 15:31:51 +0000880 ? diag::warn_cxx11_compat_constexpr_type_definition
881 : diag::ext_constexpr_type_definition)
Richard Smith9f569cc2011-10-01 02:31:28 +0000882 << isa<CXXConstructorDecl>(Dcl);
Richard Smith9f569cc2011-10-01 02:31:28 +0000883 continue;
884
Richard Smitha10b9782013-04-22 15:31:51 +0000885 case Decl::EnumConstant:
886 case Decl::IndirectField:
887 case Decl::ParmVar:
888 // These can only appear with other declarations which are banned in
889 // C++11 and permitted in C++1y, so ignore them.
890 continue;
891
892 case Decl::Var: {
893 // C++1y [dcl.constexpr]p3 allows anything except:
894 // a definition of a variable of non-literal type or of static or
895 // thread storage duration or for which no initialization is performed.
Stephen Hines651f13c2014-04-23 16:59:28 -0700896 const auto *VD = cast<VarDecl>(DclIt);
Richard Smitha10b9782013-04-22 15:31:51 +0000897 if (VD->isThisDeclarationADefinition()) {
898 if (VD->isStaticLocal()) {
899 SemaRef.Diag(VD->getLocation(),
900 diag::err_constexpr_local_var_static)
901 << isa<CXXConstructorDecl>(Dcl)
902 << (VD->getTLSKind() == VarDecl::TLS_Dynamic);
903 return false;
904 }
Richard Smithbebf5b12013-04-26 14:36:30 +0000905 if (!VD->getType()->isDependentType() &&
906 SemaRef.RequireLiteralType(
Richard Smitha10b9782013-04-22 15:31:51 +0000907 VD->getLocation(), VD->getType(),
908 diag::err_constexpr_local_var_non_literal_type,
909 isa<CXXConstructorDecl>(Dcl)))
910 return false;
Stephen Hines651f13c2014-04-23 16:59:28 -0700911 if (!VD->getType()->isDependentType() &&
912 !VD->hasInit() && !VD->isCXXForRangeDecl()) {
Richard Smitha10b9782013-04-22 15:31:51 +0000913 SemaRef.Diag(VD->getLocation(),
914 diag::err_constexpr_local_var_no_init)
915 << isa<CXXConstructorDecl>(Dcl);
916 return false;
917 }
918 }
919 SemaRef.Diag(VD->getLocation(),
Stephen Hines176edba2014-12-01 14:53:08 -0800920 SemaRef.getLangOpts().CPlusPlus14
Richard Smitha10b9782013-04-22 15:31:51 +0000921 ? diag::warn_cxx11_compat_constexpr_local_var
922 : diag::ext_constexpr_local_var)
Richard Smith9f569cc2011-10-01 02:31:28 +0000923 << isa<CXXConstructorDecl>(Dcl);
Richard Smitha10b9782013-04-22 15:31:51 +0000924 continue;
925 }
926
927 case Decl::NamespaceAlias:
928 case Decl::Function:
929 // These are disallowed in C++11 and permitted in C++1y. Allow them
930 // everywhere as an extension.
931 if (!Cxx1yLoc.isValid())
932 Cxx1yLoc = DS->getLocStart();
933 continue;
Richard Smith9f569cc2011-10-01 02:31:28 +0000934
935 default:
936 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
937 << isa<CXXConstructorDecl>(Dcl);
938 return false;
939 }
940 }
941
942 return true;
943}
944
945/// Check that the given field is initialized within a constexpr constructor.
946///
947/// \param Dcl The constexpr constructor being checked.
948/// \param Field The field being checked. This may be a member of an anonymous
949/// struct or union nested within the class being checked.
950/// \param Inits All declarations, including anonymous struct/union members and
951/// indirect members, for which any initialization was provided.
952/// \param Diagnosed Set to true if an error is produced.
953static void CheckConstexprCtorInitializer(Sema &SemaRef,
954 const FunctionDecl *Dcl,
955 FieldDecl *Field,
956 llvm::SmallSet<Decl*, 16> &Inits,
957 bool &Diagnosed) {
Eli Friedman5fb478b2013-06-28 21:07:41 +0000958 if (Field->isInvalidDecl())
959 return;
960
Douglas Gregord61db332011-10-10 17:22:13 +0000961 if (Field->isUnnamedBitfield())
962 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000963
Stephen Hines651f13c2014-04-23 16:59:28 -0700964 // Anonymous unions with no variant members and empty anonymous structs do not
965 // need to be explicitly initialized. FIXME: Anonymous structs that contain no
966 // indirect fields don't need initializing.
Richard Smith30ecfad2012-02-09 06:40:58 +0000967 if (Field->isAnonymousStructOrUnion() &&
Stephen Hines651f13c2014-04-23 16:59:28 -0700968 (Field->getType()->isUnionType()
969 ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers()
970 : Field->getType()->getAsCXXRecordDecl()->isEmpty()))
Richard Smith30ecfad2012-02-09 06:40:58 +0000971 return;
972
Richard Smith9f569cc2011-10-01 02:31:28 +0000973 if (!Inits.count(Field)) {
974 if (!Diagnosed) {
975 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
976 Diagnosed = true;
977 }
978 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
979 } else if (Field->isAnonymousStructOrUnion()) {
980 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
Stephen Hines651f13c2014-04-23 16:59:28 -0700981 for (auto *I : RD->fields())
Richard Smith9f569cc2011-10-01 02:31:28 +0000982 // If an anonymous union contains an anonymous struct of which any member
983 // is initialized, all members must be initialized.
Stephen Hines651f13c2014-04-23 16:59:28 -0700984 if (!RD->isUnion() || Inits.count(I))
985 CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000986 }
987}
988
Richard Smitha10b9782013-04-22 15:31:51 +0000989/// Check the provided statement is allowed in a constexpr function
990/// definition.
991static bool
992CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S,
Robert Wilhelme7205c02013-08-10 12:33:24 +0000993 SmallVectorImpl<SourceLocation> &ReturnStmts,
Richard Smitha10b9782013-04-22 15:31:51 +0000994 SourceLocation &Cxx1yLoc) {
995 // - its function-body shall be [...] a compound-statement that contains only
996 switch (S->getStmtClass()) {
997 case Stmt::NullStmtClass:
998 // - null statements,
999 return true;
1000
1001 case Stmt::DeclStmtClass:
1002 // - static_assert-declarations
1003 // - using-declarations,
1004 // - using-directives,
1005 // - typedef declarations and alias-declarations that do not define
1006 // classes or enumerations,
1007 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc))
1008 return false;
1009 return true;
1010
1011 case Stmt::ReturnStmtClass:
1012 // - and exactly one return statement;
1013 if (isa<CXXConstructorDecl>(Dcl)) {
1014 // C++1y allows return statements in constexpr constructors.
1015 if (!Cxx1yLoc.isValid())
1016 Cxx1yLoc = S->getLocStart();
1017 return true;
1018 }
1019
1020 ReturnStmts.push_back(S->getLocStart());
1021 return true;
1022
1023 case Stmt::CompoundStmtClass: {
1024 // C++1y allows compound-statements.
1025 if (!Cxx1yLoc.isValid())
1026 Cxx1yLoc = S->getLocStart();
1027
1028 CompoundStmt *CompStmt = cast<CompoundStmt>(S);
Stephen Hines651f13c2014-04-23 16:59:28 -07001029 for (auto *BodyIt : CompStmt->body()) {
1030 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts,
Richard Smitha10b9782013-04-22 15:31:51 +00001031 Cxx1yLoc))
1032 return false;
1033 }
1034 return true;
1035 }
1036
1037 case Stmt::AttributedStmtClass:
1038 if (!Cxx1yLoc.isValid())
1039 Cxx1yLoc = S->getLocStart();
1040 return true;
1041
1042 case Stmt::IfStmtClass: {
1043 // C++1y allows if-statements.
1044 if (!Cxx1yLoc.isValid())
1045 Cxx1yLoc = S->getLocStart();
1046
1047 IfStmt *If = cast<IfStmt>(S);
1048 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts,
1049 Cxx1yLoc))
1050 return false;
1051 if (If->getElse() &&
1052 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts,
1053 Cxx1yLoc))
1054 return false;
1055 return true;
1056 }
1057
1058 case Stmt::WhileStmtClass:
1059 case Stmt::DoStmtClass:
1060 case Stmt::ForStmtClass:
1061 case Stmt::CXXForRangeStmtClass:
1062 case Stmt::ContinueStmtClass:
1063 // C++1y allows all of these. We don't allow them as extensions in C++11,
1064 // because they don't make sense without variable mutation.
Stephen Hines176edba2014-12-01 14:53:08 -08001065 if (!SemaRef.getLangOpts().CPlusPlus14)
Richard Smitha10b9782013-04-22 15:31:51 +00001066 break;
1067 if (!Cxx1yLoc.isValid())
1068 Cxx1yLoc = S->getLocStart();
1069 for (Stmt::child_range Children = S->children(); Children; ++Children)
1070 if (*Children &&
1071 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1072 Cxx1yLoc))
1073 return false;
1074 return true;
1075
1076 case Stmt::SwitchStmtClass:
1077 case Stmt::CaseStmtClass:
1078 case Stmt::DefaultStmtClass:
1079 case Stmt::BreakStmtClass:
1080 // C++1y allows switch-statements, and since they don't need variable
1081 // mutation, we can reasonably allow them in C++11 as an extension.
1082 if (!Cxx1yLoc.isValid())
1083 Cxx1yLoc = S->getLocStart();
1084 for (Stmt::child_range Children = S->children(); Children; ++Children)
1085 if (*Children &&
1086 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1087 Cxx1yLoc))
1088 return false;
1089 return true;
1090
1091 default:
1092 if (!isa<Expr>(S))
1093 break;
1094
1095 // C++1y allows expression-statements.
1096 if (!Cxx1yLoc.isValid())
1097 Cxx1yLoc = S->getLocStart();
1098 return true;
1099 }
1100
1101 SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1102 << isa<CXXConstructorDecl>(Dcl);
1103 return false;
1104}
1105
Richard Smith9f569cc2011-10-01 02:31:28 +00001106/// Check the body for the given constexpr function declaration only contains
1107/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
1108///
1109/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +00001110bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001111 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +00001112 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +00001113 // The definition of a constexpr function shall satisfy the following
1114 // constraints: [...]
1115 // - its function-body shall be = delete, = default, or a
1116 // compound-statement
1117 //
Richard Smith5ba73e12012-02-04 00:33:54 +00001118 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +00001119 // In the definition of a constexpr constructor, [...]
1120 // - its function-body shall not be a function-try-block;
1121 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
1122 << isa<CXXConstructorDecl>(Dcl);
1123 return false;
1124 }
1125
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001126 SmallVector<SourceLocation, 4> ReturnStmts;
Richard Smitha10b9782013-04-22 15:31:51 +00001127
1128 // - its function-body shall be [...] a compound-statement that contains only
1129 // [... list of cases ...]
1130 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
1131 SourceLocation Cxx1yLoc;
Stephen Hines651f13c2014-04-23 16:59:28 -07001132 for (auto *BodyIt : CompBody->body()) {
1133 if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc))
Richard Smitha10b9782013-04-22 15:31:51 +00001134 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +00001135 }
1136
Richard Smitha10b9782013-04-22 15:31:51 +00001137 if (Cxx1yLoc.isValid())
1138 Diag(Cxx1yLoc,
Stephen Hines176edba2014-12-01 14:53:08 -08001139 getLangOpts().CPlusPlus14
Richard Smitha10b9782013-04-22 15:31:51 +00001140 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt
1141 : diag::ext_constexpr_body_invalid_stmt)
1142 << isa<CXXConstructorDecl>(Dcl);
1143
Richard Smith9f569cc2011-10-01 02:31:28 +00001144 if (const CXXConstructorDecl *Constructor
1145 = dyn_cast<CXXConstructorDecl>(Dcl)) {
1146 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +00001147 // DR1359:
1148 // - every non-variant non-static data member and base class sub-object
1149 // shall be initialized;
Stephen Hines651f13c2014-04-23 16:59:28 -07001150 // DR1460:
1151 // - if the class is a union having variant members, exactly one of them
Richard Smith30ecfad2012-02-09 06:40:58 +00001152 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +00001153 if (RD->isUnion()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001154 if (Constructor->getNumCtorInitializers() == 0 &&
1155 RD->hasVariantMembers()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001156 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
1157 return false;
1158 }
Richard Smith6e433752011-10-10 16:38:04 +00001159 } else if (!Constructor->isDependentContext() &&
1160 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001161 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
1162
1163 // Skip detailed checking if we have enough initializers, and we would
1164 // allow at most one initializer per member.
1165 bool AnyAnonStructUnionMembers = false;
1166 unsigned Fields = 0;
1167 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1168 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +00001169 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001170 AnyAnonStructUnionMembers = true;
1171 break;
1172 }
1173 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001174 // DR1460:
1175 // - if the class is a union-like class, but is not a union, for each of
1176 // its anonymous union members having variant members, exactly one of
1177 // them shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +00001178 if (AnyAnonStructUnionMembers ||
1179 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
1180 // Check initialization of non-static data members. Base classes are
1181 // always initialized so do not need to be checked. Dependent bases
1182 // might not have initializers in the member initializer list.
1183 llvm::SmallSet<Decl*, 16> Inits;
Stephen Hines651f13c2014-04-23 16:59:28 -07001184 for (const auto *I: Constructor->inits()) {
1185 if (FieldDecl *FD = I->getMember())
Richard Smith9f569cc2011-10-01 02:31:28 +00001186 Inits.insert(FD);
Stephen Hines651f13c2014-04-23 16:59:28 -07001187 else if (IndirectFieldDecl *ID = I->getIndirectMember())
Richard Smith9f569cc2011-10-01 02:31:28 +00001188 Inits.insert(ID->chain_begin(), ID->chain_end());
1189 }
1190
1191 bool Diagnosed = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001192 for (auto *I : RD->fields())
1193 CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +00001194 if (Diagnosed)
1195 return false;
1196 }
1197 }
Richard Smith9f569cc2011-10-01 02:31:28 +00001198 } else {
1199 if (ReturnStmts.empty()) {
Richard Smitha10b9782013-04-22 15:31:51 +00001200 // C++1y doesn't require constexpr functions to contain a 'return'
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001201 // statement. We still do, unless the return type might be void, because
Richard Smitha10b9782013-04-22 15:31:51 +00001202 // otherwise if there's no return statement, the function cannot
1203 // be used in a core constant expression.
Stephen Hines176edba2014-12-01 14:53:08 -08001204 bool OK = getLangOpts().CPlusPlus14 &&
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001205 (Dcl->getReturnType()->isVoidType() ||
1206 Dcl->getReturnType()->isDependentType());
Richard Smitha10b9782013-04-22 15:31:51 +00001207 Diag(Dcl->getLocation(),
Richard Smithbebf5b12013-04-26 14:36:30 +00001208 OK ? diag::warn_cxx11_compat_constexpr_body_no_return
1209 : diag::err_constexpr_body_no_return);
1210 return OK;
Richard Smith9f569cc2011-10-01 02:31:28 +00001211 }
1212 if (ReturnStmts.size() > 1) {
Richard Smitha10b9782013-04-22 15:31:51 +00001213 Diag(ReturnStmts.back(),
Stephen Hines176edba2014-12-01 14:53:08 -08001214 getLangOpts().CPlusPlus14
Richard Smitha10b9782013-04-22 15:31:51 +00001215 ? diag::warn_cxx11_compat_constexpr_body_multiple_return
1216 : diag::ext_constexpr_body_multiple_return);
Richard Smith9f569cc2011-10-01 02:31:28 +00001217 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
1218 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
Richard Smith9f569cc2011-10-01 02:31:28 +00001219 }
1220 }
1221
Richard Smith5ba73e12012-02-04 00:33:54 +00001222 // C++11 [dcl.constexpr]p5:
1223 // if no function argument values exist such that the function invocation
1224 // substitution would produce a constant expression, the program is
1225 // ill-formed; no diagnostic required.
1226 // C++11 [dcl.constexpr]p3:
1227 // - every constructor call and implicit conversion used in initializing the
1228 // return value shall be one of those allowed in a constant expression.
1229 // C++11 [dcl.constexpr]p4:
1230 // - every constructor involved in initializing non-static data members and
1231 // base class sub-objects shall be a constexpr constructor.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001232 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +00001233 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smithafee0ff2012-12-09 05:55:43 +00001234 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
Richard Smith745f5142012-01-27 01:14:48 +00001235 << isa<CXXConstructorDecl>(Dcl);
1236 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1237 Diag(Diags[I].first, Diags[I].second);
Richard Smithafee0ff2012-12-09 05:55:43 +00001238 // Don't return false here: we allow this for compatibility in
1239 // system headers.
Richard Smith745f5142012-01-27 01:14:48 +00001240 }
1241
Richard Smith9f569cc2011-10-01 02:31:28 +00001242 return true;
1243}
1244
Douglas Gregorb48fe382008-10-31 09:07:45 +00001245/// isCurrentClassName - Determine whether the identifier II is the
1246/// name of the class type currently being defined. In the case of
1247/// nested classes, this will only return true if II is the name of
1248/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001249bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1250 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001251 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001252
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001253 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001254 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001255 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001256 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1257 } else
1258 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1259
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001260 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001261 return &II == CurDecl->getIdentifier();
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00001262 return false;
Douglas Gregorb48fe382008-10-31 09:07:45 +00001263}
1264
Richard Smithb79b17b2013-10-15 00:00:26 +00001265/// \brief Determine whether the identifier II is a typo for the name of
1266/// the class type currently being defined. If so, update it to the identifier
1267/// that should have been used.
1268bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) {
1269 assert(getLangOpts().CPlusPlus && "No class names in C!");
1270
1271 if (!getLangOpts().SpellChecking)
1272 return false;
1273
1274 CXXRecordDecl *CurDecl;
1275 if (SS && SS->isSet() && !SS->isInvalid()) {
1276 DeclContext *DC = computeDeclContext(*SS, true);
1277 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1278 } else
1279 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1280
1281 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
1282 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
1283 < II->getLength()) {
1284 II = CurDecl->getIdentifier();
1285 return true;
1286 }
1287
1288 return false;
1289}
1290
Douglas Gregor229d47a2012-11-10 07:24:09 +00001291/// \brief Determine whether the given class is a base class of the given
1292/// class, including looking at dependent bases.
1293static bool findCircularInheritance(const CXXRecordDecl *Class,
1294 const CXXRecordDecl *Current) {
1295 SmallVector<const CXXRecordDecl*, 8> Queue;
1296
1297 Class = Class->getCanonicalDecl();
1298 while (true) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001299 for (const auto &I : Current->bases()) {
1300 CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl();
Douglas Gregor229d47a2012-11-10 07:24:09 +00001301 if (!Base)
1302 continue;
1303
1304 Base = Base->getDefinition();
1305 if (!Base)
1306 continue;
1307
1308 if (Base->getCanonicalDecl() == Class)
1309 return true;
1310
1311 Queue.push_back(Base);
1312 }
1313
1314 if (Queue.empty())
1315 return false;
1316
Robert Wilhelm344472e2013-08-23 16:11:15 +00001317 Current = Queue.pop_back_val();
Douglas Gregor229d47a2012-11-10 07:24:09 +00001318 }
1319
1320 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001321}
1322
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001323/// \brief Perform propagation of DLL attributes from a derived class to a
1324/// templated base class for MS compatibility.
1325static void propagateDLLAttrToBaseClassTemplate(
1326 Sema &S, CXXRecordDecl *Class, Attr *ClassAttr,
1327 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) {
1328 if (getDLLAttr(
1329 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) {
1330 // If the base class template has a DLL attribute, don't try to change it.
1331 return;
1332 }
1333
1334 if (BaseTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
1335 // If the base class is not already specialized, we can do the propagation.
1336 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(S.getASTContext()));
1337 NewAttr->setInherited(true);
1338 BaseTemplateSpec->addAttr(NewAttr);
1339 return;
1340 }
1341
1342 bool DifferentAttribute = false;
1343 if (Attr *SpecializationAttr = getDLLAttr(BaseTemplateSpec)) {
1344 if (!SpecializationAttr->isInherited()) {
1345 // The template has previously been specialized or instantiated with an
1346 // explicit attribute. We should not try to change it.
1347 return;
1348 }
1349 if (SpecializationAttr->getKind() == ClassAttr->getKind()) {
1350 // The specialization already has the right attribute.
1351 return;
1352 }
1353 DifferentAttribute = true;
1354 }
1355
1356 // The template was previously instantiated or explicitly specialized without
1357 // a dll attribute, or the template was previously instantiated with a
1358 // different inherited attribute. It's too late for us to change the
1359 // attribute, so warn that this is unsupported.
1360 S.Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class)
1361 << BaseTemplateSpec->isExplicitSpecialization() << DifferentAttribute;
1362 S.Diag(ClassAttr->getLocation(), diag::note_attribute);
1363 if (BaseTemplateSpec->isExplicitSpecialization()) {
1364 S.Diag(BaseTemplateSpec->getLocation(),
1365 diag::note_template_class_explicit_specialization_was_here)
1366 << BaseTemplateSpec;
1367 } else {
1368 S.Diag(BaseTemplateSpec->getPointOfInstantiation(),
1369 diag::note_template_class_instantiation_was_here)
1370 << BaseTemplateSpec;
1371 }
1372}
1373
Mike Stump1eb44332009-09-09 15:08:12 +00001374/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001375///
1376/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1377/// and returns NULL otherwise.
1378CXXBaseSpecifier *
1379Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1380 SourceRange SpecifierRange,
1381 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001382 TypeSourceInfo *TInfo,
1383 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001384 QualType BaseType = TInfo->getType();
1385
Douglas Gregor2943aed2009-03-03 04:44:36 +00001386 // C++ [class.union]p1:
1387 // A union shall not have base classes.
1388 if (Class->isUnion()) {
1389 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1390 << SpecifierRange;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001391 return nullptr;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001392 }
1393
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001394 if (EllipsisLoc.isValid() &&
1395 !TInfo->getType()->containsUnexpandedParameterPack()) {
1396 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1397 << TInfo->getTypeLoc().getSourceRange();
1398 EllipsisLoc = SourceLocation();
1399 }
Douglas Gregord777e282012-11-10 01:18:17 +00001400
1401 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1402
1403 if (BaseType->isDependentType()) {
1404 // Make sure that we don't have circular inheritance among our dependent
1405 // bases. For non-dependent bases, the check for completeness below handles
1406 // this.
1407 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1408 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1409 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001410 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001411 Diag(BaseLoc, diag::err_circular_inheritance)
1412 << BaseType << Context.getTypeDeclType(Class);
1413
1414 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1415 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1416 << BaseType;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001417
1418 return nullptr;
Douglas Gregord777e282012-11-10 01:18:17 +00001419 }
1420 }
1421
Mike Stump1eb44332009-09-09 15:08:12 +00001422 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001423 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001424 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001425 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001426
1427 // Base specifiers must be record types.
1428 if (!BaseType->isRecordType()) {
1429 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001430 return nullptr;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001431 }
1432
1433 // C++ [class.union]p1:
1434 // A union shall not be used as a base class.
1435 if (BaseType->isUnionType()) {
1436 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001437 return nullptr;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001438 }
1439
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001440 // For the MS ABI, propagate DLL attributes to base class templates.
1441 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1442 if (Attr *ClassAttr = getDLLAttr(Class)) {
1443 if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
1444 BaseType->getAsCXXRecordDecl())) {
1445 propagateDLLAttrToBaseClassTemplate(*this, Class, ClassAttr,
1446 BaseTemplate, BaseLoc);
1447 }
1448 }
1449 }
1450
Douglas Gregor2943aed2009-03-03 04:44:36 +00001451 // C++ [class.derived]p2:
1452 // The class-name in a base-specifier shall not be an incompletely
1453 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001454 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001455 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001456 Class->setInvalidDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001457 return nullptr;
John McCall572fc622010-08-17 07:23:57 +00001458 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001459
Eli Friedman1d954f62009-08-15 21:55:26 +00001460 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001461 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001462 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001463 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001464 assert(BaseDecl && "Base type is not incomplete, but has no definition");
David Majnemer2f686692013-06-22 06:43:58 +00001465 CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
Eli Friedman1d954f62009-08-15 21:55:26 +00001466 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001467
David Majnemer28165b72013-11-02 12:00:36 +00001468 // A class which contains a flexible array member is not suitable for use as a
1469 // base class:
1470 // - If the layout determines that a base comes before another base,
1471 // the flexible array member would index into the subsequent base.
1472 // - If the layout determines that base comes before the derived class,
1473 // the flexible array member would index into the derived class.
1474 if (CXXBaseDecl->hasFlexibleArrayMember()) {
1475 Diag(BaseLoc, diag::err_base_class_has_flexible_array_member)
1476 << CXXBaseDecl->getDeclName();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001477 return nullptr;
David Majnemer28165b72013-11-02 12:00:36 +00001478 }
1479
Anders Carlsson1d209272011-03-25 14:55:14 +00001480 // C++ [class]p3:
David Majnemer7041fcc2013-11-02 11:24:41 +00001481 // If a class is marked final and it appears as a base-type-specifier in
Anders Carlsson1d209272011-03-25 14:55:14 +00001482 // base-clause, the program is ill-formed.
David Majnemer7121bdb2013-10-18 00:33:31 +00001483 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) {
David Majnemer7041fcc2013-11-02 11:24:41 +00001484 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
David Majnemer7121bdb2013-10-18 00:33:31 +00001485 << CXXBaseDecl->getDeclName()
1486 << FA->isSpelledAsSealed();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001487 Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at)
1488 << CXXBaseDecl->getDeclName() << FA->getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001489 return nullptr;
Anders Carlssondfc2f102011-01-22 17:51:53 +00001490 }
1491
John McCall572fc622010-08-17 07:23:57 +00001492 if (BaseDecl->isInvalidDecl())
1493 Class->setInvalidDecl();
David Majnemer7041fcc2013-11-02 11:24:41 +00001494
Anders Carlsson51f94042009-12-03 17:49:57 +00001495 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001496 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001497 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001498 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001499}
1500
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001501/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1502/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001503/// example:
1504/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001505/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001506BaseResult
John McCalld226f652010-08-21 09:40:31 +00001507Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Richard Smith05321402013-02-19 23:47:15 +00001508 ParsedAttributes &Attributes,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001509 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001510 ParsedType basetype, SourceLocation BaseLoc,
1511 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001512 if (!classdecl)
1513 return true;
1514
Douglas Gregor40808ce2009-03-09 23:48:35 +00001515 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001516 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001517 if (!Class)
1518 return true;
1519
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001520 // We haven't yet attached the base specifiers.
1521 Class->setIsParsingBaseSpecifiers();
1522
Richard Smith05321402013-02-19 23:47:15 +00001523 // We do not support any C++11 attributes on base-specifiers yet.
1524 // Diagnose any attributes we see.
1525 if (!Attributes.empty()) {
1526 for (AttributeList *Attr = Attributes.getList(); Attr;
1527 Attr = Attr->getNext()) {
1528 if (Attr->isInvalid() ||
1529 Attr->getKind() == AttributeList::IgnoredAttribute)
1530 continue;
1531 Diag(Attr->getLoc(),
1532 Attr->getKind() == AttributeList::UnknownAttribute
1533 ? diag::warn_unknown_attribute_ignored
1534 : diag::err_base_specifier_attribute)
1535 << Attr->getName();
1536 }
1537 }
1538
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001539 TypeSourceInfo *TInfo = nullptr;
Nick Lewycky56062202010-07-26 16:56:01 +00001540 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001541
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001542 if (EllipsisLoc.isInvalid() &&
1543 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001544 UPPC_BaseType))
1545 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001546
Douglas Gregor2943aed2009-03-03 04:44:36 +00001547 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001548 Virtual, Access, TInfo,
1549 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001550 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001551 else
1552 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001553
Douglas Gregor2943aed2009-03-03 04:44:36 +00001554 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001555}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001556
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001557/// Use small set to collect indirect bases. As this is only used
1558/// locally, there's no need to abstract the small size parameter.
1559typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet;
1560
1561/// \brief Recursively add the bases of Type. Don't add Type itself.
1562static void
1563NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set,
1564 const QualType &Type)
1565{
1566 // Even though the incoming type is a base, it might not be
1567 // a class -- it could be a template parm, for instance.
1568 if (auto Rec = Type->getAs<RecordType>()) {
1569 auto Decl = Rec->getAsCXXRecordDecl();
1570
1571 // Iterate over its bases.
1572 for (const auto &BaseSpec : Decl->bases()) {
1573 QualType Base = Context.getCanonicalType(BaseSpec.getType())
1574 .getUnqualifiedType();
1575 if (Set.insert(Base).second)
1576 // If we've not already seen it, recurse.
1577 NoteIndirectBases(Context, Set, Base);
1578 }
1579 }
1580}
1581
Douglas Gregor2943aed2009-03-03 04:44:36 +00001582/// \brief Performs the actual work of attaching the given base class
1583/// specifiers to a C++ class.
1584bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1585 unsigned NumBases) {
1586 if (NumBases == 0)
1587 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001588
1589 // Used to keep track of which base types we have already seen, so
1590 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001591 // that the key is always the unqualified canonical type of the base
1592 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001593 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1594
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001595 // Used to track indirect bases so we can see if a direct base is
1596 // ambiguous.
1597 IndirectBaseSet IndirectBaseTypes;
1598
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001599 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001600 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001601 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001602 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001603 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001604 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001605 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001606
1607 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1608 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001609 // C++ [class.mi]p3:
1610 // A class shall not be specified as a direct base class of a
1611 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001612 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001613 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001614 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001615 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001616
1617 // Delete the duplicate base class specifier; we're going to
1618 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001619 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001620
1621 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001622 } else {
1623 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001624 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001625 Bases[NumGoodBases++] = Bases[idx];
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001626
1627 // Note this base's direct & indirect bases, if there could be ambiguity.
1628 if (NumBases > 1)
1629 NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType);
1630
John McCalle402e722012-09-25 07:32:39 +00001631 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1632 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1633 if (Class->isInterface() &&
1634 (!RD->isInterface() ||
1635 KnownBase->getAccessSpecifier() != AS_public)) {
1636 // The Microsoft extension __interface does not permit bases that
1637 // are not themselves public interfaces.
1638 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1639 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1640 << RD->getSourceRange();
1641 Invalid = true;
1642 }
1643 if (RD->hasAttr<WeakAttr>())
Stephen Hines651f13c2014-04-23 16:59:28 -07001644 Class->addAttr(WeakAttr::CreateImplicit(Context));
John McCalle402e722012-09-25 07:32:39 +00001645 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001646 }
1647 }
1648
1649 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001650 Class->setBases(Bases, NumGoodBases);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001651
1652 for (unsigned idx = 0; idx < NumGoodBases; ++idx) {
1653 // Check whether this direct base is inaccessible due to ambiguity.
1654 QualType BaseType = Bases[idx]->getType();
1655 CanQualType CanonicalBase = Context.getCanonicalType(BaseType)
1656 .getUnqualifiedType();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001657
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001658 if (IndirectBaseTypes.count(CanonicalBase)) {
1659 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1660 /*DetectVirtual=*/true);
1661 bool found
1662 = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths);
1663 assert(found);
1664 (void)found;
1665
1666 if (Paths.isAmbiguous(CanonicalBase))
1667 Diag(Bases[idx]->getLocStart (), diag::warn_inaccessible_base_class)
1668 << BaseType << getAmbiguousPathsDisplayString(Paths)
1669 << Bases[idx]->getSourceRange();
1670 else
1671 assert(Bases[idx]->isVirtual());
1672 }
1673
1674 // Delete the base class specifier, since its data has been copied
1675 // into the CXXRecordDecl.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001676 Context.Deallocate(Bases[idx]);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001677 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001678
1679 return Invalid;
1680}
1681
1682/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1683/// class, after checking whether there are any duplicate base
1684/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001685void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001686 unsigned NumBases) {
1687 if (!ClassDecl || !Bases || !NumBases)
1688 return;
1689
1690 AdjustDeclIfTemplate(ClassDecl);
Robert Wilhelm0d317a02013-07-22 05:04:01 +00001691 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases, NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001692}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001693
Douglas Gregora8f32e02009-10-06 17:59:45 +00001694/// \brief Determine whether the type \p Derived is a C++ class that is
1695/// derived from the type \p Base.
1696bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001697 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001698 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001699
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001700 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001701 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001702 return false;
1703
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001704 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001705 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001706 return false;
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001707
1708 // If either the base or the derived type is invalid, don't try to
1709 // check whether one is derived from the other.
1710 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl())
1711 return false;
1712
John McCall86ff3082010-02-04 22:26:26 +00001713 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1714 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001715}
1716
1717/// \brief Determine whether the type \p Derived is a C++ class that is
1718/// derived from the type \p Base.
1719bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001720 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001721 return false;
1722
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001723 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001724 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001725 return false;
1726
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001727 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001728 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001729 return false;
1730
Douglas Gregora8f32e02009-10-06 17:59:45 +00001731 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1732}
1733
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001734void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001735 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001736 assert(BasePathArray.empty() && "Base path array must be empty!");
1737 assert(Paths.isRecordingPaths() && "Must record paths!");
1738
1739 const CXXBasePath &Path = Paths.front();
1740
1741 // We first go backward and check if we have a virtual base.
1742 // FIXME: It would be better if CXXBasePath had the base specifier for
1743 // the nearest virtual base.
1744 unsigned Start = 0;
1745 for (unsigned I = Path.size(); I != 0; --I) {
1746 if (Path[I - 1].Base->isVirtual()) {
1747 Start = I - 1;
1748 break;
1749 }
1750 }
1751
1752 // Now add all bases.
1753 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001754 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001755}
1756
Douglas Gregora8f32e02009-10-06 17:59:45 +00001757/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1758/// conversion (where Derived and Base are class types) is
1759/// well-formed, meaning that the conversion is unambiguous (and
1760/// that all of the base classes are accessible). Returns true
1761/// and emits a diagnostic if the code is ill-formed, returns false
1762/// otherwise. Loc is the location where this routine should point to
1763/// if there is an error, and Range is the source range to highlight
1764/// if there is an error.
1765bool
1766Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001767 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001768 unsigned AmbigiousBaseConvID,
1769 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001770 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001771 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001772 // First, determine whether the path from Derived to Base is
1773 // ambiguous. This is slightly more expensive than checking whether
1774 // the Derived to Base conversion exists, because here we need to
1775 // explore multiple paths to determine if there is an ambiguity.
1776 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1777 /*DetectVirtual=*/false);
1778 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1779 assert(DerivationOkay &&
1780 "Can only be used with a derived-to-base conversion");
1781 (void)DerivationOkay;
1782
1783 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001784 if (InaccessibleBaseID) {
1785 // Check that the base class can be accessed.
1786 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1787 InaccessibleBaseID)) {
1788 case AR_inaccessible:
1789 return true;
1790 case AR_accessible:
1791 case AR_dependent:
1792 case AR_delayed:
1793 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001794 }
John McCall6b2accb2010-02-10 09:31:12 +00001795 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001796
1797 // Build a base path if necessary.
1798 if (BasePath)
1799 BuildBasePathArray(Paths, *BasePath);
1800 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001801 }
1802
David Majnemer2f686692013-06-22 06:43:58 +00001803 if (AmbigiousBaseConvID) {
1804 // We know that the derived-to-base conversion is ambiguous, and
1805 // we're going to produce a diagnostic. Perform the derived-to-base
1806 // search just one more time to compute all of the possible paths so
1807 // that we can print them out. This is more expensive than any of
1808 // the previous derived-to-base checks we've done, but at this point
1809 // performance isn't as much of an issue.
1810 Paths.clear();
1811 Paths.setRecordingPaths(true);
1812 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1813 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1814 (void)StillOkay;
1815
1816 // Build up a textual representation of the ambiguous paths, e.g.,
1817 // D -> B -> A, that will be used to illustrate the ambiguous
1818 // conversions in the diagnostic. We only print one of the paths
1819 // to each base class subobject.
1820 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1821
1822 Diag(Loc, AmbigiousBaseConvID)
1823 << Derived << Base << PathDisplayStr << Range << Name;
1824 }
Douglas Gregora8f32e02009-10-06 17:59:45 +00001825 return true;
1826}
1827
1828bool
1829Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001830 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001831 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001832 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001833 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001834 IgnoreAccess ? 0
1835 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001836 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001837 Loc, Range, DeclarationName(),
1838 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001839}
1840
1841
1842/// @brief Builds a string representing ambiguous paths from a
1843/// specific derived class to different subobjects of the same base
1844/// class.
1845///
1846/// This function builds a string that can be used in error messages
1847/// to show the different paths that one can take through the
1848/// inheritance hierarchy to go from the derived class to different
1849/// subobjects of a base class. The result looks something like this:
1850/// @code
1851/// struct D -> struct B -> struct A
1852/// struct D -> struct C -> struct A
1853/// @endcode
1854std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1855 std::string PathDisplayStr;
1856 std::set<unsigned> DisplayedPaths;
1857 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1858 Path != Paths.end(); ++Path) {
1859 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1860 // We haven't displayed a path to this particular base
1861 // class subobject yet.
1862 PathDisplayStr += "\n ";
1863 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1864 for (CXXBasePath::const_iterator Element = Path->begin();
1865 Element != Path->end(); ++Element)
1866 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1867 }
1868 }
1869
1870 return PathDisplayStr;
1871}
1872
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001873//===----------------------------------------------------------------------===//
1874// C++ class member Handling
1875//===----------------------------------------------------------------------===//
1876
Abramo Bagnara6206d532010-06-05 05:09:32 +00001877/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001878bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1879 SourceLocation ASLoc,
1880 SourceLocation ColonLoc,
1881 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001882 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001883 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001884 ASLoc, ColonLoc);
1885 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001886 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001887}
1888
Richard Smitha4b39652012-08-06 03:25:17 +00001889/// CheckOverrideControl - Check C++11 override control semantics.
Eli Friedmandae92712013-09-05 23:51:03 +00001890void Sema::CheckOverrideControl(NamedDecl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001891 if (D->isInvalidDecl())
1892 return;
1893
Eli Friedmandae92712013-09-05 23:51:03 +00001894 // We only care about "override" and "final" declarations.
1895 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>())
1896 return;
Anders Carlsson9e682d92011-01-20 05:57:14 +00001897
Eli Friedmandae92712013-09-05 23:51:03 +00001898 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001899
Eli Friedmandae92712013-09-05 23:51:03 +00001900 // We can't check dependent instance methods.
1901 if (MD && MD->isInstance() &&
1902 (MD->getParent()->hasAnyDependentBases() ||
1903 MD->getType()->isDependentType()))
1904 return;
1905
1906 if (MD && !MD->isVirtual()) {
1907 // If we have a non-virtual method, check if if hides a virtual method.
1908 // (In that case, it's most likely the method has the wrong type.)
1909 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
1910 FindHiddenVirtualMethods(MD, OverloadedMethods);
1911
1912 if (!OverloadedMethods.empty()) {
Richard Smitha4b39652012-08-06 03:25:17 +00001913 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1914 Diag(OA->getLocation(),
Eli Friedmandae92712013-09-05 23:51:03 +00001915 diag::override_keyword_hides_virtual_member_function)
1916 << "override" << (OverloadedMethods.size() > 1);
1917 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
Richard Smitha4b39652012-08-06 03:25:17 +00001918 Diag(FA->getLocation(),
Eli Friedmandae92712013-09-05 23:51:03 +00001919 diag::override_keyword_hides_virtual_member_function)
David Majnemer7121bdb2013-10-18 00:33:31 +00001920 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1921 << (OverloadedMethods.size() > 1);
Richard Smitha4b39652012-08-06 03:25:17 +00001922 }
Eli Friedmandae92712013-09-05 23:51:03 +00001923 NoteHiddenVirtualMethods(MD, OverloadedMethods);
1924 MD->setInvalidDecl();
1925 return;
1926 }
1927 // Fall through into the general case diagnostic.
1928 // FIXME: We might want to attempt typo correction here.
1929 }
1930
1931 if (!MD || !MD->isVirtual()) {
1932 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1933 Diag(OA->getLocation(),
1934 diag::override_keyword_only_allowed_on_virtual_member_functions)
1935 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1936 D->dropAttr<OverrideAttr>();
1937 }
1938 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1939 Diag(FA->getLocation(),
1940 diag::override_keyword_only_allowed_on_virtual_member_functions)
David Majnemer7121bdb2013-10-18 00:33:31 +00001941 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1942 << FixItHint::CreateRemoval(FA->getLocation());
Eli Friedmandae92712013-09-05 23:51:03 +00001943 D->dropAttr<FinalAttr>();
Richard Smitha4b39652012-08-06 03:25:17 +00001944 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001945 return;
1946 }
Richard Smitha4b39652012-08-06 03:25:17 +00001947
Richard Smitha4b39652012-08-06 03:25:17 +00001948 // C++11 [class.virtual]p5:
Stephen Hines176edba2014-12-01 14:53:08 -08001949 // If a function is marked with the virt-specifier override and
Richard Smitha4b39652012-08-06 03:25:17 +00001950 // does not override a member function of a base class, the program is
1951 // ill-formed.
1952 bool HasOverriddenMethods =
1953 MD->begin_overridden_methods() != MD->end_overridden_methods();
1954 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1955 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1956 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001957}
1958
Stephen Hines176edba2014-12-01 14:53:08 -08001959void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) {
1960 if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>())
1961 return;
1962 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
1963 if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>() ||
1964 isa<CXXDestructorDecl>(MD))
1965 return;
1966
1967 SourceLocation Loc = MD->getLocation();
1968 SourceLocation SpellingLoc = Loc;
1969 if (getSourceManager().isMacroArgExpansion(Loc))
1970 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first;
1971 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc);
1972 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc))
1973 return;
1974
1975 if (MD->size_overridden_methods() > 0) {
1976 Diag(MD->getLocation(), diag::warn_function_marked_not_override_overriding)
1977 << MD->getDeclName();
1978 const CXXMethodDecl *OMD = *MD->begin_overridden_methods();
1979 Diag(OMD->getLocation(), diag::note_overridden_virtual_function);
1980 }
1981}
1982
Richard Smitha4b39652012-08-06 03:25:17 +00001983/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001984/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001985/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001986bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1987 const CXXMethodDecl *Old) {
David Majnemer7121bdb2013-10-18 00:33:31 +00001988 FinalAttr *FA = Old->getAttr<FinalAttr>();
1989 if (!FA)
Anders Carlssonf89e0422011-01-23 21:07:30 +00001990 return false;
1991
1992 Diag(New->getLocation(), diag::err_final_function_overridden)
David Majnemer7121bdb2013-10-18 00:33:31 +00001993 << New->getDeclName()
1994 << FA->isSpelledAsSealed();
Anders Carlssonf89e0422011-01-23 21:07:30 +00001995 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1996 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001997}
1998
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001999static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00002000 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
2001 // FIXME: Destruction of ObjC lifetime types has side-effects.
2002 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2003 return !RD->isCompleteDefinition() ||
2004 !RD->hasTrivialDefaultConstructor() ||
2005 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002006 return false;
2007}
2008
John McCall76da55d2013-04-16 07:28:30 +00002009static AttributeList *getMSPropertyAttr(AttributeList *list) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002010 for (AttributeList *it = list; it != nullptr; it = it->getNext())
John McCall76da55d2013-04-16 07:28:30 +00002011 if (it->isDeclspecPropertyAttribute())
2012 return it;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002013 return nullptr;
John McCall76da55d2013-04-16 07:28:30 +00002014}
2015
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002016/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
2017/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00002018/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00002019/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
2020/// present (but parsing it has been deferred).
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00002021NamedDecl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002022Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00002023 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002024 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00002025 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002026 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00002027 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
2028 DeclarationName Name = NameInfo.getName();
2029 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00002030
2031 // For anonymous bitfields, the location should point to the type.
2032 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00002033 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00002034
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002035 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002036
John McCall4bde1e12010-06-04 08:34:12 +00002037 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00002038 assert(!DS.isFriendSpecified());
2039
Richard Smith1ab0d902011-06-25 02:28:38 +00002040 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00002041
John McCalle402e722012-09-25 07:32:39 +00002042 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
2043 // The Microsoft extension __interface only permits public member functions
2044 // and prohibits constructors, destructors, operators, non-public member
2045 // functions, static methods and data members.
2046 unsigned InvalidDecl;
2047 bool ShowDeclName = true;
2048 if (!isFunc)
2049 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
2050 else if (AS != AS_public)
2051 InvalidDecl = 2;
2052 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
2053 InvalidDecl = 3;
2054 else switch (Name.getNameKind()) {
2055 case DeclarationName::CXXConstructorName:
2056 InvalidDecl = 4;
2057 ShowDeclName = false;
2058 break;
2059
2060 case DeclarationName::CXXDestructorName:
2061 InvalidDecl = 5;
2062 ShowDeclName = false;
2063 break;
2064
2065 case DeclarationName::CXXOperatorName:
2066 case DeclarationName::CXXConversionFunctionName:
2067 InvalidDecl = 6;
2068 break;
2069
2070 default:
2071 InvalidDecl = 0;
2072 break;
2073 }
2074
2075 if (InvalidDecl) {
2076 if (ShowDeclName)
2077 Diag(Loc, diag::err_invalid_member_in_interface)
2078 << (InvalidDecl-1) << Name;
2079 else
2080 Diag(Loc, diag::err_invalid_member_in_interface)
2081 << (InvalidDecl-1) << "";
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002082 return nullptr;
John McCalle402e722012-09-25 07:32:39 +00002083 }
2084 }
2085
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002086 // C++ 9.2p6: A member shall not be declared to have automatic storage
2087 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00002088 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
2089 // data members and cannot be applied to names declared const or static,
2090 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002091 switch (DS.getStorageClassSpec()) {
Richard Smithec642442013-04-12 22:46:28 +00002092 case DeclSpec::SCS_unspecified:
2093 case DeclSpec::SCS_typedef:
2094 case DeclSpec::SCS_static:
2095 break;
2096 case DeclSpec::SCS_mutable:
2097 if (isFunc) {
2098 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00002099
Richard Smithec642442013-04-12 22:46:28 +00002100 // FIXME: It would be nicer if the keyword was ignored only for this
2101 // declarator. Otherwise we could get follow-up errors.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002102 D.getMutableDeclSpec().ClearStorageClassSpecs();
Richard Smithec642442013-04-12 22:46:28 +00002103 }
2104 break;
2105 default:
2106 Diag(DS.getStorageClassSpecLoc(),
2107 diag::err_storageclass_invalid_for_member);
2108 D.getMutableDeclSpec().ClearStorageClassSpecs();
2109 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002110 }
2111
Sebastian Redl669d5d72008-11-14 23:42:31 +00002112 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
2113 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00002114 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002115
David Blaikie1d87fba2013-01-30 01:22:18 +00002116 if (DS.isConstexprSpecified() && isInstField) {
2117 SemaDiagnosticBuilder B =
2118 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member);
2119 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc();
2120 if (InitStyle == ICIS_NoInit) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002121 B << 0 << 0;
2122 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const)
2123 B << FixItHint::CreateRemoval(ConstexprLoc);
2124 else {
2125 B << FixItHint::CreateReplacement(ConstexprLoc, "const");
2126 D.getMutableDeclSpec().ClearConstexprSpec();
2127 const char *PrevSpec;
2128 unsigned DiagID;
2129 bool Failed = D.getMutableDeclSpec().SetTypeQual(
2130 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts());
2131 (void)Failed;
2132 assert(!Failed && "Making a constexpr member const shouldn't fail");
2133 }
David Blaikie1d87fba2013-01-30 01:22:18 +00002134 } else {
2135 B << 1;
2136 const char *PrevSpec;
2137 unsigned DiagID;
David Blaikie1d87fba2013-01-30 01:22:18 +00002138 if (D.getMutableDeclSpec().SetStorageClassSpec(
Stephen Hines651f13c2014-04-23 16:59:28 -07002139 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID,
2140 Context.getPrintingPolicy())) {
Matt Beaumont-Gay3e55e3e2013-01-31 00:08:03 +00002141 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable &&
David Blaikie1d87fba2013-01-30 01:22:18 +00002142 "This is the only DeclSpec that should fail to be applied");
2143 B << 1;
2144 } else {
2145 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static ");
2146 isInstField = false;
2147 }
2148 }
2149 }
2150
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00002151 NamedDecl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00002152 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00002153 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00002154
2155 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00002156 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00002157 Diag(Loc, diag::err_bad_variable_name)
2158 << Name;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002159 return nullptr;
Douglas Gregorb5a01872011-10-09 18:55:59 +00002160 }
Douglas Gregorf2503652011-09-21 14:40:46 +00002161
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00002162 IdentifierInfo *II = Name.getAsIdentifierInfo();
2163
Douglas Gregorf2503652011-09-21 14:40:46 +00002164 // Member field could not be with "template" keyword.
2165 // So TemplateParameterLists should be empty in this case.
2166 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00002167 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00002168 if (TemplateParams->size()) {
2169 // There is no such thing as a member field template.
2170 Diag(D.getIdentifierLoc(), diag::err_template_member)
2171 << II
2172 << SourceRange(TemplateParams->getTemplateLoc(),
2173 TemplateParams->getRAngleLoc());
2174 } else {
2175 // There is an extraneous 'template<>' for this member.
2176 Diag(TemplateParams->getTemplateLoc(),
2177 diag::err_template_member_noparams)
2178 << II
2179 << SourceRange(TemplateParams->getTemplateLoc(),
2180 TemplateParams->getRAngleLoc());
2181 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002182 return nullptr;
Douglas Gregorf2503652011-09-21 14:40:46 +00002183 }
2184
Douglas Gregor922fff22010-10-13 22:19:53 +00002185 if (SS.isSet() && !SS.isInvalid()) {
2186 // The user provided a superfluous scope specifier inside a class
2187 // definition:
2188 //
2189 // class X {
2190 // int X::member;
2191 // };
Douglas Gregor69605872012-03-28 16:01:27 +00002192 if (DeclContext *DC = computeDeclContext(SS, false))
2193 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00002194 else
2195 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
2196 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00002197
Douglas Gregor922fff22010-10-13 22:19:53 +00002198 SS.clear();
2199 }
Douglas Gregorf2503652011-09-21 14:40:46 +00002200
John McCall76da55d2013-04-16 07:28:30 +00002201 AttributeList *MSPropertyAttr =
2202 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList());
Eli Friedmanb26f0122013-06-28 20:48:34 +00002203 if (MSPropertyAttr) {
2204 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D,
2205 BitWidth, InitStyle, AS, MSPropertyAttr);
2206 if (!Member)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002207 return nullptr;
Eli Friedmanb26f0122013-06-28 20:48:34 +00002208 isInstField = false;
2209 } else {
2210 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D,
2211 BitWidth, InitStyle, AS);
2212 assert(Member && "HandleField never returns null");
2213 }
2214 } else {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002215 assert(InitStyle == ICIS_NoInit ||
2216 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static);
Eli Friedmanb26f0122013-06-28 20:48:34 +00002217
2218 Member = HandleDeclarator(S, D, TemplateParameterLists);
2219 if (!Member)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002220 return nullptr;
Eli Friedmanb26f0122013-06-28 20:48:34 +00002221
2222 // Non-instance-fields can't have a bitfield.
2223 if (BitWidth) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00002224 if (Member->isInvalidDecl()) {
2225 // don't emit another diagnostic.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002226 } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00002227 // C++ 9.6p3: A bit-field shall not be a static member.
2228 // "static member 'A' cannot be a bit-field"
2229 Diag(Loc, diag::err_static_not_bitfield)
2230 << Name << BitWidth->getSourceRange();
2231 } else if (isa<TypedefDecl>(Member)) {
2232 // "typedef member 'x' cannot be a bit-field"
2233 Diag(Loc, diag::err_typedef_not_bitfield)
2234 << Name << BitWidth->getSourceRange();
2235 } else {
2236 // A function typedef ("typedef int f(); f a;").
2237 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
2238 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00002239 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00002240 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00002241 }
Mike Stump1eb44332009-09-09 15:08:12 +00002242
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002243 BitWidth = nullptr;
Chris Lattner8b963ef2009-03-05 23:01:03 +00002244 Member->setInvalidDecl();
2245 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00002246
2247 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00002248
Larisse Voufoef4579c2013-08-06 01:03:05 +00002249 // If we have declared a member function template or static data member
2250 // template, set the access of the templated declaration as well.
Douglas Gregor37b372b2009-08-20 22:52:58 +00002251 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
2252 FunTmpl->getTemplatedDecl()->setAccess(AS);
Larisse Voufoef4579c2013-08-06 01:03:05 +00002253 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member))
2254 VarTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00002255 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002256
Richard Smitha4b39652012-08-06 03:25:17 +00002257 if (VS.isOverrideSpecified())
Stephen Hines651f13c2014-04-23 16:59:28 -07002258 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0));
Richard Smitha4b39652012-08-06 03:25:17 +00002259 if (VS.isFinalSpecified())
David Majnemer7121bdb2013-10-18 00:33:31 +00002260 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context,
2261 VS.isFinalSpelledSealed()));
Anders Carlsson9e682d92011-01-20 05:57:14 +00002262
Douglas Gregorf5251602011-03-08 17:10:18 +00002263 if (VS.getLastLocation().isValid()) {
2264 // Update the end location of a method that has a virt-specifiers.
2265 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
2266 MD->setRangeEnd(VS.getLastLocation());
2267 }
Richard Smitha4b39652012-08-06 03:25:17 +00002268
Anders Carlsson4ebf1602011-01-20 06:29:02 +00002269 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00002270
Douglas Gregor10bd3682008-11-17 22:58:34 +00002271 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002272
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002273 if (isInstField) {
2274 FieldDecl *FD = cast<FieldDecl>(Member);
2275 FieldCollector->Add(FD);
2276
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002277 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) {
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002278 // Remember all explicit private FieldDecls that have a name, no side
2279 // effects and are not part of a dependent type declaration.
2280 if (!FD->isImplicit() && FD->getDeclName() &&
2281 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00002282 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00002283 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002284 !InitializationHasSideEffects(*FD))
2285 UnusedPrivateFields.insert(FD);
2286 }
2287 }
2288
John McCalld226f652010-08-21 09:40:31 +00002289 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002290}
2291
Hans Wennborg471f9852012-09-18 15:58:06 +00002292namespace {
2293 class UninitializedFieldVisitor
2294 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2295 Sema &S;
Richard Trieu858d2ba2013-10-25 00:56:00 +00002296 // List of Decls to generate a warning on. Also remove Decls that become
2297 // initialized.
Stephen Hines176edba2014-12-01 14:53:08 -08002298 llvm::SmallPtrSetImpl<ValueDecl*> &Decls;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002299 // List of base classes of the record. Classes are removed after their
2300 // initializers.
2301 llvm::SmallPtrSetImpl<QualType> &BaseClasses;
Stephen Hines176edba2014-12-01 14:53:08 -08002302 // Vector of decls to be removed from the Decl set prior to visiting the
2303 // nodes. These Decls may have been initialized in the prior initializer.
2304 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove;
Richard Trieuef8f90c2013-09-20 03:03:06 +00002305 // If non-null, add a note to the warning pointing back to the constructor.
2306 const CXXConstructorDecl *Constructor;
Stephen Hines176edba2014-12-01 14:53:08 -08002307 // Variables to hold state when processing an initializer list. When
2308 // InitList is true, special case initialization of FieldDecls matching
2309 // InitListFieldDecl.
2310 bool InitList;
2311 FieldDecl *InitListFieldDecl;
2312 llvm::SmallVector<unsigned, 4> InitFieldIndex;
2313
Hans Wennborg471f9852012-09-18 15:58:06 +00002314 public:
2315 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
Richard Trieu858d2ba2013-10-25 00:56:00 +00002316 UninitializedFieldVisitor(Sema &S,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002317 llvm::SmallPtrSetImpl<ValueDecl*> &Decls,
2318 llvm::SmallPtrSetImpl<QualType> &BaseClasses)
2319 : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses),
2320 Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {}
Hans Wennborg471f9852012-09-18 15:58:06 +00002321
Stephen Hines176edba2014-12-01 14:53:08 -08002322 // Returns true if the use of ME is not an uninitialized use.
2323 bool IsInitListMemberExprInitialized(MemberExpr *ME,
2324 bool CheckReferenceOnly) {
2325 llvm::SmallVector<FieldDecl*, 4> Fields;
2326 bool ReferenceField = false;
2327 while (ME) {
2328 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
2329 if (!FD)
2330 return false;
2331 Fields.push_back(FD);
2332 if (FD->getType()->isReferenceType())
2333 ReferenceField = true;
2334 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts());
2335 }
2336
2337 // Binding a reference to an unintialized field is not an
2338 // uninitialized use.
2339 if (CheckReferenceOnly && !ReferenceField)
2340 return true;
2341
2342 llvm::SmallVector<unsigned, 4> UsedFieldIndex;
2343 // Discard the first field since it is the field decl that is being
2344 // initialized.
2345 for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) {
2346 UsedFieldIndex.push_back((*I)->getFieldIndex());
2347 }
2348
2349 for (auto UsedIter = UsedFieldIndex.begin(),
2350 UsedEnd = UsedFieldIndex.end(),
2351 OrigIter = InitFieldIndex.begin(),
2352 OrigEnd = InitFieldIndex.end();
2353 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
2354 if (*UsedIter < *OrigIter)
2355 return true;
2356 if (*UsedIter > *OrigIter)
2357 break;
2358 }
2359
2360 return false;
2361 }
2362
2363 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly,
2364 bool AddressOf) {
Richard Trieufbb08b52013-09-13 03:20:53 +00002365 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
2366 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00002367
Richard Trieufbb08b52013-09-13 03:20:53 +00002368 // FieldME is the inner-most MemberExpr that is not an anonymous struct
2369 // or union.
2370 MemberExpr *FieldME = ME;
2371
Stephen Hines176edba2014-12-01 14:53:08 -08002372 bool AllPODFields = FieldME->getType().isPODType(S.Context);
Richard Trieufbb08b52013-09-13 03:20:53 +00002373
Stephen Hines176edba2014-12-01 14:53:08 -08002374 Expr *Base = ME;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002375 while (MemberExpr *SubME =
2376 dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) {
Stephen Hines176edba2014-12-01 14:53:08 -08002377
2378 if (isa<VarDecl>(SubME->getMemberDecl()))
Richard Trieufbb08b52013-09-13 03:20:53 +00002379 return;
2380
Stephen Hines176edba2014-12-01 14:53:08 -08002381 if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl()))
Richard Trieufbb08b52013-09-13 03:20:53 +00002382 if (!FD->isAnonymousStructOrUnion())
Stephen Hines176edba2014-12-01 14:53:08 -08002383 FieldME = SubME;
Richard Trieufbb08b52013-09-13 03:20:53 +00002384
Stephen Hines176edba2014-12-01 14:53:08 -08002385 if (!FieldME->getType().isPODType(S.Context))
2386 AllPODFields = false;
2387
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002388 Base = SubME->getBase();
Richard Trieufbb08b52013-09-13 03:20:53 +00002389 }
2390
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002391 if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts()))
Richard Trieu3ddec882013-09-16 20:46:50 +00002392 return;
2393
Stephen Hines176edba2014-12-01 14:53:08 -08002394 if (AddressOf && AllPODFields)
2395 return;
2396
Richard Trieuef8f90c2013-09-20 03:03:06 +00002397 ValueDecl* FoundVD = FieldME->getMemberDecl();
2398
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002399 if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) {
2400 while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) {
2401 BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr());
2402 }
2403
2404 if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) {
2405 QualType T = BaseCast->getType();
2406 if (T->isPointerType() &&
2407 BaseClasses.count(T->getPointeeType())) {
2408 S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit)
2409 << T->getPointeeType() << FoundVD;
2410 }
2411 }
2412 }
2413
Richard Trieu858d2ba2013-10-25 00:56:00 +00002414 if (!Decls.count(FoundVD))
Richard Trieuef8f90c2013-09-20 03:03:06 +00002415 return;
2416
Richard Trieu858d2ba2013-10-25 00:56:00 +00002417 const bool IsReference = FoundVD->getType()->isReferenceType();
Richard Trieuef8f90c2013-09-20 03:03:06 +00002418
Stephen Hines176edba2014-12-01 14:53:08 -08002419 if (InitList && !AddressOf && FoundVD == InitListFieldDecl) {
2420 // Special checking for initializer lists.
2421 if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) {
2422 return;
2423 }
2424 } else {
2425 // Prevent double warnings on use of unbounded references.
2426 if (CheckReferenceOnly && !IsReference)
2427 return;
2428 }
Richard Trieu858d2ba2013-10-25 00:56:00 +00002429
2430 unsigned diag = IsReference
2431 ? diag::warn_reference_field_is_uninit
2432 : diag::warn_field_is_uninit;
2433 S.Diag(FieldME->getExprLoc(), diag) << FoundVD;
2434 if (Constructor)
2435 S.Diag(Constructor->getLocation(),
2436 diag::note_uninit_in_this_constructor)
2437 << (Constructor->isDefaultConstructor() && Constructor->isImplicit());
2438
Hans Wennborg471f9852012-09-18 15:58:06 +00002439 }
2440
Stephen Hines176edba2014-12-01 14:53:08 -08002441 void HandleValue(Expr *E, bool AddressOf) {
Hans Wennborg471f9852012-09-18 15:58:06 +00002442 E = E->IgnoreParens();
2443
2444 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
Stephen Hines176edba2014-12-01 14:53:08 -08002445 HandleMemberExpr(ME, false /*CheckReferenceOnly*/,
2446 AddressOf /*AddressOf*/);
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002447 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00002448 }
2449
2450 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
Stephen Hines176edba2014-12-01 14:53:08 -08002451 Visit(CO->getCond());
2452 HandleValue(CO->getTrueExpr(), AddressOf);
2453 HandleValue(CO->getFalseExpr(), AddressOf);
Hans Wennborg471f9852012-09-18 15:58:06 +00002454 return;
2455 }
2456
2457 if (BinaryConditionalOperator *BCO =
2458 dyn_cast<BinaryConditionalOperator>(E)) {
Stephen Hines176edba2014-12-01 14:53:08 -08002459 Visit(BCO->getCond());
2460 HandleValue(BCO->getFalseExpr(), AddressOf);
2461 return;
2462 }
2463
2464 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
2465 HandleValue(OVE->getSourceExpr(), AddressOf);
Hans Wennborg471f9852012-09-18 15:58:06 +00002466 return;
2467 }
2468
2469 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2470 switch (BO->getOpcode()) {
2471 default:
Stephen Hines176edba2014-12-01 14:53:08 -08002472 break;
Hans Wennborg471f9852012-09-18 15:58:06 +00002473 case(BO_PtrMemD):
2474 case(BO_PtrMemI):
Stephen Hines176edba2014-12-01 14:53:08 -08002475 HandleValue(BO->getLHS(), AddressOf);
2476 Visit(BO->getRHS());
Hans Wennborg471f9852012-09-18 15:58:06 +00002477 return;
2478 case(BO_Comma):
Stephen Hines176edba2014-12-01 14:53:08 -08002479 Visit(BO->getLHS());
2480 HandleValue(BO->getRHS(), AddressOf);
Hans Wennborg471f9852012-09-18 15:58:06 +00002481 return;
2482 }
2483 }
Stephen Hines176edba2014-12-01 14:53:08 -08002484
2485 Visit(E);
2486 }
2487
2488 void CheckInitListExpr(InitListExpr *ILE) {
2489 InitFieldIndex.push_back(0);
2490 for (auto Child : ILE->children()) {
2491 if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) {
2492 CheckInitListExpr(SubList);
2493 } else {
2494 Visit(Child);
2495 }
2496 ++InitFieldIndex.back();
2497 }
2498 InitFieldIndex.pop_back();
2499 }
2500
2501 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002502 FieldDecl *Field, const Type *BaseClass) {
Stephen Hines176edba2014-12-01 14:53:08 -08002503 // Remove Decls that may have been initialized in the previous
2504 // initializer.
2505 for (ValueDecl* VD : DeclsToRemove)
2506 Decls.erase(VD);
2507 DeclsToRemove.clear();
2508
2509 Constructor = FieldConstructor;
2510 InitListExpr *ILE = dyn_cast<InitListExpr>(E);
2511
2512 if (ILE && Field) {
2513 InitList = true;
2514 InitListFieldDecl = Field;
2515 InitFieldIndex.clear();
2516 CheckInitListExpr(ILE);
2517 } else {
2518 InitList = false;
2519 Visit(E);
2520 }
2521
2522 if (Field)
2523 Decls.erase(Field);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002524 if (BaseClass)
2525 BaseClasses.erase(BaseClass->getCanonicalTypeInternal());
Hans Wennborg471f9852012-09-18 15:58:06 +00002526 }
2527
Richard Trieufbb08b52013-09-13 03:20:53 +00002528 void VisitMemberExpr(MemberExpr *ME) {
Richard Trieu858d2ba2013-10-25 00:56:00 +00002529 // All uses of unbounded reference fields will warn.
Stephen Hines176edba2014-12-01 14:53:08 -08002530 HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/);
Richard Trieufbb08b52013-09-13 03:20:53 +00002531 }
2532
Hans Wennborg471f9852012-09-18 15:58:06 +00002533 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
Stephen Hines176edba2014-12-01 14:53:08 -08002534 if (E->getCastKind() == CK_LValueToRValue) {
2535 HandleValue(E->getSubExpr(), false /*AddressOf*/);
2536 return;
2537 }
Hans Wennborg471f9852012-09-18 15:58:06 +00002538
2539 Inherited::VisitImplicitCastExpr(E);
2540 }
2541
Richard Trieufbb08b52013-09-13 03:20:53 +00002542 void VisitCXXConstructExpr(CXXConstructExpr *E) {
Stephen Hines176edba2014-12-01 14:53:08 -08002543 if (E->getConstructor()->isCopyConstructor()) {
2544 Expr *ArgExpr = E->getArg(0);
2545 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
2546 if (ILE->getNumInits() == 1)
2547 ArgExpr = ILE->getInit(0);
2548 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
Richard Trieufbb08b52013-09-13 03:20:53 +00002549 if (ICE->getCastKind() == CK_NoOp)
Stephen Hines176edba2014-12-01 14:53:08 -08002550 ArgExpr = ICE->getSubExpr();
2551 HandleValue(ArgExpr, false /*AddressOf*/);
2552 return;
2553 }
Richard Trieufbb08b52013-09-13 03:20:53 +00002554 Inherited::VisitCXXConstructExpr(E);
2555 }
2556
Hans Wennborg471f9852012-09-18 15:58:06 +00002557 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2558 Expr *Callee = E->getCallee();
Stephen Hines176edba2014-12-01 14:53:08 -08002559 if (isa<MemberExpr>(Callee)) {
2560 HandleValue(Callee, false /*AddressOf*/);
2561 for (auto Arg : E->arguments())
2562 Visit(Arg);
2563 return;
2564 }
Hans Wennborg471f9852012-09-18 15:58:06 +00002565
2566 Inherited::VisitCXXMemberCallExpr(E);
2567 }
Richard Trieuef8f90c2013-09-20 03:03:06 +00002568
Stephen Hines176edba2014-12-01 14:53:08 -08002569 void VisitCallExpr(CallExpr *E) {
2570 // Treat std::move as a use.
2571 if (E->getNumArgs() == 1) {
2572 if (FunctionDecl *FD = E->getDirectCallee()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002573 if (FD->isInStdNamespace() && FD->getIdentifier() &&
2574 FD->getIdentifier()->isStr("move")) {
Stephen Hines176edba2014-12-01 14:53:08 -08002575 HandleValue(E->getArg(0), false /*AddressOf*/);
2576 return;
2577 }
2578 }
2579 }
2580
2581 Inherited::VisitCallExpr(E);
2582 }
2583
2584 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
2585 Expr *Callee = E->getCallee();
2586
2587 if (isa<UnresolvedLookupExpr>(Callee))
2588 return Inherited::VisitCXXOperatorCallExpr(E);
2589
2590 Visit(Callee);
2591 for (auto Arg : E->arguments())
2592 HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/);
2593 }
2594
Richard Trieuef8f90c2013-09-20 03:03:06 +00002595 void VisitBinaryOperator(BinaryOperator *E) {
2596 // If a field assignment is detected, remove the field from the
2597 // uninitiailized field set.
2598 if (E->getOpcode() == BO_Assign)
2599 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS()))
2600 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
Richard Trieu858d2ba2013-10-25 00:56:00 +00002601 if (!FD->getType()->isReferenceType())
Stephen Hines176edba2014-12-01 14:53:08 -08002602 DeclsToRemove.push_back(FD);
2603
2604 if (E->isCompoundAssignmentOp()) {
2605 HandleValue(E->getLHS(), false /*AddressOf*/);
2606 Visit(E->getRHS());
2607 return;
2608 }
Richard Trieuef8f90c2013-09-20 03:03:06 +00002609
2610 Inherited::VisitBinaryOperator(E);
2611 }
Richard Trieuef8f90c2013-09-20 03:03:06 +00002612
Stephen Hines176edba2014-12-01 14:53:08 -08002613 void VisitUnaryOperator(UnaryOperator *E) {
2614 if (E->isIncrementDecrementOp()) {
2615 HandleValue(E->getSubExpr(), false /*AddressOf*/);
Richard Trieu858d2ba2013-10-25 00:56:00 +00002616 return;
Stephen Hines176edba2014-12-01 14:53:08 -08002617 }
2618 if (E->getOpcode() == UO_AddrOf) {
2619 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) {
2620 HandleValue(ME->getBase(), true /*AddressOf*/);
2621 return;
2622 }
2623 }
2624
2625 Inherited::VisitUnaryOperator(E);
Richard Trieu858d2ba2013-10-25 00:56:00 +00002626 }
Stephen Hines176edba2014-12-01 14:53:08 -08002627 };
Richard Trieu858d2ba2013-10-25 00:56:00 +00002628
2629 // Diagnose value-uses of fields to initialize themselves, e.g.
2630 // foo(foo)
2631 // where foo is not also a parameter to the constructor.
2632 // Also diagnose across field uninitialized use such as
2633 // x(y), y(x)
2634 // TODO: implement -Wuninitialized and fold this into that framework.
2635 static void DiagnoseUninitializedFields(
2636 Sema &SemaRef, const CXXConstructorDecl *Constructor) {
2637
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002638 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit,
2639 Constructor->getLocation())) {
Richard Trieu858d2ba2013-10-25 00:56:00 +00002640 return;
2641 }
2642
2643 if (Constructor->isInvalidDecl())
2644 return;
2645
2646 const CXXRecordDecl *RD = Constructor->getParent();
2647
Stephen Hines176edba2014-12-01 14:53:08 -08002648 if (RD->getDescribedClassTemplate())
2649 return;
2650
Richard Trieu858d2ba2013-10-25 00:56:00 +00002651 // Holds fields that are uninitialized.
2652 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields;
2653
2654 // At the beginning, all fields are uninitialized.
Stephen Hines651f13c2014-04-23 16:59:28 -07002655 for (auto *I : RD->decls()) {
2656 if (auto *FD = dyn_cast<FieldDecl>(I)) {
Richard Trieu858d2ba2013-10-25 00:56:00 +00002657 UninitializedFields.insert(FD);
Stephen Hines651f13c2014-04-23 16:59:28 -07002658 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) {
Richard Trieu858d2ba2013-10-25 00:56:00 +00002659 UninitializedFields.insert(IFD->getAnonField());
2660 }
2661 }
2662
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002663 llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses;
2664 for (auto I : RD->bases())
2665 UninitializedBaseClasses.insert(I.getType().getCanonicalType());
2666
2667 if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
Stephen Hines176edba2014-12-01 14:53:08 -08002668 return;
2669
2670 UninitializedFieldVisitor UninitializedChecker(SemaRef,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002671 UninitializedFields,
2672 UninitializedBaseClasses);
Stephen Hines176edba2014-12-01 14:53:08 -08002673
Stephen Hines651f13c2014-04-23 16:59:28 -07002674 for (const auto *FieldInit : Constructor->inits()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002675 if (UninitializedFields.empty() && UninitializedBaseClasses.empty())
Stephen Hines176edba2014-12-01 14:53:08 -08002676 break;
2677
Stephen Hines651f13c2014-04-23 16:59:28 -07002678 Expr *InitExpr = FieldInit->getInit();
Stephen Hines176edba2014-12-01 14:53:08 -08002679 if (!InitExpr)
2680 continue;
Richard Trieu858d2ba2013-10-25 00:56:00 +00002681
Stephen Hines176edba2014-12-01 14:53:08 -08002682 if (CXXDefaultInitExpr *Default =
2683 dyn_cast<CXXDefaultInitExpr>(InitExpr)) {
2684 InitExpr = Default->getExpr();
2685 if (!InitExpr)
2686 continue;
2687 // In class initializers will point to the constructor.
2688 UninitializedChecker.CheckInitializer(InitExpr, Constructor,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002689 FieldInit->getAnyMember(),
2690 FieldInit->getBaseClass());
Stephen Hines176edba2014-12-01 14:53:08 -08002691 } else {
2692 UninitializedChecker.CheckInitializer(InitExpr, nullptr,
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002693 FieldInit->getAnyMember(),
2694 FieldInit->getBaseClass());
Stephen Hines176edba2014-12-01 14:53:08 -08002695 }
Richard Trieu858d2ba2013-10-25 00:56:00 +00002696 }
Hans Wennborg471f9852012-09-18 15:58:06 +00002697 }
2698} // namespace
2699
Stephen Hines651f13c2014-04-23 16:59:28 -07002700/// \brief Enter a new C++ default initializer scope. After calling this, the
2701/// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if
2702/// parsing or instantiating the initializer failed.
2703void Sema::ActOnStartCXXInClassMemberInitializer() {
2704 // Create a synthetic function scope to represent the call to the constructor
2705 // that notionally surrounds a use of this initializer.
2706 PushFunctionScope();
2707}
2708
2709/// \brief This is invoked after parsing an in-class initializer for a
2710/// non-static C++ class member, and after instantiating an in-class initializer
2711/// in a class template. Such actions are deferred until the class is complete.
2712void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D,
2713 SourceLocation InitLoc,
2714 Expr *InitExpr) {
2715 // Pop the notional constructor scope we created earlier.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002716 PopFunctionScopeInfo(nullptr, D);
Stephen Hines651f13c2014-04-23 16:59:28 -07002717
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002718 FieldDecl *FD = dyn_cast<FieldDecl>(D);
2719 assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) &&
Richard Smithca523302012-06-10 03:12:00 +00002720 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00002721
2722 if (!InitExpr) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002723 D->setInvalidDecl();
2724 if (FD)
2725 FD->removeInClassInitializer();
Richard Smith7a614d82011-06-11 17:19:42 +00002726 return;
2727 }
2728
Peter Collingbournefef21892011-10-23 18:59:44 +00002729 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
2730 FD->setInvalidDecl();
2731 FD->removeInClassInitializer();
2732 return;
2733 }
2734
Richard Smith7a614d82011-06-11 17:19:42 +00002735 ExprResult Init = InitExpr;
Richard Smithc83c2302012-12-19 01:39:02 +00002736 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl33deb352012-02-22 10:50:08 +00002737 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00002738 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00002739 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00002740 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002741 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
2742 Init = Seq.Perform(*this, Entity, Kind, InitExpr);
Richard Smith7a614d82011-06-11 17:19:42 +00002743 if (Init.isInvalid()) {
2744 FD->setInvalidDecl();
2745 return;
2746 }
Richard Smith7a614d82011-06-11 17:19:42 +00002747 }
2748
Richard Smith41956372013-01-14 22:39:08 +00002749 // C++11 [class.base.init]p7:
Richard Smith7a614d82011-06-11 17:19:42 +00002750 // The initialization of each base and member constitutes a
2751 // full-expression.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002752 Init = ActOnFinishFullExpr(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00002753 if (Init.isInvalid()) {
2754 FD->setInvalidDecl();
2755 return;
2756 }
2757
Stephen Hinesc568f1e2014-07-21 00:47:37 -07002758 InitExpr = Init.get();
Richard Smith7a614d82011-06-11 17:19:42 +00002759
2760 FD->setInClassInitializer(InitExpr);
2761}
2762
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002763/// \brief Find the direct and/or virtual base specifiers that
2764/// correspond to the given base type, for use in base initialization
2765/// within a constructor.
2766static bool FindBaseInitializer(Sema &SemaRef,
2767 CXXRecordDecl *ClassDecl,
2768 QualType BaseType,
2769 const CXXBaseSpecifier *&DirectBaseSpec,
2770 const CXXBaseSpecifier *&VirtualBaseSpec) {
2771 // First, check for a direct base class.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002772 DirectBaseSpec = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002773 for (const auto &Base : ClassDecl->bases()) {
2774 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002775 // We found a direct base of this type. That's what we're
2776 // initializing.
Stephen Hines651f13c2014-04-23 16:59:28 -07002777 DirectBaseSpec = &Base;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002778 break;
2779 }
2780 }
2781
2782 // Check for a virtual base class.
2783 // FIXME: We might be able to short-circuit this if we know in advance that
2784 // there are no virtual bases.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002785 VirtualBaseSpec = nullptr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002786 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
2787 // We haven't found a base yet; search the class hierarchy for a
2788 // virtual base class.
2789 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2790 /*DetectVirtual=*/false);
2791 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
2792 BaseType, Paths)) {
2793 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2794 Path != Paths.end(); ++Path) {
2795 if (Path->back().Base->isVirtual()) {
2796 VirtualBaseSpec = Path->back().Base;
2797 break;
2798 }
2799 }
2800 }
2801 }
2802
2803 return DirectBaseSpec || VirtualBaseSpec;
2804}
2805
Sebastian Redl6df65482011-09-24 17:48:25 +00002806/// \brief Handle a C++ member initializer using braced-init-list syntax.
2807MemInitResult
2808Sema::ActOnMemInitializer(Decl *ConstructorD,
2809 Scope *S,
2810 CXXScopeSpec &SS,
2811 IdentifierInfo *MemberOrBase,
2812 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002813 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002814 SourceLocation IdLoc,
2815 Expr *InitList,
2816 SourceLocation EllipsisLoc) {
2817 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002818 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002819 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002820}
2821
2822/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002823MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002824Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002825 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002826 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002827 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002828 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002829 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002830 SourceLocation IdLoc,
2831 SourceLocation LParenLoc,
Dmitri Gribenkoa36bbac2013-05-09 23:51:52 +00002832 ArrayRef<Expr *> Args,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002833 SourceLocation RParenLoc,
2834 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002835 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
Dmitri Gribenkoa36bbac2013-05-09 23:51:52 +00002836 Args, RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002837 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002838 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002839}
2840
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002841namespace {
2842
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002843// Callback to only accept typo corrections that can be a valid C++ member
2844// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002845class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00002846public:
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002847 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2848 : ClassDecl(ClassDecl) {}
2849
Stephen Hines651f13c2014-04-23 16:59:28 -07002850 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002851 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2852 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2853 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00002854 return isa<TypeDecl>(ND);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002855 }
2856 return false;
2857 }
2858
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00002859private:
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002860 CXXRecordDecl *ClassDecl;
2861};
2862
2863}
2864
Sebastian Redl6df65482011-09-24 17:48:25 +00002865/// \brief Handle a C++ member initializer.
2866MemInitResult
2867Sema::BuildMemInitializer(Decl *ConstructorD,
2868 Scope *S,
2869 CXXScopeSpec &SS,
2870 IdentifierInfo *MemberOrBase,
2871 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002872 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002873 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002874 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002875 SourceLocation EllipsisLoc) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002876 ExprResult Res = CorrectDelayedTyposInExpr(Init);
2877 if (!Res.isUsable())
2878 return true;
2879 Init = Res.get();
2880
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002881 if (!ConstructorD)
2882 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002883
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002884 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002885
2886 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002887 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002888 if (!Constructor) {
2889 // The user wrote a constructor initializer on a function that is
2890 // not a C++ constructor. Ignore the error for now, because we may
2891 // have more member initializers coming; we'll diagnose it just
2892 // once in ActOnMemInitializers.
2893 return true;
2894 }
2895
2896 CXXRecordDecl *ClassDecl = Constructor->getParent();
2897
2898 // C++ [class.base.init]p2:
2899 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002900 // constructor's class and, if not found in that scope, are looked
2901 // up in the scope containing the constructor's definition.
2902 // [Note: if the constructor's class contains a member with the
2903 // same name as a direct or virtual base class of the class, a
2904 // mem-initializer-id naming the member or base class and composed
2905 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002906 // mem-initializer-id for the hidden base class may be specified
2907 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002908 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002909 // Look for a member, first.
Stephen Hines176edba2014-12-01 14:53:08 -08002910 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase);
David Blaikie3bc93e32012-12-19 00:45:41 +00002911 if (!Result.empty()) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002912 ValueDecl *Member;
David Blaikie3bc93e32012-12-19 00:45:41 +00002913 if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
2914 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002915 if (EllipsisLoc.isValid())
2916 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002917 << MemberOrBase
2918 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002919
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002920 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002921 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002922 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002923 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002924 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002925 QualType BaseType;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002926 TypeSourceInfo *TInfo = nullptr;
John McCall2b194412009-12-21 10:41:20 +00002927
2928 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002929 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002930 } else if (DS.getTypeSpecType() == TST_decltype) {
2931 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002932 } else {
2933 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2934 LookupParsedName(R, S, &SS);
2935
2936 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2937 if (!TyD) {
2938 if (R.isAmbiguous()) return true;
2939
John McCallfd225442010-04-09 19:01:14 +00002940 // We don't want access-control diagnostics here.
2941 R.suppressDiagnostics();
2942
Douglas Gregor7a886e12010-01-19 06:46:48 +00002943 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2944 bool NotUnknownSpecialization = false;
2945 DeclContext *DC = computeDeclContext(SS, false);
2946 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2947 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2948
2949 if (!NotUnknownSpecialization) {
2950 // When the scope specifier can refer to a member of an unknown
2951 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002952 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2953 SS.getWithLocInContext(Context),
2954 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002955 if (BaseType.isNull())
2956 return true;
2957
Douglas Gregor7a886e12010-01-19 06:46:48 +00002958 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002959 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002960 }
2961 }
2962
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002963 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002964 TypoCorrection Corr;
Douglas Gregor7a886e12010-01-19 06:46:48 +00002965 if (R.empty() && BaseType.isNull() &&
Stephen Hines176edba2014-12-01 14:53:08 -08002966 (Corr = CorrectTypo(
2967 R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
2968 llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl),
2969 CTK_ErrorRecovery, ClassDecl))) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002970 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002971 // We have found a non-static data member with a similar
2972 // name to what was typed; complain and initialize that
2973 // member.
Richard Smith2d670972013-08-17 00:46:16 +00002974 diagnoseTypo(Corr,
2975 PDiag(diag::err_mem_init_not_member_or_class_suggest)
2976 << MemberOrBase << true);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002977 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002978 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002979 const CXXBaseSpecifier *DirectBaseSpec;
2980 const CXXBaseSpecifier *VirtualBaseSpec;
2981 if (FindBaseInitializer(*this, ClassDecl,
2982 Context.getTypeDeclType(Type),
2983 DirectBaseSpec, VirtualBaseSpec)) {
2984 // We have found a direct or virtual base class with a
2985 // similar name to what was typed; complain and initialize
2986 // that base class.
Richard Smith2d670972013-08-17 00:46:16 +00002987 diagnoseTypo(Corr,
2988 PDiag(diag::err_mem_init_not_member_or_class_suggest)
2989 << MemberOrBase << false,
2990 PDiag() /*Suppress note, we provide our own.*/);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002991
Richard Smith2d670972013-08-17 00:46:16 +00002992 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec
2993 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002994 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002995 diag::note_base_class_specified_here)
2996 << BaseSpec->getType()
2997 << BaseSpec->getSourceRange();
2998
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002999 TyD = Type;
3000 }
3001 }
3002 }
3003
Douglas Gregor7a886e12010-01-19 06:46:48 +00003004 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00003005 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003006 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00003007 return true;
3008 }
John McCall2b194412009-12-21 10:41:20 +00003009 }
3010
Douglas Gregor7a886e12010-01-19 06:46:48 +00003011 if (BaseType.isNull()) {
3012 BaseType = Context.getTypeDeclType(TyD);
Stephen Hines176edba2014-12-01 14:53:08 -08003013 MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false);
Stephen Hines651f13c2014-04-23 16:59:28 -07003014 if (SS.isSet())
Douglas Gregor7a886e12010-01-19 06:46:48 +00003015 // FIXME: preserve source range information
Stephen Hines651f13c2014-04-23 16:59:28 -07003016 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(),
3017 BaseType);
John McCall2b194412009-12-21 10:41:20 +00003018 }
3019 }
Mike Stump1eb44332009-09-09 15:08:12 +00003020
John McCalla93c9342009-12-07 02:54:59 +00003021 if (!TInfo)
3022 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00003023
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003024 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00003025}
3026
Chandler Carruth81c64772011-09-03 01:14:15 +00003027/// Checks a member initializer expression for cases where reference (or
3028/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00003029static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
3030 Expr *Init,
3031 SourceLocation IdLoc) {
3032 QualType MemberTy = Member->getType();
3033
3034 // We only handle pointers and references currently.
3035 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
3036 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
3037 return;
3038
3039 const bool IsPointer = MemberTy->isPointerType();
3040 if (IsPointer) {
3041 if (const UnaryOperator *Op
3042 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
3043 // The only case we're worried about with pointers requires taking the
3044 // address.
3045 if (Op->getOpcode() != UO_AddrOf)
3046 return;
3047
3048 Init = Op->getSubExpr();
3049 } else {
3050 // We only handle address-of expression initializers for pointers.
3051 return;
3052 }
3053 }
3054
Richard Smitha4bb99c2013-06-12 21:51:50 +00003055 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
Chandler Carruthbf3380a2011-09-03 02:21:57 +00003056 // We only warn when referring to a non-reference parameter declaration.
3057 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
3058 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00003059 return;
3060
3061 S.Diag(Init->getExprLoc(),
3062 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
3063 : diag::warn_bind_ref_member_to_parameter)
3064 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00003065 } else {
3066 // Other initializers are fine.
3067 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00003068 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00003069
3070 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
3071 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00003072}
3073
John McCallf312b1e2010-08-26 23:41:50 +00003074MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003075Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00003076 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00003077 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
3078 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
3079 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00003080 "Member must be a FieldDecl or IndirectFieldDecl");
3081
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003082 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00003083 return true;
3084
Douglas Gregor464b2f02010-11-05 22:21:31 +00003085 if (Member->isInvalidDecl())
3086 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00003087
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003088 MultiExprArg Args;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003089 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003090 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Richard Smithc83c2302012-12-19 01:39:02 +00003091 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003092 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
Richard Smithc83c2302012-12-19 01:39:02 +00003093 } else {
3094 // Template instantiation doesn't reconstruct ParenListExprs for us.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003095 Args = Init;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003096 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00003097
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003098 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00003099
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003100 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003101 // Can't check initialization for a member of dependent type or when
3102 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00003103 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00003104 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003105 bool InitList = false;
3106 if (isa<InitListExpr>(Init)) {
3107 InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003108 Args = Init;
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003109 }
3110
Chandler Carruth894aed92010-12-06 09:23:57 +00003111 // Initialize the member.
3112 InitializedEntity MemberEntity =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003113 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr)
3114 : InitializedEntity::InitializeMember(IndirectMember,
3115 nullptr);
Chandler Carruth894aed92010-12-06 09:23:57 +00003116 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003117 InitList ? InitializationKind::CreateDirectList(IdLoc)
3118 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
3119 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00003120
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003121 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003122 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args,
3123 nullptr);
Chandler Carruth894aed92010-12-06 09:23:57 +00003124 if (MemberInit.isInvalid())
3125 return true;
3126
Richard Smith8a07cd32013-06-12 20:42:33 +00003127 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc);
3128
Richard Smith41956372013-01-14 22:39:08 +00003129 // C++11 [class.base.init]p7:
Chandler Carruth894aed92010-12-06 09:23:57 +00003130 // The initialization of each base and member constitutes a
3131 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00003132 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00003133 if (MemberInit.isInvalid())
3134 return true;
3135
Richard Smithc83c2302012-12-19 01:39:02 +00003136 Init = MemberInit.get();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003137 }
3138
Chandler Carruth894aed92010-12-06 09:23:57 +00003139 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003140 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
3141 InitRange.getBegin(), Init,
3142 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00003143 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003144 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
3145 InitRange.getBegin(), Init,
3146 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00003147 }
Eli Friedman59c04372009-07-29 19:44:27 +00003148}
3149
John McCallf312b1e2010-08-26 23:41:50 +00003150MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003151Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00003152 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00003153 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Richard Smith80ad52f2013-01-02 11:42:31 +00003154 if (!LangOpts.CPlusPlus11)
Douglas Gregor76852c22011-11-01 01:16:03 +00003155 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00003156 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00003157 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00003158
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003159 bool InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003160 MultiExprArg Args = Init;
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003161 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
3162 InitList = false;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003163 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003164 }
3165
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003166 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00003167 // Initialize the object.
3168 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
3169 QualType(ClassDecl->getTypeForDecl(), 0));
3170 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003171 InitList ? InitializationKind::CreateDirectList(NameLoc)
3172 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
3173 InitRange.getEnd());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003174 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003175 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003176 Args, nullptr);
Sean Hunt41717662011-02-26 19:13:13 +00003177 if (DelegationInit.isInvalid())
3178 return true;
3179
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00003180 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
3181 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00003182
Richard Smith41956372013-01-14 22:39:08 +00003183 // C++11 [class.base.init]p7:
Sean Hunt41717662011-02-26 19:13:13 +00003184 // The initialization of each base and member constitutes a
3185 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00003186 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
3187 InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00003188 if (DelegationInit.isInvalid())
3189 return true;
3190
Eli Friedmand21016f2012-05-19 23:35:23 +00003191 // If we are in a dependent context, template instantiation will
3192 // perform this type-checking again. Just save the arguments that we
3193 // received in a ParenListExpr.
3194 // FIXME: This isn't quite ideal, since our ASTs don't capture all
3195 // of the information that we have about the base
3196 // initializer. However, deconstructing the ASTs is a dicey process,
3197 // and this approach is far more likely to get the corner cases right.
3198 if (CurContext->isDependentContext())
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003199 DelegationInit = Init;
Eli Friedmand21016f2012-05-19 23:35:23 +00003200
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003201 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003202 DelegationInit.getAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003203 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00003204}
3205
3206MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00003207Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003208 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003209 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003210 SourceLocation BaseLoc
3211 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00003212
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003213 if (!BaseType->isDependentType() && !BaseType->isRecordType())
3214 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
3215 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
3216
3217 // C++ [class.base.init]p2:
3218 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00003219 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003220 // of that class, the mem-initializer is ill-formed. A
3221 // mem-initializer-list can initialize a base class using any
3222 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003223 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003224
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003225 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003226 if (EllipsisLoc.isValid()) {
3227 // This is a pack expansion.
3228 if (!BaseType->containsUnexpandedParameterPack()) {
3229 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003230 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00003231
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003232 EllipsisLoc = SourceLocation();
3233 }
3234 } else {
3235 // Check for any unexpanded parameter packs.
3236 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
3237 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00003238
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003239 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00003240 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003241 }
Sebastian Redl6df65482011-09-24 17:48:25 +00003242
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003243 // Check for direct and virtual base classes.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003244 const CXXBaseSpecifier *DirectBaseSpec = nullptr;
3245 const CXXBaseSpecifier *VirtualBaseSpec = nullptr;
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003246 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00003247 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
3248 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003249 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00003250
Douglas Gregor3956b1a2010-06-16 16:03:14 +00003251 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
3252 VirtualBaseSpec);
3253
3254 // C++ [base.class.init]p2:
3255 // Unless the mem-initializer-id names a nonstatic data member of the
3256 // constructor's class or a direct or virtual base of that class, the
3257 // mem-initializer is ill-formed.
3258 if (!DirectBaseSpec && !VirtualBaseSpec) {
3259 // If the class has any dependent bases, then it's possible that
3260 // one of those types will resolve to the same type as
3261 // BaseType. Therefore, just treat this as a dependent base
3262 // class initialization. FIXME: Should we try to check the
3263 // initialization anyway? It seems odd.
3264 if (ClassDecl->hasAnyDependentBases())
3265 Dependent = true;
3266 else
3267 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
3268 << BaseType << Context.getTypeDeclType(ClassDecl)
3269 << BaseTInfo->getTypeLoc().getLocalSourceRange();
3270 }
3271 }
3272
3273 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00003274 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00003275
Sebastian Redl6df65482011-09-24 17:48:25 +00003276 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
3277 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003278 InitRange.getBegin(), Init,
3279 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00003280 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003281
3282 // C++ [base.class.init]p2:
3283 // If a mem-initializer-id is ambiguous because it designates both
3284 // a direct non-virtual base class and an inherited virtual base
3285 // class, the mem-initializer is ill-formed.
3286 if (DirectBaseSpec && VirtualBaseSpec)
3287 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003288 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003289
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00003290 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003291 if (!BaseSpec)
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00003292 BaseSpec = VirtualBaseSpec;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003293
3294 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003295 bool InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003296 MultiExprArg Args = Init;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003297 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003298 InitList = false;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003299 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003300 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003301
3302 InitializedEntity BaseEntity =
3303 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
3304 InitializationKind Kind =
3305 InitList ? InitializationKind::CreateDirectList(BaseLoc)
3306 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
3307 InitRange.getEnd());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003308 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003309 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003310 if (BaseInit.isInvalid())
3311 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00003312
Richard Smith41956372013-01-14 22:39:08 +00003313 // C++11 [class.base.init]p7:
3314 // The initialization of each base and member constitutes a
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003315 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00003316 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003317 if (BaseInit.isInvalid())
3318 return true;
3319
3320 // If we are in a dependent context, template instantiation will
3321 // perform this type-checking again. Just save the arguments that we
3322 // received in a ParenListExpr.
3323 // FIXME: This isn't quite ideal, since our ASTs don't capture all
3324 // of the information that we have about the base
3325 // initializer. However, deconstructing the ASTs is a dicey process,
3326 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00003327 if (CurContext->isDependentContext())
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003328 BaseInit = Init;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00003329
Sean Huntcbb67482011-01-08 20:30:50 +00003330 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00003331 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003332 InitRange.getBegin(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003333 BaseInit.getAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003334 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00003335}
3336
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003337// Create a static_cast\<T&&>(expr).
Richard Smith07b0fdc2013-03-18 21:12:30 +00003338static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) {
3339 if (T.isNull()) T = E->getType();
3340 QualType TargetType = SemaRef.BuildReferenceType(
3341 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003342 SourceLocation ExprLoc = E->getLocStart();
3343 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
3344 TargetType, ExprLoc);
3345
3346 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
3347 SourceRange(ExprLoc, ExprLoc),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003348 E->getSourceRange()).get();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003349}
3350
Anders Carlssone5ef7402010-04-23 03:10:23 +00003351/// ImplicitInitializerKind - How an implicit base or member initializer should
3352/// initialize its base or member.
3353enum ImplicitInitializerKind {
3354 IIK_Default,
3355 IIK_Copy,
Richard Smith07b0fdc2013-03-18 21:12:30 +00003356 IIK_Move,
3357 IIK_Inherit
Anders Carlssone5ef7402010-04-23 03:10:23 +00003358};
3359
Anders Carlssondefefd22010-04-23 02:00:02 +00003360static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003361BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003362 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00003363 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00003364 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00003365 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00003366 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00003367 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
3368 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00003369
John McCall60d7b3a2010-08-24 06:29:42 +00003370 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00003371
3372 switch (ImplicitInitKind) {
Richard Smith07b0fdc2013-03-18 21:12:30 +00003373 case IIK_Inherit: {
3374 const CXXRecordDecl *Inherited =
3375 Constructor->getInheritedConstructor()->getParent();
3376 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
3377 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) {
3378 // C++11 [class.inhctor]p8:
3379 // Each expression in the expression-list is of the form
3380 // static_cast<T&&>(p), where p is the name of the corresponding
3381 // constructor parameter and T is the declared type of p.
3382 SmallVector<Expr*, 16> Args;
3383 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) {
3384 ParmVarDecl *PD = Constructor->getParamDecl(I);
3385 ExprResult ArgExpr =
3386 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(),
3387 VK_LValue, SourceLocation());
3388 if (ArgExpr.isInvalid())
3389 return true;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003390 Args.push_back(CastForMoving(SemaRef, ArgExpr.get(), PD->getType()));
Richard Smith07b0fdc2013-03-18 21:12:30 +00003391 }
3392
3393 InitializationKind InitKind = InitializationKind::CreateDirect(
3394 Constructor->getLocation(), SourceLocation(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003395 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args);
Richard Smith07b0fdc2013-03-18 21:12:30 +00003396 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args);
3397 break;
3398 }
3399 }
3400 // Fall through.
Anders Carlssone5ef7402010-04-23 03:10:23 +00003401 case IIK_Default: {
3402 InitializationKind InitKind
3403 = InitializationKind::CreateDefault(Constructor->getLocation());
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00003404 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
3405 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003406 break;
3407 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003408
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003409 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00003410 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003411 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00003412 ParmVarDecl *Param = Constructor->getParamDecl(0);
3413 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00003414
Anders Carlssone5ef7402010-04-23 03:10:23 +00003415 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00003416 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00003417 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00003418 Constructor->getLocation(), ParamType,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003419 VK_LValue, nullptr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003420
Eli Friedman5f2987c2012-02-02 03:46:19 +00003421 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
3422
Anders Carlssonc7957502010-04-24 22:02:54 +00003423 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00003424 QualType ArgTy =
3425 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
3426 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00003427
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003428 if (Moving) {
3429 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
3430 }
3431
John McCallf871d0c2010-08-07 06:22:56 +00003432 CXXCastPath BasePath;
3433 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00003434 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
3435 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00003436 Moving ? VK_XValue : VK_LValue,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003437 &BasePath).get();
Anders Carlssonc7957502010-04-24 22:02:54 +00003438
Anders Carlssone5ef7402010-04-23 03:10:23 +00003439 InitializationKind InitKind
3440 = InitializationKind::CreateDirect(Constructor->getLocation(),
3441 SourceLocation(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003442 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg);
3443 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003444 break;
3445 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00003446 }
John McCall9ae2f072010-08-23 23:25:46 +00003447
Douglas Gregor53c374f2010-12-07 00:41:46 +00003448 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00003449 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00003450 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00003451
Anders Carlssondefefd22010-04-23 02:00:02 +00003452 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00003453 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00003454 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
3455 SourceLocation()),
3456 BaseSpec->isVirtual(),
3457 SourceLocation(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003458 BaseInit.getAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00003459 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00003460 SourceLocation());
3461
Anders Carlssondefefd22010-04-23 02:00:02 +00003462 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00003463}
3464
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003465static bool RefersToRValueRef(Expr *MemRef) {
3466 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
3467 return Referenced->getType()->isRValueReferenceType();
3468}
3469
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003470static bool
3471BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003472 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003473 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00003474 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00003475 if (Field->isInvalidDecl())
3476 return true;
3477
Chandler Carruthf186b542010-06-29 23:50:44 +00003478 SourceLocation Loc = Constructor->getLocation();
3479
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003480 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
3481 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003482 ParmVarDecl *Param = Constructor->getParamDecl(0);
3483 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00003484
3485 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003486 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
3487 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00003488
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003489 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00003490 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00003491 SourceLocation(), Param, false,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003492 Loc, ParamType, VK_LValue, nullptr);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003493
Eli Friedman5f2987c2012-02-02 03:46:19 +00003494 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
3495
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003496 if (Moving) {
3497 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
3498 }
3499
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003500 // Build a reference to this field within the parameter.
3501 CXXScopeSpec SS;
3502 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
3503 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003504 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
3505 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003506 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00003507 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00003508 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003509 ParamType, Loc,
3510 /*IsArrow=*/false,
3511 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00003512 /*TemplateKWLoc=*/SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003513 /*FirstQualifierInScope=*/nullptr,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003514 MemberLookup,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003515 /*TemplateArgs=*/nullptr);
Sebastian Redl74e611a2011-09-04 18:14:28 +00003516 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003517 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003518
3519 // C++11 [class.copy]p15:
3520 // - if a member m has rvalue reference type T&&, it is direct-initialized
3521 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00003522 if (RefersToRValueRef(CtorArg.get())) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003523 CtorArg = CastForMoving(SemaRef, CtorArg.get());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003524 }
3525
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003526 // When the field we are copying is an array, create index variables for
3527 // each dimension of the array. We use these index variables to subscript
3528 // the source array, and other clients (e.g., CodeGen) will perform the
3529 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003530 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003531 QualType BaseType = Field->getType();
3532 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003533 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003534 while (const ConstantArrayType *Array
3535 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003536 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003537 // Create the iteration variable for this array index.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003538 IdentifierInfo *IterationVarName = nullptr;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003539 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003540 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003541 llvm::raw_svector_ostream OS(Str);
3542 OS << "__i" << IndexVariables.size();
3543 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
3544 }
3545 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003546 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003547 IterationVarName, SizeType,
3548 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003549 SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003550 IndexVariables.push_back(IterationVar);
3551
3552 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00003553 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00003554 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003555 assert(!IterationVarRef.isInvalid() &&
3556 "Reference to invented variable cannot fail!");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003557 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.get());
Eli Friedman8c382062012-01-23 02:35:22 +00003558 assert(!IterationVarRef.isInvalid() &&
3559 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00003560
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003561 // Subscript the array with this iteration variable.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003562 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.get(), Loc,
3563 IterationVarRef.get(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00003564 Loc);
3565 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003566 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003567
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003568 BaseType = Array->getElementType();
3569 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003570
3571 // The array subscript expression is an lvalue, which is wrong for moving.
3572 if (Moving && InitializingArray)
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003573 CtorArg = CastForMoving(SemaRef, CtorArg.get());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003574
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003575 // Construct the entity that we will be initializing. For an array, this
3576 // will be first element in the array, which may require several levels
3577 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003578 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003579 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003580 if (Indirect)
3581 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
3582 else
3583 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003584 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
3585 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
3586 0,
3587 Entities.back()));
3588
3589 // Direct-initialize to use the copy constructor.
3590 InitializationKind InitKind =
3591 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
3592
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003593 Expr *CtorArgE = CtorArg.getAs<Expr>();
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07003594 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
3595 CtorArgE);
3596
John McCall60d7b3a2010-08-24 06:29:42 +00003597 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003598 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00003599 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00003600 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003601 if (MemberInit.isInvalid())
3602 return true;
3603
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003604 if (Indirect) {
3605 assert(IndexVariables.size() == 0 &&
3606 "Indirect field improperly initialized");
3607 CXXMemberInit
3608 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3609 Loc, Loc,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003610 MemberInit.getAs<Expr>(),
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003611 Loc);
3612 } else
3613 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07003614 Loc, MemberInit.getAs<Expr>(),
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003615 Loc,
3616 IndexVariables.data(),
3617 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00003618 return false;
3619 }
3620
Richard Smith07b0fdc2013-03-18 21:12:30 +00003621 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) &&
3622 "Unhandled implicit init kind!");
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003623
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003624 QualType FieldBaseElementType =
3625 SemaRef.Context.getBaseElementType(Field->getType());
3626
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003627 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003628 InitializedEntity InitEntity
3629 = Indirect? InitializedEntity::InitializeMember(Indirect)
3630 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003631 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00003632 InitializationKind::CreateDefault(Loc);
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00003633
3634 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
3635 ExprResult MemberInit =
3636 InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
John McCall9ae2f072010-08-23 23:25:46 +00003637
Douglas Gregor53c374f2010-12-07 00:41:46 +00003638 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003639 if (MemberInit.isInvalid())
3640 return true;
3641
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003642 if (Indirect)
3643 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3644 Indirect, Loc,
3645 Loc,
3646 MemberInit.get(),
3647 Loc);
3648 else
3649 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3650 Field, Loc, Loc,
3651 MemberInit.get(),
3652 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003653 return false;
3654 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003655
Sean Hunt1f2f3842011-05-17 00:19:05 +00003656 if (!Field->getParent()->isUnion()) {
3657 if (FieldBaseElementType->isReferenceType()) {
3658 SemaRef.Diag(Constructor->getLocation(),
3659 diag::err_uninitialized_member_in_ctor)
3660 << (int)Constructor->isImplicit()
3661 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3662 << 0 << Field->getDeclName();
3663 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3664 return true;
3665 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003666
Sean Hunt1f2f3842011-05-17 00:19:05 +00003667 if (FieldBaseElementType.isConstQualified()) {
3668 SemaRef.Diag(Constructor->getLocation(),
3669 diag::err_uninitialized_member_in_ctor)
3670 << (int)Constructor->isImplicit()
3671 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3672 << 1 << Field->getDeclName();
3673 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3674 return true;
3675 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003676 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003677
David Blaikie4e4d0842012-03-11 07:00:24 +00003678 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00003679 FieldBaseElementType->isObjCRetainableType() &&
3680 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
3681 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00003682 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00003683 // Default-initialize Objective-C pointers to NULL.
3684 CXXMemberInit
3685 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3686 Loc, Loc,
3687 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
3688 Loc);
3689 return false;
3690 }
3691
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003692 // Nothing to initialize.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003693 CXXMemberInit = nullptr;
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003694 return false;
3695}
John McCallf1860e52010-05-20 23:23:51 +00003696
3697namespace {
3698struct BaseAndFieldInfo {
3699 Sema &S;
3700 CXXConstructorDecl *Ctor;
3701 bool AnyErrorsInInits;
3702 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00003703 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003704 SmallVector<CXXCtorInitializer*, 8> AllToInit;
Stephen Hines651f13c2014-04-23 16:59:28 -07003705 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember;
John McCallf1860e52010-05-20 23:23:51 +00003706
3707 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
3708 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003709 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
3710 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00003711 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003712 else if (Generated && Ctor->isMoveConstructor())
3713 IIK = IIK_Move;
Richard Smith07b0fdc2013-03-18 21:12:30 +00003714 else if (Ctor->getInheritedConstructor())
3715 IIK = IIK_Inherit;
John McCallf1860e52010-05-20 23:23:51 +00003716 else
3717 IIK = IIK_Default;
3718 }
Douglas Gregorf4853882011-11-28 20:03:15 +00003719
3720 bool isImplicitCopyOrMove() const {
3721 switch (IIK) {
3722 case IIK_Copy:
3723 case IIK_Move:
3724 return true;
3725
3726 case IIK_Default:
Richard Smith07b0fdc2013-03-18 21:12:30 +00003727 case IIK_Inherit:
Douglas Gregorf4853882011-11-28 20:03:15 +00003728 return false;
3729 }
David Blaikie30263482012-01-20 21:50:17 +00003730
3731 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00003732 }
Richard Smith0b8220a2012-08-07 21:30:42 +00003733
3734 bool addFieldInitializer(CXXCtorInitializer *Init) {
3735 AllToInit.push_back(Init);
3736
3737 // Check whether this initializer makes the field "used".
Richard Smithc3bf52c2013-04-20 22:23:05 +00003738 if (Init->getInit()->HasSideEffects(S.Context))
Richard Smith0b8220a2012-08-07 21:30:42 +00003739 S.UnusedPrivateFields.remove(Init->getAnyMember());
3740
3741 return false;
3742 }
John McCallf1860e52010-05-20 23:23:51 +00003743
Stephen Hines651f13c2014-04-23 16:59:28 -07003744 bool isInactiveUnionMember(FieldDecl *Field) {
3745 RecordDecl *Record = Field->getParent();
3746 if (!Record->isUnion())
3747 return false;
3748
3749 if (FieldDecl *Active =
3750 ActiveUnionMember.lookup(Record->getCanonicalDecl()))
3751 return Active != Field->getCanonicalDecl();
3752
3753 // In an implicit copy or move constructor, ignore any in-class initializer.
3754 if (isImplicitCopyOrMove())
3755 return true;
3756
3757 // If there's no explicit initialization, the field is active only if it
3758 // has an in-class initializer...
3759 if (Field->hasInClassInitializer())
3760 return false;
3761 // ... or it's an anonymous struct or union whose class has an in-class
3762 // initializer.
3763 if (!Field->isAnonymousStructOrUnion())
3764 return true;
3765 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl();
3766 return !FieldRD->hasInClassInitializer();
3767 }
3768
3769 /// \brief Determine whether the given field is, or is within, a union member
3770 /// that is inactive (because there was an initializer given for a different
3771 /// member of the union, or because the union was not initialized at all).
3772 bool isWithinInactiveUnionMember(FieldDecl *Field,
3773 IndirectFieldDecl *Indirect) {
3774 if (!Indirect)
3775 return isInactiveUnionMember(Field);
3776
3777 for (auto *C : Indirect->chain()) {
3778 FieldDecl *Field = dyn_cast<FieldDecl>(C);
3779 if (Field && isInactiveUnionMember(Field))
Richard Smitha4950662011-09-19 13:34:43 +00003780 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -07003781 }
3782 return false;
3783 }
3784};
Richard Smitha4950662011-09-19 13:34:43 +00003785}
3786
Douglas Gregorddb21472011-11-02 23:04:16 +00003787/// \brief Determine whether the given type is an incomplete or zero-lenfgth
3788/// array type.
3789static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
3790 if (T->isIncompleteArrayType())
3791 return true;
3792
3793 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
3794 if (!ArrayT->getSize())
3795 return true;
3796
3797 T = ArrayT->getElementType();
3798 }
3799
3800 return false;
3801}
3802
Richard Smith7a614d82011-06-11 17:19:42 +00003803static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003804 FieldDecl *Field,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003805 IndirectFieldDecl *Indirect = nullptr) {
Eli Friedman5fb478b2013-06-28 21:07:41 +00003806 if (Field->isInvalidDecl())
3807 return false;
John McCallf1860e52010-05-20 23:23:51 +00003808
Chandler Carruthe861c602010-06-30 02:59:29 +00003809 // Overwhelmingly common case: we have a direct initializer for this field.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003810 if (CXXCtorInitializer *Init =
3811 Info.AllBaseFields.lookup(Field->getCanonicalDecl()))
Richard Smith0b8220a2012-08-07 21:30:42 +00003812 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003813
Stephen Hines651f13c2014-04-23 16:59:28 -07003814 // C++11 [class.base.init]p8:
3815 // if the entity is a non-static data member that has a
3816 // brace-or-equal-initializer and either
3817 // -- the constructor's class is a union and no other variant member of that
3818 // union is designated by a mem-initializer-id or
3819 // -- the constructor's class is not a union, and, if the entity is a member
3820 // of an anonymous union, no other member of that union is designated by
3821 // a mem-initializer-id,
3822 // the entity is initialized as specified in [dcl.init].
3823 //
3824 // We also apply the same rules to handle anonymous structs within anonymous
3825 // unions.
3826 if (Info.isWithinInactiveUnionMember(Field, Indirect))
3827 return false;
3828
Douglas Gregorf4853882011-11-28 20:03:15 +00003829 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Stephen Hines176edba2014-12-01 14:53:08 -08003830 ExprResult DIE =
3831 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field);
3832 if (DIE.isInvalid())
3833 return true;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003834 CXXCtorInitializer *Init;
3835 if (Indirect)
Stephen Hines176edba2014-12-01 14:53:08 -08003836 Init = new (SemaRef.Context)
3837 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(),
3838 SourceLocation(), DIE.get(), SourceLocation());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003839 else
Stephen Hines176edba2014-12-01 14:53:08 -08003840 Init = new (SemaRef.Context)
3841 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(),
3842 SourceLocation(), DIE.get(), SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003843 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003844 }
3845
Douglas Gregorddb21472011-11-02 23:04:16 +00003846 // Don't initialize incomplete or zero-length arrays.
3847 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3848 return false;
3849
John McCallf1860e52010-05-20 23:23:51 +00003850 // Don't try to build an implicit initializer if there were semantic
3851 // errors in any of the initializers (and therefore we might be
3852 // missing some that the user actually wrote).
Eli Friedman5fb478b2013-06-28 21:07:41 +00003853 if (Info.AnyErrorsInInits)
John McCallf1860e52010-05-20 23:23:51 +00003854 return false;
3855
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003856 CXXCtorInitializer *Init = nullptr;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003857 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3858 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003859 return true;
John McCallf1860e52010-05-20 23:23:51 +00003860
Richard Smith0b8220a2012-08-07 21:30:42 +00003861 if (!Init)
3862 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003863
Richard Smith0b8220a2012-08-07 21:30:42 +00003864 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003865}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003866
3867bool
3868Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3869 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003870 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003871 Constructor->setNumCtorInitializers(1);
3872 CXXCtorInitializer **initializer =
3873 new (Context) CXXCtorInitializer*[1];
3874 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3875 Constructor->setCtorInitializers(initializer);
3876
Sean Huntb76af9c2011-05-03 23:05:34 +00003877 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003878 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003879 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3880 }
3881
Sean Huntc1598702011-05-05 00:05:47 +00003882 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003883
Stephen Hines176edba2014-12-01 14:53:08 -08003884 DiagnoseUninitializedFields(*this, Constructor);
3885
Sean Hunt059ce0d2011-05-01 07:04:31 +00003886 return false;
3887}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003888
David Blaikie93c86172013-01-17 05:26:25 +00003889bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
3890 ArrayRef<CXXCtorInitializer *> Initializers) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003891 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003892 // Just store the initializers as written, they will be checked during
3893 // instantiation.
David Blaikie93c86172013-01-17 05:26:25 +00003894 if (!Initializers.empty()) {
3895 Constructor->setNumCtorInitializers(Initializers.size());
Sean Huntcbb67482011-01-08 20:30:50 +00003896 CXXCtorInitializer **baseOrMemberInitializers =
David Blaikie93c86172013-01-17 05:26:25 +00003897 new (Context) CXXCtorInitializer*[Initializers.size()];
3898 memcpy(baseOrMemberInitializers, Initializers.data(),
3899 Initializers.size() * sizeof(CXXCtorInitializer*));
Sean Huntcbb67482011-01-08 20:30:50 +00003900 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003901 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003902
3903 // Let template instantiation know whether we had errors.
3904 if (AnyErrors)
3905 Constructor->setInvalidDecl();
3906
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003907 return false;
3908 }
3909
John McCallf1860e52010-05-20 23:23:51 +00003910 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003911
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003912 // We need to build the initializer AST according to order of construction
3913 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003914 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003915 if (!ClassDecl)
3916 return true;
3917
Eli Friedman80c30da2009-11-09 19:20:36 +00003918 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003919
David Blaikie93c86172013-01-17 05:26:25 +00003920 for (unsigned i = 0; i < Initializers.size(); i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003921 CXXCtorInitializer *Member = Initializers[i];
Richard Smithcbc820a2013-07-22 02:56:56 +00003922
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003923 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003924 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Stephen Hines651f13c2014-04-23 16:59:28 -07003925 else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003926 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member;
Stephen Hines651f13c2014-04-23 16:59:28 -07003927
3928 if (IndirectFieldDecl *F = Member->getIndirectMember()) {
3929 for (auto *C : F->chain()) {
3930 FieldDecl *FD = dyn_cast<FieldDecl>(C);
3931 if (FD && FD->getParent()->isUnion())
3932 Info.ActiveUnionMember.insert(std::make_pair(
3933 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
3934 }
3935 } else if (FieldDecl *FD = Member->getMember()) {
3936 if (FD->getParent()->isUnion())
3937 Info.ActiveUnionMember.insert(std::make_pair(
3938 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
3939 }
3940 }
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003941 }
3942
Anders Carlsson711f34a2010-04-21 19:52:01 +00003943 // Keep track of the direct virtual bases.
3944 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
Stephen Hines651f13c2014-04-23 16:59:28 -07003945 for (auto &I : ClassDecl->bases()) {
3946 if (I.isVirtual())
3947 DirectVBases.insert(&I);
Anders Carlsson711f34a2010-04-21 19:52:01 +00003948 }
3949
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003950 // Push virtual bases before others.
Stephen Hines651f13c2014-04-23 16:59:28 -07003951 for (auto &VBase : ClassDecl->vbases()) {
Sean Huntcbb67482011-01-08 20:30:50 +00003952 if (CXXCtorInitializer *Value
Stephen Hines651f13c2014-04-23 16:59:28 -07003953 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) {
Richard Smithcbc820a2013-07-22 02:56:56 +00003954 // [class.base.init]p7, per DR257:
3955 // A mem-initializer where the mem-initializer-id names a virtual base
3956 // class is ignored during execution of a constructor of any class that
3957 // is not the most derived class.
3958 if (ClassDecl->isAbstract()) {
3959 // FIXME: Provide a fixit to remove the base specifier. This requires
3960 // tracking the location of the associated comma for a base specifier.
3961 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored)
Stephen Hines651f13c2014-04-23 16:59:28 -07003962 << VBase.getType() << ClassDecl;
Richard Smithcbc820a2013-07-22 02:56:56 +00003963 DiagnoseAbstractType(ClassDecl);
3964 }
3965
John McCallf1860e52010-05-20 23:23:51 +00003966 Info.AllToInit.push_back(Value);
Richard Smithcbc820a2013-07-22 02:56:56 +00003967 } else if (!AnyErrors && !ClassDecl->isAbstract()) {
3968 // [class.base.init]p8, per DR257:
3969 // If a given [...] base class is not named by a mem-initializer-id
3970 // [...] and the entity is not a virtual base class of an abstract
3971 // class, then [...] the entity is default-initialized.
Stephen Hines651f13c2014-04-23 16:59:28 -07003972 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003973 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003974 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Stephen Hines651f13c2014-04-23 16:59:28 -07003975 &VBase, IsInheritedVirtualBase,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003976 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003977 HadError = true;
3978 continue;
3979 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003980
John McCallf1860e52010-05-20 23:23:51 +00003981 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003982 }
3983 }
Mike Stump1eb44332009-09-09 15:08:12 +00003984
John McCallf1860e52010-05-20 23:23:51 +00003985 // Non-virtual bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07003986 for (auto &Base : ClassDecl->bases()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003987 // Virtuals are in the virtual base list and already constructed.
Stephen Hines651f13c2014-04-23 16:59:28 -07003988 if (Base.isVirtual())
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003989 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003990
Sean Huntcbb67482011-01-08 20:30:50 +00003991 if (CXXCtorInitializer *Value
Stephen Hines651f13c2014-04-23 16:59:28 -07003992 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) {
John McCallf1860e52010-05-20 23:23:51 +00003993 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003994 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003995 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003996 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Stephen Hines651f13c2014-04-23 16:59:28 -07003997 &Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003998 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003999 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00004000 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00004001 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00004002
John McCallf1860e52010-05-20 23:23:51 +00004003 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00004004 }
4005 }
Mike Stump1eb44332009-09-09 15:08:12 +00004006
John McCallf1860e52010-05-20 23:23:51 +00004007 // Fields.
Stephen Hines651f13c2014-04-23 16:59:28 -07004008 for (auto *Mem : ClassDecl->decls()) {
4009 if (auto *F = dyn_cast<FieldDecl>(Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00004010 // C++ [class.bit]p2:
4011 // A declaration for a bit-field that omits the identifier declares an
4012 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
4013 // initialized.
4014 if (F->isUnnamedBitfield())
4015 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00004016
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004017 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004018 // handle anonymous struct/union fields based on their individual
4019 // indirect fields.
Richard Smith07b0fdc2013-03-18 21:12:30 +00004020 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove())
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004021 continue;
4022
4023 if (CollectFieldInitializer(*this, Info, F))
4024 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004025 continue;
4026 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004027
4028 // Beyond this point, we only consider default initialization.
Richard Smith07b0fdc2013-03-18 21:12:30 +00004029 if (Info.isImplicitCopyOrMove())
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004030 continue;
4031
Stephen Hines651f13c2014-04-23 16:59:28 -07004032 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004033 if (F->getType()->isIncompleteArrayType()) {
4034 assert(ClassDecl->hasFlexibleArrayMember() &&
4035 "Incomplete array type is not valid");
4036 continue;
4037 }
4038
Douglas Gregor4dc41c92011-08-10 15:22:55 +00004039 // Initialize each field of an anonymous struct individually.
4040 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
4041 HadError = true;
4042
4043 continue;
4044 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004045 }
Mike Stump1eb44332009-09-09 15:08:12 +00004046
David Blaikie93c86172013-01-17 05:26:25 +00004047 unsigned NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00004048 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00004049 Constructor->setNumCtorInitializers(NumInitializers);
4050 CXXCtorInitializer **baseOrMemberInitializers =
4051 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00004052 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00004053 NumInitializers * sizeof(CXXCtorInitializer*));
4054 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00004055
John McCallef027fe2010-03-16 21:39:52 +00004056 // Constructors implicitly reference the base and member
4057 // destructors.
4058 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
4059 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00004060 }
Eli Friedman80c30da2009-11-09 19:20:36 +00004061
4062 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00004063}
4064
David Blaikieee000bb2013-01-17 08:49:22 +00004065static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004066 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
David Blaikieee000bb2013-01-17 08:49:22 +00004067 const RecordDecl *RD = RT->getDecl();
4068 if (RD->isAnonymousStructOrUnion()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004069 for (auto *Field : RD->fields())
4070 PopulateKeysForFields(Field, IdealInits);
David Blaikieee000bb2013-01-17 08:49:22 +00004071 return;
4072 }
Eli Friedman6347f422009-07-21 19:28:10 +00004073 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004074 IdealInits.push_back(Field->getCanonicalDecl());
Eli Friedman6347f422009-07-21 19:28:10 +00004075}
4076
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004077static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
4078 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssoncdc83c72009-09-01 06:22:14 +00004079}
4080
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004081static const void *GetKeyForMember(ASTContext &Context,
4082 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00004083 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00004084 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00004085
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004086 return Member->getAnyMember()->getCanonicalDecl();
Eli Friedman6347f422009-07-21 19:28:10 +00004087}
4088
David Blaikie93c86172013-01-17 05:26:25 +00004089static void DiagnoseBaseOrMemInitializerOrder(
4090 Sema &SemaRef, const CXXConstructorDecl *Constructor,
4091 ArrayRef<CXXCtorInitializer *> Inits) {
John McCalld6ca8da2010-04-10 07:37:23 +00004092 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00004093 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004094
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00004095 // Don't check initializers order unless the warning is enabled at the
4096 // location of at least one initializer.
4097 bool ShouldCheckOrder = false;
David Blaikie93c86172013-01-17 05:26:25 +00004098 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00004099 CXXCtorInitializer *Init = Inits[InitIndex];
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004100 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order,
4101 Init->getSourceLocation())) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00004102 ShouldCheckOrder = true;
4103 break;
4104 }
4105 }
4106 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00004107 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004108
John McCalld6ca8da2010-04-10 07:37:23 +00004109 // Build the list of bases and members in the order that they'll
4110 // actually be initialized. The explicit initializers should be in
4111 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004112 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00004113
Anders Carlsson071d6102010-04-02 03:38:04 +00004114 const CXXRecordDecl *ClassDecl = Constructor->getParent();
4115
John McCalld6ca8da2010-04-10 07:37:23 +00004116 // 1. Virtual bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07004117 for (const auto &VBase : ClassDecl->vbases())
4118 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00004119
John McCalld6ca8da2010-04-10 07:37:23 +00004120 // 2. Non-virtual bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07004121 for (const auto &Base : ClassDecl->bases()) {
4122 if (Base.isVirtual())
Anders Carlsson5c36fb22009-08-27 05:45:01 +00004123 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07004124 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00004125 }
Mike Stump1eb44332009-09-09 15:08:12 +00004126
John McCalld6ca8da2010-04-10 07:37:23 +00004127 // 3. Direct fields.
Stephen Hines651f13c2014-04-23 16:59:28 -07004128 for (auto *Field : ClassDecl->fields()) {
Douglas Gregord61db332011-10-10 17:22:13 +00004129 if (Field->isUnnamedBitfield())
4130 continue;
4131
Stephen Hines651f13c2014-04-23 16:59:28 -07004132 PopulateKeysForFields(Field, IdealInitKeys);
Douglas Gregord61db332011-10-10 17:22:13 +00004133 }
4134
John McCalld6ca8da2010-04-10 07:37:23 +00004135 unsigned NumIdealInits = IdealInitKeys.size();
4136 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00004137
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004138 CXXCtorInitializer *PrevInit = nullptr;
David Blaikie93c86172013-01-17 05:26:25 +00004139 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00004140 CXXCtorInitializer *Init = Inits[InitIndex];
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004141 const void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00004142
4143 // Scan forward to try to find this initializer in the idealized
4144 // initializers list.
4145 for (; IdealIndex != NumIdealInits; ++IdealIndex)
4146 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00004147 break;
John McCalld6ca8da2010-04-10 07:37:23 +00004148
4149 // If we didn't find this initializer, it must be because we
4150 // scanned past it on a previous iteration. That can only
4151 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00004152 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00004153 Sema::SemaDiagnosticBuilder D =
4154 SemaRef.Diag(PrevInit->getSourceLocation(),
4155 diag::warn_initializer_out_of_order);
4156
Francois Pichet00eb3f92010-12-04 09:14:42 +00004157 if (PrevInit->isAnyMemberInitializer())
4158 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00004159 else
Douglas Gregor76852c22011-11-01 01:16:03 +00004160 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00004161
Francois Pichet00eb3f92010-12-04 09:14:42 +00004162 if (Init->isAnyMemberInitializer())
4163 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00004164 else
Douglas Gregor76852c22011-11-01 01:16:03 +00004165 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00004166
4167 // Move back to the initializer's location in the ideal list.
4168 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
4169 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00004170 break;
John McCalld6ca8da2010-04-10 07:37:23 +00004171
4172 assert(IdealIndex != NumIdealInits &&
4173 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00004174 }
John McCalld6ca8da2010-04-10 07:37:23 +00004175
4176 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00004177 }
Anders Carlssona7b35212009-03-25 02:58:17 +00004178}
4179
John McCall3c3ccdb2010-04-10 09:28:51 +00004180namespace {
4181bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00004182 CXXCtorInitializer *Init,
4183 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00004184 if (!PrevInit) {
4185 PrevInit = Init;
4186 return false;
4187 }
4188
Douglas Gregordc392c12013-03-25 23:28:23 +00004189 if (FieldDecl *Field = Init->getAnyMember())
John McCall3c3ccdb2010-04-10 09:28:51 +00004190 S.Diag(Init->getSourceLocation(),
4191 diag::err_multiple_mem_initialization)
4192 << Field->getDeclName()
4193 << Init->getSourceRange();
4194 else {
John McCallf4c73712011-01-19 06:33:43 +00004195 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00004196 assert(BaseClass && "neither field nor base");
4197 S.Diag(Init->getSourceLocation(),
4198 diag::err_multiple_base_initialization)
4199 << QualType(BaseClass, 0)
4200 << Init->getSourceRange();
4201 }
4202 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
4203 << 0 << PrevInit->getSourceRange();
4204
4205 return true;
4206}
4207
Sean Huntcbb67482011-01-08 20:30:50 +00004208typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00004209typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
4210
4211bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00004212 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00004213 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00004214 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00004215 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00004216 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00004217
4218 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00004219 if (Parent->isUnion()) {
4220 UnionEntry &En = Unions[Parent];
4221 if (En.first && En.first != Child) {
4222 S.Diag(Init->getSourceLocation(),
4223 diag::err_multiple_mem_union_initialization)
4224 << Field->getDeclName()
4225 << Init->getSourceRange();
4226 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
4227 << 0 << En.second->getSourceRange();
4228 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00004229 }
4230 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00004231 En.first = Child;
4232 En.second = Init;
4233 }
David Blaikie6fe29652011-11-17 06:01:57 +00004234 if (!Parent->isAnonymousStructOrUnion())
4235 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00004236 }
4237
4238 Child = Parent;
4239 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00004240 }
John McCall3c3ccdb2010-04-10 09:28:51 +00004241
4242 return false;
4243}
4244}
4245
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004246/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00004247void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004248 SourceLocation ColonLoc,
David Blaikie93c86172013-01-17 05:26:25 +00004249 ArrayRef<CXXCtorInitializer*> MemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004250 bool AnyErrors) {
4251 if (!ConstructorDecl)
4252 return;
4253
4254 AdjustDeclIfTemplate(ConstructorDecl);
4255
4256 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00004257 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004258
4259 if (!Constructor) {
4260 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
4261 return;
4262 }
4263
John McCall3c3ccdb2010-04-10 09:28:51 +00004264 // Mapping for the duplicate initializers check.
4265 // For member initializers, this is keyed with a FieldDecl*.
4266 // For base initializers, this is keyed with a Type*.
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004267 llvm::DenseMap<const void *, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00004268
4269 // Mapping for the inconsistent anonymous-union initializers check.
4270 RedundantUnionMap MemberUnions;
4271
Anders Carlssonea356fb2010-04-02 05:42:15 +00004272 bool HadError = false;
David Blaikie93c86172013-01-17 05:26:25 +00004273 for (unsigned i = 0; i < MemInits.size(); i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00004274 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004275
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00004276 // Set the source order index.
4277 Init->setSourceOrder(i);
4278
Francois Pichet00eb3f92010-12-04 09:14:42 +00004279 if (Init->isAnyMemberInitializer()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004280 const void *Key = GetKeyForMember(Context, Init);
4281 if (CheckRedundantInit(*this, Init, Members[Key]) ||
John McCall3c3ccdb2010-04-10 09:28:51 +00004282 CheckRedundantUnionInit(*this, Init, MemberUnions))
4283 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00004284 } else if (Init->isBaseInitializer()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004285 const void *Key = GetKeyForMember(Context, Init);
John McCall3c3ccdb2010-04-10 09:28:51 +00004286 if (CheckRedundantInit(*this, Init, Members[Key]))
4287 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00004288 } else {
4289 assert(Init->isDelegatingInitializer());
4290 // This must be the only initializer
David Blaikie93c86172013-01-17 05:26:25 +00004291 if (MemInits.size() != 1) {
Richard Smitha6ddea62012-09-14 18:21:10 +00004292 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00004293 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00004294 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00004295 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00004296 }
Sean Huntfe57eef2011-05-04 05:57:24 +00004297 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00004298 // Return immediately as the initializer is set.
4299 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004300 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004301 }
4302
Anders Carlssonea356fb2010-04-02 05:42:15 +00004303 if (HadError)
4304 return;
4305
David Blaikie93c86172013-01-17 05:26:25 +00004306 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00004307
David Blaikie93c86172013-01-17 05:26:25 +00004308 SetCtorInitializers(Constructor, AnyErrors, MemInits);
Richard Trieu225e9822013-09-16 21:54:53 +00004309
Richard Trieu858d2ba2013-10-25 00:56:00 +00004310 DiagnoseUninitializedFields(*this, Constructor);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00004311}
4312
Fariborz Jahanian34374e62009-09-03 23:18:17 +00004313void
John McCallef027fe2010-03-16 21:39:52 +00004314Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
4315 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00004316 // Ignore dependent contexts. Also ignore unions, since their members never
4317 // have destructors implicitly called.
4318 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00004319 return;
John McCall58e6f342010-03-16 05:22:47 +00004320
4321 // FIXME: all the access-control diagnostics are positioned on the
4322 // field/base declaration. That's probably good; that said, the
4323 // user might reasonably want to know why the destructor is being
4324 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00004325
Anders Carlsson9f853df2009-11-17 04:44:12 +00004326 // Non-static data members.
Stephen Hines651f13c2014-04-23 16:59:28 -07004327 for (auto *Field : ClassDecl->fields()) {
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00004328 if (Field->isInvalidDecl())
4329 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00004330
4331 // Don't destroy incomplete or zero-length arrays.
4332 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
4333 continue;
4334
Anders Carlsson9f853df2009-11-17 04:44:12 +00004335 QualType FieldType = Context.getBaseElementType(Field->getType());
4336
4337 const RecordType* RT = FieldType->getAs<RecordType>();
4338 if (!RT)
4339 continue;
4340
4341 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004342 if (FieldClassDecl->isInvalidDecl())
4343 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00004344 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00004345 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00004346 // The destructor for an implicit anonymous union member is never invoked.
4347 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
4348 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00004349
Douglas Gregordb89f282010-07-01 22:47:18 +00004350 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004351 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00004352 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00004353 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00004354 << Field->getDeclName()
4355 << FieldType);
4356
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004357 MarkFunctionReferenced(Location, Dtor);
Richard Smith213d70b2012-02-18 04:13:32 +00004358 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00004359 }
4360
John McCall58e6f342010-03-16 05:22:47 +00004361 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
4362
Anders Carlsson9f853df2009-11-17 04:44:12 +00004363 // Bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07004364 for (const auto &Base : ClassDecl->bases()) {
John McCall58e6f342010-03-16 05:22:47 +00004365 // Bases are always records in a well-formed non-dependent class.
Stephen Hines651f13c2014-04-23 16:59:28 -07004366 const RecordType *RT = Base.getType()->getAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00004367
4368 // Remember direct virtual bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07004369 if (Base.isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00004370 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00004371
John McCall58e6f342010-03-16 05:22:47 +00004372 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004373 // If our base class is invalid, we probably can't get its dtor anyway.
4374 if (BaseClassDecl->isInvalidDecl())
4375 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00004376 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00004377 continue;
John McCall58e6f342010-03-16 05:22:47 +00004378
Douglas Gregordb89f282010-07-01 22:47:18 +00004379 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004380 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00004381
4382 // FIXME: caret should be on the start of the class name
Stephen Hines651f13c2014-04-23 16:59:28 -07004383 CheckDestructorAccess(Base.getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00004384 PDiag(diag::err_access_dtor_base)
Stephen Hines651f13c2014-04-23 16:59:28 -07004385 << Base.getType()
4386 << Base.getSourceRange(),
John McCallb9abd8722012-04-07 03:04:20 +00004387 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00004388
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004389 MarkFunctionReferenced(Location, Dtor);
Richard Smith213d70b2012-02-18 04:13:32 +00004390 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00004391 }
4392
4393 // Virtual bases.
Stephen Hines651f13c2014-04-23 16:59:28 -07004394 for (const auto &VBase : ClassDecl->vbases()) {
John McCall58e6f342010-03-16 05:22:47 +00004395 // Bases are always records in a well-formed non-dependent class.
Stephen Hines651f13c2014-04-23 16:59:28 -07004396 const RecordType *RT = VBase.getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00004397
4398 // Ignore direct virtual bases.
4399 if (DirectVirtualBases.count(RT))
4400 continue;
4401
John McCall58e6f342010-03-16 05:22:47 +00004402 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004403 // If our base class is invalid, we probably can't get its dtor anyway.
4404 if (BaseClassDecl->isInvalidDecl())
4405 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00004406 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00004407 continue;
John McCall58e6f342010-03-16 05:22:47 +00004408
Douglas Gregordb89f282010-07-01 22:47:18 +00004409 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00004410 assert(Dtor && "No dtor found for BaseClassDecl!");
David Majnemer2f686692013-06-22 06:43:58 +00004411 if (CheckDestructorAccess(
4412 ClassDecl->getLocation(), Dtor,
4413 PDiag(diag::err_access_dtor_vbase)
Stephen Hines651f13c2014-04-23 16:59:28 -07004414 << Context.getTypeDeclType(ClassDecl) << VBase.getType(),
David Majnemer2f686692013-06-22 06:43:58 +00004415 Context.getTypeDeclType(ClassDecl)) ==
4416 AR_accessible) {
4417 CheckDerivedToBaseConversion(
Stephen Hines651f13c2014-04-23 16:59:28 -07004418 Context.getTypeDeclType(ClassDecl), VBase.getType(),
David Majnemer2f686692013-06-22 06:43:58 +00004419 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004420 SourceRange(), DeclarationName(), nullptr);
David Majnemer2f686692013-06-22 06:43:58 +00004421 }
John McCall58e6f342010-03-16 05:22:47 +00004422
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004423 MarkFunctionReferenced(Location, Dtor);
Richard Smith213d70b2012-02-18 04:13:32 +00004424 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00004425 }
4426}
4427
John McCalld226f652010-08-21 09:40:31 +00004428void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00004429 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00004430 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004431
Mike Stump1eb44332009-09-09 15:08:12 +00004432 if (CXXConstructorDecl *Constructor
Richard Trieu858d2ba2013-10-25 00:56:00 +00004433 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) {
David Blaikie93c86172013-01-17 05:26:25 +00004434 SetCtorInitializers(Constructor, /*AnyErrors=*/false);
Richard Trieu858d2ba2013-10-25 00:56:00 +00004435 DiagnoseUninitializedFields(*this, Constructor);
4436 }
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00004437}
4438
Mike Stump1eb44332009-09-09 15:08:12 +00004439bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00004440 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004441 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
4442 unsigned DiagID;
4443 AbstractDiagSelID SelID;
4444
4445 public:
4446 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
4447 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00004448
Stephen Hines651f13c2014-04-23 16:59:28 -07004449 void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
Eli Friedman2217f852012-08-14 02:06:07 +00004450 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004451 if (SelID == -1)
4452 S.Diag(Loc, DiagID) << T;
4453 else
4454 S.Diag(Loc, DiagID) << SelID << T;
4455 }
4456 } Diagnoser(DiagID, SelID);
4457
4458 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00004459}
4460
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00004461bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004462 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004463 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004464 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004465
Anders Carlsson11f21a02009-03-23 19:10:31 +00004466 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004467 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00004468
Ted Kremenek6217b802009-07-29 21:53:49 +00004469 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00004470 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00004471 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00004472 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00004473
Anders Carlsson5eff73c2009-03-24 01:46:45 +00004474 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004475 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00004476 }
Mike Stump1eb44332009-09-09 15:08:12 +00004477
Ted Kremenek6217b802009-07-29 21:53:49 +00004478 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004479 if (!RT)
4480 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004481
John McCall86ff3082010-02-04 22:26:26 +00004482 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004483
John McCall94c3b562010-08-18 09:41:07 +00004484 // We can't answer whether something is abstract until it has a
4485 // definition. If it's currently being defined, we'll walk back
4486 // over all the declarations when we have a full definition.
4487 const CXXRecordDecl *Def = RD->getDefinition();
4488 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00004489 return false;
4490
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004491 if (!RD->isAbstract())
4492 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004493
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00004494 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00004495 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00004496
John McCall94c3b562010-08-18 09:41:07 +00004497 return true;
4498}
4499
4500void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
4501 // Check if we've already emitted the list of pure virtual functions
4502 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004503 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00004504 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004505
Richard Smithcbc820a2013-07-22 02:56:56 +00004506 // If the diagnostic is suppressed, don't emit the notes. We're only
4507 // going to emit them once, so try to attach them to a diagnostic we're
4508 // actually going to show.
4509 if (Diags.isLastDiagnosticIgnored())
4510 return;
4511
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00004512 CXXFinalOverriderMap FinalOverriders;
4513 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00004514
Anders Carlssonffdb2d22010-06-03 01:00:02 +00004515 // Keep a set of seen pure methods so we won't diagnose the same method
4516 // more than once.
4517 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
4518
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00004519 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
4520 MEnd = FinalOverriders.end();
4521 M != MEnd;
4522 ++M) {
4523 for (OverridingMethods::iterator SO = M->second.begin(),
4524 SOEnd = M->second.end();
4525 SO != SOEnd; ++SO) {
4526 // C++ [class.abstract]p4:
4527 // A class is abstract if it contains or inherits at least one
4528 // pure virtual function for which the final overrider is pure
4529 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00004530
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00004531 //
4532 if (SO->second.size() != 1)
4533 continue;
4534
4535 if (!SO->second.front().Method->isPure())
4536 continue;
4537
Stephen Hines176edba2014-12-01 14:53:08 -08004538 if (!SeenPureMethods.insert(SO->second.front().Method).second)
Anders Carlssonffdb2d22010-06-03 01:00:02 +00004539 continue;
4540
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00004541 Diag(SO->second.front().Method->getLocation(),
4542 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00004543 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00004544 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004545 }
4546
4547 if (!PureVirtualClassDiagSet)
4548 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
4549 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00004550}
4551
Anders Carlsson8211eff2009-03-24 01:19:16 +00004552namespace {
John McCall94c3b562010-08-18 09:41:07 +00004553struct AbstractUsageInfo {
4554 Sema &S;
4555 CXXRecordDecl *Record;
4556 CanQualType AbstractType;
4557 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00004558
John McCall94c3b562010-08-18 09:41:07 +00004559 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
4560 : S(S), Record(Record),
4561 AbstractType(S.Context.getCanonicalType(
4562 S.Context.getTypeDeclType(Record))),
4563 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00004564
John McCall94c3b562010-08-18 09:41:07 +00004565 void DiagnoseAbstractType() {
4566 if (Invalid) return;
4567 S.DiagnoseAbstractType(Record);
4568 Invalid = true;
4569 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00004570
John McCall94c3b562010-08-18 09:41:07 +00004571 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
4572};
4573
4574struct CheckAbstractUsage {
4575 AbstractUsageInfo &Info;
4576 const NamedDecl *Ctx;
4577
4578 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
4579 : Info(Info), Ctx(Ctx) {}
4580
4581 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
4582 switch (TL.getTypeLocClass()) {
4583#define ABSTRACT_TYPELOC(CLASS, PARENT)
4584#define TYPELOC(CLASS, PARENT) \
David Blaikie39e6ab42013-02-18 22:06:02 +00004585 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break;
John McCall94c3b562010-08-18 09:41:07 +00004586#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00004587 }
John McCall94c3b562010-08-18 09:41:07 +00004588 }
Mike Stump1eb44332009-09-09 15:08:12 +00004589
John McCall94c3b562010-08-18 09:41:07 +00004590 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004591 Visit(TL.getReturnLoc(), Sema::AbstractReturnType);
4592 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) {
4593 if (!TL.getParam(I))
Douglas Gregor70191862011-02-22 23:21:06 +00004594 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07004595
4596 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo();
John McCall94c3b562010-08-18 09:41:07 +00004597 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00004598 }
John McCall94c3b562010-08-18 09:41:07 +00004599 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00004600
John McCall94c3b562010-08-18 09:41:07 +00004601 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
4602 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
4603 }
Mike Stump1eb44332009-09-09 15:08:12 +00004604
John McCall94c3b562010-08-18 09:41:07 +00004605 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
4606 // Visit the type parameters from a permissive context.
4607 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
4608 TemplateArgumentLoc TAL = TL.getArgLoc(I);
4609 if (TAL.getArgument().getKind() == TemplateArgument::Type)
4610 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
4611 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
4612 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00004613 }
John McCall94c3b562010-08-18 09:41:07 +00004614 }
Mike Stump1eb44332009-09-09 15:08:12 +00004615
John McCall94c3b562010-08-18 09:41:07 +00004616 // Visit pointee types from a permissive context.
4617#define CheckPolymorphic(Type) \
4618 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
4619 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
4620 }
4621 CheckPolymorphic(PointerTypeLoc)
4622 CheckPolymorphic(ReferenceTypeLoc)
4623 CheckPolymorphic(MemberPointerTypeLoc)
4624 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00004625 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00004626
John McCall94c3b562010-08-18 09:41:07 +00004627 /// Handle all the types we haven't given a more specific
4628 /// implementation for above.
4629 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
4630 // Every other kind of type that we haven't called out already
4631 // that has an inner type is either (1) sugar or (2) contains that
4632 // inner type in some way as a subobject.
4633 if (TypeLoc Next = TL.getNextTypeLoc())
4634 return Visit(Next, Sel);
4635
4636 // If there's no inner type and we're in a permissive context,
4637 // don't diagnose.
4638 if (Sel == Sema::AbstractNone) return;
4639
4640 // Check whether the type matches the abstract type.
4641 QualType T = TL.getType();
4642 if (T->isArrayType()) {
4643 Sel = Sema::AbstractArrayType;
4644 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00004645 }
John McCall94c3b562010-08-18 09:41:07 +00004646 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
4647 if (CT != Info.AbstractType) return;
4648
4649 // It matched; do some magic.
4650 if (Sel == Sema::AbstractArrayType) {
4651 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
4652 << T << TL.getSourceRange();
4653 } else {
4654 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
4655 << Sel << T << TL.getSourceRange();
4656 }
4657 Info.DiagnoseAbstractType();
4658 }
4659};
4660
4661void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
4662 Sema::AbstractDiagSelID Sel) {
4663 CheckAbstractUsage(*this, D).Visit(TL, Sel);
4664}
4665
4666}
4667
4668/// Check for invalid uses of an abstract type in a method declaration.
4669static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4670 CXXMethodDecl *MD) {
4671 // No need to do the check on definitions, which require that
4672 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00004673 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00004674 return;
4675
4676 // For safety's sake, just ignore it if we don't have type source
4677 // information. This should never happen for non-implicit methods,
4678 // but...
4679 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
4680 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
4681}
4682
4683/// Check for invalid uses of an abstract type within a class definition.
4684static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4685 CXXRecordDecl *RD) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004686 for (auto *D : RD->decls()) {
John McCall94c3b562010-08-18 09:41:07 +00004687 if (D->isImplicit()) continue;
4688
4689 // Methods and method templates.
4690 if (isa<CXXMethodDecl>(D)) {
4691 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
4692 } else if (isa<FunctionTemplateDecl>(D)) {
4693 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
4694 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
4695
4696 // Fields and static variables.
4697 } else if (isa<FieldDecl>(D)) {
4698 FieldDecl *FD = cast<FieldDecl>(D);
4699 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
4700 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
4701 } else if (isa<VarDecl>(D)) {
4702 VarDecl *VD = cast<VarDecl>(D);
4703 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
4704 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
4705
4706 // Nested classes and class templates.
4707 } else if (isa<CXXRecordDecl>(D)) {
4708 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
4709 } else if (isa<ClassTemplateDecl>(D)) {
4710 CheckAbstractClassUsage(Info,
4711 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
4712 }
4713 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00004714}
4715
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004716/// \brief Check class-level dllimport/dllexport attribute.
4717static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) {
4718 Attr *ClassAttr = getDLLAttr(Class);
Stephen Hines176edba2014-12-01 14:53:08 -08004719
4720 // MSVC inherits DLL attributes to partial class template specializations.
4721 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) {
4722 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) {
4723 if (Attr *TemplateAttr =
4724 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) {
4725 auto *A = cast<InheritableAttr>(TemplateAttr->clone(S.getASTContext()));
4726 A->setInherited(true);
4727 ClassAttr = A;
4728 }
4729 }
4730 }
4731
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004732 if (!ClassAttr)
4733 return;
4734
Stephen Hines176edba2014-12-01 14:53:08 -08004735 if (!Class->isExternallyVisible()) {
4736 S.Diag(Class->getLocation(), diag::err_attribute_dll_not_extern)
4737 << Class << ClassAttr;
4738 return;
4739 }
4740
4741 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
4742 !ClassAttr->isInherited()) {
4743 // Diagnose dll attributes on members of class with dll attribute.
4744 for (Decl *Member : Class->decls()) {
4745 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member))
4746 continue;
4747 InheritableAttr *MemberAttr = getDLLAttr(Member);
4748 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl())
4749 continue;
4750
4751 S.Diag(MemberAttr->getLocation(),
4752 diag::err_attribute_dll_member_of_dll_class)
4753 << MemberAttr << ClassAttr;
4754 S.Diag(ClassAttr->getLocation(), diag::note_previous_attribute);
4755 Member->setInvalidDecl();
4756 }
4757 }
4758
4759 if (Class->getDescribedClassTemplate())
4760 // Don't inherit dll attribute until the template is instantiated.
4761 return;
4762
4763 // The class is either imported or exported.
4764 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport;
4765 const bool ClassImported = !ClassExported;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004766
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004767 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind();
4768
4769 // Don't dllexport explicit class template instantiation declarations.
4770 if (ClassExported && TSK == TSK_ExplicitInstantiationDeclaration) {
4771 Class->dropAttr<DLLExportAttr>();
4772 return;
4773 }
4774
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004775 // Force declaration of implicit members so they can inherit the attribute.
4776 S.ForceDeclarationOfImplicitMembers(Class);
4777
4778 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't
4779 // seem to be true in practice?
4780
4781 for (Decl *Member : Class->decls()) {
4782 VarDecl *VD = dyn_cast<VarDecl>(Member);
4783 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
4784
4785 // Only methods and static fields inherit the attributes.
4786 if (!VD && !MD)
4787 continue;
4788
Stephen Hines176edba2014-12-01 14:53:08 -08004789 if (MD) {
4790 // Don't process deleted methods.
4791 if (MD->isDeleted())
4792 continue;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004793
Stephen Hines176edba2014-12-01 14:53:08 -08004794 if (MD->isMoveAssignmentOperator() && ClassImported && MD->isInlined()) {
4795 // Current MSVC versions don't export the move assignment operators, so
4796 // don't attempt to import them if we have a definition.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004797 continue;
4798 }
Stephen Hines176edba2014-12-01 14:53:08 -08004799
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004800 if (MD->isInlined() &&
Stephen Hines176edba2014-12-01 14:53:08 -08004801 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004802 // MinGW does not import or export inline methods.
Stephen Hines176edba2014-12-01 14:53:08 -08004803 continue;
4804 }
4805 }
4806
4807 if (!getDLLAttr(Member)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004808 auto *NewAttr =
4809 cast<InheritableAttr>(ClassAttr->clone(S.getASTContext()));
4810 NewAttr->setInherited(true);
4811 Member->addAttr(NewAttr);
4812 }
4813
Stephen Hines176edba2014-12-01 14:53:08 -08004814 if (MD && ClassExported) {
4815 if (MD->isUserProvided()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004816 // Instantiate non-default class member functions ...
Stephen Hines176edba2014-12-01 14:53:08 -08004817
4818 // .. except for certain kinds of template specializations.
4819 if (TSK == TSK_ExplicitInstantiationDeclaration)
4820 continue;
4821 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited())
4822 continue;
4823
4824 S.MarkFunctionReferenced(Class->getLocation(), MD);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004825
4826 // The function will be passed to the consumer when its definition is
4827 // encountered.
Stephen Hines176edba2014-12-01 14:53:08 -08004828 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() ||
4829 MD->isCopyAssignmentOperator() ||
4830 MD->isMoveAssignmentOperator()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004831 // Synthesize and instantiate non-trivial implicit methods, explicitly
4832 // defaulted methods, and the copy and move assignment operators. The
4833 // latter are exported even if they are trivial, because the address of
4834 // an operator can be taken and should compare equal accross libraries.
4835 DiagnosticErrorTrap Trap(S.Diags);
Stephen Hines176edba2014-12-01 14:53:08 -08004836 S.MarkFunctionReferenced(Class->getLocation(), MD);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07004837 if (Trap.hasErrorOccurred()) {
4838 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class)
4839 << Class->getName() << !S.getLangOpts().CPlusPlus11;
4840 break;
4841 }
4842
4843 // There is no later point when we will see the definition of this
4844 // function, so pass it to the consumer now.
4845 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD));
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004846 }
4847 }
4848 }
4849}
4850
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004851/// \brief Perform semantic checks on a class definition that has been
4852/// completing, introducing implicitly-declared members, checking for
4853/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004854void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00004855 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004856 return;
4857
John McCall94c3b562010-08-18 09:41:07 +00004858 if (Record->isAbstract() && !Record->isInvalidDecl()) {
4859 AbstractUsageInfo Info(*this, Record);
4860 CheckAbstractClassUsage(Info, Record);
4861 }
Douglas Gregor325e5932010-04-15 00:00:53 +00004862
4863 // If this is not an aggregate type and has no user-declared constructor,
4864 // complain about any non-static data members of reference or const scalar
4865 // type, since they will never get initializers.
4866 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00004867 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
4868 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00004869 bool Complained = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07004870 for (const auto *F : Record->fields()) {
Douglas Gregord61db332011-10-10 17:22:13 +00004871 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00004872 continue;
4873
Douglas Gregor325e5932010-04-15 00:00:53 +00004874 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00004875 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00004876 if (!Complained) {
4877 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
4878 << Record->getTagKind() << Record;
4879 Complained = true;
4880 }
4881
4882 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
4883 << F->getType()->isReferenceType()
4884 << F->getDeclName();
4885 }
4886 }
4887 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004888
Douglas Gregora6e937c2010-10-15 13:21:21 +00004889 if (Record->getIdentifier()) {
4890 // C++ [class.mem]p13:
4891 // If T is the name of a class, then each of the following shall have a
4892 // name different from T:
4893 // - every member of every anonymous union that is a member of class T.
4894 //
4895 // C++ [class.mem]p14:
4896 // In addition, if class T has a user-declared constructor (12.1), every
4897 // non-static data member of class T shall have a name different from T.
David Blaikie3bc93e32012-12-19 00:45:41 +00004898 DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
4899 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
4900 ++I) {
4901 NamedDecl *D = *I;
Francois Pichet87c2e122010-11-21 06:08:52 +00004902 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
4903 isa<IndirectFieldDecl>(D)) {
4904 Diag(D->getLocation(), diag::err_member_name_of_class)
4905 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00004906 break;
4907 }
Francois Pichet87c2e122010-11-21 06:08:52 +00004908 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00004909 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004910
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00004911 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00004912 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004913 CXXDestructorDecl *dtor = Record->getDestructor();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004914 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) &&
4915 !Record->hasAttr<FinalAttr>())
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004916 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
4917 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
4918 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004919
David Majnemer7121bdb2013-10-18 00:33:31 +00004920 if (Record->isAbstract()) {
4921 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) {
4922 Diag(Record->getLocation(), diag::warn_abstract_final_class)
4923 << FA->isSpelledAsSealed();
4924 DiagnoseAbstractType(Record);
4925 }
David Blaikieb6b5b972012-09-21 03:21:07 +00004926 }
4927
Stephen Hines176edba2014-12-01 14:53:08 -08004928 bool HasMethodWithOverrideControl = false,
4929 HasOverridingMethodWithoutOverrideControl = false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004930 if (!Record->isDependentType()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004931 for (auto *M : Record->methods()) {
Richard Smith1d28caf2012-12-11 01:14:52 +00004932 // See if a method overloads virtual methods in a base
4933 // class without overriding any.
David Blaikie262bc182012-04-30 02:36:29 +00004934 if (!M->isStatic())
Stephen Hines651f13c2014-04-23 16:59:28 -07004935 DiagnoseHiddenVirtualMethods(M);
Stephen Hines176edba2014-12-01 14:53:08 -08004936 if (M->hasAttr<OverrideAttr>())
4937 HasMethodWithOverrideControl = true;
4938 else if (M->size_overridden_methods() > 0)
4939 HasOverridingMethodWithoutOverrideControl = true;
Richard Smith1d28caf2012-12-11 01:14:52 +00004940 // Check whether the explicitly-defaulted special members are valid.
4941 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
Stephen Hines651f13c2014-04-23 16:59:28 -07004942 CheckExplicitlyDefaultedSpecialMember(M);
Richard Smith1d28caf2012-12-11 01:14:52 +00004943
4944 // For an explicitly defaulted or deleted special member, we defer
4945 // determining triviality until the class is complete. That time is now!
4946 if (!M->isImplicit() && !M->isUserProvided()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004947 CXXSpecialMember CSM = getSpecialMember(M);
Richard Smith1d28caf2012-12-11 01:14:52 +00004948 if (CSM != CXXInvalid) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004949 M->setTrivial(SpecialMemberIsTrivial(M, CSM));
Richard Smith1d28caf2012-12-11 01:14:52 +00004950
4951 // Inform the class that we've finished declaring this member.
Stephen Hines651f13c2014-04-23 16:59:28 -07004952 Record->finishedDefaultedOrDeletedMember(M);
Richard Smith1d28caf2012-12-11 01:14:52 +00004953 }
4954 }
4955 }
4956 }
4957
Stephen Hines176edba2014-12-01 14:53:08 -08004958 if (HasMethodWithOverrideControl &&
4959 HasOverridingMethodWithoutOverrideControl) {
4960 // At least one method has the 'override' control declared.
4961 // Diagnose all other overridden methods which do not have 'override' specified on them.
4962 for (auto *M : Record->methods())
4963 DiagnoseAbsenceOfOverrideControl(M);
4964 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00004965
Stephen Hines651f13c2014-04-23 16:59:28 -07004966 // ms_struct is a request to use the same ABI rules as MSVC. Check
4967 // whether this class uses any C++ features that are implemented
4968 // completely differently in MSVC, and if so, emit a diagnostic.
4969 // That diagnostic defaults to an error, but we allow projects to
4970 // map it down to a warning (or ignore it). It's a fairly common
4971 // practice among users of the ms_struct pragma to mass-annotate
4972 // headers, sweeping up a bunch of types that the project doesn't
4973 // really rely on MSVC-compatible layout for. We must therefore
4974 // support "ms_struct except for C++ stuff" as a secondary ABI.
4975 if (Record->isMsStruct(Context) &&
4976 (Record->isPolymorphic() || Record->getNumBases())) {
4977 Diag(Record->getLocation(), diag::warn_cxx_ms_struct);
Warren Huntb2969b12013-10-11 20:19:00 +00004978 }
4979
Richard Smith07b0fdc2013-03-18 21:12:30 +00004980 // Declare inheriting constructors. We do this eagerly here because:
4981 // - The standard requires an eager diagnostic for conflicting inheriting
Sebastian Redlf677ea32011-02-05 19:23:19 +00004982 // constructors from different classes.
4983 // - The lazy declaration of the other implicit constructors is so as to not
4984 // waste space and performance on classes that are not meant to be
4985 // instantiated (e.g. meta-functions). This doesn't apply to classes that
Richard Smith07b0fdc2013-03-18 21:12:30 +00004986 // have inheriting constructors.
4987 DeclareInheritingConstructors(Record);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07004988
4989 checkDLLAttribute(*this, Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004990}
4991
Stephen Hines651f13c2014-04-23 16:59:28 -07004992/// Look up the special member function that would be called by a special
4993/// member function for a subobject of class type.
4994///
4995/// \param Class The class type of the subobject.
4996/// \param CSM The kind of special member function.
4997/// \param FieldQuals If the subobject is a field, its cv-qualifiers.
4998/// \param ConstRHS True if this is a copy operation with a const object
4999/// on its RHS, that is, if the argument to the outer special member
5000/// function is 'const' and this is not a field marked 'mutable'.
5001static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember(
5002 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM,
5003 unsigned FieldQuals, bool ConstRHS) {
5004 unsigned LHSQuals = 0;
5005 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment)
5006 LHSQuals = FieldQuals;
5007
5008 unsigned RHSQuals = FieldQuals;
5009 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
5010 RHSQuals = 0;
5011 else if (ConstRHS)
5012 RHSQuals |= Qualifiers::Const;
5013
5014 return S.LookupSpecialMember(Class, CSM,
5015 RHSQuals & Qualifiers::Const,
5016 RHSQuals & Qualifiers::Volatile,
5017 false,
5018 LHSQuals & Qualifiers::Const,
5019 LHSQuals & Qualifiers::Volatile);
5020}
5021
Richard Smith7756afa2012-06-10 05:43:50 +00005022/// Is the special member function which would be selected to perform the
5023/// specified operation on the specified class type a constexpr constructor?
5024static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
5025 Sema::CXXSpecialMember CSM,
Stephen Hines651f13c2014-04-23 16:59:28 -07005026 unsigned Quals, bool ConstRHS) {
Richard Smith7756afa2012-06-10 05:43:50 +00005027 Sema::SpecialMemberOverloadResult *SMOR =
Stephen Hines651f13c2014-04-23 16:59:28 -07005028 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS);
Richard Smith7756afa2012-06-10 05:43:50 +00005029 if (!SMOR || !SMOR->getMethod())
5030 // A constructor we wouldn't select can't be "involved in initializing"
5031 // anything.
5032 return true;
5033 return SMOR->getMethod()->isConstexpr();
5034}
5035
5036/// Determine whether the specified special member function would be constexpr
5037/// if it were implicitly defined.
5038static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
5039 Sema::CXXSpecialMember CSM,
5040 bool ConstArg) {
Richard Smith80ad52f2013-01-02 11:42:31 +00005041 if (!S.getLangOpts().CPlusPlus11)
Richard Smith7756afa2012-06-10 05:43:50 +00005042 return false;
5043
5044 // C++11 [dcl.constexpr]p4:
5045 // In the definition of a constexpr constructor [...]
Richard Smitha8942d72013-05-07 03:19:20 +00005046 bool Ctor = true;
Richard Smith7756afa2012-06-10 05:43:50 +00005047 switch (CSM) {
5048 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00005049 // Since default constructor lookup is essentially trivial (and cannot
5050 // involve, for instance, template instantiation), we compute whether a
5051 // defaulted default constructor is constexpr directly within CXXRecordDecl.
5052 //
5053 // This is important for performance; we need to know whether the default
5054 // constructor is constexpr to determine whether the type is a literal type.
5055 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
5056
Richard Smith7756afa2012-06-10 05:43:50 +00005057 case Sema::CXXCopyConstructor:
5058 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00005059 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00005060 break;
5061
5062 case Sema::CXXCopyAssignment:
5063 case Sema::CXXMoveAssignment:
Stephen Hines176edba2014-12-01 14:53:08 -08005064 if (!S.getLangOpts().CPlusPlus14)
Richard Smitha8942d72013-05-07 03:19:20 +00005065 return false;
5066 // In C++1y, we need to perform overload resolution.
5067 Ctor = false;
5068 break;
5069
Richard Smith7756afa2012-06-10 05:43:50 +00005070 case Sema::CXXDestructor:
5071 case Sema::CXXInvalid:
5072 return false;
5073 }
5074
5075 // -- if the class is a non-empty union, or for each non-empty anonymous
5076 // union member of a non-union class, exactly one non-static data member
5077 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00005078 //
5079 // If we squint, this is guaranteed, since exactly one non-static data member
5080 // will be initialized (if the constructor isn't deleted), we just don't know
5081 // which one.
Richard Smitha8942d72013-05-07 03:19:20 +00005082 if (Ctor && ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00005083 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00005084
5085 // -- the class shall not have any virtual base classes;
Richard Smitha8942d72013-05-07 03:19:20 +00005086 if (Ctor && ClassDecl->getNumVBases())
5087 return false;
5088
5089 // C++1y [class.copy]p26:
5090 // -- [the class] is a literal type, and
5091 if (!Ctor && !ClassDecl->isLiteral())
Richard Smith7756afa2012-06-10 05:43:50 +00005092 return false;
5093
5094 // -- every constructor involved in initializing [...] base class
5095 // sub-objects shall be a constexpr constructor;
Richard Smitha8942d72013-05-07 03:19:20 +00005096 // -- the assignment operator selected to copy/move each direct base
5097 // class is a constexpr function, and
Stephen Hines651f13c2014-04-23 16:59:28 -07005098 for (const auto &B : ClassDecl->bases()) {
5099 const RecordType *BaseType = B.getType()->getAs<RecordType>();
Richard Smith7756afa2012-06-10 05:43:50 +00005100 if (!BaseType) continue;
5101
5102 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Stephen Hines651f13c2014-04-23 16:59:28 -07005103 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg))
Richard Smith7756afa2012-06-10 05:43:50 +00005104 return false;
5105 }
5106
5107 // -- every constructor involved in initializing non-static data members
5108 // [...] shall be a constexpr constructor;
5109 // -- every non-static data member and base class sub-object shall be
5110 // initialized
Stephen Hines651f13c2014-04-23 16:59:28 -07005111 // -- for each non-static data member of X that is of class type (or array
Richard Smitha8942d72013-05-07 03:19:20 +00005112 // thereof), the assignment operator selected to copy/move that member is
5113 // a constexpr function
Stephen Hines651f13c2014-04-23 16:59:28 -07005114 for (const auto *F : ClassDecl->fields()) {
Richard Smith7756afa2012-06-10 05:43:50 +00005115 if (F->isInvalidDecl())
5116 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07005117 QualType BaseType = S.Context.getBaseElementType(F->getType());
5118 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00005119 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Stephen Hines651f13c2014-04-23 16:59:28 -07005120 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM,
5121 BaseType.getCVRQualifiers(),
5122 ConstArg && !F->isMutable()))
Richard Smith7756afa2012-06-10 05:43:50 +00005123 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00005124 }
5125 }
5126
5127 // All OK, it's constexpr!
5128 return true;
5129}
5130
Richard Smithb9d0b762012-07-27 04:22:15 +00005131static Sema::ImplicitExceptionSpecification
5132computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
5133 switch (S.getSpecialMember(MD)) {
5134 case Sema::CXXDefaultConstructor:
5135 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
5136 case Sema::CXXCopyConstructor:
5137 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
5138 case Sema::CXXCopyAssignment:
5139 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
5140 case Sema::CXXMoveConstructor:
5141 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
5142 case Sema::CXXMoveAssignment:
5143 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
5144 case Sema::CXXDestructor:
5145 return S.ComputeDefaultedDtorExceptionSpec(MD);
5146 case Sema::CXXInvalid:
5147 break;
5148 }
Richard Smith07b0fdc2013-03-18 21:12:30 +00005149 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() &&
5150 "only special members have implicit exception specs");
5151 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD));
Richard Smithb9d0b762012-07-27 04:22:15 +00005152}
5153
Reid Kleckneref072032013-08-27 23:08:25 +00005154static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S,
5155 CXXMethodDecl *MD) {
5156 FunctionProtoType::ExtProtoInfo EPI;
5157
5158 // Build an exception specification pointing back at this member.
Stephen Hines176edba2014-12-01 14:53:08 -08005159 EPI.ExceptionSpec.Type = EST_Unevaluated;
5160 EPI.ExceptionSpec.SourceDecl = MD;
Reid Kleckneref072032013-08-27 23:08:25 +00005161
5162 // Set the calling convention to the default for C++ instance methods.
5163 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(
5164 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false,
5165 /*IsCXXMethod=*/true));
5166 return EPI;
5167}
5168
Richard Smithb9d0b762012-07-27 04:22:15 +00005169void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
5170 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
5171 if (FPT->getExceptionSpecType() != EST_Unevaluated)
5172 return;
5173
Richard Smithdd25e802012-07-30 23:48:14 +00005174 // Evaluate the exception specification.
Stephen Hines176edba2014-12-01 14:53:08 -08005175 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec();
Stephen Hines651f13c2014-04-23 16:59:28 -07005176
Richard Smithdd25e802012-07-30 23:48:14 +00005177 // Update the type of the special member to use it.
Stephen Hines176edba2014-12-01 14:53:08 -08005178 UpdateExceptionSpec(MD, ESI);
Richard Smithdd25e802012-07-30 23:48:14 +00005179
5180 // A user-provided destructor can be defined outside the class. When that
5181 // happens, be sure to update the exception specification on both
5182 // declarations.
5183 const FunctionProtoType *CanonicalFPT =
5184 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
5185 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
Stephen Hines176edba2014-12-01 14:53:08 -08005186 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI);
Richard Smithb9d0b762012-07-27 04:22:15 +00005187}
5188
Richard Smith3003e1d2012-05-15 04:39:51 +00005189void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
5190 CXXRecordDecl *RD = MD->getParent();
5191 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00005192
Richard Smith3003e1d2012-05-15 04:39:51 +00005193 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
5194 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00005195
5196 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00005197 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00005198 bool First = MD == MD->getCanonicalDecl();
5199
5200 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00005201
5202 // C++11 [dcl.fct.def.default]p1:
5203 // A function that is explicitly defaulted shall
5204 // -- be a special member function (checked elsewhere),
5205 // -- have the same type (except for ref-qualifiers, and except that a
5206 // copy operation can take a non-const reference) as an implicit
5207 // declaration, and
5208 // -- not have default arguments.
5209 unsigned ExpectedParams = 1;
5210 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
5211 ExpectedParams = 0;
5212 if (MD->getNumParams() != ExpectedParams) {
5213 // This also checks for default arguments: a copy or move constructor with a
5214 // default argument is classified as a default constructor, and assignment
5215 // operations and destructors can't have default arguments.
5216 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
5217 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00005218 HadError = true;
Richard Smith50464392012-12-07 02:10:28 +00005219 } else if (MD->isVariadic()) {
5220 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
5221 << CSM << MD->getSourceRange();
5222 HadError = true;
Sean Hunt2b188082011-05-14 05:23:28 +00005223 }
5224
Richard Smith3003e1d2012-05-15 04:39:51 +00005225 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00005226
Richard Smith7756afa2012-06-10 05:43:50 +00005227 bool CanHaveConstParam = false;
Richard Smithac713512012-12-08 02:53:02 +00005228 if (CSM == CXXCopyConstructor)
Richard Smithacf796b2012-11-28 06:23:12 +00005229 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smithac713512012-12-08 02:53:02 +00005230 else if (CSM == CXXCopyAssignment)
Richard Smithacf796b2012-11-28 06:23:12 +00005231 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Sean Hunt2b188082011-05-14 05:23:28 +00005232
Richard Smith3003e1d2012-05-15 04:39:51 +00005233 QualType ReturnType = Context.VoidTy;
5234 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
5235 // Check for return type matching.
Stephen Hines651f13c2014-04-23 16:59:28 -07005236 ReturnType = Type->getReturnType();
Richard Smith3003e1d2012-05-15 04:39:51 +00005237 QualType ExpectedReturnType =
5238 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
5239 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
5240 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
5241 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
5242 HadError = true;
5243 }
5244
5245 // A defaulted special member cannot have cv-qualifiers.
5246 if (Type->getTypeQuals()) {
5247 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
Stephen Hines176edba2014-12-01 14:53:08 -08005248 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14;
Richard Smith3003e1d2012-05-15 04:39:51 +00005249 HadError = true;
5250 }
5251 }
5252
5253 // Check for parameter type matching.
Stephen Hines651f13c2014-04-23 16:59:28 -07005254 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00005255 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00005256 if (ExpectedParams && ArgType->isReferenceType()) {
5257 // Argument must be reference to possibly-const T.
5258 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00005259 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00005260
5261 if (ReferentType.isVolatileQualified()) {
5262 Diag(MD->getLocation(),
5263 diag::err_defaulted_special_member_volatile_param) << CSM;
5264 HadError = true;
5265 }
5266
Richard Smith7756afa2012-06-10 05:43:50 +00005267 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00005268 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
5269 Diag(MD->getLocation(),
5270 diag::err_defaulted_special_member_copy_const_param)
5271 << (CSM == CXXCopyAssignment);
5272 // FIXME: Explain why this special member can't be const.
5273 } else {
5274 Diag(MD->getLocation(),
5275 diag::err_defaulted_special_member_move_const_param)
5276 << (CSM == CXXMoveAssignment);
5277 }
5278 HadError = true;
5279 }
Richard Smith3003e1d2012-05-15 04:39:51 +00005280 } else if (ExpectedParams) {
5281 // A copy assignment operator can take its argument by value, but a
5282 // defaulted one cannot.
5283 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00005284 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00005285 HadError = true;
5286 }
Sean Huntbe631222011-05-17 20:44:43 +00005287
Richard Smith61802452011-12-22 02:22:31 +00005288 // C++11 [dcl.fct.def.default]p2:
5289 // An explicitly-defaulted function may be declared constexpr only if it
5290 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00005291 // Do not apply this rule to members of class templates, since core issue 1358
5292 // makes such functions always instantiate to constexpr functions. For
Richard Smitha8942d72013-05-07 03:19:20 +00005293 // functions which cannot be constexpr (for non-constructors in C++11 and for
5294 // destructors in C++1y), this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00005295 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
5296 HasConstParam);
Stephen Hines176edba2014-12-01 14:53:08 -08005297 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD)
Richard Smitha8942d72013-05-07 03:19:20 +00005298 : isa<CXXConstructorDecl>(MD)) &&
5299 MD->isConstexpr() && !Constexpr &&
Richard Smith3003e1d2012-05-15 04:39:51 +00005300 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
5301 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smitha8942d72013-05-07 03:19:20 +00005302 // FIXME: Explain why the special member can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00005303 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00005304 }
Richard Smith1d28caf2012-12-11 01:14:52 +00005305
Richard Smith61802452011-12-22 02:22:31 +00005306 // and may have an explicit exception-specification only if it is compatible
5307 // with the exception-specification on the implicit declaration.
Richard Smith1d28caf2012-12-11 01:14:52 +00005308 if (Type->hasExceptionSpec()) {
5309 // Delay the check if this is the first declaration of the special member,
5310 // since we may not have parsed some necessary in-class initializers yet.
Richard Smith12fef492013-03-27 00:22:47 +00005311 if (First) {
5312 // If the exception specification needs to be instantiated, do so now,
5313 // before we clobber it with an EST_Unevaluated specification below.
5314 if (Type->getExceptionSpecType() == EST_Uninstantiated) {
5315 InstantiateExceptionSpec(MD->getLocStart(), MD);
5316 Type = MD->getType()->getAs<FunctionProtoType>();
5317 }
Richard Smith1d28caf2012-12-11 01:14:52 +00005318 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
Richard Smith12fef492013-03-27 00:22:47 +00005319 } else
Richard Smith1d28caf2012-12-11 01:14:52 +00005320 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
5321 }
Richard Smith61802452011-12-22 02:22:31 +00005322
5323 // If a function is explicitly defaulted on its first declaration,
5324 if (First) {
5325 // -- it is implicitly considered to be constexpr if the implicit
5326 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00005327 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00005328
Richard Smith3003e1d2012-05-15 04:39:51 +00005329 // -- it is implicitly considered to have the same exception-specification
5330 // as if it had been implicitly declared,
Richard Smith1d28caf2012-12-11 01:14:52 +00005331 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
Stephen Hines176edba2014-12-01 14:53:08 -08005332 EPI.ExceptionSpec.Type = EST_Unevaluated;
5333 EPI.ExceptionSpec.SourceDecl = MD;
Jordan Rosebea522f2013-03-08 21:51:21 +00005334 MD->setType(Context.getFunctionType(ReturnType,
Stephen Hines176edba2014-12-01 14:53:08 -08005335 llvm::makeArrayRef(&ArgType,
Jordan Rosebea522f2013-03-08 21:51:21 +00005336 ExpectedParams),
5337 EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00005338 }
5339
Richard Smith3003e1d2012-05-15 04:39:51 +00005340 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00005341 if (First) {
Richard Smith0ab5b4c2013-04-02 19:38:47 +00005342 SetDeclDeleted(MD, MD->getLocation());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00005343 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00005344 // C++11 [dcl.fct.def.default]p4:
5345 // [For a] user-provided explicitly-defaulted function [...] if such a
5346 // function is implicitly defined as deleted, the program is ill-formed.
5347 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
Stephen Hines651f13c2014-04-23 16:59:28 -07005348 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true);
Richard Smith3003e1d2012-05-15 04:39:51 +00005349 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00005350 }
5351 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00005352
Richard Smith3003e1d2012-05-15 04:39:51 +00005353 if (HadError)
5354 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00005355}
5356
Richard Smith1d28caf2012-12-11 01:14:52 +00005357/// Check whether the exception specification provided for an
5358/// explicitly-defaulted special member matches the exception specification
5359/// that would have been generated for an implicit special member, per
5360/// C++11 [dcl.fct.def.default]p2.
5361void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
5362 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
Stephen Hines176edba2014-12-01 14:53:08 -08005363 // If the exception specification was explicitly specified but hadn't been
5364 // parsed when the method was defaulted, grab it now.
5365 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed)
5366 SpecifiedType =
5367 MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
5368
Richard Smith1d28caf2012-12-11 01:14:52 +00005369 // Compute the implicit exception specification.
Reid Kleckneref072032013-08-27 23:08:25 +00005370 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false,
5371 /*IsCXXMethod=*/true);
5372 FunctionProtoType::ExtProtoInfo EPI(CC);
Stephen Hines176edba2014-12-01 14:53:08 -08005373 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD)
5374 .getExceptionSpec();
Richard Smith1d28caf2012-12-11 01:14:52 +00005375 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
Dmitri Gribenko55431692013-05-05 00:41:58 +00005376 Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smith1d28caf2012-12-11 01:14:52 +00005377
5378 // Ensure that it matches.
5379 CheckEquivalentExceptionSpec(
5380 PDiag(diag::err_incorrect_defaulted_exception_spec)
5381 << getSpecialMember(MD), PDiag(),
5382 ImplicitType, SourceLocation(),
5383 SpecifiedType, MD->getLocation());
5384}
5385
Alp Toker08235662013-10-18 05:54:19 +00005386void Sema::CheckDelayedMemberExceptionSpecs() {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005387 decltype(DelayedExceptionSpecChecks) Checks;
5388 decltype(DelayedDefaultedMemberExceptionSpecs) Specs;
Richard Smith1d28caf2012-12-11 01:14:52 +00005389
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005390 std::swap(Checks, DelayedExceptionSpecChecks);
Alp Toker08235662013-10-18 05:54:19 +00005391 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs);
5392
5393 // Perform any deferred checking of exception specifications for virtual
5394 // destructors.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005395 for (auto &Check : Checks)
5396 CheckOverridingFunctionExceptionSpec(Check.first, Check.second);
Alp Toker08235662013-10-18 05:54:19 +00005397
5398 // Check that any explicitly-defaulted methods have exception specifications
5399 // compatible with their implicit exception specifications.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005400 for (auto &Spec : Specs)
5401 CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second);
Richard Smith1d28caf2012-12-11 01:14:52 +00005402}
5403
Richard Smith7d5088a2012-02-18 02:02:13 +00005404namespace {
5405struct SpecialMemberDeletionInfo {
5406 Sema &S;
5407 CXXMethodDecl *MD;
5408 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005409 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00005410
5411 // Properties of the special member, computed for convenience.
Stephen Hines651f13c2014-04-23 16:59:28 -07005412 bool IsConstructor, IsAssignment, IsMove, ConstArg;
Richard Smith7d5088a2012-02-18 02:02:13 +00005413 SourceLocation Loc;
5414
5415 bool AllFieldsAreConst;
5416
5417 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00005418 Sema::CXXSpecialMember CSM, bool Diagnose)
5419 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00005420 IsConstructor(false), IsAssignment(false), IsMove(false),
Stephen Hines651f13c2014-04-23 16:59:28 -07005421 ConstArg(false), Loc(MD->getLocation()),
Richard Smith7d5088a2012-02-18 02:02:13 +00005422 AllFieldsAreConst(true) {
5423 switch (CSM) {
5424 case Sema::CXXDefaultConstructor:
5425 case Sema::CXXCopyConstructor:
5426 IsConstructor = true;
5427 break;
5428 case Sema::CXXMoveConstructor:
5429 IsConstructor = true;
5430 IsMove = true;
5431 break;
5432 case Sema::CXXCopyAssignment:
5433 IsAssignment = true;
5434 break;
5435 case Sema::CXXMoveAssignment:
5436 IsAssignment = true;
5437 IsMove = true;
5438 break;
5439 case Sema::CXXDestructor:
5440 break;
5441 case Sema::CXXInvalid:
5442 llvm_unreachable("invalid special member kind");
5443 }
5444
5445 if (MD->getNumParams()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005446 if (const ReferenceType *RT =
5447 MD->getParamDecl(0)->getType()->getAs<ReferenceType>())
5448 ConstArg = RT->getPointeeType().isConstQualified();
Richard Smith7d5088a2012-02-18 02:02:13 +00005449 }
5450 }
5451
5452 bool inUnion() const { return MD->getParent()->isUnion(); }
5453
5454 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00005455 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
Stephen Hines651f13c2014-04-23 16:59:28 -07005456 unsigned Quals, bool IsMutable) {
5457 return lookupCallFromSpecialMember(S, Class, CSM, Quals,
5458 ConstArg && !IsMutable);
Richard Smith7d5088a2012-02-18 02:02:13 +00005459 }
5460
Richard Smith6c4c36c2012-03-30 20:53:28 +00005461 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00005462
Richard Smith6c4c36c2012-03-30 20:53:28 +00005463 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00005464 bool shouldDeleteForField(FieldDecl *FD);
5465 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00005466
Richard Smith517bb842012-07-18 03:51:16 +00005467 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
5468 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00005469 bool shouldDeleteForSubobjectCall(Subobject Subobj,
5470 Sema::SpecialMemberOverloadResult *SMOR,
5471 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00005472
5473 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00005474};
5475}
5476
John McCall12d8d802012-04-09 20:53:23 +00005477/// Is the given special member inaccessible when used on the given
5478/// sub-object.
5479bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
5480 CXXMethodDecl *target) {
5481 /// If we're operating on a base class, the object type is the
5482 /// type of this special member.
5483 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00005484 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00005485 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
5486 objectTy = S.Context.getTypeDeclType(MD->getParent());
5487 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
5488
5489 // If we're operating on a field, the object type is the type of the field.
5490 } else {
5491 objectTy = S.Context.getTypeDeclType(target->getParent());
5492 }
5493
5494 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
5495}
5496
Richard Smith6c4c36c2012-03-30 20:53:28 +00005497/// Check whether we should delete a special member due to the implicit
5498/// definition containing a call to a special member of a subobject.
5499bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
5500 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
5501 bool IsDtorCallInCtor) {
5502 CXXMethodDecl *Decl = SMOR->getMethod();
5503 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
5504
5505 int DiagKind = -1;
5506
5507 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
5508 DiagKind = !Decl ? 0 : 1;
5509 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
5510 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00005511 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00005512 DiagKind = 3;
5513 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
5514 !Decl->isTrivial()) {
5515 // A member of a union must have a trivial corresponding special member.
5516 // As a weird special case, a destructor call from a union's constructor
5517 // must be accessible and non-deleted, but need not be trivial. Such a
5518 // destructor is never actually called, but is semantically checked as
5519 // if it were.
5520 DiagKind = 4;
5521 }
5522
5523 if (DiagKind == -1)
5524 return false;
5525
5526 if (Diagnose) {
5527 if (Field) {
5528 S.Diag(Field->getLocation(),
5529 diag::note_deleted_special_member_class_subobject)
5530 << CSM << MD->getParent() << /*IsField*/true
5531 << Field << DiagKind << IsDtorCallInCtor;
5532 } else {
5533 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
5534 S.Diag(Base->getLocStart(),
5535 diag::note_deleted_special_member_class_subobject)
5536 << CSM << MD->getParent() << /*IsField*/false
5537 << Base->getType() << DiagKind << IsDtorCallInCtor;
5538 }
5539
5540 if (DiagKind == 1)
5541 S.NoteDeletedFunction(Decl);
5542 // FIXME: Explain inaccessibility if DiagKind == 3.
5543 }
5544
5545 return true;
5546}
5547
Richard Smith9a561d52012-02-26 09:11:52 +00005548/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00005549/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00005550bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00005551 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005552 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Stephen Hines651f13c2014-04-23 16:59:28 -07005553 bool IsMutable = Field && Field->isMutable();
Richard Smith7d5088a2012-02-18 02:02:13 +00005554
5555 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00005556 // -- any direct or virtual base class, or non-static data member with no
5557 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00005558 // either M has no default constructor or overload resolution as applied
5559 // to M's default constructor results in an ambiguity or in a function
5560 // that is deleted or inaccessible
5561 // C++11 [class.copy]p11, C++11 [class.copy]p23:
5562 // -- a direct or virtual base class B that cannot be copied/moved because
5563 // overload resolution, as applied to B's corresponding special member,
5564 // results in an ambiguity or a function that is deleted or inaccessible
5565 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00005566 // C++11 [class.dtor]p5:
5567 // -- any direct or virtual base class [...] has a type with a destructor
5568 // that is deleted or inaccessible
5569 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00005570 Field && Field->hasInClassInitializer()) &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005571 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable),
5572 false))
Richard Smith1c931be2012-04-02 18:40:40 +00005573 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00005574
Richard Smith6c4c36c2012-03-30 20:53:28 +00005575 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
5576 // -- any direct or virtual base class or non-static data member has a
5577 // type with a destructor that is deleted or inaccessible
5578 if (IsConstructor) {
5579 Sema::SpecialMemberOverloadResult *SMOR =
5580 S.LookupSpecialMember(Class, Sema::CXXDestructor,
5581 false, false, false, false, false);
5582 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
5583 return true;
5584 }
5585
Richard Smith9a561d52012-02-26 09:11:52 +00005586 return false;
5587}
5588
5589/// Check whether we should delete a special member function due to the class
5590/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005591bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00005592 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00005593 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00005594}
5595
5596/// Check whether we should delete a special member function due to the class
5597/// having a particular non-static data member.
5598bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
5599 QualType FieldType = S.Context.getBaseElementType(FD->getType());
5600 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
5601
5602 if (CSM == Sema::CXXDefaultConstructor) {
5603 // For a default constructor, all references must be initialized in-class
5604 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005605 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
5606 if (Diagnose)
5607 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
5608 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00005609 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005610 }
Richard Smith79363f52012-02-27 06:07:25 +00005611 // C++11 [class.ctor]p5: any non-variant non-static data member of
5612 // const-qualified type (or array thereof) with no
5613 // brace-or-equal-initializer does not have a user-provided default
5614 // constructor.
5615 if (!inUnion() && FieldType.isConstQualified() &&
5616 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00005617 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
5618 if (Diagnose)
5619 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00005620 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00005621 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005622 }
5623
5624 if (inUnion() && !FieldType.isConstQualified())
5625 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00005626 } else if (CSM == Sema::CXXCopyConstructor) {
5627 // For a copy constructor, data members must not be of rvalue reference
5628 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005629 if (FieldType->isRValueReferenceType()) {
5630 if (Diagnose)
5631 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
5632 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00005633 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005634 }
Richard Smith7d5088a2012-02-18 02:02:13 +00005635 } else if (IsAssignment) {
5636 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005637 if (FieldType->isReferenceType()) {
5638 if (Diagnose)
5639 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
5640 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00005641 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005642 }
5643 if (!FieldRecord && FieldType.isConstQualified()) {
5644 // C++11 [class.copy]p23:
5645 // -- a non-static data member of const non-class type (or array thereof)
5646 if (Diagnose)
5647 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00005648 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005649 return true;
5650 }
Richard Smith7d5088a2012-02-18 02:02:13 +00005651 }
5652
5653 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00005654 // Some additional restrictions exist on the variant members.
5655 if (!inUnion() && FieldRecord->isUnion() &&
5656 FieldRecord->isAnonymousStructOrUnion()) {
5657 bool AllVariantFieldsAreConst = true;
5658
Richard Smithdf8dc862012-03-29 19:00:10 +00005659 // FIXME: Handle anonymous unions declared within anonymous unions.
Stephen Hines651f13c2014-04-23 16:59:28 -07005660 for (auto *UI : FieldRecord->fields()) {
Richard Smith7d5088a2012-02-18 02:02:13 +00005661 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00005662
5663 if (!UnionFieldType.isConstQualified())
5664 AllVariantFieldsAreConst = false;
5665
Richard Smith9a561d52012-02-26 09:11:52 +00005666 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
5667 if (UnionFieldRecord &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005668 shouldDeleteForClassSubobject(UnionFieldRecord, UI,
Richard Smith517bb842012-07-18 03:51:16 +00005669 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00005670 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00005671 }
5672
5673 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00005674 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005675 !FieldRecord->field_empty()) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005676 if (Diagnose)
5677 S.Diag(FieldRecord->getLocation(),
5678 diag::note_deleted_default_ctor_all_const)
5679 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00005680 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005681 }
Richard Smith7d5088a2012-02-18 02:02:13 +00005682
Richard Smithdf8dc862012-03-29 19:00:10 +00005683 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00005684 // This is technically non-conformant, but sanity demands it.
5685 return false;
5686 }
5687
Richard Smith517bb842012-07-18 03:51:16 +00005688 if (shouldDeleteForClassSubobject(FieldRecord, FD,
5689 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00005690 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00005691 }
5692
5693 return false;
5694}
5695
5696/// C++11 [class.ctor] p5:
5697/// A defaulted default constructor for a class X is defined as deleted if
5698/// X is a union and all of its variant members are of const-qualified type.
5699bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00005700 // This is a silly definition, because it gives an empty union a deleted
5701 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005702 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005703 !MD->getParent()->field_empty()) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005704 if (Diagnose)
5705 S.Diag(MD->getParent()->getLocation(),
5706 diag::note_deleted_default_ctor_all_const)
5707 << MD->getParent() << /*not anonymous union*/0;
5708 return true;
5709 }
5710 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00005711}
5712
5713/// Determine whether a defaulted special member function should be defined as
5714/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
5715/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00005716bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
5717 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00005718 if (MD->isInvalidDecl())
5719 return false;
Sean Hunte16da072011-10-10 06:18:57 +00005720 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00005721 assert(!RD->isDependentType() && "do deletion after instantiation");
Richard Smith80ad52f2013-01-02 11:42:31 +00005722 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00005723 return false;
5724
Richard Smith7d5088a2012-02-18 02:02:13 +00005725 // C++11 [expr.lambda.prim]p19:
5726 // The closure type associated with a lambda-expression has a
5727 // deleted (8.4.3) default constructor and a deleted copy
5728 // assignment operator.
5729 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00005730 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
5731 if (Diagnose)
5732 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00005733 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005734 }
5735
Richard Smith5bdaac52012-04-02 20:59:25 +00005736 // For an anonymous struct or union, the copy and assignment special members
5737 // will never be used, so skip the check. For an anonymous union declared at
5738 // namespace scope, the constructor and destructor are used.
5739 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
5740 RD->isAnonymousStructOrUnion())
5741 return false;
5742
Richard Smith6c4c36c2012-03-30 20:53:28 +00005743 // C++11 [class.copy]p7, p18:
5744 // If the class definition declares a move constructor or move assignment
5745 // operator, an implicitly declared copy constructor or copy assignment
5746 // operator is defined as deleted.
5747 if (MD->isImplicit() &&
5748 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005749 CXXMethodDecl *UserDeclaredMove = nullptr;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005750
5751 // In Microsoft mode, a user-declared move only causes the deletion of the
5752 // corresponding copy operation, not both copy operations.
5753 if (RD->hasUserDeclaredMoveConstructor() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005754 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005755 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00005756
5757 // Find any user-declared move constructor.
Stephen Hines651f13c2014-04-23 16:59:28 -07005758 for (auto *I : RD->ctors()) {
Richard Smith55798652012-12-08 04:10:18 +00005759 if (I->isMoveConstructor()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005760 UserDeclaredMove = I;
Richard Smith55798652012-12-08 04:10:18 +00005761 break;
5762 }
5763 }
Richard Smith1c931be2012-04-02 18:40:40 +00005764 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00005765 } else if (RD->hasUserDeclaredMoveAssignment() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005766 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00005767 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00005768
5769 // Find any user-declared move assignment operator.
Stephen Hines651f13c2014-04-23 16:59:28 -07005770 for (auto *I : RD->methods()) {
Richard Smith55798652012-12-08 04:10:18 +00005771 if (I->isMoveAssignmentOperator()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005772 UserDeclaredMove = I;
Richard Smith55798652012-12-08 04:10:18 +00005773 break;
5774 }
5775 }
Richard Smith1c931be2012-04-02 18:40:40 +00005776 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00005777 }
5778
5779 if (UserDeclaredMove) {
5780 Diag(UserDeclaredMove->getLocation(),
5781 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00005782 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00005783 << UserDeclaredMove->isMoveAssignmentOperator();
5784 return true;
5785 }
5786 }
Sean Hunte16da072011-10-10 06:18:57 +00005787
Richard Smith5bdaac52012-04-02 20:59:25 +00005788 // Do access control from the special member function
5789 ContextRAII MethodContext(*this, MD);
5790
Richard Smith9a561d52012-02-26 09:11:52 +00005791 // C++11 [class.dtor]p5:
5792 // -- for a virtual destructor, lookup of the non-array deallocation function
5793 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00005794 if (CSM == CXXDestructor && MD->isVirtual()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005795 FunctionDecl *OperatorDelete = nullptr;
Richard Smith9a561d52012-02-26 09:11:52 +00005796 DeclarationName Name =
5797 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
5798 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00005799 OperatorDelete, false)) {
5800 if (Diagnose)
5801 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00005802 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005803 }
Richard Smith9a561d52012-02-26 09:11:52 +00005804 }
5805
Richard Smith6c4c36c2012-03-30 20:53:28 +00005806 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00005807
Stephen Hines651f13c2014-04-23 16:59:28 -07005808 for (auto &BI : RD->bases())
5809 if (!BI.isVirtual() &&
5810 SMI.shouldDeleteForBase(&BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00005811 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00005812
Richard Smithe0883602013-07-22 18:06:23 +00005813 // Per DR1611, do not consider virtual bases of constructors of abstract
5814 // classes, since we are not going to construct them.
Richard Smithcbc820a2013-07-22 02:56:56 +00005815 if (!RD->isAbstract() || !SMI.IsConstructor) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005816 for (auto &BI : RD->vbases())
5817 if (SMI.shouldDeleteForBase(&BI))
Richard Smithcbc820a2013-07-22 02:56:56 +00005818 return true;
5819 }
Sean Huntcdee3fe2011-05-11 22:34:38 +00005820
Stephen Hines651f13c2014-04-23 16:59:28 -07005821 for (auto *FI : RD->fields())
Richard Smith7d5088a2012-02-18 02:02:13 +00005822 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07005823 SMI.shouldDeleteForField(FI))
Sean Hunte3406822011-05-20 21:43:47 +00005824 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00005825
Richard Smith7d5088a2012-02-18 02:02:13 +00005826 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00005827 return true;
5828
Stephen Hines176edba2014-12-01 14:53:08 -08005829 if (getLangOpts().CUDA) {
5830 // We should delete the special member in CUDA mode if target inference
5831 // failed.
5832 return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg,
5833 Diagnose);
5834 }
5835
Sean Huntcdee3fe2011-05-11 22:34:38 +00005836 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005837}
5838
Richard Smithac713512012-12-08 02:53:02 +00005839/// Perform lookup for a special member of the specified kind, and determine
5840/// whether it is trivial. If the triviality can be determined without the
5841/// lookup, skip it. This is intended for use when determining whether a
5842/// special member of a containing object is trivial, and thus does not ever
5843/// perform overload resolution for default constructors.
5844///
5845/// If \p Selected is not \c NULL, \c *Selected will be filled in with the
5846/// member that was most likely to be intended to be trivial, if any.
5847static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
5848 Sema::CXXSpecialMember CSM, unsigned Quals,
Stephen Hines651f13c2014-04-23 16:59:28 -07005849 bool ConstRHS, CXXMethodDecl **Selected) {
Richard Smithac713512012-12-08 02:53:02 +00005850 if (Selected)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005851 *Selected = nullptr;
Richard Smithac713512012-12-08 02:53:02 +00005852
5853 switch (CSM) {
5854 case Sema::CXXInvalid:
5855 llvm_unreachable("not a special member");
5856
5857 case Sema::CXXDefaultConstructor:
5858 // C++11 [class.ctor]p5:
5859 // A default constructor is trivial if:
5860 // - all the [direct subobjects] have trivial default constructors
5861 //
5862 // Note, no overload resolution is performed in this case.
5863 if (RD->hasTrivialDefaultConstructor())
5864 return true;
5865
5866 if (Selected) {
5867 // If there's a default constructor which could have been trivial, dig it
5868 // out. Otherwise, if there's any user-provided default constructor, point
5869 // to that as an example of why there's not a trivial one.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005870 CXXConstructorDecl *DefCtor = nullptr;
Richard Smithac713512012-12-08 02:53:02 +00005871 if (RD->needsImplicitDefaultConstructor())
5872 S.DeclareImplicitDefaultConstructor(RD);
Stephen Hines651f13c2014-04-23 16:59:28 -07005873 for (auto *CI : RD->ctors()) {
Richard Smithac713512012-12-08 02:53:02 +00005874 if (!CI->isDefaultConstructor())
5875 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07005876 DefCtor = CI;
Richard Smithac713512012-12-08 02:53:02 +00005877 if (!DefCtor->isUserProvided())
5878 break;
5879 }
5880
5881 *Selected = DefCtor;
5882 }
5883
5884 return false;
5885
5886 case Sema::CXXDestructor:
5887 // C++11 [class.dtor]p5:
5888 // A destructor is trivial if:
5889 // - all the direct [subobjects] have trivial destructors
5890 if (RD->hasTrivialDestructor())
5891 return true;
5892
5893 if (Selected) {
5894 if (RD->needsImplicitDestructor())
5895 S.DeclareImplicitDestructor(RD);
5896 *Selected = RD->getDestructor();
5897 }
5898
5899 return false;
5900
5901 case Sema::CXXCopyConstructor:
5902 // C++11 [class.copy]p12:
5903 // A copy constructor is trivial if:
5904 // - the constructor selected to copy each direct [subobject] is trivial
5905 if (RD->hasTrivialCopyConstructor()) {
5906 if (Quals == Qualifiers::Const)
5907 // We must either select the trivial copy constructor or reach an
5908 // ambiguity; no need to actually perform overload resolution.
5909 return true;
5910 } else if (!Selected) {
5911 return false;
5912 }
5913 // In C++98, we are not supposed to perform overload resolution here, but we
5914 // treat that as a language defect, as suggested on cxx-abi-dev, to treat
5915 // cases like B as having a non-trivial copy constructor:
5916 // struct A { template<typename T> A(T&); };
5917 // struct B { mutable A a; };
5918 goto NeedOverloadResolution;
5919
5920 case Sema::CXXCopyAssignment:
5921 // C++11 [class.copy]p25:
5922 // A copy assignment operator is trivial if:
5923 // - the assignment operator selected to copy each direct [subobject] is
5924 // trivial
5925 if (RD->hasTrivialCopyAssignment()) {
5926 if (Quals == Qualifiers::Const)
5927 return true;
5928 } else if (!Selected) {
5929 return false;
5930 }
5931 // In C++98, we are not supposed to perform overload resolution here, but we
5932 // treat that as a language defect.
5933 goto NeedOverloadResolution;
5934
5935 case Sema::CXXMoveConstructor:
5936 case Sema::CXXMoveAssignment:
5937 NeedOverloadResolution:
5938 Sema::SpecialMemberOverloadResult *SMOR =
Stephen Hines651f13c2014-04-23 16:59:28 -07005939 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS);
Richard Smithac713512012-12-08 02:53:02 +00005940
5941 // The standard doesn't describe how to behave if the lookup is ambiguous.
5942 // We treat it as not making the member non-trivial, just like the standard
5943 // mandates for the default constructor. This should rarely matter, because
5944 // the member will also be deleted.
5945 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
5946 return true;
5947
5948 if (!SMOR->getMethod()) {
5949 assert(SMOR->getKind() ==
5950 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
5951 return false;
5952 }
5953
5954 // We deliberately don't check if we found a deleted special member. We're
5955 // not supposed to!
5956 if (Selected)
5957 *Selected = SMOR->getMethod();
5958 return SMOR->getMethod()->isTrivial();
5959 }
5960
5961 llvm_unreachable("unknown special method kind");
5962}
5963
Benjamin Kramera574c892013-02-15 12:30:38 +00005964static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005965 for (auto *CI : RD->ctors())
Richard Smithac713512012-12-08 02:53:02 +00005966 if (!CI->isImplicit())
Stephen Hines651f13c2014-04-23 16:59:28 -07005967 return CI;
Richard Smithac713512012-12-08 02:53:02 +00005968
5969 // Look for constructor templates.
5970 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
5971 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
5972 if (CXXConstructorDecl *CD =
5973 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
5974 return CD;
5975 }
5976
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005977 return nullptr;
Richard Smithac713512012-12-08 02:53:02 +00005978}
5979
5980/// The kind of subobject we are checking for triviality. The values of this
5981/// enumeration are used in diagnostics.
5982enum TrivialSubobjectKind {
5983 /// The subobject is a base class.
5984 TSK_BaseClass,
5985 /// The subobject is a non-static data member.
5986 TSK_Field,
5987 /// The object is actually the complete object.
5988 TSK_CompleteObject
5989};
5990
5991/// Check whether the special member selected for a given type would be trivial.
5992static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -07005993 QualType SubType, bool ConstRHS,
Richard Smithac713512012-12-08 02:53:02 +00005994 Sema::CXXSpecialMember CSM,
5995 TrivialSubobjectKind Kind,
5996 bool Diagnose) {
5997 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
5998 if (!SubRD)
5999 return true;
6000
6001 CXXMethodDecl *Selected;
6002 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006003 ConstRHS, Diagnose ? &Selected : nullptr))
Richard Smithac713512012-12-08 02:53:02 +00006004 return true;
6005
6006 if (Diagnose) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006007 if (ConstRHS)
6008 SubType.addConst();
6009
Richard Smithac713512012-12-08 02:53:02 +00006010 if (!Selected && CSM == Sema::CXXDefaultConstructor) {
6011 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
6012 << Kind << SubType.getUnqualifiedType();
6013 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
6014 S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
6015 } else if (!Selected)
6016 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
6017 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
6018 else if (Selected->isUserProvided()) {
6019 if (Kind == TSK_CompleteObject)
6020 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
6021 << Kind << SubType.getUnqualifiedType() << CSM;
6022 else {
6023 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
6024 << Kind << SubType.getUnqualifiedType() << CSM;
6025 S.Diag(Selected->getLocation(), diag::note_declared_at);
6026 }
6027 } else {
6028 if (Kind != TSK_CompleteObject)
6029 S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
6030 << Kind << SubType.getUnqualifiedType() << CSM;
6031
6032 // Explain why the defaulted or deleted special member isn't trivial.
6033 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
6034 }
6035 }
6036
6037 return false;
6038}
6039
6040/// Check whether the members of a class type allow a special member to be
6041/// trivial.
6042static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
6043 Sema::CXXSpecialMember CSM,
6044 bool ConstArg, bool Diagnose) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006045 for (const auto *FI : RD->fields()) {
Richard Smithac713512012-12-08 02:53:02 +00006046 if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
6047 continue;
6048
6049 QualType FieldType = S.Context.getBaseElementType(FI->getType());
6050
6051 // Pretend anonymous struct or union members are members of this class.
6052 if (FI->isAnonymousStructOrUnion()) {
6053 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
6054 CSM, ConstArg, Diagnose))
6055 return false;
6056 continue;
6057 }
6058
6059 // C++11 [class.ctor]p5:
6060 // A default constructor is trivial if [...]
6061 // -- no non-static data member of its class has a
6062 // brace-or-equal-initializer
6063 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
6064 if (Diagnose)
Stephen Hines651f13c2014-04-23 16:59:28 -07006065 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI;
Richard Smithac713512012-12-08 02:53:02 +00006066 return false;
6067 }
6068
6069 // Objective C ARC 4.3.5:
6070 // [...] nontrivally ownership-qualified types are [...] not trivially
6071 // default constructible, copy constructible, move constructible, copy
6072 // assignable, move assignable, or destructible [...]
6073 if (S.getLangOpts().ObjCAutoRefCount &&
6074 FieldType.hasNonTrivialObjCLifetime()) {
6075 if (Diagnose)
6076 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
6077 << RD << FieldType.getObjCLifetime();
6078 return false;
6079 }
6080
Stephen Hines651f13c2014-04-23 16:59:28 -07006081 bool ConstRHS = ConstArg && !FI->isMutable();
6082 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS,
6083 CSM, TSK_Field, Diagnose))
Richard Smithac713512012-12-08 02:53:02 +00006084 return false;
6085 }
6086
6087 return true;
6088}
6089
6090/// Diagnose why the specified class does not have a trivial special member of
6091/// the given kind.
6092void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
6093 QualType Ty = Context.getRecordType(RD);
Richard Smithac713512012-12-08 02:53:02 +00006094
Stephen Hines651f13c2014-04-23 16:59:28 -07006095 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment);
6096 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM,
Richard Smithac713512012-12-08 02:53:02 +00006097 TSK_CompleteObject, /*Diagnose*/true);
6098}
6099
6100/// Determine whether a defaulted or deleted special member function is trivial,
6101/// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
6102/// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
6103bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
6104 bool Diagnose) {
Richard Smithac713512012-12-08 02:53:02 +00006105 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
6106
6107 CXXRecordDecl *RD = MD->getParent();
6108
6109 bool ConstArg = false;
Richard Smithac713512012-12-08 02:53:02 +00006110
Richard Smitha8d478e2013-11-04 02:02:27 +00006111 // C++11 [class.copy]p12, p25: [DR1593]
6112 // A [special member] is trivial if [...] its parameter-type-list is
6113 // equivalent to the parameter-type-list of an implicit declaration [...]
Richard Smithac713512012-12-08 02:53:02 +00006114 switch (CSM) {
6115 case CXXDefaultConstructor:
6116 case CXXDestructor:
6117 // Trivial default constructors and destructors cannot have parameters.
6118 break;
6119
6120 case CXXCopyConstructor:
6121 case CXXCopyAssignment: {
6122 // Trivial copy operations always have const, non-volatile parameter types.
6123 ConstArg = true;
Jordan Rose41f3f3a2013-03-05 01:27:54 +00006124 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smithac713512012-12-08 02:53:02 +00006125 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
6126 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
6127 if (Diagnose)
6128 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
6129 << Param0->getSourceRange() << Param0->getType()
6130 << Context.getLValueReferenceType(
6131 Context.getRecordType(RD).withConst());
6132 return false;
6133 }
6134 break;
6135 }
6136
6137 case CXXMoveConstructor:
6138 case CXXMoveAssignment: {
6139 // Trivial move operations always have non-cv-qualified parameters.
Jordan Rose41f3f3a2013-03-05 01:27:54 +00006140 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smithac713512012-12-08 02:53:02 +00006141 const RValueReferenceType *RT =
6142 Param0->getType()->getAs<RValueReferenceType>();
6143 if (!RT || RT->getPointeeType().getCVRQualifiers()) {
6144 if (Diagnose)
6145 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
6146 << Param0->getSourceRange() << Param0->getType()
6147 << Context.getRValueReferenceType(Context.getRecordType(RD));
6148 return false;
6149 }
6150 break;
6151 }
6152
6153 case CXXInvalid:
6154 llvm_unreachable("not a special member");
6155 }
6156
Richard Smithac713512012-12-08 02:53:02 +00006157 if (MD->getMinRequiredArguments() < MD->getNumParams()) {
6158 if (Diagnose)
6159 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
6160 diag::note_nontrivial_default_arg)
6161 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
6162 return false;
6163 }
6164 if (MD->isVariadic()) {
6165 if (Diagnose)
6166 Diag(MD->getLocation(), diag::note_nontrivial_variadic);
6167 return false;
6168 }
6169
6170 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
6171 // A copy/move [constructor or assignment operator] is trivial if
6172 // -- the [member] selected to copy/move each direct base class subobject
6173 // is trivial
6174 //
6175 // C++11 [class.copy]p12, C++11 [class.copy]p25:
6176 // A [default constructor or destructor] is trivial if
6177 // -- all the direct base classes have trivial [default constructors or
6178 // destructors]
Stephen Hines651f13c2014-04-23 16:59:28 -07006179 for (const auto &BI : RD->bases())
6180 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(),
6181 ConstArg, CSM, TSK_BaseClass, Diagnose))
Richard Smithac713512012-12-08 02:53:02 +00006182 return false;
6183
6184 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
6185 // A copy/move [constructor or assignment operator] for a class X is
6186 // trivial if
6187 // -- for each non-static data member of X that is of class type (or array
6188 // thereof), the constructor selected to copy/move that member is
6189 // trivial
6190 //
6191 // C++11 [class.copy]p12, C++11 [class.copy]p25:
6192 // A [default constructor or destructor] is trivial if
6193 // -- for all of the non-static data members of its class that are of class
6194 // type (or array thereof), each such class has a trivial [default
6195 // constructor or destructor]
6196 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
6197 return false;
6198
6199 // C++11 [class.dtor]p5:
6200 // A destructor is trivial if [...]
6201 // -- the destructor is not virtual
6202 if (CSM == CXXDestructor && MD->isVirtual()) {
6203 if (Diagnose)
6204 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
6205 return false;
6206 }
6207
6208 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
6209 // A [special member] for class X is trivial if [...]
6210 // -- class X has no virtual functions and no virtual base classes
6211 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
6212 if (!Diagnose)
6213 return false;
6214
6215 if (RD->getNumVBases()) {
6216 // Check for virtual bases. We already know that the corresponding
6217 // member in all bases is trivial, so vbases must all be direct.
6218 CXXBaseSpecifier &BS = *RD->vbases_begin();
6219 assert(BS.isVirtual());
6220 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
6221 return false;
6222 }
6223
6224 // Must have a virtual method.
Stephen Hines651f13c2014-04-23 16:59:28 -07006225 for (const auto *MI : RD->methods()) {
Richard Smithac713512012-12-08 02:53:02 +00006226 if (MI->isVirtual()) {
6227 SourceLocation MLoc = MI->getLocStart();
6228 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
6229 return false;
6230 }
6231 }
6232
6233 llvm_unreachable("dynamic class with no vbases and no virtual functions");
6234 }
6235
6236 // Looks like it's trivial!
6237 return true;
6238}
6239
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006240/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00006241namespace {
6242 struct FindHiddenVirtualMethodData {
6243 Sema *S;
6244 CXXMethodDecl *Method;
6245 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006246 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00006247 };
6248}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006249
David Blaikie5f750682012-10-19 00:53:08 +00006250/// \brief Check whether any most overriden method from MD in Methods
6251static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
Stephen Hines176edba2014-12-01 14:53:08 -08006252 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
David Blaikie5f750682012-10-19 00:53:08 +00006253 if (MD->size_overridden_methods() == 0)
6254 return Methods.count(MD->getCanonicalDecl());
6255 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6256 E = MD->end_overridden_methods();
6257 I != E; ++I)
6258 if (CheckMostOverridenMethods(*I, Methods))
6259 return true;
6260 return false;
6261}
6262
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006263/// \brief Member lookup function that determines whether a given C++
6264/// method overloads virtual methods in a base class without overriding any,
6265/// to be used with CXXRecordDecl::lookupInBases().
6266static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
6267 CXXBasePath &Path,
6268 void *UserData) {
6269 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
6270
6271 FindHiddenVirtualMethodData &Data
6272 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
6273
6274 DeclarationName Name = Data.Method->getDeclName();
6275 assert(Name.getNameKind() == DeclarationName::Identifier);
6276
6277 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006278 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006279 for (Path.Decls = BaseRecord->lookup(Name);
David Blaikie3bc93e32012-12-19 00:45:41 +00006280 !Path.Decls.empty();
6281 Path.Decls = Path.Decls.slice(1)) {
6282 NamedDecl *D = Path.Decls.front();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006283 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00006284 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006285 foundSameNameMethod = true;
6286 // Interested only in hidden virtual methods.
6287 if (!MD->isVirtual())
6288 continue;
6289 // If the method we are checking overrides a method from its base
Stephen Hines176edba2014-12-01 14:53:08 -08006290 // don't warn about the other overloaded methods. Clang deviates from GCC
6291 // by only diagnosing overloads of inherited virtual functions that do not
6292 // override any other virtual functions in the base. GCC's
6293 // -Woverloaded-virtual diagnoses any derived function hiding a virtual
6294 // function from a base class. These cases may be better served by a
6295 // warning (not specific to virtual functions) on call sites when the call
6296 // would select a different function from the base class, were it visible.
6297 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example.
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006298 if (!Data.S->IsOverload(Data.Method, MD, false))
6299 return true;
6300 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00006301 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006302 overloadedMethods.push_back(MD);
6303 }
6304 }
6305
6306 if (foundSameNameMethod)
6307 Data.OverloadedMethods.append(overloadedMethods.begin(),
6308 overloadedMethods.end());
6309 return foundSameNameMethod;
6310}
6311
David Blaikie5f750682012-10-19 00:53:08 +00006312/// \brief Add the most overriden methods from MD to Methods
6313static void AddMostOverridenMethods(const CXXMethodDecl *MD,
Stephen Hines176edba2014-12-01 14:53:08 -08006314 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
David Blaikie5f750682012-10-19 00:53:08 +00006315 if (MD->size_overridden_methods() == 0)
6316 Methods.insert(MD->getCanonicalDecl());
6317 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6318 E = MD->end_overridden_methods();
6319 I != E; ++I)
6320 AddMostOverridenMethods(*I, Methods);
6321}
6322
Eli Friedmandae92712013-09-05 23:51:03 +00006323/// \brief Check if a method overloads virtual methods in a base class without
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006324/// overriding any.
Eli Friedmandae92712013-09-05 23:51:03 +00006325void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD,
6326 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
Benjamin Kramerc4704422012-05-19 16:03:58 +00006327 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006328 return;
6329
6330 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
6331 /*bool RecordPaths=*/false,
6332 /*bool DetectVirtual=*/false);
6333 FindHiddenVirtualMethodData Data;
6334 Data.Method = MD;
6335 Data.S = this;
6336
6337 // Keep the base methods that were overriden or introduced in the subclass
6338 // by 'using' in a set. A base method not in this set is hidden.
Eli Friedmandae92712013-09-05 23:51:03 +00006339 CXXRecordDecl *DC = MD->getParent();
David Blaikie3bc93e32012-12-19 00:45:41 +00006340 DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
6341 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
6342 NamedDecl *ND = *I;
6343 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
David Blaikie5f750682012-10-19 00:53:08 +00006344 ND = shad->getTargetDecl();
6345 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
6346 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006347 }
6348
Eli Friedmandae92712013-09-05 23:51:03 +00006349 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths))
6350 OverloadedMethods = Data.OverloadedMethods;
6351}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006352
Eli Friedmandae92712013-09-05 23:51:03 +00006353void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD,
6354 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
6355 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) {
6356 CXXMethodDecl *overloadedMD = OverloadedMethods[i];
6357 PartialDiagnostic PD = PDiag(
6358 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
6359 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
6360 Diag(overloadedMD->getLocation(), PD);
6361 }
6362}
6363
6364/// \brief Diagnose methods which overload virtual methods in a base class
6365/// without overriding any.
6366void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) {
6367 if (MD->isInvalidDecl())
6368 return;
6369
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006370 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation()))
Eli Friedmandae92712013-09-05 23:51:03 +00006371 return;
6372
6373 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
6374 FindHiddenVirtualMethods(MD, OverloadedMethods);
6375 if (!OverloadedMethods.empty()) {
6376 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
6377 << MD << (OverloadedMethods.size() > 1);
6378
6379 NoteHiddenVirtualMethods(MD, OverloadedMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00006380 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00006381}
6382
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00006383void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00006384 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00006385 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00006386 SourceLocation RBrac,
6387 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00006388 if (!TagDecl)
6389 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006390
Douglas Gregor42af25f2009-05-11 19:58:34 +00006391 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00006392
Rafael Espindolaf729ce02012-07-12 04:32:30 +00006393 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
6394 if (l->getKind() != AttributeList::AT_Visibility)
6395 continue;
6396 l->setInvalid();
6397 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
6398 l->getName();
6399 }
6400
David Blaikie77b6de02011-09-22 02:58:26 +00006401 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00006402 // strict aliasing violation!
6403 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00006404 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00006405
Douglas Gregor23c94db2010-07-02 17:43:08 +00006406 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00006407 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00006408}
6409
Douglas Gregor396b7cd2008-11-03 17:51:48 +00006410/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
6411/// special functions, such as the default constructor, copy
6412/// constructor, or destructor, to the given C++ class (C++
6413/// [special]p1). This routine can only be executed just before the
6414/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00006415void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00006416 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00006417 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00006418
Richard Smithbc2a35d2012-12-08 08:32:28 +00006419 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
Douglas Gregor22584312010-07-02 23:41:54 +00006420 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00006421
Richard Smithbc2a35d2012-12-08 08:32:28 +00006422 // If the properties or semantics of the copy constructor couldn't be
6423 // determined while the class was being declared, force a declaration
6424 // of it now.
6425 if (ClassDecl->needsOverloadResolutionForCopyConstructor())
6426 DeclareImplicitCopyConstructor(ClassDecl);
6427 }
6428
Richard Smith80ad52f2013-01-02 11:42:31 +00006429 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00006430 ++ASTContext::NumImplicitMoveConstructors;
6431
Richard Smithbc2a35d2012-12-08 08:32:28 +00006432 if (ClassDecl->needsOverloadResolutionForMoveConstructor())
6433 DeclareImplicitMoveConstructor(ClassDecl);
6434 }
6435
Douglas Gregora376d102010-07-02 21:50:04 +00006436 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
6437 ++ASTContext::NumImplicitCopyAssignmentOperators;
Richard Smithbc2a35d2012-12-08 08:32:28 +00006438
6439 // If we have a dynamic class, then the copy assignment operator may be
Douglas Gregora376d102010-07-02 21:50:04 +00006440 // virtual, so we have to declare it immediately. This ensures that, e.g.,
Richard Smithbc2a35d2012-12-08 08:32:28 +00006441 // it shows up in the right place in the vtable and that we diagnose
6442 // problems with the implicit exception specification.
6443 if (ClassDecl->isDynamicClass() ||
6444 ClassDecl->needsOverloadResolutionForCopyAssignment())
Douglas Gregora376d102010-07-02 21:50:04 +00006445 DeclareImplicitCopyAssignment(ClassDecl);
6446 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00006447
Richard Smith80ad52f2013-01-02 11:42:31 +00006448 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00006449 ++ASTContext::NumImplicitMoveAssignmentOperators;
6450
6451 // Likewise for the move assignment operator.
Richard Smithbc2a35d2012-12-08 08:32:28 +00006452 if (ClassDecl->isDynamicClass() ||
6453 ClassDecl->needsOverloadResolutionForMoveAssignment())
Richard Smithb701d3d2011-12-24 21:56:24 +00006454 DeclareImplicitMoveAssignment(ClassDecl);
6455 }
6456
Douglas Gregor4923aa22010-07-02 20:37:36 +00006457 if (!ClassDecl->hasUserDeclaredDestructor()) {
6458 ++ASTContext::NumImplicitDestructors;
Richard Smithbc2a35d2012-12-08 08:32:28 +00006459
6460 // If we have a dynamic class, then the destructor may be virtual, so we
Douglas Gregor4923aa22010-07-02 20:37:36 +00006461 // have to declare the destructor immediately. This ensures that, e.g., it
6462 // shows up in the right place in the vtable and that we diagnose problems
6463 // with the implicit exception specification.
Richard Smithbc2a35d2012-12-08 08:32:28 +00006464 if (ClassDecl->isDynamicClass() ||
6465 ClassDecl->needsOverloadResolutionForDestructor())
Douglas Gregor4923aa22010-07-02 20:37:36 +00006466 DeclareImplicitDestructor(ClassDecl);
6467 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00006468}
6469
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006470unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Francois Pichet8387e2a2011-04-22 22:18:13 +00006471 if (!D)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006472 return 0;
Francois Pichet8387e2a2011-04-22 22:18:13 +00006473
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006474 // The order of template parameters is not important here. All names
6475 // get added to the same scope.
6476 SmallVector<TemplateParameterList *, 4> ParameterLists;
6477
6478 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
6479 D = TD->getTemplatedDecl();
6480
6481 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
6482 ParameterLists.push_back(PSD->getTemplateParameters());
6483
6484 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
6485 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i)
6486 ParameterLists.push_back(DD->getTemplateParameterList(i));
6487
6488 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
6489 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
6490 ParameterLists.push_back(FTD->getTemplateParameters());
6491 }
6492 }
6493
6494 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
6495 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i)
6496 ParameterLists.push_back(TD->getTemplateParameterList(i));
6497
6498 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) {
6499 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate())
6500 ParameterLists.push_back(CTD->getTemplateParameters());
6501 }
6502 }
6503
6504 unsigned Count = 0;
6505 for (TemplateParameterList *Params : ParameterLists) {
6506 if (Params->size() > 0)
6507 // Ignore explicit specializations; they don't contribute to the template
6508 // depth.
6509 ++Count;
6510 for (NamedDecl *Param : *Params) {
6511 if (Param->getDeclName()) {
6512 S->AddDecl(Param);
6513 IdResolver.AddDecl(Param);
Francois Pichet8387e2a2011-04-22 22:18:13 +00006514 }
6515 }
6516 }
Francois Pichet8387e2a2011-04-22 22:18:13 +00006517
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006518 return Count;
Douglas Gregor6569d682009-05-27 23:11:45 +00006519}
6520
John McCalld226f652010-08-21 09:40:31 +00006521void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00006522 if (!RecordD) return;
6523 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00006524 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00006525 PushDeclContext(S, Record);
6526}
6527
John McCalld226f652010-08-21 09:40:31 +00006528void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00006529 if (!RecordD) return;
6530 PopDeclContext();
6531}
6532
Stephen Hines651f13c2014-04-23 16:59:28 -07006533/// This is used to implement the constant expression evaluation part of the
6534/// attribute enable_if extension. There is nothing in standard C++ which would
6535/// require reentering parameters.
6536void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) {
6537 if (!Param)
6538 return;
6539
6540 S->AddDecl(Param);
6541 if (Param->getDeclName())
6542 IdResolver.AddDecl(Param);
6543}
6544
Douglas Gregor72b505b2008-12-16 21:30:33 +00006545/// ActOnStartDelayedCXXMethodDeclaration - We have completed
6546/// parsing a top-level (non-nested) C++ class, and we are now
6547/// parsing those parts of the given Method declaration that could
6548/// not be parsed earlier (C++ [class.mem]p2), such as default
6549/// arguments. This action should enter the scope of the given
6550/// Method declaration as if we had just parsed the qualified method
6551/// name. However, it should not bring the parameters into scope;
6552/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00006553void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00006554}
6555
6556/// ActOnDelayedCXXMethodParameter - We've already started a delayed
6557/// C++ method declaration. We're (re-)introducing the given
6558/// function parameter into scope for use in parsing later parts of
6559/// the method declaration. For example, we could see an
6560/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00006561void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00006562 if (!ParamD)
6563 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006564
John McCalld226f652010-08-21 09:40:31 +00006565 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00006566
6567 // If this parameter has an unparsed default argument, clear it out
6568 // to make way for the parsed default argument.
6569 if (Param->hasUnparsedDefaultArg())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006570 Param->setDefaultArg(nullptr);
Douglas Gregor61366e92008-12-24 00:01:03 +00006571
John McCalld226f652010-08-21 09:40:31 +00006572 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00006573 if (Param->getDeclName())
6574 IdResolver.AddDecl(Param);
6575}
6576
6577/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
6578/// processing the delayed method declaration for Method. The method
6579/// declaration is now considered finished. There may be a separate
6580/// ActOnStartOfFunctionDef action later (not necessarily
6581/// immediately!) for this method, if it was also defined inside the
6582/// class body.
John McCalld226f652010-08-21 09:40:31 +00006583void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00006584 if (!MethodD)
6585 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006586
Douglas Gregorefd5bda2009-08-24 11:57:43 +00006587 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00006588
John McCalld226f652010-08-21 09:40:31 +00006589 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00006590
6591 // Now that we have our default arguments, check the constructor
6592 // again. It could produce additional diagnostics or affect whether
6593 // the class has implicitly-declared destructors, among other
6594 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00006595 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
6596 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00006597
6598 // Check the default arguments, which we may have added.
6599 if (!Method->isInvalidDecl())
6600 CheckCXXDefaultArguments(Method);
6601}
6602
Douglas Gregor42a552f2008-11-05 20:51:48 +00006603/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00006604/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00006605/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00006606/// emit diagnostics and set the invalid bit to true. In any case, the type
6607/// will be updated to reflect a well-formed type for the constructor and
6608/// returned.
6609QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00006610 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006611 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00006612
6613 // C++ [class.ctor]p3:
6614 // A constructor shall not be virtual (10.3) or static (9.4). A
6615 // constructor can be invoked for a const, volatile or const
6616 // volatile object. A constructor shall not be declared const,
6617 // volatile, or const volatile (9.3.2).
6618 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00006619 if (!D.isInvalidType())
6620 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
6621 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
6622 << SourceRange(D.getIdentifierLoc());
6623 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00006624 }
John McCalld931b082010-08-26 03:08:43 +00006625 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00006626 if (!D.isInvalidType())
6627 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
6628 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
6629 << SourceRange(D.getIdentifierLoc());
6630 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00006631 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00006632 }
Mike Stump1eb44332009-09-09 15:08:12 +00006633
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006634 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6635 diagnoseIgnoredQualifiers(
6636 diag::err_constructor_return_type, TypeQuals, SourceLocation(),
6637 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(),
6638 D.getDeclSpec().getRestrictSpecLoc(),
6639 D.getDeclSpec().getAtomicSpecLoc());
6640 D.setInvalidType();
6641 }
6642
Abramo Bagnara075f8f12010-12-10 16:29:40 +00006643 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00006644 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00006645 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006646 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6647 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00006648 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006649 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6650 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00006651 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006652 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6653 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00006654 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00006655 }
Mike Stump1eb44332009-09-09 15:08:12 +00006656
Douglas Gregorc938c162011-01-26 05:01:58 +00006657 // C++0x [class.ctor]p4:
6658 // A constructor shall not be declared with a ref-qualifier.
6659 if (FTI.hasRefQualifier()) {
6660 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
6661 << FTI.RefQualifierIsLValueRef
6662 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
6663 D.setInvalidType();
6664 }
6665
Douglas Gregor42a552f2008-11-05 20:51:48 +00006666 // Rebuild the function type "R" without any type qualifiers (in
6667 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00006668 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00006669 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07006670 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
John McCalle23cf432010-12-14 08:05:40 +00006671 return R;
6672
6673 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
6674 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00006675 EPI.RefQualifier = RQ_None;
Stephen Hines651f13c2014-04-23 16:59:28 -07006676
6677 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00006678}
6679
Douglas Gregor72b505b2008-12-16 21:30:33 +00006680/// CheckConstructor - Checks a fully-formed constructor for
6681/// well-formedness, issuing any diagnostics required. Returns true if
6682/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00006683void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00006684 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00006685 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
6686 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00006687 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00006688
6689 // C++ [class.copy]p3:
6690 // A declaration of a constructor for a class X is ill-formed if
6691 // its first parameter is of type (optionally cv-qualified) X and
6692 // either there are no other parameters or else all other
6693 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00006694 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00006695 ((Constructor->getNumParams() == 1) ||
6696 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00006697 Constructor->getParamDecl(1)->hasDefaultArg())) &&
6698 Constructor->getTemplateSpecializationKind()
6699 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00006700 QualType ParamType = Constructor->getParamDecl(0)->getType();
6701 QualType ClassTy = Context.getTagDeclType(ClassDecl);
6702 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00006703 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00006704 const char *ConstRef
6705 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
6706 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00006707 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00006708 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00006709
6710 // FIXME: Rather that making the constructor invalid, we should endeavor
6711 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00006712 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00006713 }
6714 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00006715}
6716
John McCall15442822010-08-04 01:04:25 +00006717/// CheckDestructor - Checks a fully-formed destructor definition for
6718/// well-formedness, issuing any diagnostics required. Returns true
6719/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006720bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00006721 CXXRecordDecl *RD = Destructor->getParent();
6722
Peter Collingbournef51cfb82013-05-20 14:12:25 +00006723 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
Anders Carlsson6d701392009-11-15 22:49:34 +00006724 SourceLocation Loc;
6725
6726 if (!Destructor->isImplicit())
6727 Loc = Destructor->getLocation();
6728 else
6729 Loc = RD->getLocation();
6730
6731 // If we have a virtual destructor, look up the deallocation function
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006732 FunctionDecl *OperatorDelete = nullptr;
Anders Carlsson6d701392009-11-15 22:49:34 +00006733 DeclarationName Name =
6734 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006735 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00006736 return true;
Bill Wendlingc12b43a2013-12-07 23:53:50 +00006737 // If there's no class-specific operator delete, look up the global
6738 // non-array delete.
6739 if (!OperatorDelete)
6740 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name);
John McCall5efd91a2010-07-03 18:33:00 +00006741
Eli Friedman5f2987c2012-02-02 03:46:19 +00006742 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00006743
6744 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00006745 }
Anders Carlsson37909802009-11-30 21:24:50 +00006746
6747 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00006748}
6749
Douglas Gregor42a552f2008-11-05 20:51:48 +00006750/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
6751/// the well-formednes of the destructor declarator @p D with type @p
6752/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00006753/// emit diagnostics and set the declarator to invalid. Even if this happens,
6754/// will be updated to reflect a well-formed type for the destructor and
6755/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00006756QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00006757 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006758 // C++ [class.dtor]p1:
6759 // [...] A typedef-name that names a class is a class-name
6760 // (7.1.3); however, a typedef-name that names a class shall not
6761 // be used as the identifier in the declarator for a destructor
6762 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006763 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00006764 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00006765 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00006766 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006767 else if (const TemplateSpecializationType *TST =
6768 DeclaratorType->getAs<TemplateSpecializationType>())
6769 if (TST->isTypeAlias())
6770 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
6771 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00006772
6773 // C++ [class.dtor]p2:
6774 // A destructor is used to destroy objects of its class type. A
6775 // destructor takes no parameters, and no return type can be
6776 // specified for it (not even void). The address of a destructor
6777 // shall not be taken. A destructor shall not be static. A
6778 // destructor can be invoked for a const, volatile or const
6779 // volatile object. A destructor shall not be declared const,
6780 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00006781 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00006782 if (!D.isInvalidType())
6783 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
6784 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00006785 << SourceRange(D.getIdentifierLoc())
6786 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6787
John McCalld931b082010-08-26 03:08:43 +00006788 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00006789 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006790 if (!D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006791 // Destructors don't have return types, but the parser will
6792 // happily parse something like:
6793 //
6794 // class X {
6795 // float ~X();
6796 // };
6797 //
6798 // The return type will be eliminated later.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07006799 if (D.getDeclSpec().hasTypeSpecifier())
6800 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
6801 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6802 << SourceRange(D.getIdentifierLoc());
6803 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6804 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals,
6805 SourceLocation(),
6806 D.getDeclSpec().getConstSpecLoc(),
6807 D.getDeclSpec().getVolatileSpecLoc(),
6808 D.getDeclSpec().getRestrictSpecLoc(),
6809 D.getDeclSpec().getAtomicSpecLoc());
6810 D.setInvalidType();
6811 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00006812 }
Mike Stump1eb44332009-09-09 15:08:12 +00006813
Abramo Bagnara075f8f12010-12-10 16:29:40 +00006814 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00006815 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00006816 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006817 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6818 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00006819 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006820 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6821 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00006822 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006823 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6824 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00006825 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00006826 }
6827
Douglas Gregorc938c162011-01-26 05:01:58 +00006828 // C++0x [class.dtor]p2:
6829 // A destructor shall not be declared with a ref-qualifier.
6830 if (FTI.hasRefQualifier()) {
6831 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
6832 << FTI.RefQualifierIsLValueRef
6833 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
6834 D.setInvalidType();
6835 }
6836
Douglas Gregor42a552f2008-11-05 20:51:48 +00006837 // Make sure we don't have any parameters.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006838 if (FTIHasNonVoidParameters(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006839 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
6840
6841 // Delete the parameters.
Stephen Hines651f13c2014-04-23 16:59:28 -07006842 FTI.freeParams();
Chris Lattner65401802009-04-25 08:28:21 +00006843 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00006844 }
6845
Mike Stump1eb44332009-09-09 15:08:12 +00006846 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00006847 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006848 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00006849 D.setInvalidType();
6850 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00006851
6852 // Rebuild the function type "R" without any type qualifiers or
6853 // parameters (in case any of the errors above fired) and with
6854 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00006855 // types.
John McCalle23cf432010-12-14 08:05:40 +00006856 if (!D.isInvalidType())
6857 return R;
6858
Douglas Gregord92ec472010-07-01 05:10:53 +00006859 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00006860 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
6861 EPI.Variadic = false;
6862 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00006863 EPI.RefQualifier = RQ_None;
Dmitri Gribenko55431692013-05-05 00:41:58 +00006864 return Context.getFunctionType(Context.VoidTy, None, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00006865}
6866
Stephen Hines0e2c34f2015-03-23 12:09:02 -07006867static void extendLeft(SourceRange &R, const SourceRange &Before) {
6868 if (Before.isInvalid())
6869 return;
6870 R.setBegin(Before.getBegin());
6871 if (R.getEnd().isInvalid())
6872 R.setEnd(Before.getEnd());
6873}
6874
6875static void extendRight(SourceRange &R, const SourceRange &After) {
6876 if (After.isInvalid())
6877 return;
6878 if (R.getBegin().isInvalid())
6879 R.setBegin(After.getBegin());
6880 R.setEnd(After.getEnd());
6881}
6882
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006883/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
6884/// well-formednes of the conversion function declarator @p D with
6885/// type @p R. If there are any errors in the declarator, this routine
6886/// will emit diagnostics and return true. Otherwise, it will return
6887/// false. Either way, the type @p R will be updated to reflect a
6888/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00006889void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00006890 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006891 // C++ [class.conv.fct]p1:
6892 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00006893 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00006894 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00006895 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00006896 if (!D.isInvalidType())
6897 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
Eli Friedman4cde94a2013-06-20 20:58:02 +00006898 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
6899 << D.getName().getSourceRange();
Chris Lattner6e475012009-04-25 08:35:12 +00006900 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00006901 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006902 }
John McCalla3f81372010-04-13 00:04:31 +00006903
Stephen Hines0e2c34f2015-03-23 12:09:02 -07006904 TypeSourceInfo *ConvTSI = nullptr;
6905 QualType ConvType =
6906 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI);
John McCalla3f81372010-04-13 00:04:31 +00006907
Chris Lattner6e475012009-04-25 08:35:12 +00006908 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006909 // Conversion functions don't have return types, but the parser will
6910 // happily parse something like:
6911 //
6912 // class X {
6913 // float operator bool();
6914 // };
6915 //
6916 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006917 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
6918 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6919 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00006920 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006921 }
6922
John McCalla3f81372010-04-13 00:04:31 +00006923 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
6924
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006925 // Make sure we don't have any parameters.
Stephen Hines651f13c2014-04-23 16:59:28 -07006926 if (Proto->getNumParams() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006927 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
6928
6929 // Delete the parameters.
Stephen Hines651f13c2014-04-23 16:59:28 -07006930 D.getFunctionTypeInfo().freeParams();
Chris Lattner6e475012009-04-25 08:35:12 +00006931 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00006932 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006933 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00006934 D.setInvalidType();
6935 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006936
John McCalla3f81372010-04-13 00:04:31 +00006937 // Diagnose "&operator bool()" and other such nonsense. This
6938 // is actually a gcc extension which we don't support.
Stephen Hines651f13c2014-04-23 16:59:28 -07006939 if (Proto->getReturnType() != ConvType) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07006940 bool NeedsTypedef = false;
6941 SourceRange Before, After;
6942
6943 // Walk the chunks and extract information on them for our diagnostic.
6944 bool PastFunctionChunk = false;
6945 for (auto &Chunk : D.type_objects()) {
6946 switch (Chunk.Kind) {
6947 case DeclaratorChunk::Function:
6948 if (!PastFunctionChunk) {
6949 if (Chunk.Fun.HasTrailingReturnType) {
6950 TypeSourceInfo *TRT = nullptr;
6951 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT);
6952 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange());
6953 }
6954 PastFunctionChunk = true;
6955 break;
6956 }
6957 // Fall through.
6958 case DeclaratorChunk::Array:
6959 NeedsTypedef = true;
6960 extendRight(After, Chunk.getSourceRange());
6961 break;
6962
6963 case DeclaratorChunk::Pointer:
6964 case DeclaratorChunk::BlockPointer:
6965 case DeclaratorChunk::Reference:
6966 case DeclaratorChunk::MemberPointer:
6967 extendLeft(Before, Chunk.getSourceRange());
6968 break;
6969
6970 case DeclaratorChunk::Paren:
6971 extendLeft(Before, Chunk.Loc);
6972 extendRight(After, Chunk.EndLoc);
6973 break;
6974 }
6975 }
6976
6977 SourceLocation Loc = Before.isValid() ? Before.getBegin() :
6978 After.isValid() ? After.getBegin() :
6979 D.getIdentifierLoc();
6980 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl);
6981 DB << Before << After;
6982
6983 if (!NeedsTypedef) {
6984 DB << /*don't need a typedef*/0;
6985
6986 // If we can provide a correct fix-it hint, do so.
6987 if (After.isInvalid() && ConvTSI) {
6988 SourceLocation InsertLoc =
6989 PP.getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd());
6990 DB << FixItHint::CreateInsertion(InsertLoc, " ")
6991 << FixItHint::CreateInsertionFromRange(
6992 InsertLoc, CharSourceRange::getTokenRange(Before))
6993 << FixItHint::CreateRemoval(Before);
6994 }
6995 } else if (!Proto->getReturnType()->isDependentType()) {
6996 DB << /*typedef*/1 << Proto->getReturnType();
6997 } else if (getLangOpts().CPlusPlus11) {
6998 DB << /*alias template*/2 << Proto->getReturnType();
6999 } else {
7000 DB << /*might not be fixable*/3;
7001 }
7002
7003 // Recover by incorporating the other type chunks into the result type.
7004 // Note, this does *not* change the name of the function. This is compatible
7005 // with the GCC extension:
7006 // struct S { &operator int(); } s;
7007 // int &r = s.operator int(); // ok in GCC
7008 // S::operator int&() {} // error in GCC, function name is 'operator int'.
Stephen Hines651f13c2014-04-23 16:59:28 -07007009 ConvType = Proto->getReturnType();
John McCalla3f81372010-04-13 00:04:31 +00007010 }
7011
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007012 // C++ [class.conv.fct]p4:
7013 // The conversion-type-id shall not represent a function type nor
7014 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007015 if (ConvType->isArrayType()) {
7016 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
7017 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00007018 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007019 } else if (ConvType->isFunctionType()) {
7020 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
7021 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00007022 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007023 }
7024
7025 // Rebuild the function type "R" without any parameters (in case any
7026 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00007027 // return type.
John McCalle23cf432010-12-14 08:05:40 +00007028 if (D.isInvalidType())
Dmitri Gribenko55431692013-05-05 00:41:58 +00007029 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007030
Douglas Gregor09f41cf2009-01-14 15:45:31 +00007031 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00007032 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00007033 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +00007034 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00007035 diag::warn_cxx98_compat_explicit_conversion_functions :
7036 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00007037 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007038}
7039
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007040/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
7041/// the declaration of the given C++ conversion function. This routine
7042/// is responsible for recording the conversion function in the C++
7043/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00007044Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007045 assert(Conversion && "Expected to receive a conversion function declaration");
7046
Douglas Gregor9d350972008-12-12 08:25:50 +00007047 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007048
7049 // Make sure we aren't redeclaring the conversion function.
7050 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007051
7052 // C++ [class.conv.fct]p1:
7053 // [...] A conversion function is never used to convert a
7054 // (possibly cv-qualified) object to the (possibly cv-qualified)
7055 // same object type (or a reference to it), to a (possibly
7056 // cv-qualified) base class of that type (or a reference to it),
7057 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00007058 // FIXME: Suppress this warning if the conversion function ends up being a
7059 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00007060 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007061 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00007062 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007063 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00007064 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
7065 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00007066 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00007067 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007068 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
7069 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00007070 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00007071 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007072 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00007073 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00007074 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007075 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00007076 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00007077 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007078 }
7079
Douglas Gregore80622f2010-09-29 04:25:11 +00007080 if (FunctionTemplateDecl *ConversionTemplate
7081 = Conversion->getDescribedFunctionTemplate())
7082 return ConversionTemplate;
7083
John McCalld226f652010-08-21 09:40:31 +00007084 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00007085}
7086
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007087//===----------------------------------------------------------------------===//
7088// Namespace Handling
7089//===----------------------------------------------------------------------===//
7090
Richard Smithd1a55a62012-10-04 22:13:39 +00007091/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
7092/// reopened.
7093static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
7094 SourceLocation Loc,
7095 IdentifierInfo *II, bool *IsInline,
7096 NamespaceDecl *PrevNS) {
7097 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00007098
Richard Smithc969e6a2012-10-05 01:46:25 +00007099 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
7100 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
7101 // inline namespaces, with the intention of bringing names into namespace std.
7102 //
7103 // We support this just well enough to get that case working; this is not
7104 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00007105 if (*IsInline && II && II->getName().startswith("__atomic") &&
7106 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00007107 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00007108 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
7109 NS = NS->getPreviousDecl())
7110 NS->setInline(*IsInline);
7111 // Patch up the lookup table for the containing namespace. This isn't really
7112 // correct, but it's good enough for this particular case.
Stephen Hines651f13c2014-04-23 16:59:28 -07007113 for (auto *I : PrevNS->decls())
7114 if (auto *ND = dyn_cast<NamedDecl>(I))
Richard Smithd1a55a62012-10-04 22:13:39 +00007115 PrevNS->getParent()->makeDeclVisibleInContext(ND);
7116 return;
7117 }
7118
7119 if (PrevNS->isInline())
7120 // The user probably just forgot the 'inline', so suggest that it
7121 // be added back.
7122 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
7123 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
7124 else
Stephen Hines651f13c2014-04-23 16:59:28 -07007125 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline;
Richard Smithd1a55a62012-10-04 22:13:39 +00007126
7127 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
7128 *IsInline = PrevNS->isInline();
7129}
John McCallea318642010-08-26 09:15:37 +00007130
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007131/// ActOnStartNamespaceDef - This is called at the start of a namespace
7132/// definition.
John McCalld226f652010-08-21 09:40:31 +00007133Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00007134 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00007135 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00007136 SourceLocation IdentLoc,
7137 IdentifierInfo *II,
7138 SourceLocation LBrace,
7139 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00007140 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
7141 // For anonymous namespace, take the location of the left brace.
7142 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007143 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00007144 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007145 bool IsStd = false;
7146 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007147 Scope *DeclRegionScope = NamespcScope->getParent();
7148
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007149 NamespaceDecl *PrevNS = nullptr;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007150 if (II) {
7151 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00007152 // The identifier in an original-namespace-definition shall not
7153 // have been previously defined in the declarative region in
7154 // which the original-namespace-definition appears. The
7155 // identifier in an original-namespace-definition is the name of
7156 // the namespace. Subsequently in that declarative region, it is
7157 // treated as an original-namespace-name.
7158 //
7159 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00007160 // look through using directives, just look for any ordinary names.
7161
7162 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007163 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
7164 Decl::IDNS_Namespace;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007165 NamedDecl *PrevDecl = nullptr;
David Blaikie3bc93e32012-12-19 00:45:41 +00007166 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
7167 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
7168 ++I) {
7169 if ((*I)->getIdentifierNamespace() & IDNS) {
7170 PrevDecl = *I;
Douglas Gregor010157f2011-05-06 23:28:47 +00007171 break;
7172 }
7173 }
7174
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007175 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
7176
7177 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00007178 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00007179 if (IsInline != PrevNS->isInline())
7180 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
7181 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00007182 } else if (PrevDecl) {
7183 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007184 Diag(Loc, diag::err_redefinition_different_kind)
7185 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00007186 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00007187 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00007188 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007189 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00007190 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00007191 // This is the first "real" definition of the namespace "std", so update
7192 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007193 PrevNS = getStdNamespace();
7194 IsStd = true;
7195 AddToKnown = !IsInline;
7196 } else {
7197 // We've seen this namespace for the first time.
7198 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00007199 }
Douglas Gregor44b43212008-12-11 16:49:14 +00007200 } else {
John McCall9aeed322009-10-01 00:25:31 +00007201 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007202
7203 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00007204 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00007205 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007206 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00007207 } else {
7208 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007209 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00007210 }
7211
Richard Smithd1a55a62012-10-04 22:13:39 +00007212 if (PrevNS && IsInline != PrevNS->isInline())
7213 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
7214 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007215 }
7216
7217 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
7218 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00007219 if (IsInvalid)
7220 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007221
7222 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00007223
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007224 // FIXME: Should we be merging attributes?
7225 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00007226 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007227
7228 if (IsStd)
7229 StdNamespace = Namespc;
7230 if (AddToKnown)
7231 KnownNamespaces[Namespc] = false;
7232
7233 if (II) {
7234 PushOnScopeChains(Namespc, DeclRegionScope);
7235 } else {
7236 // Link the anonymous namespace into its parent.
7237 DeclContext *Parent = CurContext->getRedeclContext();
7238 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
7239 TU->setAnonymousNamespace(Namespc);
7240 } else {
7241 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00007242 }
John McCall9aeed322009-10-01 00:25:31 +00007243
Douglas Gregora4181472010-03-24 00:46:35 +00007244 CurContext->addDecl(Namespc);
7245
John McCall9aeed322009-10-01 00:25:31 +00007246 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
7247 // behaves as if it were replaced by
7248 // namespace unique { /* empty body */ }
7249 // using namespace unique;
7250 // namespace unique { namespace-body }
7251 // where all occurrences of 'unique' in a translation unit are
7252 // replaced by the same identifier and this identifier differs
7253 // from all other identifiers in the entire program.
7254
7255 // We just create the namespace with an empty name and then add an
7256 // implicit using declaration, just like the standard suggests.
7257 //
7258 // CodeGen enforces the "universally unique" aspect by giving all
7259 // declarations semantically contained within an anonymous
7260 // namespace internal linkage.
7261
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007262 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00007263 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00007264 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00007265 /* 'using' */ LBrace,
7266 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00007267 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00007268 /* identifier */ SourceLocation(),
7269 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00007270 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00007271 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00007272 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00007273 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007274 }
7275
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00007276 ActOnDocumentableDecl(Namespc);
7277
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007278 // Although we could have an invalid decl (i.e. the namespace name is a
7279 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00007280 // FIXME: We should be able to push Namespc here, so that the each DeclContext
7281 // for the namespace has the declarations that showed up in that particular
7282 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00007283 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00007284 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007285}
7286
Sebastian Redleb0d8c92009-11-23 15:34:23 +00007287/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
7288/// is a namespace alias, returns the namespace it points to.
7289static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
7290 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
7291 return AD->getNamespace();
7292 return dyn_cast_or_null<NamespaceDecl>(D);
7293}
7294
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007295/// ActOnFinishNamespaceDef - This callback is called after a namespace is
7296/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00007297void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007298 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
7299 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00007300 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007301 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00007302 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00007303 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00007304}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00007305
John McCall384aff82010-08-25 07:42:41 +00007306CXXRecordDecl *Sema::getStdBadAlloc() const {
7307 return cast_or_null<CXXRecordDecl>(
7308 StdBadAlloc.get(Context.getExternalSource()));
7309}
7310
7311NamespaceDecl *Sema::getStdNamespace() const {
7312 return cast_or_null<NamespaceDecl>(
7313 StdNamespace.get(Context.getExternalSource()));
7314}
7315
Douglas Gregor66992202010-06-29 17:53:46 +00007316/// \brief Retrieve the special "std" namespace, which may require us to
7317/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00007318NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00007319 if (!StdNamespace) {
7320 // The "std" namespace has not yet been defined, so build one implicitly.
7321 StdNamespace = NamespaceDecl::Create(Context,
7322 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007323 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00007324 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00007325 &PP.getIdentifierTable().get("std"),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007326 /*PrevDecl=*/nullptr);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00007327 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00007328 }
Stephen Hines176edba2014-12-01 14:53:08 -08007329
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00007330 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00007331}
7332
Sebastian Redl395e04d2012-01-17 22:49:33 +00007333bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00007334 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00007335 "Looking for std::initializer_list outside of C++.");
7336
7337 // We're looking for implicit instantiations of
7338 // template <typename E> class std::initializer_list.
7339
7340 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
7341 return false;
7342
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007343 ClassTemplateDecl *Template = nullptr;
7344 const TemplateArgument *Arguments = nullptr;
Sebastian Redl395e04d2012-01-17 22:49:33 +00007345
Sebastian Redl84760e32012-01-17 22:49:58 +00007346 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00007347
Sebastian Redl84760e32012-01-17 22:49:58 +00007348 ClassTemplateSpecializationDecl *Specialization =
7349 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
7350 if (!Specialization)
7351 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00007352
Sebastian Redl84760e32012-01-17 22:49:58 +00007353 Template = Specialization->getSpecializedTemplate();
7354 Arguments = Specialization->getTemplateArgs().data();
7355 } else if (const TemplateSpecializationType *TST =
7356 Ty->getAs<TemplateSpecializationType>()) {
7357 Template = dyn_cast_or_null<ClassTemplateDecl>(
7358 TST->getTemplateName().getAsTemplateDecl());
7359 Arguments = TST->getArgs();
7360 }
7361 if (!Template)
7362 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00007363
7364 if (!StdInitializerList) {
7365 // Haven't recognized std::initializer_list yet, maybe this is it.
7366 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
7367 if (TemplateClass->getIdentifier() !=
7368 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00007369 !getStdNamespace()->InEnclosingNamespaceSetOf(
7370 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00007371 return false;
7372 // This is a template called std::initializer_list, but is it the right
7373 // template?
7374 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00007375 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00007376 return false;
7377 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
7378 return false;
7379
7380 // It's the right template.
7381 StdInitializerList = Template;
7382 }
7383
Stephen Hines0e2c34f2015-03-23 12:09:02 -07007384 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl())
Sebastian Redl395e04d2012-01-17 22:49:33 +00007385 return false;
7386
7387 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00007388 if (Element)
7389 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00007390 return true;
7391}
7392
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007393static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
7394 NamespaceDecl *Std = S.getStdNamespace();
7395 if (!Std) {
7396 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007397 return nullptr;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007398 }
7399
7400 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
7401 Loc, Sema::LookupOrdinaryName);
7402 if (!S.LookupQualifiedName(Result, Std)) {
7403 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007404 return nullptr;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007405 }
7406 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
7407 if (!Template) {
7408 Result.suppressDiagnostics();
7409 // We found something weird. Complain about the first thing we found.
7410 NamedDecl *Found = *Result.begin();
7411 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007412 return nullptr;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007413 }
7414
7415 // We found some template called std::initializer_list. Now verify that it's
7416 // correct.
7417 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00007418 if (Params->getMinRequiredArguments() != 1 ||
7419 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007420 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007421 return nullptr;
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00007422 }
7423
7424 return Template;
7425}
7426
7427QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
7428 if (!StdInitializerList) {
7429 StdInitializerList = LookupStdInitializerList(*this, Loc);
7430 if (!StdInitializerList)
7431 return QualType();
7432 }
7433
7434 TemplateArgumentListInfo Args(Loc, Loc);
7435 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
7436 Context.getTrivialTypeSourceInfo(Element,
7437 Loc)));
7438 return Context.getCanonicalType(
7439 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
7440}
7441
Sebastian Redl98d36062012-01-17 22:50:14 +00007442bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
7443 // C++ [dcl.init.list]p2:
7444 // A constructor is an initializer-list constructor if its first parameter
7445 // is of type std::initializer_list<E> or reference to possibly cv-qualified
7446 // std::initializer_list<E> for some type E, and either there are no other
7447 // parameters or else all other parameters have default arguments.
7448 if (Ctor->getNumParams() < 1 ||
7449 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
7450 return false;
7451
7452 QualType ArgType = Ctor->getParamDecl(0)->getType();
7453 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
7454 ArgType = RT->getPointeeType().getUnqualifiedType();
7455
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007456 return isStdInitializerList(ArgType, nullptr);
Sebastian Redl98d36062012-01-17 22:50:14 +00007457}
7458
Douglas Gregor9172aa62011-03-26 22:25:30 +00007459/// \brief Determine whether a using statement is in a context where it will be
7460/// apply in all contexts.
7461static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
7462 switch (CurContext->getDeclKind()) {
7463 case Decl::TranslationUnit:
7464 return true;
7465 case Decl::LinkageSpec:
7466 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
7467 default:
7468 return false;
7469 }
7470}
7471
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00007472namespace {
7473
7474// Callback to only accept typo corrections that are namespaces.
7475class NamespaceValidatorCCC : public CorrectionCandidateCallback {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007476public:
Stephen Hines651f13c2014-04-23 16:59:28 -07007477 bool ValidateCandidate(const TypoCorrection &candidate) override {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007478 if (NamedDecl *ND = candidate.getCorrectionDecl())
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00007479 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00007480 return false;
7481 }
7482};
7483
7484}
7485
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007486static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
7487 CXXScopeSpec &SS,
7488 SourceLocation IdentLoc,
7489 IdentifierInfo *Ident) {
7490 R.clear();
Stephen Hines176edba2014-12-01 14:53:08 -08007491 if (TypoCorrection Corrected =
7492 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS,
7493 llvm::make_unique<NamespaceValidatorCCC>(),
7494 Sema::CTK_ErrorRecovery)) {
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +00007495 if (DeclContext *DC = S.computeDeclContext(SS, false)) {
Richard Smith2d670972013-08-17 00:46:16 +00007496 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
7497 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +00007498 Ident->getName().equals(CorrectedStr);
Richard Smith2d670972013-08-17 00:46:16 +00007499 S.diagnoseTypo(Corrected,
7500 S.PDiag(diag::err_using_directive_member_suggest)
7501 << Ident << DC << DroppedSpecifier << SS.getRange(),
7502 S.PDiag(diag::note_namespace_defined_here));
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +00007503 } else {
Richard Smith2d670972013-08-17 00:46:16 +00007504 S.diagnoseTypo(Corrected,
7505 S.PDiag(diag::err_using_directive_suggest) << Ident,
7506 S.PDiag(diag::note_namespace_defined_here));
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +00007507 }
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00007508 R.addDecl(Corrected.getCorrectionDecl());
7509 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007510 }
7511 return false;
7512}
7513
John McCalld226f652010-08-21 09:40:31 +00007514Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00007515 SourceLocation UsingLoc,
7516 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00007517 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00007518 SourceLocation IdentLoc,
7519 IdentifierInfo *NamespcName,
7520 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00007521 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
7522 assert(NamespcName && "Invalid NamespcName.");
7523 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00007524
7525 // This can only happen along a recovery path.
7526 while (S->getFlags() & Scope::TemplateParamScope)
7527 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007528 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00007529
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007530 UsingDirectiveDecl *UDir = nullptr;
7531 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregor66992202010-06-29 17:53:46 +00007532 if (SS.isSet())
Stephen Hines651f13c2014-04-23 16:59:28 -07007533 Qualifier = SS.getScopeRep();
Douglas Gregor66992202010-06-29 17:53:46 +00007534
Douglas Gregoreb11cd02009-01-14 22:20:51 +00007535 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00007536 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
7537 LookupParsedName(R, S, &SS);
7538 if (R.isAmbiguous())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007539 return nullptr;
John McCalla24dc2e2009-11-17 02:14:36 +00007540
Douglas Gregor66992202010-06-29 17:53:46 +00007541 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007542 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00007543 // Allow "using namespace std;" or "using namespace ::std;" even if
7544 // "std" hasn't been defined yet, for GCC compatibility.
7545 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
7546 NamespcName->isStr("std")) {
7547 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00007548 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00007549 R.resolveKind();
7550 }
7551 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007552 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00007553 }
7554
John McCallf36e02d2009-10-09 21:13:30 +00007555 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00007556 NamedDecl *Named = R.getFoundDecl();
7557 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
7558 && "expected namespace decl");
Stephen Hines176edba2014-12-01 14:53:08 -08007559
Stephen Hines0e2c34f2015-03-23 12:09:02 -07007560 // The use of a nested name specifier may trigger deprecation warnings.
7561 DiagnoseUseOfDecl(Named, IdentLoc);
Stephen Hines176edba2014-12-01 14:53:08 -08007562
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007563 // C++ [namespace.udir]p1:
7564 // A using-directive specifies that the names in the nominated
7565 // namespace can be used in the scope in which the
7566 // using-directive appears after the using-directive. During
7567 // unqualified name lookup (3.4.1), the names appear as if they
7568 // were declared in the nearest enclosing namespace which
7569 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00007570 // namespace. [Note: in this context, "contains" means "contains
7571 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007572
7573 // Find enclosing context containing both using-directive and
7574 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00007575 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007576 DeclContext *CommonAncestor = cast<DeclContext>(NS);
7577 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
7578 CommonAncestor = CommonAncestor->getParent();
7579
Sebastian Redleb0d8c92009-11-23 15:34:23 +00007580 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00007581 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00007582 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00007583
Douglas Gregor9172aa62011-03-26 22:25:30 +00007584 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Eli Friedman24146972013-08-22 00:27:10 +00007585 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00007586 Diag(IdentLoc, diag::warn_using_directive_in_header);
7587 }
7588
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007589 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00007590 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00007591 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00007592 }
7593
Richard Smith6b3d3e52013-02-20 19:22:51 +00007594 if (UDir)
7595 ProcessDeclAttributeList(S, UDir, AttrList);
7596
John McCalld226f652010-08-21 09:40:31 +00007597 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007598}
7599
7600void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00007601 // If the scope has an associated entity and the using directive is at
7602 // namespace or translation unit scope, add the UsingDirectiveDecl into
7603 // its lookup structure so qualified name lookup can find it.
Ted Kremenekf0d58612013-10-08 17:08:03 +00007604 DeclContext *Ctx = S->getEntity();
Richard Smith1b7f9cb2012-03-13 03:12:56 +00007605 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00007606 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00007607 else
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007608 // Otherwise, it is at block scope. The using-directives will affect lookup
Richard Smith1b7f9cb2012-03-13 03:12:56 +00007609 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00007610 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00007611}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00007612
Douglas Gregor9cfbe482009-06-20 00:51:54 +00007613
John McCalld226f652010-08-21 09:40:31 +00007614Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00007615 AccessSpecifier AS,
7616 bool HasUsingKeyword,
7617 SourceLocation UsingLoc,
7618 CXXScopeSpec &SS,
7619 UnqualifiedId &Name,
7620 AttributeList *AttrList,
Enea Zaffanella8d030c72013-07-22 10:54:09 +00007621 bool HasTypenameKeyword,
John McCall78b81052010-11-10 02:40:36 +00007622 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00007623 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00007624
Douglas Gregor12c118a2009-11-04 16:30:06 +00007625 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00007626 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00007627 case UnqualifiedId::IK_Identifier:
7628 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00007629 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00007630 case UnqualifiedId::IK_ConversionFunctionId:
7631 break;
7632
7633 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00007634 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00007635 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00007636 Diag(Name.getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00007637 getLangOpts().CPlusPlus11 ?
Richard Smith07b0fdc2013-03-18 21:12:30 +00007638 diag::warn_cxx98_compat_using_decl_constructor :
Richard Smithebaf0e62011-10-18 20:49:44 +00007639 diag::err_using_decl_constructor)
7640 << SS.getRange();
7641
Richard Smith80ad52f2013-01-02 11:42:31 +00007642 if (getLangOpts().CPlusPlus11) break;
John McCall604e7f12009-12-08 07:46:18 +00007643
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007644 return nullptr;
7645
Douglas Gregor12c118a2009-11-04 16:30:06 +00007646 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00007647 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00007648 << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007649 return nullptr;
7650
Douglas Gregor12c118a2009-11-04 16:30:06 +00007651 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00007652 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00007653 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007654 return nullptr;
Douglas Gregor12c118a2009-11-04 16:30:06 +00007655 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007656
7657 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
7658 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00007659 if (!TargetName)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007660 return nullptr;
John McCall604e7f12009-12-08 07:46:18 +00007661
Richard Smith07b0fdc2013-03-18 21:12:30 +00007662 // Warn about access declarations.
John McCall60fa3cf2009-12-11 02:10:03 +00007663 if (!HasUsingKeyword) {
Enea Zaffanellad4de59d2013-07-17 17:28:56 +00007664 Diag(Name.getLocStart(),
Richard Smith1b2209f2013-06-13 02:12:17 +00007665 getLangOpts().CPlusPlus11 ? diag::err_access_decl
7666 : diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00007667 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00007668 }
7669
Douglas Gregor56c04582010-12-16 00:46:58 +00007670 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
7671 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007672 return nullptr;
Douglas Gregor56c04582010-12-16 00:46:58 +00007673
John McCall9488ea12009-11-17 05:59:44 +00007674 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007675 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00007676 /* IsInstantiation */ false,
Enea Zaffanella8d030c72013-07-22 10:54:09 +00007677 HasTypenameKeyword, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00007678 if (UD)
7679 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00007680
John McCalld226f652010-08-21 09:40:31 +00007681 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00007682}
7683
Douglas Gregor09acc982010-07-07 23:08:52 +00007684/// \brief Determine whether a using declaration considers the given
7685/// declarations as "equivalent", e.g., if they are redeclarations of
7686/// the same entity or are both typedefs of the same type.
Richard Smithf06a28932013-10-23 02:17:46 +00007687static bool
7688IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) {
7689 if (D1->getCanonicalDecl() == D2->getCanonicalDecl())
Douglas Gregor09acc982010-07-07 23:08:52 +00007690 return true;
Douglas Gregor09acc982010-07-07 23:08:52 +00007691
Richard Smith162e1c12011-04-15 14:24:37 +00007692 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
Richard Smithf06a28932013-10-23 02:17:46 +00007693 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2))
Douglas Gregor09acc982010-07-07 23:08:52 +00007694 return Context.hasSameType(TD1->getUnderlyingType(),
7695 TD2->getUnderlyingType());
Douglas Gregor09acc982010-07-07 23:08:52 +00007696
7697 return false;
7698}
7699
7700
John McCall9f54ad42009-12-10 09:41:52 +00007701/// Determines whether to create a using shadow decl for a particular
7702/// decl, given the set of decls existing prior to this using lookup.
7703bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
Richard Smithf06a28932013-10-23 02:17:46 +00007704 const LookupResult &Previous,
7705 UsingShadowDecl *&PrevShadow) {
John McCall9f54ad42009-12-10 09:41:52 +00007706 // Diagnose finding a decl which is not from a base class of the
7707 // current class. We do this now because there are cases where this
7708 // function will silently decide not to build a shadow decl, which
7709 // will pre-empt further diagnostics.
7710 //
7711 // We don't need to do this in C++0x because we do the check once on
7712 // the qualifier.
7713 //
7714 // FIXME: diagnose the following if we care enough:
7715 // struct A { int foo; };
7716 // struct B : A { using A::foo; };
7717 // template <class T> struct C : A {};
7718 // template <class T> struct D : C<T> { using B::foo; } // <---
7719 // This is invalid (during instantiation) in C++03 because B::foo
7720 // resolves to the using decl in B, which is not a base class of D<T>.
7721 // We can't diagnose it immediately because C<T> is an unknown
7722 // specialization. The UsingShadowDecl in D<T> then points directly
7723 // to A::foo, which will look well-formed when we instantiate.
7724 // The right solution is to not collapse the shadow-decl chain.
Richard Smith80ad52f2013-01-02 11:42:31 +00007725 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00007726 DeclContext *OrigDC = Orig->getDeclContext();
7727
7728 // Handle enums and anonymous structs.
7729 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
7730 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
7731 while (OrigRec->isAnonymousStructOrUnion())
7732 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
7733
7734 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
7735 if (OrigDC == CurContext) {
7736 Diag(Using->getLocation(),
7737 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00007738 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00007739 Diag(Orig->getLocation(), diag::note_using_decl_target);
7740 return true;
7741 }
7742
Douglas Gregordc355712011-02-25 00:36:19 +00007743 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00007744 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00007745 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00007746 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00007747 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00007748 Diag(Orig->getLocation(), diag::note_using_decl_target);
7749 return true;
7750 }
7751 }
7752
7753 if (Previous.empty()) return false;
7754
7755 NamedDecl *Target = Orig;
7756 if (isa<UsingShadowDecl>(Target))
7757 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
7758
John McCalld7533ec2009-12-11 02:33:26 +00007759 // If the target happens to be one of the previous declarations, we
7760 // don't have a conflict.
7761 //
7762 // FIXME: but we might be increasing its access, in which case we
7763 // should redeclare it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007764 NamedDecl *NonTag = nullptr, *Tag = nullptr;
Richard Smithf06a28932013-10-23 02:17:46 +00007765 bool FoundEquivalentDecl = false;
John McCalld7533ec2009-12-11 02:33:26 +00007766 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7767 I != E; ++I) {
7768 NamedDecl *D = (*I)->getUnderlyingDecl();
Richard Smithf06a28932013-10-23 02:17:46 +00007769 if (IsEquivalentForUsingDecl(Context, D, Target)) {
7770 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I))
7771 PrevShadow = Shadow;
7772 FoundEquivalentDecl = true;
7773 }
John McCalld7533ec2009-12-11 02:33:26 +00007774
7775 (isa<TagDecl>(D) ? Tag : NonTag) = D;
7776 }
7777
Richard Smithf06a28932013-10-23 02:17:46 +00007778 if (FoundEquivalentDecl)
7779 return false;
7780
Stephen Hines651f13c2014-04-23 16:59:28 -07007781 if (FunctionDecl *FD = Target->getAsFunction()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007782 NamedDecl *OldDecl = nullptr;
7783 switch (CheckOverload(nullptr, FD, Previous, OldDecl,
7784 /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00007785 case Ovl_Overload:
7786 return false;
7787
7788 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00007789 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00007790 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07007791
John McCall9f54ad42009-12-10 09:41:52 +00007792 // We found a decl with the exact signature.
7793 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00007794 // If we're in a record, we want to hide the target, so we
7795 // return true (without a diagnostic) to tell the caller not to
7796 // build a shadow decl.
7797 if (CurContext->isRecord())
7798 return true;
7799
7800 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00007801 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00007802 break;
7803 }
7804
7805 Diag(Target->getLocation(), diag::note_using_decl_target);
7806 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
7807 return true;
7808 }
7809
7810 // Target is not a function.
7811
John McCall9f54ad42009-12-10 09:41:52 +00007812 if (isa<TagDecl>(Target)) {
7813 // No conflict between a tag and a non-tag.
7814 if (!Tag) return false;
7815
John McCall41ce66f2009-12-10 19:51:03 +00007816 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00007817 Diag(Target->getLocation(), diag::note_using_decl_target);
7818 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
7819 return true;
7820 }
7821
7822 // No conflict between a tag and a non-tag.
7823 if (!NonTag) return false;
7824
John McCall41ce66f2009-12-10 19:51:03 +00007825 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00007826 Diag(Target->getLocation(), diag::note_using_decl_target);
7827 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
7828 return true;
7829}
7830
John McCall9488ea12009-11-17 05:59:44 +00007831/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00007832UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00007833 UsingDecl *UD,
Richard Smithf06a28932013-10-23 02:17:46 +00007834 NamedDecl *Orig,
7835 UsingShadowDecl *PrevDecl) {
John McCall9488ea12009-11-17 05:59:44 +00007836
7837 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00007838 NamedDecl *Target = Orig;
7839 if (isa<UsingShadowDecl>(Target)) {
7840 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
7841 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00007842 }
Richard Smithf06a28932013-10-23 02:17:46 +00007843
John McCall9488ea12009-11-17 05:59:44 +00007844 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00007845 = UsingShadowDecl::Create(Context, CurContext,
7846 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00007847 UD->addShadowDecl(Shadow);
Richard Smithf06a28932013-10-23 02:17:46 +00007848
Douglas Gregore80622f2010-09-29 04:25:11 +00007849 Shadow->setAccess(UD->getAccess());
7850 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
7851 Shadow->setInvalidDecl();
Richard Smithf06a28932013-10-23 02:17:46 +00007852
7853 Shadow->setPreviousDecl(PrevDecl);
7854
John McCall9488ea12009-11-17 05:59:44 +00007855 if (S)
John McCall604e7f12009-12-08 07:46:18 +00007856 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00007857 else
John McCall604e7f12009-12-08 07:46:18 +00007858 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00007859
John McCall604e7f12009-12-08 07:46:18 +00007860
John McCall9f54ad42009-12-10 09:41:52 +00007861 return Shadow;
7862}
John McCall604e7f12009-12-08 07:46:18 +00007863
John McCall9f54ad42009-12-10 09:41:52 +00007864/// Hides a using shadow declaration. This is required by the current
7865/// using-decl implementation when a resolvable using declaration in a
7866/// class is followed by a declaration which would hide or override
7867/// one or more of the using decl's targets; for example:
7868///
7869/// struct Base { void foo(int); };
7870/// struct Derived : Base {
7871/// using Base::foo;
7872/// void foo(int);
7873/// };
7874///
7875/// The governing language is C++03 [namespace.udecl]p12:
7876///
7877/// When a using-declaration brings names from a base class into a
7878/// derived class scope, member functions in the derived class
7879/// override and/or hide member functions with the same name and
7880/// parameter types in a base class (rather than conflicting).
7881///
7882/// There are two ways to implement this:
7883/// (1) optimistically create shadow decls when they're not hidden
7884/// by existing declarations, or
7885/// (2) don't create any shadow decls (or at least don't make them
7886/// visible) until we've fully parsed/instantiated the class.
7887/// The problem with (1) is that we might have to retroactively remove
7888/// a shadow decl, which requires several O(n) operations because the
7889/// decl structures are (very reasonably) not designed for removal.
7890/// (2) avoids this but is very fiddly and phase-dependent.
7891void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00007892 if (Shadow->getDeclName().getNameKind() ==
7893 DeclarationName::CXXConversionFunctionName)
7894 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
7895
John McCall9f54ad42009-12-10 09:41:52 +00007896 // Remove it from the DeclContext...
7897 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00007898
John McCall9f54ad42009-12-10 09:41:52 +00007899 // ...and the scope, if applicable...
7900 if (S) {
John McCalld226f652010-08-21 09:40:31 +00007901 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00007902 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00007903 }
7904
John McCall9f54ad42009-12-10 09:41:52 +00007905 // ...and the using decl.
7906 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
7907
7908 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00007909 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00007910}
7911
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007912/// Find the base specifier for a base class with the given type.
7913static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived,
7914 QualType DesiredBase,
7915 bool &AnyDependentBases) {
7916 // Check whether the named type is a direct base class.
7917 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified();
7918 for (auto &Base : Derived->bases()) {
7919 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified();
7920 if (CanonicalDesiredBase == BaseType)
7921 return &Base;
7922 if (BaseType->isDependentType())
7923 AnyDependentBases = true;
7924 }
7925 return nullptr;
7926}
7927
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007928namespace {
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007929class UsingValidatorCCC : public CorrectionCandidateCallback {
7930public:
Kaelyn Uhrainb5c77682013-10-19 00:05:00 +00007931 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007932 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf)
Enea Zaffanella8d030c72013-07-22 10:54:09 +00007933 : HasTypenameKeyword(HasTypenameKeyword),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007934 IsInstantiation(IsInstantiation), OldNNS(NNS),
7935 RequireMemberOf(RequireMemberOf) {}
Enea Zaffanella8d030c72013-07-22 10:54:09 +00007936
Stephen Hines651f13c2014-04-23 16:59:28 -07007937 bool ValidateCandidate(const TypoCorrection &Candidate) override {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007938 NamedDecl *ND = Candidate.getCorrectionDecl();
7939
7940 // Keywords are not valid here.
7941 if (!ND || isa<NamespaceDecl>(ND))
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007942 return false;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007943
7944 // Completely unqualified names are invalid for a 'using' declaration.
7945 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
7946 return false;
7947
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007948 if (RequireMemberOf) {
7949 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
7950 if (FoundRecord && FoundRecord->isInjectedClassName()) {
7951 // No-one ever wants a using-declaration to name an injected-class-name
7952 // of a base class, unless they're declaring an inheriting constructor.
7953 ASTContext &Ctx = ND->getASTContext();
7954 if (!Ctx.getLangOpts().CPlusPlus11)
7955 return false;
7956 QualType FoundType = Ctx.getRecordType(FoundRecord);
7957
7958 // Check that the injected-class-name is named as a member of its own
7959 // type; we don't want to suggest 'using Derived::Base;', since that
7960 // means something else.
7961 NestedNameSpecifier *Specifier =
7962 Candidate.WillReplaceSpecifier()
7963 ? Candidate.getCorrectionSpecifier()
7964 : OldNNS;
7965 if (!Specifier->getAsType() ||
7966 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType))
7967 return false;
7968
7969 // Check that this inheriting constructor declaration actually names a
7970 // direct base class of the current class.
7971 bool AnyDependentBases = false;
7972 if (!findDirectBaseWithType(RequireMemberOf,
7973 Ctx.getRecordType(FoundRecord),
7974 AnyDependentBases) &&
7975 !AnyDependentBases)
7976 return false;
7977 } else {
7978 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext());
7979 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD))
7980 return false;
7981
7982 // FIXME: Check that the base class member is accessible?
7983 }
7984 }
7985
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007986 if (isa<TypeDecl>(ND))
7987 return HasTypenameKeyword || !IsInstantiation;
7988
7989 return !HasTypenameKeyword;
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007990 }
7991
7992private:
Enea Zaffanella8d030c72013-07-22 10:54:09 +00007993 bool HasTypenameKeyword;
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007994 bool IsInstantiation;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007995 NestedNameSpecifier *OldNNS;
7996 CXXRecordDecl *RequireMemberOf;
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007997};
Benjamin Kramer4c7736e2013-07-24 15:28:33 +00007998} // end anonymous namespace
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00007999
John McCall7ba107a2009-11-18 02:36:19 +00008000/// Builds a using declaration.
8001///
8002/// \param IsInstantiation - Whether this call arises from an
8003/// instantiation of an unresolved using declaration. We treat
8004/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00008005NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
8006 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00008007 CXXScopeSpec &SS,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008008 DeclarationNameInfo NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00008009 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00008010 bool IsInstantiation,
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008011 bool HasTypenameKeyword,
John McCall7ba107a2009-11-18 02:36:19 +00008012 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00008013 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00008014 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00008015 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00008016
Anders Carlsson550b14b2009-08-28 05:49:21 +00008017 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00008018
Anders Carlssoncf9f9212009-08-28 03:16:11 +00008019 if (SS.isEmpty()) {
8020 Diag(IdentLoc, diag::err_using_requires_qualname);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008021 return nullptr;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00008022 }
Mike Stump1eb44332009-09-09 15:08:12 +00008023
John McCall9f54ad42009-12-10 09:41:52 +00008024 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00008025 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00008026 ForRedeclaration);
8027 Previous.setHideTags(false);
8028 if (S) {
8029 LookupName(Previous, S);
8030
8031 // It is really dumb that we have to do this.
8032 LookupResult::Filter F = Previous.makeFilter();
8033 while (F.hasNext()) {
8034 NamedDecl *D = F.next();
8035 if (!isDeclInScope(D, CurContext, S))
8036 F.erase();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008037 // If we found a local extern declaration that's not ordinarily visible,
8038 // and this declaration is being added to a non-block scope, ignore it.
8039 // We're only checking for scope conflicts here, not also for violations
8040 // of the linkage rules.
8041 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() &&
8042 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary))
8043 F.erase();
John McCall9f54ad42009-12-10 09:41:52 +00008044 }
8045 F.done();
8046 } else {
8047 assert(IsInstantiation && "no scope in non-instantiation");
8048 assert(CurContext->isRecord() && "scope not record in instantiation");
8049 LookupQualifiedName(Previous, CurContext);
8050 }
8051
John McCall9f54ad42009-12-10 09:41:52 +00008052 // Check for invalid redeclarations.
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008053 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword,
8054 SS, IdentLoc, Previous))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008055 return nullptr;
John McCall9f54ad42009-12-10 09:41:52 +00008056
8057 // Check for bad qualifiers.
Stephen Hines651f13c2014-04-23 16:59:28 -07008058 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008059 return nullptr;
John McCalled976492009-12-04 22:46:56 +00008060
John McCallaf8e6ed2009-11-12 03:15:40 +00008061 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00008062 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00008063 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00008064 if (!LookupContext) {
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008065 if (HasTypenameKeyword) {
John McCalled976492009-12-04 22:46:56 +00008066 // FIXME: not all declaration name kinds are legal here
8067 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
8068 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00008069 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00008070 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00008071 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00008072 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
8073 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00008074 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008075 D->setAccess(AS);
8076 CurContext->addDecl(D);
8077 return D;
Anders Carlsson550b14b2009-08-28 05:49:21 +00008078 }
John McCalled976492009-12-04 22:46:56 +00008079
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008080 auto Build = [&](bool Invalid) {
8081 UsingDecl *UD =
8082 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo,
8083 HasTypenameKeyword);
8084 UD->setAccess(AS);
8085 CurContext->addDecl(UD);
8086 UD->setInvalidDecl(Invalid);
John McCall604e7f12009-12-08 07:46:18 +00008087 return UD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008088 };
8089 auto BuildInvalid = [&]{ return Build(true); };
8090 auto BuildValid = [&]{ return Build(false); };
8091
8092 if (RequireCompleteDeclContext(SS, LookupContext))
8093 return BuildInvalid();
Anders Carlssoncf9f9212009-08-28 03:16:11 +00008094
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -07008095 // Look up the target name.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00008096 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00008097
John McCall604e7f12009-12-08 07:46:18 +00008098 // Unlike most lookups, we don't always want to hide tag
8099 // declarations: tag names are visible through the using declaration
8100 // even if hidden by ordinary names, *except* in a dependent context
8101 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00008102 if (!IsInstantiation)
8103 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00008104
John McCallb9abd8722012-04-07 03:04:20 +00008105 // For the purposes of this lookup, we have a base object type
8106 // equal to that of the current context.
8107 if (CurContext->isRecord()) {
8108 R.setBaseObjectType(
8109 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
8110 }
8111
John McCalla24dc2e2009-11-17 02:14:36 +00008112 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00008113
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -07008114 // Try to correct typos if possible. If constructor name lookup finds no
8115 // results, that means the named class has no explicit constructors, and we
8116 // suppressed declaring implicit ones (probably because it's dependent or
8117 // invalid).
8118 if (R.empty() &&
8119 NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) {
Stephen Hines176edba2014-12-01 14:53:08 -08008120 if (TypoCorrection Corrected = CorrectTypo(
8121 R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
8122 llvm::make_unique<UsingValidatorCCC>(
8123 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(),
8124 dyn_cast<CXXRecordDecl>(CurContext)),
8125 CTK_ErrorRecovery)) {
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00008126 // We reject any correction for which ND would be NULL.
8127 NamedDecl *ND = Corrected.getCorrectionDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008128
Richard Smith2d670972013-08-17 00:46:16 +00008129 // We reject candidates where DroppedSpecifier == true, hence the
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00008130 // literal '0' below.
Richard Smith2d670972013-08-17 00:46:16 +00008131 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
8132 << NameInfo.getName() << LookupContext << 0
8133 << SS.getRange());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008134
8135 // If we corrected to an inheriting constructor, handle it as one.
8136 auto *RD = dyn_cast<CXXRecordDecl>(ND);
8137 if (RD && RD->isInjectedClassName()) {
8138 // Fix up the information we'll use to build the using declaration.
8139 if (Corrected.WillReplaceSpecifier()) {
8140 NestedNameSpecifierLocBuilder Builder;
8141 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
8142 QualifierLoc.getSourceRange());
8143 QualifierLoc = Builder.getWithLocInContext(Context);
8144 }
8145
8146 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
8147 Context.getCanonicalType(Context.getRecordType(RD))));
8148 NameInfo.setNamedTypeInfo(nullptr);
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -07008149 for (auto *Ctor : LookupConstructors(RD))
8150 R.addDecl(Ctor);
8151 } else {
8152 // FIXME: Pick up all the declarations if we found an overloaded function.
8153 R.addDecl(ND);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008154 }
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00008155 } else {
Richard Smith2d670972013-08-17 00:46:16 +00008156 Diag(IdentLoc, diag::err_no_member)
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00008157 << NameInfo.getName() << LookupContext << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008158 return BuildInvalid();
Kaelyn Uhrain0daf1f42013-07-10 17:34:22 +00008159 }
Douglas Gregor9cfbe482009-06-20 00:51:54 +00008160 }
8161
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008162 if (R.isAmbiguous())
8163 return BuildInvalid();
Mike Stump1eb44332009-09-09 15:08:12 +00008164
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008165 if (HasTypenameKeyword) {
John McCall7ba107a2009-11-18 02:36:19 +00008166 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00008167 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00008168 Diag(IdentLoc, diag::err_using_typename_non_type);
8169 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
8170 Diag((*I)->getUnderlyingDecl()->getLocation(),
8171 diag::note_using_decl_target);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008172 return BuildInvalid();
John McCall7ba107a2009-11-18 02:36:19 +00008173 }
8174 } else {
8175 // If we asked for a non-typename and we got a type, error out,
8176 // but only if this is an instantiation of an unresolved using
8177 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00008178 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00008179 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
8180 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008181 return BuildInvalid();
John McCall7ba107a2009-11-18 02:36:19 +00008182 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00008183 }
8184
Anders Carlsson73b39cf2009-08-28 03:35:18 +00008185 // C++0x N2914 [namespace.udecl]p6:
8186 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00008187 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00008188 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
8189 << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008190 return BuildInvalid();
Anders Carlsson73b39cf2009-08-28 03:35:18 +00008191 }
Mike Stump1eb44332009-09-09 15:08:12 +00008192
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008193 UsingDecl *UD = BuildValid();
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -07008194
8195 // The normal rules do not apply to inheriting constructor declarations.
8196 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
8197 // Suppress access diagnostics; the access check is instead performed at the
8198 // point of use for an inheriting constructor.
8199 R.suppressDiagnostics();
8200 CheckInheritingConstructorUsingDecl(UD);
8201 return UD;
8202 }
8203
8204 // Otherwise, look up the target name.
8205
John McCall9f54ad42009-12-10 09:41:52 +00008206 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008207 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithf06a28932013-10-23 02:17:46 +00008208 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl))
8209 BuildUsingShadowDecl(S, UD, *I, PrevDecl);
John McCall9f54ad42009-12-10 09:41:52 +00008210 }
John McCall9488ea12009-11-17 05:59:44 +00008211
8212 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00008213}
8214
Sebastian Redlf677ea32011-02-05 19:23:19 +00008215/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00008216bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008217 assert(!UD->hasTypename() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00008218
Douglas Gregordc355712011-02-25 00:36:19 +00008219 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008220 assert(SourceType &&
8221 "Using decl naming constructor doesn't have type in scope spec.");
8222 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
8223
8224 // Check whether the named type is a direct base class.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008225 bool AnyDependentBases = false;
8226 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0),
8227 AnyDependentBases);
8228 if (!Base && !AnyDependentBases) {
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008229 Diag(UD->getUsingLoc(),
Sebastian Redlf677ea32011-02-05 19:23:19 +00008230 diag::err_using_decl_constructor_not_in_direct_base)
8231 << UD->getNameInfo().getSourceRange()
8232 << QualType(SourceType, 0) << TargetClass;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008233 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008234 return true;
8235 }
8236
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008237 if (Base)
8238 Base->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008239
8240 return false;
8241}
8242
John McCall9f54ad42009-12-10 09:41:52 +00008243/// Checks that the given using declaration is not an invalid
8244/// redeclaration. Note that this is checking only for the using decl
8245/// itself, not for any ill-formedness among the UsingShadowDecls.
8246bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008247 bool HasTypenameKeyword,
John McCall9f54ad42009-12-10 09:41:52 +00008248 const CXXScopeSpec &SS,
8249 SourceLocation NameLoc,
8250 const LookupResult &Prev) {
8251 // C++03 [namespace.udecl]p8:
8252 // C++0x [namespace.udecl]p10:
8253 // A using-declaration is a declaration and can therefore be used
8254 // repeatedly where (and only where) multiple declarations are
8255 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00008256 //
John McCall8a726212010-11-29 18:01:58 +00008257 // That's in non-member contexts.
8258 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00008259 return false;
8260
Stephen Hines651f13c2014-04-23 16:59:28 -07008261 NestedNameSpecifier *Qual = SS.getScopeRep();
John McCall9f54ad42009-12-10 09:41:52 +00008262
8263 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
8264 NamedDecl *D = *I;
8265
8266 bool DTypename;
8267 NestedNameSpecifier *DQual;
8268 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008269 DTypename = UD->hasTypename();
Douglas Gregordc355712011-02-25 00:36:19 +00008270 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00008271 } else if (UnresolvedUsingValueDecl *UD
8272 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
8273 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00008274 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00008275 } else if (UnresolvedUsingTypenameDecl *UD
8276 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
8277 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00008278 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00008279 } else continue;
8280
8281 // using decls differ if one says 'typename' and the other doesn't.
8282 // FIXME: non-dependent using decls?
Enea Zaffanella8d030c72013-07-22 10:54:09 +00008283 if (HasTypenameKeyword != DTypename) continue;
John McCall9f54ad42009-12-10 09:41:52 +00008284
8285 // using decls differ if they name different scopes (but note that
8286 // template instantiation can cause this check to trigger when it
8287 // didn't before instantiation).
8288 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
8289 Context.getCanonicalNestedNameSpecifier(DQual))
8290 continue;
8291
8292 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00008293 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00008294 return true;
8295 }
8296
8297 return false;
8298}
8299
John McCall604e7f12009-12-08 07:46:18 +00008300
John McCalled976492009-12-04 22:46:56 +00008301/// Checks that the given nested-name qualifier used in a using decl
8302/// in the current context is appropriately related to the current
8303/// scope. If an error is found, diagnoses it and returns true.
8304bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
8305 const CXXScopeSpec &SS,
Stephen Hines651f13c2014-04-23 16:59:28 -07008306 const DeclarationNameInfo &NameInfo,
John McCalled976492009-12-04 22:46:56 +00008307 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00008308 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00008309
John McCall604e7f12009-12-08 07:46:18 +00008310 if (!CurContext->isRecord()) {
8311 // C++03 [namespace.udecl]p3:
8312 // C++0x [namespace.udecl]p8:
8313 // A using-declaration for a class member shall be a member-declaration.
8314
8315 // If we weren't able to compute a valid scope, it must be a
8316 // dependent class scope.
8317 if (!NamedContext || NamedContext->isRecord()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07008318 auto *RD = dyn_cast_or_null<CXXRecordDecl>(NamedContext);
Stephen Hines651f13c2014-04-23 16:59:28 -07008319 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008320 RD = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07008321
John McCall604e7f12009-12-08 07:46:18 +00008322 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
8323 << SS.getRange();
Stephen Hines651f13c2014-04-23 16:59:28 -07008324
8325 // If we have a complete, non-dependent source type, try to suggest a
8326 // way to get the same effect.
8327 if (!RD)
8328 return true;
8329
8330 // Find what this using-declaration was referring to.
8331 LookupResult R(*this, NameInfo, LookupOrdinaryName);
8332 R.setHideTags(false);
8333 R.suppressDiagnostics();
8334 LookupQualifiedName(R, RD);
8335
8336 if (R.getAsSingle<TypeDecl>()) {
8337 if (getLangOpts().CPlusPlus11) {
8338 // Convert 'using X::Y;' to 'using Y = X::Y;'.
8339 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround)
8340 << 0 // alias declaration
8341 << FixItHint::CreateInsertion(SS.getBeginLoc(),
8342 NameInfo.getName().getAsString() +
8343 " = ");
8344 } else {
8345 // Convert 'using X::Y;' to 'typedef X::Y Y;'.
8346 SourceLocation InsertLoc =
8347 PP.getLocForEndOfToken(NameInfo.getLocEnd());
8348 Diag(InsertLoc, diag::note_using_decl_class_member_workaround)
8349 << 1 // typedef declaration
8350 << FixItHint::CreateReplacement(UsingLoc, "typedef")
8351 << FixItHint::CreateInsertion(
8352 InsertLoc, " " + NameInfo.getName().getAsString());
8353 }
8354 } else if (R.getAsSingle<VarDecl>()) {
8355 // Don't provide a fixit outside C++11 mode; we don't want to suggest
8356 // repeating the type of the static data member here.
8357 FixItHint FixIt;
8358 if (getLangOpts().CPlusPlus11) {
8359 // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
8360 FixIt = FixItHint::CreateReplacement(
8361 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = ");
8362 }
8363
8364 Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
8365 << 2 // reference declaration
8366 << FixIt;
8367 }
John McCall604e7f12009-12-08 07:46:18 +00008368 return true;
8369 }
8370
8371 // Otherwise, everything is known to be fine.
8372 return false;
8373 }
8374
8375 // The current scope is a record.
8376
8377 // If the named context is dependent, we can't decide much.
8378 if (!NamedContext) {
8379 // FIXME: in C++0x, we can diagnose if we can prove that the
8380 // nested-name-specifier does not refer to a base class, which is
8381 // still possible in some cases.
8382
8383 // Otherwise we have to conservatively report that things might be
8384 // okay.
8385 return false;
8386 }
8387
8388 if (!NamedContext->isRecord()) {
8389 // Ideally this would point at the last name in the specifier,
8390 // but we don't have that level of source info.
8391 Diag(SS.getRange().getBegin(),
8392 diag::err_using_decl_nested_name_specifier_is_not_class)
Stephen Hines651f13c2014-04-23 16:59:28 -07008393 << SS.getScopeRep() << SS.getRange();
John McCall604e7f12009-12-08 07:46:18 +00008394 return true;
8395 }
8396
Douglas Gregor6fb07292010-12-21 07:41:49 +00008397 if (!NamedContext->isDependentContext() &&
8398 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
8399 return true;
8400
Richard Smith80ad52f2013-01-02 11:42:31 +00008401 if (getLangOpts().CPlusPlus11) {
John McCall604e7f12009-12-08 07:46:18 +00008402 // C++0x [namespace.udecl]p3:
8403 // In a using-declaration used as a member-declaration, the
8404 // nested-name-specifier shall name a base class of the class
8405 // being defined.
8406
8407 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
8408 cast<CXXRecordDecl>(NamedContext))) {
8409 if (CurContext == NamedContext) {
8410 Diag(NameLoc,
8411 diag::err_using_decl_nested_name_specifier_is_current_class)
8412 << SS.getRange();
8413 return true;
8414 }
8415
8416 Diag(SS.getRange().getBegin(),
8417 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Stephen Hines651f13c2014-04-23 16:59:28 -07008418 << SS.getScopeRep()
John McCall604e7f12009-12-08 07:46:18 +00008419 << cast<CXXRecordDecl>(CurContext)
8420 << SS.getRange();
8421 return true;
8422 }
8423
8424 return false;
8425 }
8426
8427 // C++03 [namespace.udecl]p4:
8428 // A using-declaration used as a member-declaration shall refer
8429 // to a member of a base class of the class being defined [etc.].
8430
8431 // Salient point: SS doesn't have to name a base class as long as
8432 // lookup only finds members from base classes. Therefore we can
8433 // diagnose here only if we can prove that that can't happen,
8434 // i.e. if the class hierarchies provably don't intersect.
8435
8436 // TODO: it would be nice if "definitely valid" results were cached
8437 // in the UsingDecl and UsingShadowDecl so that these checks didn't
8438 // need to be repeated.
8439
8440 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00008441 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00008442
8443 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
8444 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
8445 Data->Bases.insert(Base);
8446 return true;
8447 }
8448
8449 bool hasDependentBases(const CXXRecordDecl *Class) {
8450 return !Class->forallBases(collect, this);
8451 }
8452
8453 /// Returns true if the base is dependent or is one of the
8454 /// accumulated base classes.
8455 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
8456 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
8457 return !Data->Bases.count(Base);
8458 }
8459
8460 bool mightShareBases(const CXXRecordDecl *Class) {
8461 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
8462 }
8463 };
8464
8465 UserData Data;
8466
8467 // Returns false if we find a dependent base.
8468 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
8469 return false;
8470
8471 // Returns false if the class has a dependent base or if it or one
8472 // of its bases is present in the base set of the current context.
8473 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
8474 return false;
8475
8476 Diag(SS.getRange().getBegin(),
8477 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Stephen Hines651f13c2014-04-23 16:59:28 -07008478 << SS.getScopeRep()
John McCall604e7f12009-12-08 07:46:18 +00008479 << cast<CXXRecordDecl>(CurContext)
8480 << SS.getRange();
8481
8482 return true;
John McCalled976492009-12-04 22:46:56 +00008483}
8484
Richard Smith162e1c12011-04-15 14:24:37 +00008485Decl *Sema::ActOnAliasDeclaration(Scope *S,
8486 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00008487 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00008488 SourceLocation UsingLoc,
8489 UnqualifiedId &Name,
Richard Smith6b3d3e52013-02-20 19:22:51 +00008490 AttributeList *AttrList,
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07008491 TypeResult Type,
8492 Decl *DeclFromDeclSpec) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00008493 // Skip up to the relevant declaration scope.
8494 while (S->getFlags() & Scope::TemplateParamScope)
8495 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00008496 assert((S->getFlags() & Scope::DeclScope) &&
8497 "got alias-declaration outside of declaration scope");
8498
8499 if (Type.isInvalid())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008500 return nullptr;
Richard Smith162e1c12011-04-15 14:24:37 +00008501
8502 bool Invalid = false;
8503 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008504 TypeSourceInfo *TInfo = nullptr;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00008505 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00008506
8507 if (DiagnoseClassNameShadow(CurContext, NameInfo))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008508 return nullptr;
Richard Smith162e1c12011-04-15 14:24:37 +00008509
8510 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00008511 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00008512 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00008513 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
8514 TInfo->getTypeLoc().getBeginLoc());
8515 }
Richard Smith162e1c12011-04-15 14:24:37 +00008516
8517 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
8518 LookupName(Previous, S);
8519
8520 // Warn about shadowing the name of a template parameter.
8521 if (Previous.isSingleResult() &&
8522 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00008523 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00008524 Previous.clear();
8525 }
8526
8527 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
8528 "name in alias declaration must be an identifier");
8529 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
8530 Name.StartLocation,
8531 Name.Identifier, TInfo);
8532
8533 NewTD->setAccess(AS);
8534
8535 if (Invalid)
8536 NewTD->setInvalidDecl();
8537
Richard Smith6b3d3e52013-02-20 19:22:51 +00008538 ProcessDeclAttributeList(S, NewTD, AttrList);
8539
Richard Smith3e4c6c42011-05-05 21:57:07 +00008540 CheckTypedefForVariablyModifiedType(S, NewTD);
8541 Invalid |= NewTD->isInvalidDecl();
8542
Richard Smith162e1c12011-04-15 14:24:37 +00008543 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00008544
8545 NamedDecl *NewND;
8546 if (TemplateParamLists.size()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008547 TypeAliasTemplateDecl *OldDecl = nullptr;
8548 TemplateParameterList *OldTemplateParams = nullptr;
Richard Smith3e4c6c42011-05-05 21:57:07 +00008549
8550 if (TemplateParamLists.size() != 1) {
8551 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008552 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
8553 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00008554 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008555 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00008556
8557 // Only consider previous declarations in the same scope.
8558 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
8559 /*ExplicitInstantiationOrSpecialization*/false);
8560 if (!Previous.empty()) {
8561 Redeclaration = true;
8562
8563 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
8564 if (!OldDecl && !Invalid) {
8565 Diag(UsingLoc, diag::err_redefinition_different_kind)
8566 << Name.Identifier;
8567
8568 NamedDecl *OldD = Previous.getRepresentativeDecl();
8569 if (OldD->getLocation().isValid())
8570 Diag(OldD->getLocation(), diag::note_previous_definition);
8571
8572 Invalid = true;
8573 }
8574
8575 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
8576 if (TemplateParameterListsAreEqual(TemplateParams,
8577 OldDecl->getTemplateParameters(),
8578 /*Complain=*/true,
8579 TPL_TemplateMatch))
8580 OldTemplateParams = OldDecl->getTemplateParameters();
8581 else
8582 Invalid = true;
8583
8584 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
8585 if (!Invalid &&
8586 !Context.hasSameType(OldTD->getUnderlyingType(),
8587 NewTD->getUnderlyingType())) {
8588 // FIXME: The C++0x standard does not clearly say this is ill-formed,
8589 // but we can't reasonably accept it.
8590 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
8591 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
8592 if (OldTD->getLocation().isValid())
8593 Diag(OldTD->getLocation(), diag::note_previous_definition);
8594 Invalid = true;
8595 }
8596 }
8597 }
8598
8599 // Merge any previous default template arguments into our parameters,
8600 // and check the parameter list.
8601 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
8602 TPC_TypeAliasTemplate))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008603 return nullptr;
Richard Smith3e4c6c42011-05-05 21:57:07 +00008604
8605 TypeAliasTemplateDecl *NewDecl =
8606 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
8607 Name.Identifier, TemplateParams,
8608 NewTD);
Stephen Hines176edba2014-12-01 14:53:08 -08008609 NewTD->setDescribedAliasTemplate(NewDecl);
Richard Smith3e4c6c42011-05-05 21:57:07 +00008610
8611 NewDecl->setAccess(AS);
8612
8613 if (Invalid)
8614 NewDecl->setInvalidDecl();
8615 else if (OldDecl)
Rafael Espindolabc650912013-10-17 15:37:26 +00008616 NewDecl->setPreviousDecl(OldDecl);
Richard Smith3e4c6c42011-05-05 21:57:07 +00008617
8618 NewND = NewDecl;
8619 } else {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07008620 if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) {
8621 setTagNameForLinkagePurposes(TD, NewTD);
8622 handleTagNumbering(TD, S);
8623 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00008624 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
8625 NewND = NewTD;
8626 }
Richard Smith162e1c12011-04-15 14:24:37 +00008627
8628 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00008629 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00008630
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00008631 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00008632 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00008633}
8634
Stephen Hines176edba2014-12-01 14:53:08 -08008635Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc,
8636 SourceLocation AliasLoc,
8637 IdentifierInfo *Alias, CXXScopeSpec &SS,
8638 SourceLocation IdentLoc,
8639 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00008640
Anders Carlsson81c85c42009-03-28 23:53:49 +00008641 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00008642 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
8643 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00008644
John McCalla24dc2e2009-11-17 02:14:36 +00008645 if (R.isAmbiguous())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008646 return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00008647
John McCallf36e02d2009-10-09 21:13:30 +00008648 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00008649 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00008650 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008651 return nullptr;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00008652 }
Anders Carlsson5721c682009-03-28 06:42:02 +00008653 }
Stephen Hines176edba2014-12-01 14:53:08 -08008654 assert(!R.isAmbiguous() && !R.empty());
8655
8656 // Check if we have a previous declaration with the same name.
8657 NamedDecl *PrevDecl = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
8658 ForRedeclaration);
8659 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
8660 PrevDecl = nullptr;
8661
8662 NamedDecl *ND = R.getFoundDecl();
8663
8664 if (PrevDecl) {
8665 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
8666 // We already have an alias with the same name that points to the same
8667 // namespace; check that it matches.
8668 if (!AD->getNamespace()->Equals(getNamespaceDecl(ND))) {
8669 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias)
8670 << Alias;
8671 Diag(PrevDecl->getLocation(), diag::note_previous_namespace_alias)
8672 << AD->getNamespace();
8673 return nullptr;
8674 }
8675 } else {
8676 unsigned DiagID = isa<NamespaceDecl>(PrevDecl)
8677 ? diag::err_redefinition
8678 : diag::err_redefinition_different_kind;
8679 Diag(AliasLoc, DiagID) << Alias;
8680 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
8681 return nullptr;
8682 }
8683 }
8684
Stephen Hines0e2c34f2015-03-23 12:09:02 -07008685 // The use of a nested name specifier may trigger deprecation warnings.
Stephen Hines176edba2014-12-01 14:53:08 -08008686 DiagnoseUseOfDecl(ND, IdentLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00008687
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00008688 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00008689 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00008690 Alias, SS.getWithLocInContext(Context),
Stephen Hines176edba2014-12-01 14:53:08 -08008691 IdentLoc, ND);
8692 if (PrevDecl)
8693 AliasDecl->setPreviousDecl(cast<NamespaceAliasDecl>(PrevDecl));
Mike Stump1eb44332009-09-09 15:08:12 +00008694
John McCall3dbd3d52010-02-16 06:53:13 +00008695 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00008696 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00008697}
8698
Sean Hunt001cad92011-05-10 00:49:42 +00008699Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008700Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
8701 CXXMethodDecl *MD) {
8702 CXXRecordDecl *ClassDecl = MD->getParent();
8703
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008704 // C++ [except.spec]p14:
8705 // An implicitly declared special member function (Clause 12) shall have an
8706 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008707 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008708 if (ClassDecl->isInvalidDecl())
8709 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008710
Sebastian Redl60618fa2011-03-12 11:50:43 +00008711 // Direct base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008712 for (const auto &B : ClassDecl->bases()) {
8713 if (B.isVirtual()) // Handled below.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008714 continue;
8715
Stephen Hines651f13c2014-04-23 16:59:28 -07008716 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Douglas Gregor18274032010-07-03 00:47:00 +00008717 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00008718 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8719 // If this is a deleted function, add it anyway. This might be conformant
8720 // with the standard. This might not. I'm not sure. It might not matter.
8721 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -07008722 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00008723 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008724 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008725
8726 // Virtual base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008727 for (const auto &B : ClassDecl->vbases()) {
8728 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Douglas Gregor18274032010-07-03 00:47:00 +00008729 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00008730 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8731 // If this is a deleted function, add it anyway. This might be conformant
8732 // with the standard. This might not. I'm not sure. It might not matter.
8733 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -07008734 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00008735 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008736 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008737
8738 // Field constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008739 for (const auto *F : ClassDecl->fields()) {
Richard Smith7a614d82011-06-11 17:19:42 +00008740 if (F->hasInClassInitializer()) {
8741 if (Expr *E = F->getInClassInitializer())
8742 ExceptSpec.CalledExpr(E);
Richard Smith7a614d82011-06-11 17:19:42 +00008743 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00008744 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00008745 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8746 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
8747 // If this is a deleted function, add it anyway. This might be conformant
8748 // with the standard. This might not. I'm not sure. It might not matter.
8749 // In particular, the problem is that this function never gets called. It
8750 // might just be ill-formed because this function attempts to refer to
8751 // a deleted function here.
8752 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008753 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00008754 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008755 }
John McCalle23cf432010-12-14 08:05:40 +00008756
Sean Hunt001cad92011-05-10 00:49:42 +00008757 return ExceptSpec;
8758}
8759
Richard Smith07b0fdc2013-03-18 21:12:30 +00008760Sema::ImplicitExceptionSpecification
Richard Smith0b0ca472013-04-10 06:11:48 +00008761Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) {
8762 CXXRecordDecl *ClassDecl = CD->getParent();
8763
8764 // C++ [except.spec]p14:
8765 // An inheriting constructor [...] shall have an exception-specification. [...]
Richard Smith07b0fdc2013-03-18 21:12:30 +00008766 ImplicitExceptionSpecification ExceptSpec(*this);
Richard Smith0b0ca472013-04-10 06:11:48 +00008767 if (ClassDecl->isInvalidDecl())
8768 return ExceptSpec;
8769
8770 // Inherited constructor.
8771 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor();
8772 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent();
8773 // FIXME: Copying or moving the parameters could add extra exceptions to the
8774 // set, as could the default arguments for the inherited constructor. This
8775 // will be addressed when we implement the resolution of core issue 1351.
8776 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD);
8777
8778 // Direct base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008779 for (const auto &B : ClassDecl->bases()) {
8780 if (B.isVirtual()) // Handled below.
Richard Smith0b0ca472013-04-10 06:11:48 +00008781 continue;
8782
Stephen Hines651f13c2014-04-23 16:59:28 -07008783 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Richard Smith0b0ca472013-04-10 06:11:48 +00008784 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8785 if (BaseClassDecl == InheritedDecl)
8786 continue;
8787 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8788 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -07008789 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Richard Smith0b0ca472013-04-10 06:11:48 +00008790 }
8791 }
8792
8793 // Virtual base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008794 for (const auto &B : ClassDecl->vbases()) {
8795 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Richard Smith0b0ca472013-04-10 06:11:48 +00008796 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8797 if (BaseClassDecl == InheritedDecl)
8798 continue;
8799 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8800 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -07008801 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Richard Smith0b0ca472013-04-10 06:11:48 +00008802 }
8803 }
8804
8805 // Field constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07008806 for (const auto *F : ClassDecl->fields()) {
Richard Smith0b0ca472013-04-10 06:11:48 +00008807 if (F->hasInClassInitializer()) {
8808 if (Expr *E = F->getInClassInitializer())
8809 ExceptSpec.CalledExpr(E);
Richard Smith0b0ca472013-04-10 06:11:48 +00008810 } else if (const RecordType *RecordTy
8811 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
8812 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8813 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
8814 if (Constructor)
8815 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
8816 }
8817 }
8818
Richard Smith07b0fdc2013-03-18 21:12:30 +00008819 return ExceptSpec;
8820}
8821
Richard Smithafb49182012-11-29 01:34:07 +00008822namespace {
8823/// RAII object to register a special member as being currently declared.
8824struct DeclaringSpecialMember {
8825 Sema &S;
8826 Sema::SpecialMemberDecl D;
8827 bool WasAlreadyBeingDeclared;
8828
8829 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
8830 : S(S), D(RD, CSM) {
Stephen Hines176edba2014-12-01 14:53:08 -08008831 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second;
Richard Smithafb49182012-11-29 01:34:07 +00008832 if (WasAlreadyBeingDeclared)
8833 // This almost never happens, but if it does, ensure that our cache
8834 // doesn't contain a stale result.
8835 S.SpecialMemberCache.clear();
8836
8837 // FIXME: Register a note to be produced if we encounter an error while
8838 // declaring the special member.
8839 }
8840 ~DeclaringSpecialMember() {
8841 if (!WasAlreadyBeingDeclared)
8842 S.SpecialMembersBeingDeclared.erase(D);
8843 }
8844
8845 /// \brief Are we already trying to declare this special member?
8846 bool isAlreadyBeingDeclared() const {
8847 return WasAlreadyBeingDeclared;
8848 }
8849};
8850}
8851
Sean Hunt001cad92011-05-10 00:49:42 +00008852CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
8853 CXXRecordDecl *ClassDecl) {
8854 // C++ [class.ctor]p5:
8855 // A default constructor for a class X is a constructor of class X
8856 // that can be called without an argument. If there is no
8857 // user-declared constructor for class X, a default constructor is
8858 // implicitly declared. An implicitly-declared default constructor
8859 // is an inline public member of its class.
Stephen Hines176edba2014-12-01 14:53:08 -08008860 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00008861 "Should not build implicit default constructor!");
8862
Richard Smithafb49182012-11-29 01:34:07 +00008863 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
8864 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008865 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +00008866
Richard Smith7756afa2012-06-10 05:43:50 +00008867 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8868 CXXDefaultConstructor,
8869 false);
8870
Douglas Gregoreb8c6702010-07-01 22:31:05 +00008871 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00008872 CanQualType ClassType
8873 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008874 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00008875 DeclarationName Name
8876 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008877 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00008878 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008879 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(),
8880 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true,
8881 /*isImplicitlyDeclared=*/true, Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00008882 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00008883 DefaultCon->setDefaulted();
Stephen Hines176edba2014-12-01 14:53:08 -08008884
8885 if (getLangOpts().CUDA) {
8886 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor,
8887 DefaultCon,
8888 /* ConstRHS */ false,
8889 /* Diagnose */ false);
8890 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008891
8892 // Build an exception specification pointing back at this constructor.
Reid Kleckneref072032013-08-27 23:08:25 +00008893 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon);
Dmitri Gribenko55431692013-05-05 00:41:58 +00008894 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00008895
Richard Smithbc2a35d2012-12-08 08:32:28 +00008896 // We don't need to use SpecialMemberIsTrivial here; triviality for default
8897 // constructors is easy to compute.
8898 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
8899
8900 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00008901 SetDeclDeleted(DefaultCon, ClassLoc);
Richard Smithbc2a35d2012-12-08 08:32:28 +00008902
Douglas Gregor18274032010-07-03 00:47:00 +00008903 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00008904 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
Richard Smithbc2a35d2012-12-08 08:32:28 +00008905
Douglas Gregor23c94db2010-07-02 17:43:08 +00008906 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00008907 PushOnScopeChains(DefaultCon, S, false);
8908 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00008909
Douglas Gregor32df23e2010-07-01 22:02:46 +00008910 return DefaultCon;
8911}
8912
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00008913void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
8914 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00008915 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00008916 !Constructor->doesThisDeclarationHaveABody() &&
8917 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00008918 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008919
Anders Carlssonf6513ed2010-04-23 16:04:08 +00008920 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00008921 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00008922
Eli Friedman9a14db32012-10-18 20:14:08 +00008923 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008924 DiagnosticErrorTrap Trap(Diags);
David Blaikie93c86172013-01-17 05:26:25 +00008925 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008926 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00008927 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00008928 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00008929 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00008930 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00008931 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00008932
Stephen Hines176edba2014-12-01 14:53:08 -08008933 // The exception specification is needed because we are defining the
8934 // function.
8935 ResolveExceptionSpec(CurrentLocation,
8936 Constructor->getType()->castAs<FunctionProtoType>());
8937
Stephen Hinesc568f1e2014-07-21 00:47:37 -07008938 SourceLocation Loc = Constructor->getLocEnd().isValid()
8939 ? Constructor->getLocEnd()
8940 : Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008941 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00008942
Eli Friedman86164e82013-09-05 00:02:25 +00008943 Constructor->markUsed(Context);
Douglas Gregor4ada9d32010-09-20 16:48:21 +00008944 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008945
8946 if (ASTMutationListener *L = getASTMutationListener()) {
8947 L->CompletedImplicitDefinition(Constructor);
8948 }
Richard Trieu858d2ba2013-10-25 00:56:00 +00008949
8950 DiagnoseUninitializedFields(*this, Constructor);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00008951}
8952
Richard Smith7a614d82011-06-11 17:19:42 +00008953void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
Alp Toker08235662013-10-18 05:54:19 +00008954 // Perform any delayed checks on exception specifications.
8955 CheckDelayedMemberExceptionSpecs();
Richard Smith7a614d82011-06-11 17:19:42 +00008956}
8957
Richard Smith4841ca52013-04-10 05:48:59 +00008958namespace {
8959/// Information on inheriting constructors to declare.
8960class InheritingConstructorInfo {
8961public:
8962 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived)
8963 : SemaRef(SemaRef), Derived(Derived) {
8964 // Mark the constructors that we already have in the derived class.
8965 //
8966 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...]
8967 // unless there is a user-declared constructor with the same signature in
8968 // the class where the using-declaration appears.
8969 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived);
8970 }
8971
8972 void inheritAll(CXXRecordDecl *RD) {
8973 visitAll(RD, &InheritingConstructorInfo::inherit);
8974 }
8975
8976private:
8977 /// Information about an inheriting constructor.
8978 struct InheritingConstructor {
8979 InheritingConstructor()
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008980 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {}
Richard Smith4841ca52013-04-10 05:48:59 +00008981
8982 /// If \c true, a constructor with this signature is already declared
8983 /// in the derived class.
8984 bool DeclaredInDerived;
8985
8986 /// The constructor which is inherited.
8987 const CXXConstructorDecl *BaseCtor;
8988
8989 /// The derived constructor we declared.
8990 CXXConstructorDecl *DerivedCtor;
8991 };
8992
8993 /// Inheriting constructors with a given canonical type. There can be at
8994 /// most one such non-template constructor, and any number of templated
8995 /// constructors.
8996 struct InheritingConstructorsForType {
8997 InheritingConstructor NonTemplate;
Robert Wilhelme7205c02013-08-10 12:33:24 +00008998 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4>
8999 Templates;
Richard Smith4841ca52013-04-10 05:48:59 +00009000
9001 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) {
9002 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) {
9003 TemplateParameterList *ParamList = FTD->getTemplateParameters();
9004 for (unsigned I = 0, N = Templates.size(); I != N; ++I)
9005 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first,
9006 false, S.TPL_TemplateMatch))
9007 return Templates[I].second;
9008 Templates.push_back(std::make_pair(ParamList, InheritingConstructor()));
9009 return Templates.back().second;
Sebastian Redlf677ea32011-02-05 19:23:19 +00009010 }
Richard Smith4841ca52013-04-10 05:48:59 +00009011
9012 return NonTemplate;
9013 }
9014 };
9015
9016 /// Get or create the inheriting constructor record for a constructor.
9017 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor,
9018 QualType CtorType) {
9019 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()]
9020 .getEntry(SemaRef, Ctor);
9021 }
9022
9023 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*);
9024
9025 /// Process all constructors for a class.
9026 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) {
Stephen Hines651f13c2014-04-23 16:59:28 -07009027 for (const auto *Ctor : RD->ctors())
9028 (this->*Callback)(Ctor);
Richard Smith4841ca52013-04-10 05:48:59 +00009029 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl>
9030 I(RD->decls_begin()), E(RD->decls_end());
9031 I != E; ++I) {
9032 const FunctionDecl *FD = (*I)->getTemplatedDecl();
9033 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
9034 (this->*Callback)(CD);
Sebastian Redlf677ea32011-02-05 19:23:19 +00009035 }
9036 }
Richard Smith4841ca52013-04-10 05:48:59 +00009037
9038 /// Note that a constructor (or constructor template) was declared in Derived.
9039 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) {
9040 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true;
9041 }
9042
9043 /// Inherit a single constructor.
9044 void inherit(const CXXConstructorDecl *Ctor) {
9045 const FunctionProtoType *CtorType =
9046 Ctor->getType()->castAs<FunctionProtoType>();
Stephen Hines176edba2014-12-01 14:53:08 -08009047 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes();
Richard Smith4841ca52013-04-10 05:48:59 +00009048 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo();
9049
9050 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent());
9051
9052 // Core issue (no number yet): the ellipsis is always discarded.
9053 if (EPI.Variadic) {
9054 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis);
9055 SemaRef.Diag(Ctor->getLocation(),
9056 diag::note_using_decl_constructor_ellipsis);
9057 EPI.Variadic = false;
9058 }
9059
9060 // Declare a constructor for each number of parameters.
9061 //
9062 // C++11 [class.inhctor]p1:
9063 // The candidate set of inherited constructors from the class X named in
9064 // the using-declaration consists of [... modulo defects ...] for each
9065 // constructor or constructor template of X, the set of constructors or
9066 // constructor templates that results from omitting any ellipsis parameter
9067 // specification and successively omitting parameters with a default
9068 // argument from the end of the parameter-type-list
Richard Smith987c0302013-04-17 19:00:52 +00009069 unsigned MinParams = minParamsToInherit(Ctor);
9070 unsigned Params = Ctor->getNumParams();
9071 if (Params >= MinParams) {
9072 do
9073 declareCtor(UsingLoc, Ctor,
9074 SemaRef.Context.getFunctionType(
Stephen Hines651f13c2014-04-23 16:59:28 -07009075 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI));
Richard Smith987c0302013-04-17 19:00:52 +00009076 while (Params > MinParams &&
9077 Ctor->getParamDecl(--Params)->hasDefaultArg());
9078 }
Richard Smith4841ca52013-04-10 05:48:59 +00009079 }
9080
9081 /// Find the using-declaration which specified that we should inherit the
9082 /// constructors of \p Base.
9083 SourceLocation getUsingLoc(const CXXRecordDecl *Base) {
9084 // No fancy lookup required; just look for the base constructor name
9085 // directly within the derived class.
9086 ASTContext &Context = SemaRef.Context;
9087 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
9088 Context.getCanonicalType(Context.getRecordType(Base)));
Stephen Hines0e2c34f2015-03-23 12:09:02 -07009089 DeclContext::lookup_result Decls = Derived->lookup(Name);
Richard Smith4841ca52013-04-10 05:48:59 +00009090 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation();
9091 }
9092
9093 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) {
9094 // C++11 [class.inhctor]p3:
9095 // [F]or each constructor template in the candidate set of inherited
9096 // constructors, a constructor template is implicitly declared
9097 if (Ctor->getDescribedFunctionTemplate())
9098 return 0;
9099
9100 // For each non-template constructor in the candidate set of inherited
9101 // constructors other than a constructor having no parameters or a
9102 // copy/move constructor having a single parameter, a constructor is
9103 // implicitly declared [...]
9104 if (Ctor->getNumParams() == 0)
9105 return 1;
9106 if (Ctor->isCopyOrMoveConstructor())
9107 return 2;
9108
9109 // Per discussion on core reflector, never inherit a constructor which
9110 // would become a default, copy, or move constructor of Derived either.
9111 const ParmVarDecl *PD = Ctor->getParamDecl(0);
9112 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>();
9113 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1;
9114 }
9115
9116 /// Declare a single inheriting constructor, inheriting the specified
9117 /// constructor, with the given type.
9118 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor,
9119 QualType DerivedType) {
9120 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType);
9121
9122 // C++11 [class.inhctor]p3:
9123 // ... a constructor is implicitly declared with the same constructor
9124 // characteristics unless there is a user-declared constructor with
9125 // the same signature in the class where the using-declaration appears
9126 if (Entry.DeclaredInDerived)
9127 return;
9128
9129 // C++11 [class.inhctor]p7:
9130 // If two using-declarations declare inheriting constructors with the
9131 // same signature, the program is ill-formed
9132 if (Entry.DerivedCtor) {
9133 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) {
9134 // Only diagnose this once per constructor.
9135 if (Entry.DerivedCtor->isInvalidDecl())
9136 return;
9137 Entry.DerivedCtor->setInvalidDecl();
9138
9139 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
9140 SemaRef.Diag(BaseCtor->getLocation(),
9141 diag::note_using_decl_constructor_conflict_current_ctor);
9142 SemaRef.Diag(Entry.BaseCtor->getLocation(),
9143 diag::note_using_decl_constructor_conflict_previous_ctor);
9144 SemaRef.Diag(Entry.DerivedCtor->getLocation(),
9145 diag::note_using_decl_constructor_conflict_previous_using);
9146 } else {
9147 // Core issue (no number): if the same inheriting constructor is
9148 // produced by multiple base class constructors from the same base
9149 // class, the inheriting constructor is defined as deleted.
9150 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc);
9151 }
9152
9153 return;
9154 }
9155
9156 ASTContext &Context = SemaRef.Context;
9157 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
9158 Context.getCanonicalType(Context.getRecordType(Derived)));
9159 DeclarationNameInfo NameInfo(Name, UsingLoc);
9160
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009161 TemplateParameterList *TemplateParams = nullptr;
Richard Smith4841ca52013-04-10 05:48:59 +00009162 if (const FunctionTemplateDecl *FTD =
9163 BaseCtor->getDescribedFunctionTemplate()) {
9164 TemplateParams = FTD->getTemplateParameters();
9165 // We're reusing template parameters from a different DeclContext. This
9166 // is questionable at best, but works out because the template depth in
9167 // both places is guaranteed to be 0.
9168 // FIXME: Rebuild the template parameters in the new context, and
9169 // transform the function type to refer to them.
9170 }
9171
9172 // Build type source info pointing at the using-declaration. This is
9173 // required by template instantiation.
9174 TypeSourceInfo *TInfo =
9175 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc);
9176 FunctionProtoTypeLoc ProtoLoc =
9177 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>();
9178
9179 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create(
9180 Context, Derived, UsingLoc, NameInfo, DerivedType,
9181 TInfo, BaseCtor->isExplicit(), /*Inline=*/true,
9182 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr());
9183
9184 // Build an unevaluated exception specification for this constructor.
9185 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>();
9186 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
Stephen Hines176edba2014-12-01 14:53:08 -08009187 EPI.ExceptionSpec.Type = EST_Unevaluated;
9188 EPI.ExceptionSpec.SourceDecl = DerivedCtor;
Stephen Hines651f13c2014-04-23 16:59:28 -07009189 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(),
9190 FPT->getParamTypes(), EPI));
Richard Smith4841ca52013-04-10 05:48:59 +00009191
9192 // Build the parameter declarations.
9193 SmallVector<ParmVarDecl *, 16> ParamDecls;
Stephen Hines651f13c2014-04-23 16:59:28 -07009194 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) {
Richard Smith4841ca52013-04-10 05:48:59 +00009195 TypeSourceInfo *TInfo =
Stephen Hines651f13c2014-04-23 16:59:28 -07009196 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc);
Richard Smith4841ca52013-04-10 05:48:59 +00009197 ParmVarDecl *PD = ParmVarDecl::Create(
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009198 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr,
9199 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr);
Richard Smith4841ca52013-04-10 05:48:59 +00009200 PD->setScopeInfo(0, I);
9201 PD->setImplicit();
9202 ParamDecls.push_back(PD);
Stephen Hines651f13c2014-04-23 16:59:28 -07009203 ProtoLoc.setParam(I, PD);
Richard Smith4841ca52013-04-10 05:48:59 +00009204 }
9205
9206 // Set up the new constructor.
9207 DerivedCtor->setAccess(BaseCtor->getAccess());
9208 DerivedCtor->setParams(ParamDecls);
9209 DerivedCtor->setInheritedConstructor(BaseCtor);
9210 if (BaseCtor->isDeleted())
9211 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc);
9212
9213 // If this is a constructor template, build the template declaration.
9214 if (TemplateParams) {
9215 FunctionTemplateDecl *DerivedTemplate =
9216 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name,
9217 TemplateParams, DerivedCtor);
9218 DerivedTemplate->setAccess(BaseCtor->getAccess());
9219 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate);
9220 Derived->addDecl(DerivedTemplate);
9221 } else {
9222 Derived->addDecl(DerivedCtor);
9223 }
9224
9225 Entry.BaseCtor = BaseCtor;
9226 Entry.DerivedCtor = DerivedCtor;
9227 }
9228
9229 Sema &SemaRef;
9230 CXXRecordDecl *Derived;
9231 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType;
9232 MapType Map;
9233};
9234}
9235
9236void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) {
9237 // Defer declaring the inheriting constructors until the class is
9238 // instantiated.
9239 if (ClassDecl->isDependentContext())
Sebastian Redlf677ea32011-02-05 19:23:19 +00009240 return;
9241
Richard Smith4841ca52013-04-10 05:48:59 +00009242 // Find base classes from which we might inherit constructors.
9243 SmallVector<CXXRecordDecl*, 4> InheritedBases;
Stephen Hines651f13c2014-04-23 16:59:28 -07009244 for (const auto &BaseIt : ClassDecl->bases())
9245 if (BaseIt.getInheritConstructors())
9246 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl());
Richard Smith07b0fdc2013-03-18 21:12:30 +00009247
Richard Smith4841ca52013-04-10 05:48:59 +00009248 // Go no further if we're not inheriting any constructors.
9249 if (InheritedBases.empty())
9250 return;
Sebastian Redlf677ea32011-02-05 19:23:19 +00009251
Richard Smith4841ca52013-04-10 05:48:59 +00009252 // Declare the inherited constructors.
9253 InheritingConstructorInfo ICI(*this, ClassDecl);
9254 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I)
9255 ICI.inheritAll(InheritedBases[I]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00009256}
9257
Richard Smith07b0fdc2013-03-18 21:12:30 +00009258void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation,
9259 CXXConstructorDecl *Constructor) {
9260 CXXRecordDecl *ClassDecl = Constructor->getParent();
9261 assert(Constructor->getInheritedConstructor() &&
9262 !Constructor->doesThisDeclarationHaveABody() &&
9263 !Constructor->isDeleted());
9264
9265 SynthesizedFunctionScope Scope(*this, Constructor);
9266 DiagnosticErrorTrap Trap(Diags);
9267 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
9268 Trap.hasErrorOccurred()) {
9269 Diag(CurrentLocation, diag::note_inhctor_synthesized_at)
9270 << Context.getTagDeclType(ClassDecl);
9271 Constructor->setInvalidDecl();
9272 return;
9273 }
9274
9275 SourceLocation Loc = Constructor->getLocation();
9276 Constructor->setBody(new (Context) CompoundStmt(Loc));
9277
Eli Friedman86164e82013-09-05 00:02:25 +00009278 Constructor->markUsed(Context);
Richard Smith07b0fdc2013-03-18 21:12:30 +00009279 MarkVTableUsed(CurrentLocation, ClassDecl);
9280
9281 if (ASTMutationListener *L = getASTMutationListener()) {
9282 L->CompletedImplicitDefinition(Constructor);
9283 }
9284}
9285
9286
Sean Huntcb45a0f2011-05-12 22:46:25 +00009287Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00009288Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
9289 CXXRecordDecl *ClassDecl = MD->getParent();
9290
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009291 // C++ [except.spec]p14:
9292 // An implicitly declared special member function (Clause 12) shall have
9293 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00009294 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00009295 if (ClassDecl->isInvalidDecl())
9296 return ExceptSpec;
9297
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009298 // Direct base-class destructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07009299 for (const auto &B : ClassDecl->bases()) {
9300 if (B.isVirtual()) // Handled below.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009301 continue;
9302
Stephen Hines651f13c2014-04-23 16:59:28 -07009303 if (const RecordType *BaseType = B.getType()->getAs<RecordType>())
9304 ExceptSpec.CalledDecl(B.getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00009305 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009306 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00009307
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009308 // Virtual base-class destructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07009309 for (const auto &B : ClassDecl->vbases()) {
9310 if (const RecordType *BaseType = B.getType()->getAs<RecordType>())
9311 ExceptSpec.CalledDecl(B.getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00009312 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009313 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00009314
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009315 // Field destructors.
Stephen Hines651f13c2014-04-23 16:59:28 -07009316 for (const auto *F : ClassDecl->fields()) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009317 if (const RecordType *RecordTy
9318 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00009319 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00009320 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009321 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00009322
Sean Huntcb45a0f2011-05-12 22:46:25 +00009323 return ExceptSpec;
9324}
9325
9326CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
9327 // C++ [class.dtor]p2:
9328 // If a class has no user-declared destructor, a destructor is
9329 // declared implicitly. An implicitly-declared destructor is an
9330 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00009331 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00009332
Richard Smithafb49182012-11-29 01:34:07 +00009333 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
9334 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009335 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +00009336
Douglas Gregor4923aa22010-07-02 20:37:36 +00009337 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009338 CanQualType ClassType
9339 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009340 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009341 DeclarationName Name
9342 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009343 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009344 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00009345 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009346 QualType(), nullptr, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00009347 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009348 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00009349 Destructor->setDefaulted();
Stephen Hines176edba2014-12-01 14:53:08 -08009350
9351 if (getLangOpts().CUDA) {
9352 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor,
9353 Destructor,
9354 /* ConstRHS */ false,
9355 /* Diagnose */ false);
9356 }
Richard Smithb9d0b762012-07-27 04:22:15 +00009357
9358 // Build an exception specification pointing back at this destructor.
Reid Kleckneref072032013-08-27 23:08:25 +00009359 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor);
Dmitri Gribenko55431692013-05-05 00:41:58 +00009360 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00009361
Richard Smithbc2a35d2012-12-08 08:32:28 +00009362 AddOverriddenMethods(ClassDecl, Destructor);
9363
9364 // We don't need to use SpecialMemberIsTrivial here; triviality for
9365 // destructors is easy to compute.
9366 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
9367
9368 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00009369 SetDeclDeleted(Destructor, ClassLoc);
Richard Smithbc2a35d2012-12-08 08:32:28 +00009370
Douglas Gregor4923aa22010-07-02 20:37:36 +00009371 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00009372 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00009373
Douglas Gregor4923aa22010-07-02 20:37:36 +00009374 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00009375 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00009376 PushOnScopeChains(Destructor, S, false);
9377 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00009378
Douglas Gregorfabd43a2010-07-01 19:09:28 +00009379 return Destructor;
9380}
9381
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009382void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00009383 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00009384 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00009385 !Destructor->doesThisDeclarationHaveABody() &&
9386 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009387 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00009388 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009389 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009390
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009391 if (Destructor->isInvalidDecl())
9392 return;
9393
Eli Friedman9a14db32012-10-18 20:14:08 +00009394 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009395
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00009396 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00009397 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
9398 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00009399
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009400 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00009401 Diag(CurrentLocation, diag::note_member_synthesized_at)
9402 << CXXDestructor << Context.getTagDeclType(ClassDecl);
9403
9404 Destructor->setInvalidDecl();
9405 return;
9406 }
9407
Stephen Hines176edba2014-12-01 14:53:08 -08009408 // The exception specification is needed because we are defining the
9409 // function.
9410 ResolveExceptionSpec(CurrentLocation,
9411 Destructor->getType()->castAs<FunctionProtoType>());
9412
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009413 SourceLocation Loc = Destructor->getLocEnd().isValid()
9414 ? Destructor->getLocEnd()
9415 : Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009416 Destructor->setBody(new (Context) CompoundStmt(Loc));
Eli Friedman86164e82013-09-05 00:02:25 +00009417 Destructor->markUsed(Context);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009418 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00009419
9420 if (ASTMutationListener *L = getASTMutationListener()) {
9421 L->CompletedImplicitDefinition(Destructor);
9422 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009423}
9424
Richard Smitha4156b82012-04-21 18:42:51 +00009425/// \brief Perform any semantic analysis which needs to be delayed until all
9426/// pending class member declarations have been parsed.
9427void Sema::ActOnFinishCXXMemberDecls() {
Douglas Gregor10318842013-02-01 04:49:10 +00009428 // If the context is an invalid C++ class, just suppress these checks.
9429 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) {
9430 if (Record->isInvalidDecl()) {
Alp Toker08235662013-10-18 05:54:19 +00009431 DelayedDefaultedMemberExceptionSpecs.clear();
Stephen Hines0e2c34f2015-03-23 12:09:02 -07009432 DelayedExceptionSpecChecks.clear();
Douglas Gregor10318842013-02-01 04:49:10 +00009433 return;
9434 }
9435 }
Richard Smitha4156b82012-04-21 18:42:51 +00009436}
9437
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07009438static void getDefaultArgExprsForConstructors(Sema &S, CXXRecordDecl *Class) {
9439 // Don't do anything for template patterns.
9440 if (Class->getDescribedClassTemplate())
9441 return;
9442
9443 for (Decl *Member : Class->decls()) {
9444 auto *CD = dyn_cast<CXXConstructorDecl>(Member);
9445 if (!CD) {
9446 // Recurse on nested classes.
9447 if (auto *NestedRD = dyn_cast<CXXRecordDecl>(Member))
9448 getDefaultArgExprsForConstructors(S, NestedRD);
9449 continue;
9450 } else if (!CD->isDefaultConstructor() || !CD->hasAttr<DLLExportAttr>()) {
9451 continue;
9452 }
9453
9454 for (unsigned I = 0, E = CD->getNumParams(); I != E; ++I) {
9455 // Skip any default arguments that we've already instantiated.
9456 if (S.Context.getDefaultArgExprForConstructor(CD, I))
9457 continue;
9458
9459 Expr *DefaultArg = S.BuildCXXDefaultArgExpr(Class->getLocation(), CD,
9460 CD->getParamDecl(I)).get();
9461 S.Context.addDefaultArgExprForConstructor(CD, I, DefaultArg);
9462 }
9463 }
9464}
9465
9466void Sema::ActOnFinishCXXMemberDefaultArgs(Decl *D) {
9467 auto *RD = dyn_cast<CXXRecordDecl>(D);
9468
9469 // Default constructors that are annotated with __declspec(dllexport) which
9470 // have default arguments or don't use the standard calling convention are
9471 // wrapped with a thunk called the default constructor closure.
9472 if (RD && Context.getTargetInfo().getCXXABI().isMicrosoft())
9473 getDefaultArgExprsForConstructors(*this, RD);
9474}
9475
Richard Smithb9d0b762012-07-27 04:22:15 +00009476void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
9477 CXXDestructorDecl *Destructor) {
Richard Smith80ad52f2013-01-02 11:42:31 +00009478 assert(getLangOpts().CPlusPlus11 &&
Richard Smithb9d0b762012-07-27 04:22:15 +00009479 "adjusting dtor exception specs was introduced in c++11");
9480
Sebastian Redl0ee33912011-05-19 05:13:44 +00009481 // C++11 [class.dtor]p3:
9482 // A declaration of a destructor that does not have an exception-
9483 // specification is implicitly considered to have the same exception-
9484 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00009485 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00009486 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00009487 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00009488 return;
9489
Chandler Carruth3f224b22011-09-20 04:55:26 +00009490 // Replace the destructor's type, building off the existing one. Fortunately,
9491 // the only thing of interest in the destructor type is its extended info.
9492 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00009493 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
Stephen Hines176edba2014-12-01 14:53:08 -08009494 EPI.ExceptionSpec.Type = EST_Unevaluated;
9495 EPI.ExceptionSpec.SourceDecl = Destructor;
Dmitri Gribenko55431692013-05-05 00:41:58 +00009496 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00009497
Sebastian Redl0ee33912011-05-19 05:13:44 +00009498 // FIXME: If the destructor has a body that could throw, and the newly created
9499 // spec doesn't allow exceptions, we should emit a warning, because this
9500 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00009501 // However, we don't have a body or an exception specification yet, so it
9502 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00009503}
9504
Pavel Labath66ea35d2013-08-30 08:52:28 +00009505namespace {
9506/// \brief An abstract base class for all helper classes used in building the
9507// copy/move operators. These classes serve as factory functions and help us
9508// avoid using the same Expr* in the AST twice.
9509class ExprBuilder {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07009510 ExprBuilder(const ExprBuilder&) = delete;
9511 ExprBuilder &operator=(const ExprBuilder&) = delete;
Pavel Labath66ea35d2013-08-30 08:52:28 +00009512
9513protected:
9514 static Expr *assertNotNull(Expr *E) {
9515 assert(E && "Expression construction must not fail.");
9516 return E;
9517 }
9518
9519public:
9520 ExprBuilder() {}
9521 virtual ~ExprBuilder() {}
9522
9523 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0;
9524};
9525
9526class RefBuilder: public ExprBuilder {
9527 VarDecl *Var;
9528 QualType VarType;
9529
9530public:
Stephen Hines176edba2014-12-01 14:53:08 -08009531 Expr *build(Sema &S, SourceLocation Loc) const override {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009532 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009533 }
9534
9535 RefBuilder(VarDecl *Var, QualType VarType)
9536 : Var(Var), VarType(VarType) {}
9537};
9538
9539class ThisBuilder: public ExprBuilder {
9540public:
Stephen Hines176edba2014-12-01 14:53:08 -08009541 Expr *build(Sema &S, SourceLocation Loc) const override {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009542 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009543 }
9544};
9545
9546class CastBuilder: public ExprBuilder {
9547 const ExprBuilder &Builder;
9548 QualType Type;
9549 ExprValueKind Kind;
9550 const CXXCastPath &Path;
9551
9552public:
Stephen Hines176edba2014-12-01 14:53:08 -08009553 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009554 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type,
9555 CK_UncheckedDerivedToBase, Kind,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009556 &Path).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009557 }
9558
9559 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind,
9560 const CXXCastPath &Path)
9561 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {}
9562};
9563
9564class DerefBuilder: public ExprBuilder {
9565 const ExprBuilder &Builder;
9566
9567public:
Stephen Hines176edba2014-12-01 14:53:08 -08009568 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009569 return assertNotNull(
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009570 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009571 }
9572
9573 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9574};
9575
9576class MemberBuilder: public ExprBuilder {
9577 const ExprBuilder &Builder;
9578 QualType Type;
9579 CXXScopeSpec SS;
9580 bool IsArrow;
9581 LookupResult &MemberLookup;
9582
9583public:
Stephen Hines176edba2014-12-01 14:53:08 -08009584 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009585 return assertNotNull(S.BuildMemberReferenceExpr(
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009586 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009587 nullptr, MemberLookup, nullptr).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009588 }
9589
9590 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow,
9591 LookupResult &MemberLookup)
9592 : Builder(Builder), Type(Type), IsArrow(IsArrow),
9593 MemberLookup(MemberLookup) {}
9594};
9595
9596class MoveCastBuilder: public ExprBuilder {
9597 const ExprBuilder &Builder;
9598
9599public:
Stephen Hines176edba2014-12-01 14:53:08 -08009600 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009601 return assertNotNull(CastForMoving(S, Builder.build(S, Loc)));
9602 }
9603
9604 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9605};
9606
9607class LvalueConvBuilder: public ExprBuilder {
9608 const ExprBuilder &Builder;
9609
9610public:
Stephen Hines176edba2014-12-01 14:53:08 -08009611 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009612 return assertNotNull(
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009613 S.DefaultLvalueConversion(Builder.build(S, Loc)).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009614 }
9615
9616 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9617};
9618
9619class SubscriptBuilder: public ExprBuilder {
9620 const ExprBuilder &Base;
9621 const ExprBuilder &Index;
9622
9623public:
Stephen Hines176edba2014-12-01 14:53:08 -08009624 Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009625 return assertNotNull(S.CreateBuiltinArraySubscriptExpr(
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009626 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get());
Pavel Labath66ea35d2013-08-30 08:52:28 +00009627 }
9628
9629 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index)
9630 : Base(Base), Index(Index) {}
9631};
9632
9633} // end anonymous namespace
9634
Richard Smith8c889532012-11-14 00:50:40 +00009635/// When generating a defaulted copy or move assignment operator, if a field
9636/// should be copied with __builtin_memcpy rather than via explicit assignments,
9637/// do so. This optimization only applies for arrays of scalars, and for arrays
9638/// of class type where the selected copy/move-assignment operator is trivial.
9639static StmtResult
9640buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath66ea35d2013-08-30 08:52:28 +00009641 const ExprBuilder &ToB, const ExprBuilder &FromB) {
Richard Smith8c889532012-11-14 00:50:40 +00009642 // Compute the size of the memory buffer to be copied.
9643 QualType SizeType = S.Context.getSizeType();
9644 llvm::APInt Size(S.Context.getTypeSize(SizeType),
9645 S.Context.getTypeSizeInChars(T).getQuantity());
9646
9647 // Take the address of the field references for "from" and "to". We
9648 // directly construct UnaryOperators here because semantic analysis
9649 // does not permit us to take the address of an xvalue.
Pavel Labath66ea35d2013-08-30 08:52:28 +00009650 Expr *From = FromB.build(S, Loc);
Richard Smith8c889532012-11-14 00:50:40 +00009651 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
9652 S.Context.getPointerType(From->getType()),
9653 VK_RValue, OK_Ordinary, Loc);
Pavel Labath66ea35d2013-08-30 08:52:28 +00009654 Expr *To = ToB.build(S, Loc);
Richard Smith8c889532012-11-14 00:50:40 +00009655 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
9656 S.Context.getPointerType(To->getType()),
9657 VK_RValue, OK_Ordinary, Loc);
9658
9659 const Type *E = T->getBaseElementTypeUnsafe();
9660 bool NeedsCollectableMemCpy =
9661 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
9662
9663 // Create a reference to the __builtin_objc_memmove_collectable function
9664 StringRef MemCpyName = NeedsCollectableMemCpy ?
9665 "__builtin_objc_memmove_collectable" :
9666 "__builtin_memcpy";
9667 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
9668 Sema::LookupOrdinaryName);
9669 S.LookupName(R, S.TUScope, true);
9670
9671 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
9672 if (!MemCpy)
9673 // Something went horribly wrong earlier, and we will have complained
9674 // about it.
9675 return StmtError();
9676
9677 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009678 VK_RValue, Loc, nullptr);
Richard Smith8c889532012-11-14 00:50:40 +00009679 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
9680
9681 Expr *CallArgs[] = {
9682 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
9683 };
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009684 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(),
Richard Smith8c889532012-11-14 00:50:40 +00009685 Loc, CallArgs, Loc);
9686
9687 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009688 return Call.getAs<Stmt>();
Richard Smith8c889532012-11-14 00:50:40 +00009689}
9690
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009691/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00009692/// \c To.
9693///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009694/// This routine is used to copy/move the members of a class with an
9695/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00009696/// copied are arrays, this routine builds for loops to copy them.
9697///
9698/// \param S The Sema object used for type-checking.
9699///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009700/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00009701///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009702/// \param T The type of the expressions being copied/moved. Both expressions
9703/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00009704///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009705/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00009706///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009707/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00009708///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009709/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00009710/// Otherwise, it's a non-static member subobject.
9711///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009712/// \param Copying Whether we're copying or moving.
9713///
Douglas Gregor06a9f362010-05-01 20:49:11 +00009714/// \param Depth Internal parameter recording the depth of the recursion.
9715///
Richard Smith8c889532012-11-14 00:50:40 +00009716/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
9717/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00009718static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00009719buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath66ea35d2013-08-30 08:52:28 +00009720 const ExprBuilder &To, const ExprBuilder &From,
Richard Smith8c889532012-11-14 00:50:40 +00009721 bool CopyingBaseSubobject, bool Copying,
9722 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00009723 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00009724 // Each subobject is assigned in the manner appropriate to its type:
9725 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009726 // - if the subobject is of class type, as if by a call to operator= with
9727 // the subobject as the object expression and the corresponding
9728 // subobject of x as a single function argument (as if by explicit
9729 // qualification; that is, ignoring any possible virtual overriding
9730 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00009731 //
9732 // C++03 [class.copy]p13:
9733 // - if the subobject is of class type, the copy assignment operator for
9734 // the class is used (as if by explicit qualification; that is,
9735 // ignoring any possible virtual overriding functions in more derived
9736 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009737 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
9738 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00009739
Douglas Gregor06a9f362010-05-01 20:49:11 +00009740 // Look for operator=.
9741 DeclarationName Name
9742 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
9743 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
9744 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009745
Richard Smith044c8aa2012-11-13 00:54:12 +00009746 // Prior to C++11, filter out any result that isn't a copy/move-assignment
9747 // operator.
Richard Smith80ad52f2013-01-02 11:42:31 +00009748 if (!S.getLangOpts().CPlusPlus11) {
Richard Smith044c8aa2012-11-13 00:54:12 +00009749 LookupResult::Filter F = OpLookup.makeFilter();
9750 while (F.hasNext()) {
9751 NamedDecl *D = F.next();
9752 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
9753 if (Method->isCopyAssignmentOperator() ||
9754 (!Copying && Method->isMoveAssignmentOperator()))
9755 continue;
9756
9757 F.erase();
9758 }
9759 F.done();
John McCallb0207482010-03-16 06:11:48 +00009760 }
Richard Smith044c8aa2012-11-13 00:54:12 +00009761
Douglas Gregor6cdc1612010-05-04 15:20:55 +00009762 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00009763 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00009764 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00009765 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00009766 // ambiguities), we need to cast "this" to that subobject type; to
9767 // ensure that we don't go through the virtual call mechanism, we need
9768 // to qualify the operator= name with the base class (see below). However,
9769 // this means that if the base class has a protected copy assignment
9770 // operator, the protected member access check will fail. So, we
9771 // rewrite "protected" access to "public" access in this case, since we
9772 // know by construction that we're calling from a derived class.
9773 if (CopyingBaseSubobject) {
9774 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
9775 L != LEnd; ++L) {
9776 if (L.getAccess() == AS_protected)
9777 L.setAccess(AS_public);
9778 }
9779 }
Richard Smith044c8aa2012-11-13 00:54:12 +00009780
Douglas Gregor06a9f362010-05-01 20:49:11 +00009781 // Create the nested-name-specifier that will be used to qualify the
9782 // reference to operator=; this is required to suppress the virtual
9783 // call mechanism.
9784 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00009785 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00009786 SS.MakeTrivial(S.Context,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009787 NestedNameSpecifier::Create(S.Context, nullptr, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00009788 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00009789 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00009790
Douglas Gregor06a9f362010-05-01 20:49:11 +00009791 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00009792 ExprResult OpEqualRef
Pavel Labath66ea35d2013-08-30 08:52:28 +00009793 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false,
9794 SS, /*TemplateKWLoc=*/SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009795 /*FirstQualifierInScope=*/nullptr,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009796 OpLookup,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009797 /*TemplateArgs=*/nullptr,
Douglas Gregor06a9f362010-05-01 20:49:11 +00009798 /*SuppressQualifierCheck=*/true);
9799 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00009800 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00009801
Douglas Gregor06a9f362010-05-01 20:49:11 +00009802 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00009803
Pavel Labath66ea35d2013-08-30 08:52:28 +00009804 Expr *FromInst = From.build(S, Loc);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009805 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009806 OpEqualRef.getAs<Expr>(),
Pavel Labath66ea35d2013-08-30 08:52:28 +00009807 Loc, FromInst, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009808 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00009809 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00009810
Richard Smith8c889532012-11-14 00:50:40 +00009811 // If we built a call to a trivial 'operator=' while copying an array,
9812 // bail out. We'll replace the whole shebang with a memcpy.
9813 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
9814 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009815 return StmtResult((Stmt*)nullptr);
Richard Smith8c889532012-11-14 00:50:40 +00009816
Richard Smith044c8aa2012-11-13 00:54:12 +00009817 // Convert to an expression-statement, and clean up any produced
9818 // temporaries.
Richard Smith41956372013-01-14 22:39:08 +00009819 return S.ActOnExprStmt(Call);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009820 }
John McCallb0207482010-03-16 06:11:48 +00009821
Richard Smith044c8aa2012-11-13 00:54:12 +00009822 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00009823 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00009824 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009825 if (!ArrayTy) {
Pavel Labath66ea35d2013-08-30 08:52:28 +00009826 ExprResult Assignment = S.CreateBuiltinBinOp(
9827 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00009828 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00009829 return StmtError();
Richard Smith41956372013-01-14 22:39:08 +00009830 return S.ActOnExprStmt(Assignment);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009831 }
Richard Smith044c8aa2012-11-13 00:54:12 +00009832
9833 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00009834 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00009835
Douglas Gregor06a9f362010-05-01 20:49:11 +00009836 // Construct a loop over the array bounds, e.g.,
9837 //
9838 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
9839 //
9840 // that will copy each of the array elements.
9841 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00009842
Douglas Gregor06a9f362010-05-01 20:49:11 +00009843 // Create the iteration variable.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009844 IdentifierInfo *IterationVarName = nullptr;
Douglas Gregor06a9f362010-05-01 20:49:11 +00009845 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00009846 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00009847 llvm::raw_svector_ostream OS(Str);
9848 OS << "__i" << Depth;
9849 IterationVarName = &S.Context.Idents.get(OS.str());
9850 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009851 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00009852 IterationVarName, SizeType,
9853 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00009854 SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00009855
Douglas Gregor06a9f362010-05-01 20:49:11 +00009856 // Initialize the iteration variable to zero.
9857 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00009858 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00009859
Pavel Labath66ea35d2013-08-30 08:52:28 +00009860 // Creates a reference to the iteration variable.
9861 RefBuilder IterationVarRef(IterationVar, SizeType);
9862 LvalueConvBuilder IterationVarRefRVal(IterationVarRef);
Eli Friedman8c382062012-01-23 02:35:22 +00009863
Douglas Gregor06a9f362010-05-01 20:49:11 +00009864 // Create the DeclStmt that holds the iteration variable.
9865 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00009866
Douglas Gregor06a9f362010-05-01 20:49:11 +00009867 // Subscript the "from" and "to" expressions with the iteration variable.
Pavel Labath66ea35d2013-08-30 08:52:28 +00009868 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal);
9869 MoveCastBuilder FromIndexMove(FromIndexCopy);
9870 const ExprBuilder *FromIndex;
9871 if (Copying)
9872 FromIndex = &FromIndexCopy;
9873 else
9874 FromIndex = &FromIndexMove;
9875
9876 SubscriptBuilder ToIndex(To, IterationVarRefRVal);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009877
9878 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00009879 StmtResult Copy =
9880 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
Pavel Labath66ea35d2013-08-30 08:52:28 +00009881 ToIndex, *FromIndex, CopyingBaseSubobject,
Richard Smith8c889532012-11-14 00:50:40 +00009882 Copying, Depth + 1);
9883 // Bail out if copying fails or if we determined that we should use memcpy.
9884 if (Copy.isInvalid() || !Copy.get())
9885 return Copy;
9886
9887 // Create the comparison against the array bound.
9888 llvm::APInt Upper
9889 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
9890 Expr *Comparison
Pavel Labath66ea35d2013-08-30 08:52:28 +00009891 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc),
Richard Smith8c889532012-11-14 00:50:40 +00009892 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
9893 BO_NE, S.Context.BoolTy,
9894 VK_RValue, OK_Ordinary, Loc, false);
9895
9896 // Create the pre-increment of the iteration variable.
9897 Expr *Increment
Pavel Labath66ea35d2013-08-30 08:52:28 +00009898 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc,
9899 SizeType, VK_LValue, OK_Ordinary, Loc);
Richard Smith8c889532012-11-14 00:50:40 +00009900
Douglas Gregor06a9f362010-05-01 20:49:11 +00009901 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00009902 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00009903 S.MakeFullExpr(Comparison),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009904 nullptr, S.MakeFullDiscardedValueExpr(Increment),
Stephen Hinesc568f1e2014-07-21 00:47:37 -07009905 Loc, Copy.get());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009906}
9907
Richard Smith8c889532012-11-14 00:50:40 +00009908static StmtResult
9909buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath66ea35d2013-08-30 08:52:28 +00009910 const ExprBuilder &To, const ExprBuilder &From,
Richard Smith8c889532012-11-14 00:50:40 +00009911 bool CopyingBaseSubobject, bool Copying) {
9912 // Maybe we should use a memcpy?
9913 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
9914 T.isTriviallyCopyableType(S.Context))
9915 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
9916
9917 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
9918 CopyingBaseSubobject,
9919 Copying, 0));
9920
9921 // If we ended up picking a trivial assignment operator for an array of a
9922 // non-trivially-copyable class type, just emit a memcpy.
9923 if (!Result.isInvalid() && !Result.get())
9924 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
9925
9926 return Result;
9927}
9928
Richard Smithb9d0b762012-07-27 04:22:15 +00009929Sema::ImplicitExceptionSpecification
9930Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
9931 CXXRecordDecl *ClassDecl = MD->getParent();
9932
9933 ImplicitExceptionSpecification ExceptSpec(*this);
9934 if (ClassDecl->isInvalidDecl())
9935 return ExceptSpec;
9936
9937 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07009938 assert(T->getNumParams() == 1 && "not a copy assignment op");
9939 unsigned ArgQuals =
9940 T->getParamType(0).getNonReferenceType().getCVRQualifiers();
Richard Smithb9d0b762012-07-27 04:22:15 +00009941
Douglas Gregorb87786f2010-07-01 17:48:08 +00009942 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00009943 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00009944 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00009945
9946 // It is unspecified whether or not an implicit copy assignment operator
9947 // attempts to deduplicate calls to assignment operators of virtual bases are
9948 // made. As such, this exception specification is effectively unspecified.
9949 // Based on a similar decision made for constness in C++0x, we're erring on
9950 // the side of assuming such calls to be made regardless of whether they
9951 // actually happen.
Stephen Hines651f13c2014-04-23 16:59:28 -07009952 for (const auto &Base : ClassDecl->bases()) {
9953 if (Base.isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00009954 continue;
9955
Douglas Gregora376d102010-07-02 21:50:04 +00009956 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -07009957 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00009958 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9959 ArgQuals, false, 0))
Stephen Hines651f13c2014-04-23 16:59:28 -07009960 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00009961 }
Sean Hunt661c67a2011-06-21 23:42:56 +00009962
Stephen Hines651f13c2014-04-23 16:59:28 -07009963 for (const auto &Base : ClassDecl->vbases()) {
Sean Hunt661c67a2011-06-21 23:42:56 +00009964 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -07009965 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00009966 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9967 ArgQuals, false, 0))
Stephen Hines651f13c2014-04-23 16:59:28 -07009968 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00009969 }
9970
Stephen Hines651f13c2014-04-23 16:59:28 -07009971 for (const auto *Field : ClassDecl->fields()) {
David Blaikie262bc182012-04-30 02:36:29 +00009972 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00009973 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
9974 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00009975 LookupCopyingAssignment(FieldClassDecl,
9976 ArgQuals | FieldType.getCVRQualifiers(),
9977 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00009978 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00009979 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00009980 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00009981
Richard Smithb9d0b762012-07-27 04:22:15 +00009982 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00009983}
9984
9985CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
9986 // Note: The following rules are largely analoguous to the copy
9987 // constructor rules. Note that virtual bases are not taken into account
9988 // for determining the argument type of the operator. Note also that
9989 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00009990 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00009991
Richard Smithafb49182012-11-29 01:34:07 +00009992 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
9993 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009994 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +00009995
Sean Hunt30de05c2011-05-14 05:23:20 +00009996 QualType ArgType = Context.getTypeDeclType(ClassDecl);
9997 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smitha8942d72013-05-07 03:19:20 +00009998 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam();
9999 if (Const)
Sean Hunt30de05c2011-05-14 05:23:20 +000010000 ArgType = ArgType.withConst();
10001 ArgType = Context.getLValueReferenceType(ArgType);
10002
Richard Smitha8942d72013-05-07 03:19:20 +000010003 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10004 CXXCopyAssignment,
10005 Const);
10006
Douglas Gregord3c35902010-07-01 16:36:15 +000010007 // An implicitly-declared copy assignment operator is an inline public
10008 // member of its class.
10009 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010010 SourceLocation ClassLoc = ClassDecl->getLocation();
10011 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smitha8942d72013-05-07 03:19:20 +000010012 CXXMethodDecl *CopyAssignment =
10013 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010014 /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
10015 /*isInline=*/true, Constexpr, SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +000010016 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +000010017 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +000010018 CopyAssignment->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +000010019
Stephen Hines176edba2014-12-01 14:53:08 -080010020 if (getLangOpts().CUDA) {
10021 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment,
10022 CopyAssignment,
10023 /* ConstRHS */ Const,
10024 /* Diagnose */ false);
10025 }
10026
Richard Smithb9d0b762012-07-27 04:22:15 +000010027 // Build an exception specification pointing back at this member.
Reid Kleckneref072032013-08-27 23:08:25 +000010028 FunctionProtoType::ExtProtoInfo EPI =
10029 getImplicitMethodEPI(*this, CopyAssignment);
Jordan Rosebea522f2013-03-08 21:51:21 +000010030 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +000010031
Douglas Gregord3c35902010-07-01 16:36:15 +000010032 // Add the parameter to the operator.
10033 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010034 ClassLoc, ClassLoc,
10035 /*Id=*/nullptr, ArgType,
10036 /*TInfo=*/nullptr, SC_None,
10037 nullptr);
David Blaikie4278c652011-09-21 18:16:56 +000010038 CopyAssignment->setParams(FromParam);
Sean Hunt7f410192011-05-14 05:23:24 +000010039
Richard Smithbc2a35d2012-12-08 08:32:28 +000010040 AddOverriddenMethods(ClassDecl, CopyAssignment);
10041
10042 CopyAssignment->setTrivial(
10043 ClassDecl->needsOverloadResolutionForCopyAssignment()
10044 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
10045 : ClassDecl->hasTrivialCopyAssignment());
10046
Richard Smith6c4c36c2012-03-30 20:53:28 +000010047 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Richard Smith0ab5b4c2013-04-02 19:38:47 +000010048 SetDeclDeleted(CopyAssignment, ClassLoc);
Richard Smith6c4c36c2012-03-30 20:53:28 +000010049
Richard Smithbc2a35d2012-12-08 08:32:28 +000010050 // Note that we have added this copy-assignment operator.
10051 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
10052
10053 if (Scope *S = getScopeForContext(ClassDecl))
10054 PushOnScopeChains(CopyAssignment, S, false);
10055 ClassDecl->addDecl(CopyAssignment);
10056
Douglas Gregord3c35902010-07-01 16:36:15 +000010057 return CopyAssignment;
10058}
10059
Richard Smith36155c12013-06-13 03:23:42 +000010060/// Diagnose an implicit copy operation for a class which is odr-used, but
10061/// which is deprecated because the class has a user-declared copy constructor,
10062/// copy assignment operator, or destructor.
10063static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp,
10064 SourceLocation UseLoc) {
10065 assert(CopyOp->isImplicit());
10066
10067 CXXRecordDecl *RD = CopyOp->getParent();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010068 CXXMethodDecl *UserDeclaredOperation = nullptr;
Richard Smith36155c12013-06-13 03:23:42 +000010069
10070 // In Microsoft mode, assignment operations don't affect constructors and
10071 // vice versa.
10072 if (RD->hasUserDeclaredDestructor()) {
10073 UserDeclaredOperation = RD->getDestructor();
10074 } else if (!isa<CXXConstructorDecl>(CopyOp) &&
10075 RD->hasUserDeclaredCopyConstructor() &&
Stephen Hines651f13c2014-04-23 16:59:28 -070010076 !S.getLangOpts().MSVCCompat) {
Richard Smith36155c12013-06-13 03:23:42 +000010077 // Find any user-declared copy constructor.
Stephen Hines651f13c2014-04-23 16:59:28 -070010078 for (auto *I : RD->ctors()) {
Richard Smith36155c12013-06-13 03:23:42 +000010079 if (I->isCopyConstructor()) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010080 UserDeclaredOperation = I;
Richard Smith36155c12013-06-13 03:23:42 +000010081 break;
10082 }
10083 }
10084 assert(UserDeclaredOperation);
10085 } else if (isa<CXXConstructorDecl>(CopyOp) &&
10086 RD->hasUserDeclaredCopyAssignment() &&
Stephen Hines651f13c2014-04-23 16:59:28 -070010087 !S.getLangOpts().MSVCCompat) {
Richard Smith36155c12013-06-13 03:23:42 +000010088 // Find any user-declared move assignment operator.
Stephen Hines651f13c2014-04-23 16:59:28 -070010089 for (auto *I : RD->methods()) {
Richard Smith36155c12013-06-13 03:23:42 +000010090 if (I->isCopyAssignmentOperator()) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010091 UserDeclaredOperation = I;
Richard Smith36155c12013-06-13 03:23:42 +000010092 break;
10093 }
10094 }
10095 assert(UserDeclaredOperation);
10096 }
10097
10098 if (UserDeclaredOperation) {
10099 S.Diag(UserDeclaredOperation->getLocation(),
10100 diag::warn_deprecated_copy_operation)
10101 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp)
10102 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation);
10103 S.Diag(UseLoc, diag::note_member_synthesized_at)
10104 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor
10105 : Sema::CXXCopyAssignment)
10106 << RD;
10107 }
10108}
10109
Douglas Gregor06a9f362010-05-01 20:49:11 +000010110void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
10111 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +000010112 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +000010113 CopyAssignOperator->isOverloadedOperator() &&
10114 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +000010115 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
10116 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +000010117 "DefineImplicitCopyAssignment called for wrong function");
10118
10119 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
10120
10121 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
10122 CopyAssignOperator->setInvalidDecl();
10123 return;
10124 }
Richard Smith36155c12013-06-13 03:23:42 +000010125
10126 // C++11 [class.copy]p18:
10127 // The [definition of an implicitly declared copy assignment operator] is
10128 // deprecated if the class has a user-declared copy constructor or a
10129 // user-declared destructor.
10130 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit())
10131 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation);
10132
Eli Friedman86164e82013-09-05 00:02:25 +000010133 CopyAssignOperator->markUsed(Context);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010134
Eli Friedman9a14db32012-10-18 20:14:08 +000010135 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +000010136 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010137
10138 // C++0x [class.copy]p30:
10139 // The implicitly-defined or explicitly-defaulted copy assignment operator
10140 // for a non-union class X performs memberwise copy assignment of its
10141 // subobjects. The direct base classes of X are assigned first, in the
10142 // order of their declaration in the base-specifier-list, and then the
10143 // immediate non-static data members of X are assigned, in the order in
10144 // which they were declared in the class definition.
10145
10146 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +000010147 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +000010148
10149 // The parameter for the "other" object, which we are copying from.
10150 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
10151 Qualifiers OtherQuals = Other->getType().getQualifiers();
10152 QualType OtherRefType = Other->getType();
10153 if (const LValueReferenceType *OtherRef
10154 = OtherRefType->getAs<LValueReferenceType>()) {
10155 OtherRefType = OtherRef->getPointeeType();
10156 OtherQuals = OtherRefType.getQualifiers();
10157 }
10158
10159 // Our location for everything implicitly-generated.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010160 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid()
10161 ? CopyAssignOperator->getLocEnd()
10162 : CopyAssignOperator->getLocation();
10163
Pavel Labath66ea35d2013-08-30 08:52:28 +000010164 // Builds a DeclRefExpr for the "other" object.
10165 RefBuilder OtherRef(Other, OtherRefType);
10166
10167 // Builds the "this" pointer.
10168 ThisBuilder This;
Douglas Gregor06a9f362010-05-01 20:49:11 +000010169
10170 // Assign base classes.
10171 bool Invalid = false;
Stephen Hines651f13c2014-04-23 16:59:28 -070010172 for (auto &Base : ClassDecl->bases()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +000010173 // Form the assignment:
10174 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
Stephen Hines651f13c2014-04-23 16:59:28 -070010175 QualType BaseType = Base.getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +000010176 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +000010177 Invalid = true;
10178 continue;
10179 }
10180
John McCallf871d0c2010-08-07 06:22:56 +000010181 CXXCastPath BasePath;
Stephen Hines651f13c2014-04-23 16:59:28 -070010182 BasePath.push_back(&Base);
John McCallf871d0c2010-08-07 06:22:56 +000010183
Douglas Gregor06a9f362010-05-01 20:49:11 +000010184 // Construct the "from" expression, which is an implicit cast to the
10185 // appropriately-qualified base type.
Pavel Labath66ea35d2013-08-30 08:52:28 +000010186 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals),
10187 VK_LValue, BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010188
10189 // Dereference "this".
Pavel Labath66ea35d2013-08-30 08:52:28 +000010190 DerefBuilder DerefThis(This);
10191 CastBuilder To(DerefThis,
10192 Context.getCVRQualifiedType(
10193 BaseType, CopyAssignOperator->getTypeQualifiers()),
10194 VK_LValue, BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010195
10196 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +000010197 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
Pavel Labath66ea35d2013-08-30 08:52:28 +000010198 To, From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010199 /*CopyingBaseSubobject=*/true,
10200 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010201 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +000010202 Diag(CurrentLocation, diag::note_member_synthesized_at)
10203 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
10204 CopyAssignOperator->setInvalidDecl();
10205 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +000010206 }
10207
10208 // Success! Record the copy.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010209 Statements.push_back(Copy.getAs<Expr>());
Douglas Gregor06a9f362010-05-01 20:49:11 +000010210 }
10211
Douglas Gregor06a9f362010-05-01 20:49:11 +000010212 // Assign non-static members.
Stephen Hines651f13c2014-04-23 16:59:28 -070010213 for (auto *Field : ClassDecl->fields()) {
Douglas Gregord61db332011-10-10 17:22:13 +000010214 if (Field->isUnnamedBitfield())
10215 continue;
Eli Friedman8150da32013-06-07 01:48:56 +000010216
10217 if (Field->isInvalidDecl()) {
10218 Invalid = true;
10219 continue;
10220 }
10221
Douglas Gregor06a9f362010-05-01 20:49:11 +000010222 // Check for members of reference type; we can't copy those.
10223 if (Field->getType()->isReferenceType()) {
10224 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10225 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
10226 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +000010227 Diag(CurrentLocation, diag::note_member_synthesized_at)
10228 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010229 Invalid = true;
10230 continue;
10231 }
10232
10233 // Check for members of const-qualified, non-class type.
10234 QualType BaseType = Context.getBaseElementType(Field->getType());
10235 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
10236 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10237 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
10238 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +000010239 Diag(CurrentLocation, diag::note_member_synthesized_at)
10240 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010241 Invalid = true;
10242 continue;
10243 }
John McCallb77115d2011-06-17 00:18:42 +000010244
10245 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +000010246 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
10247 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +000010248
10249 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +000010250 if (FieldType->isIncompleteArrayType()) {
10251 assert(ClassDecl->hasFlexibleArrayMember() &&
10252 "Incomplete array type is not valid");
10253 continue;
10254 }
Douglas Gregor06a9f362010-05-01 20:49:11 +000010255
10256 // Build references to the field in the object we're copying from and to.
10257 CXXScopeSpec SS; // Intentionally empty
10258 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
10259 LookupMemberName);
Stephen Hines651f13c2014-04-23 16:59:28 -070010260 MemberLookup.addDecl(Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010261 MemberLookup.resolveKind();
Pavel Labath66ea35d2013-08-30 08:52:28 +000010262
10263 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup);
10264
10265 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010266
Douglas Gregor06a9f362010-05-01 20:49:11 +000010267 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +000010268 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Pavel Labath66ea35d2013-08-30 08:52:28 +000010269 To, From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010270 /*CopyingBaseSubobject=*/false,
10271 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +000010272 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +000010273 Diag(CurrentLocation, diag::note_member_synthesized_at)
10274 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
10275 CopyAssignOperator->setInvalidDecl();
10276 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +000010277 }
10278
10279 // Success! Record the copy.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010280 Statements.push_back(Copy.getAs<Stmt>());
Douglas Gregor06a9f362010-05-01 20:49:11 +000010281 }
10282
10283 if (!Invalid) {
10284 // Add a "return *this;"
Pavel Labath66ea35d2013-08-30 08:52:28 +000010285 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +000010286
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010287 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +000010288 if (Return.isInvalid())
10289 Invalid = true;
10290 else {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010291 Statements.push_back(Return.getAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +000010292
10293 if (Trap.hasErrorOccurred()) {
10294 Diag(CurrentLocation, diag::note_member_synthesized_at)
10295 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
10296 Invalid = true;
10297 }
Douglas Gregor06a9f362010-05-01 20:49:11 +000010298 }
10299 }
10300
Stephen Hines176edba2014-12-01 14:53:08 -080010301 // The exception specification is needed because we are defining the
10302 // function.
10303 ResolveExceptionSpec(CurrentLocation,
10304 CopyAssignOperator->getType()->castAs<FunctionProtoType>());
10305
Douglas Gregor06a9f362010-05-01 20:49:11 +000010306 if (Invalid) {
10307 CopyAssignOperator->setInvalidDecl();
10308 return;
10309 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +000010310
10311 StmtResult Body;
10312 {
10313 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010314 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +000010315 /*isStmtExpr=*/false);
10316 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
10317 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010318 CopyAssignOperator->setBody(Body.getAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +000010319
10320 if (ASTMutationListener *L = getASTMutationListener()) {
10321 L->CompletedImplicitDefinition(CopyAssignOperator);
10322 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +000010323}
10324
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010325Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +000010326Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
10327 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010328
Richard Smithb9d0b762012-07-27 04:22:15 +000010329 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010330 if (ClassDecl->isInvalidDecl())
10331 return ExceptSpec;
10332
10333 // C++0x [except.spec]p14:
10334 // An implicitly declared special member function (Clause 12) shall have an
10335 // exception-specification. [...]
10336
10337 // It is unspecified whether or not an implicit move assignment operator
10338 // attempts to deduplicate calls to assignment operators of virtual bases are
10339 // made. As such, this exception specification is effectively unspecified.
10340 // Based on a similar decision made for constness in C++0x, we're erring on
10341 // the side of assuming such calls to be made regardless of whether they
10342 // actually happen.
10343 // Note that a move constructor is not implicitly declared when there are
10344 // virtual bases, but it can still be user-declared and explicitly defaulted.
Stephen Hines651f13c2014-04-23 16:59:28 -070010345 for (const auto &Base : ClassDecl->bases()) {
10346 if (Base.isVirtual())
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010347 continue;
10348
10349 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -070010350 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010351 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +000010352 0, false, 0))
Stephen Hines651f13c2014-04-23 16:59:28 -070010353 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010354 }
10355
Stephen Hines651f13c2014-04-23 16:59:28 -070010356 for (const auto &Base : ClassDecl->vbases()) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010357 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -070010358 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010359 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +000010360 0, false, 0))
Stephen Hines651f13c2014-04-23 16:59:28 -070010361 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010362 }
10363
Stephen Hines651f13c2014-04-23 16:59:28 -070010364 for (const auto *Field : ClassDecl->fields()) {
David Blaikie262bc182012-04-30 02:36:29 +000010365 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010366 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +000010367 if (CXXMethodDecl *MoveAssign =
10368 LookupMovingAssignment(FieldClassDecl,
10369 FieldType.getCVRQualifiers(),
10370 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +000010371 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010372 }
10373 }
10374
10375 return ExceptSpec;
10376}
10377
10378CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +000010379 assert(ClassDecl->needsImplicitMoveAssignment());
10380
Richard Smithafb49182012-11-29 01:34:07 +000010381 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
10382 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010383 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +000010384
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010385 // Note: The following rules are largely analoguous to the move
10386 // constructor rules.
10387
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010388 QualType ArgType = Context.getTypeDeclType(ClassDecl);
10389 QualType RetType = Context.getLValueReferenceType(ArgType);
10390 ArgType = Context.getRValueReferenceType(ArgType);
10391
Richard Smitha8942d72013-05-07 03:19:20 +000010392 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10393 CXXMoveAssignment,
10394 false);
10395
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010396 // An implicitly-declared move assignment operator is an inline public
10397 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010398 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
10399 SourceLocation ClassLoc = ClassDecl->getLocation();
10400 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smitha8942d72013-05-07 03:19:20 +000010401 CXXMethodDecl *MoveAssignment =
10402 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010403 /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
Richard Smitha8942d72013-05-07 03:19:20 +000010404 /*isInline=*/true, Constexpr, SourceLocation());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010405 MoveAssignment->setAccess(AS_public);
10406 MoveAssignment->setDefaulted();
10407 MoveAssignment->setImplicit();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010408
Stephen Hines176edba2014-12-01 14:53:08 -080010409 if (getLangOpts().CUDA) {
10410 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment,
10411 MoveAssignment,
10412 /* ConstRHS */ false,
10413 /* Diagnose */ false);
10414 }
10415
Richard Smithb9d0b762012-07-27 04:22:15 +000010416 // Build an exception specification pointing back at this member.
Reid Kleckneref072032013-08-27 23:08:25 +000010417 FunctionProtoType::ExtProtoInfo EPI =
10418 getImplicitMethodEPI(*this, MoveAssignment);
Jordan Rosebea522f2013-03-08 21:51:21 +000010419 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +000010420
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010421 // Add the parameter to the operator.
10422 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010423 ClassLoc, ClassLoc,
10424 /*Id=*/nullptr, ArgType,
10425 /*TInfo=*/nullptr, SC_None,
10426 nullptr);
David Blaikie4278c652011-09-21 18:16:56 +000010427 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010428
Richard Smithbc2a35d2012-12-08 08:32:28 +000010429 AddOverriddenMethods(ClassDecl, MoveAssignment);
10430
10431 MoveAssignment->setTrivial(
10432 ClassDecl->needsOverloadResolutionForMoveAssignment()
10433 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
10434 : ClassDecl->hasTrivialMoveAssignment());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010435
Richard Smith7d5088a2012-02-18 02:02:13 +000010436 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Richard Smith743cbb92013-11-04 01:48:18 +000010437 ClassDecl->setImplicitMoveAssignmentIsDeleted();
10438 SetDeclDeleted(MoveAssignment, ClassLoc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010439 }
10440
Richard Smithbc2a35d2012-12-08 08:32:28 +000010441 // Note that we have added this copy-assignment operator.
10442 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
10443
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010444 if (Scope *S = getScopeForContext(ClassDecl))
10445 PushOnScopeChains(MoveAssignment, S, false);
10446 ClassDecl->addDecl(MoveAssignment);
10447
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010448 return MoveAssignment;
10449}
10450
Richard Smith33b1f632013-11-04 04:26:14 +000010451/// Check if we're implicitly defining a move assignment operator for a class
10452/// with virtual bases. Such a move assignment might move-assign the virtual
10453/// base multiple times.
10454static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class,
10455 SourceLocation CurrentLocation) {
10456 assert(!Class->isDependentContext() && "should not define dependent move");
10457
10458 // Only a virtual base could get implicitly move-assigned multiple times.
10459 // Only a non-trivial move assignment can observe this. We only want to
10460 // diagnose if we implicitly define an assignment operator that assigns
10461 // two base classes, both of which move-assign the same virtual base.
10462 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() ||
10463 Class->getNumBases() < 2)
10464 return;
10465
10466 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist;
10467 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap;
10468 VBaseMap VBases;
10469
Stephen Hines651f13c2014-04-23 16:59:28 -070010470 for (auto &BI : Class->bases()) {
10471 Worklist.push_back(&BI);
Richard Smith33b1f632013-11-04 04:26:14 +000010472 while (!Worklist.empty()) {
10473 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val();
10474 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
10475
10476 // If the base has no non-trivial move assignment operators,
10477 // we don't care about moves from it.
10478 if (!Base->hasNonTrivialMoveAssignment())
10479 continue;
10480
10481 // If there's nothing virtual here, skip it.
10482 if (!BaseSpec->isVirtual() && !Base->getNumVBases())
10483 continue;
10484
10485 // If we're not actually going to call a move assignment for this base,
10486 // or the selected move assignment is trivial, skip it.
10487 Sema::SpecialMemberOverloadResult *SMOR =
10488 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment,
10489 /*ConstArg*/false, /*VolatileArg*/false,
10490 /*RValueThis*/true, /*ConstThis*/false,
10491 /*VolatileThis*/false);
10492 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() ||
10493 !SMOR->getMethod()->isMoveAssignmentOperator())
10494 continue;
10495
10496 if (BaseSpec->isVirtual()) {
10497 // We're going to move-assign this virtual base, and its move
10498 // assignment operator is not trivial. If this can happen for
10499 // multiple distinct direct bases of Class, diagnose it. (If it
10500 // only happens in one base, we'll diagnose it when synthesizing
10501 // that base class's move assignment operator.)
10502 CXXBaseSpecifier *&Existing =
Stephen Hines651f13c2014-04-23 16:59:28 -070010503 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI))
Richard Smith33b1f632013-11-04 04:26:14 +000010504 .first->second;
Stephen Hines651f13c2014-04-23 16:59:28 -070010505 if (Existing && Existing != &BI) {
Richard Smith33b1f632013-11-04 04:26:14 +000010506 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times)
10507 << Class << Base;
10508 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here)
10509 << (Base->getCanonicalDecl() ==
10510 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl())
10511 << Base << Existing->getType() << Existing->getSourceRange();
Stephen Hines651f13c2014-04-23 16:59:28 -070010512 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here)
Richard Smith33b1f632013-11-04 04:26:14 +000010513 << (Base->getCanonicalDecl() ==
Stephen Hines651f13c2014-04-23 16:59:28 -070010514 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl())
10515 << Base << BI.getType() << BaseSpec->getSourceRange();
Richard Smith33b1f632013-11-04 04:26:14 +000010516
10517 // Only diagnose each vbase once.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010518 Existing = nullptr;
Richard Smith33b1f632013-11-04 04:26:14 +000010519 }
10520 } else {
10521 // Only walk over bases that have defaulted move assignment operators.
10522 // We assume that any user-provided move assignment operator handles
10523 // the multiple-moves-of-vbase case itself somehow.
10524 if (!SMOR->getMethod()->isDefaulted())
10525 continue;
10526
10527 // We're going to move the base classes of Base. Add them to the list.
Stephen Hines651f13c2014-04-23 16:59:28 -070010528 for (auto &BI : Base->bases())
10529 Worklist.push_back(&BI);
Richard Smith33b1f632013-11-04 04:26:14 +000010530 }
10531 }
10532 }
10533}
10534
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010535void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
10536 CXXMethodDecl *MoveAssignOperator) {
10537 assert((MoveAssignOperator->isDefaulted() &&
10538 MoveAssignOperator->isOverloadedOperator() &&
10539 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +000010540 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
10541 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010542 "DefineImplicitMoveAssignment called for wrong function");
10543
10544 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
10545
10546 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
10547 MoveAssignOperator->setInvalidDecl();
10548 return;
10549 }
10550
Eli Friedman86164e82013-09-05 00:02:25 +000010551 MoveAssignOperator->markUsed(Context);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010552
Eli Friedman9a14db32012-10-18 20:14:08 +000010553 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010554 DiagnosticErrorTrap Trap(Diags);
10555
10556 // C++0x [class.copy]p28:
10557 // The implicitly-defined or move assignment operator for a non-union class
10558 // X performs memberwise move assignment of its subobjects. The direct base
10559 // classes of X are assigned first, in the order of their declaration in the
10560 // base-specifier-list, and then the immediate non-static data members of X
10561 // are assigned, in the order in which they were declared in the class
10562 // definition.
10563
Richard Smith33b1f632013-11-04 04:26:14 +000010564 // Issue a warning if our implicit move assignment operator will move
10565 // from a virtual base more than once.
10566 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation);
Richard Smith743cbb92013-11-04 01:48:18 +000010567
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010568 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +000010569 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010570
10571 // The parameter for the "other" object, which we are move from.
10572 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
10573 QualType OtherRefType = Other->getType()->
10574 getAs<RValueReferenceType>()->getPointeeType();
David Blaikie7247c882013-05-15 07:37:26 +000010575 assert(!OtherRefType.getQualifiers() &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010576 "Bad argument type of defaulted move assignment");
10577
10578 // Our location for everything implicitly-generated.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010579 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid()
10580 ? MoveAssignOperator->getLocEnd()
10581 : MoveAssignOperator->getLocation();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010582
Pavel Labath66ea35d2013-08-30 08:52:28 +000010583 // Builds a reference to the "other" object.
10584 RefBuilder OtherRef(Other, OtherRefType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010585 // Cast to rvalue.
Pavel Labath66ea35d2013-08-30 08:52:28 +000010586 MoveCastBuilder MoveOther(OtherRef);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010587
Pavel Labath66ea35d2013-08-30 08:52:28 +000010588 // Builds the "this" pointer.
10589 ThisBuilder This;
Richard Smith1c931be2012-04-02 18:40:40 +000010590
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010591 // Assign base classes.
10592 bool Invalid = false;
Stephen Hines651f13c2014-04-23 16:59:28 -070010593 for (auto &Base : ClassDecl->bases()) {
Richard Smith33b1f632013-11-04 04:26:14 +000010594 // C++11 [class.copy]p28:
10595 // It is unspecified whether subobjects representing virtual base classes
10596 // are assigned more than once by the implicitly-defined copy assignment
10597 // operator.
10598 // FIXME: Do not assign to a vbase that will be assigned by some other base
10599 // class. For a move-assignment, this can result in the vbase being moved
10600 // multiple times.
10601
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010602 // Form the assignment:
10603 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
Stephen Hines651f13c2014-04-23 16:59:28 -070010604 QualType BaseType = Base.getType().getUnqualifiedType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010605 if (!BaseType->isRecordType()) {
10606 Invalid = true;
10607 continue;
10608 }
10609
10610 CXXCastPath BasePath;
Stephen Hines651f13c2014-04-23 16:59:28 -070010611 BasePath.push_back(&Base);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010612
10613 // Construct the "from" expression, which is an implicit cast to the
10614 // appropriately-qualified base type.
Pavel Labath66ea35d2013-08-30 08:52:28 +000010615 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010616
10617 // Dereference "this".
Pavel Labath66ea35d2013-08-30 08:52:28 +000010618 DerefBuilder DerefThis(This);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010619
10620 // Implicitly cast "this" to the appropriately-qualified base type.
Pavel Labath66ea35d2013-08-30 08:52:28 +000010621 CastBuilder To(DerefThis,
10622 Context.getCVRQualifiedType(
10623 BaseType, MoveAssignOperator->getTypeQualifiers()),
10624 VK_LValue, BasePath);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010625
10626 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +000010627 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Pavel Labath66ea35d2013-08-30 08:52:28 +000010628 To, From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010629 /*CopyingBaseSubobject=*/true,
10630 /*Copying=*/false);
10631 if (Move.isInvalid()) {
10632 Diag(CurrentLocation, diag::note_member_synthesized_at)
10633 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10634 MoveAssignOperator->setInvalidDecl();
10635 return;
10636 }
10637
10638 // Success! Record the move.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010639 Statements.push_back(Move.getAs<Expr>());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010640 }
10641
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010642 // Assign non-static members.
Stephen Hines651f13c2014-04-23 16:59:28 -070010643 for (auto *Field : ClassDecl->fields()) {
Douglas Gregord61db332011-10-10 17:22:13 +000010644 if (Field->isUnnamedBitfield())
10645 continue;
10646
Eli Friedman8150da32013-06-07 01:48:56 +000010647 if (Field->isInvalidDecl()) {
10648 Invalid = true;
10649 continue;
10650 }
10651
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010652 // Check for members of reference type; we can't move those.
10653 if (Field->getType()->isReferenceType()) {
10654 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10655 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
10656 Diag(Field->getLocation(), diag::note_declared_at);
10657 Diag(CurrentLocation, diag::note_member_synthesized_at)
10658 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10659 Invalid = true;
10660 continue;
10661 }
10662
10663 // Check for members of const-qualified, non-class type.
10664 QualType BaseType = Context.getBaseElementType(Field->getType());
10665 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
10666 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10667 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
10668 Diag(Field->getLocation(), diag::note_declared_at);
10669 Diag(CurrentLocation, diag::note_member_synthesized_at)
10670 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10671 Invalid = true;
10672 continue;
10673 }
10674
10675 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +000010676 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
10677 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010678
10679 QualType FieldType = Field->getType().getNonReferenceType();
10680 if (FieldType->isIncompleteArrayType()) {
10681 assert(ClassDecl->hasFlexibleArrayMember() &&
10682 "Incomplete array type is not valid");
10683 continue;
10684 }
10685
10686 // Build references to the field in the object we're copying from and to.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010687 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
10688 LookupMemberName);
Stephen Hines651f13c2014-04-23 16:59:28 -070010689 MemberLookup.addDecl(Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010690 MemberLookup.resolveKind();
Pavel Labath66ea35d2013-08-30 08:52:28 +000010691 MemberBuilder From(MoveOther, OtherRefType,
10692 /*IsArrow=*/false, MemberLookup);
10693 MemberBuilder To(This, getCurrentThisType(),
10694 /*IsArrow=*/true, MemberLookup);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010695
Pavel Labath66ea35d2013-08-30 08:52:28 +000010696 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010697 "Member reference with rvalue base must be rvalue except for reference "
10698 "members, which aren't allowed for move assignment.");
10699
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010700 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +000010701 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Pavel Labath66ea35d2013-08-30 08:52:28 +000010702 To, From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010703 /*CopyingBaseSubobject=*/false,
10704 /*Copying=*/false);
10705 if (Move.isInvalid()) {
10706 Diag(CurrentLocation, diag::note_member_synthesized_at)
10707 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10708 MoveAssignOperator->setInvalidDecl();
10709 return;
10710 }
Richard Smithe7ce7092012-11-12 23:33:00 +000010711
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010712 // Success! Record the copy.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010713 Statements.push_back(Move.getAs<Stmt>());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010714 }
10715
10716 if (!Invalid) {
10717 // Add a "return *this;"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010718 ExprResult ThisObj =
10719 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
10720
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010721 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010722 if (Return.isInvalid())
10723 Invalid = true;
10724 else {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010725 Statements.push_back(Return.getAs<Stmt>());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010726
10727 if (Trap.hasErrorOccurred()) {
10728 Diag(CurrentLocation, diag::note_member_synthesized_at)
10729 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10730 Invalid = true;
10731 }
10732 }
10733 }
10734
Stephen Hines176edba2014-12-01 14:53:08 -080010735 // The exception specification is needed because we are defining the
10736 // function.
10737 ResolveExceptionSpec(CurrentLocation,
10738 MoveAssignOperator->getType()->castAs<FunctionProtoType>());
10739
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010740 if (Invalid) {
10741 MoveAssignOperator->setInvalidDecl();
10742 return;
10743 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +000010744
10745 StmtResult Body;
10746 {
10747 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010748 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +000010749 /*isStmtExpr=*/false);
10750 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
10751 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010752 MoveAssignOperator->setBody(Body.getAs<Stmt>());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010753
10754 if (ASTMutationListener *L = getASTMutationListener()) {
10755 L->CompletedImplicitDefinition(MoveAssignOperator);
10756 }
10757}
10758
Richard Smithb9d0b762012-07-27 04:22:15 +000010759Sema::ImplicitExceptionSpecification
10760Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
10761 CXXRecordDecl *ClassDecl = MD->getParent();
10762
10763 ImplicitExceptionSpecification ExceptSpec(*this);
10764 if (ClassDecl->isInvalidDecl())
10765 return ExceptSpec;
10766
10767 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -070010768 assert(T->getNumParams() >= 1 && "not a copy ctor");
10769 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers();
Richard Smithb9d0b762012-07-27 04:22:15 +000010770
Douglas Gregor0d405db2010-07-01 20:59:04 +000010771 // C++ [except.spec]p14:
10772 // An implicitly declared special member function (Clause 12) shall have an
10773 // exception-specification. [...]
Stephen Hines651f13c2014-04-23 16:59:28 -070010774 for (const auto &Base : ClassDecl->bases()) {
Douglas Gregor0d405db2010-07-01 20:59:04 +000010775 // Virtual bases are handled below.
Stephen Hines651f13c2014-04-23 16:59:28 -070010776 if (Base.isVirtual())
Douglas Gregor0d405db2010-07-01 20:59:04 +000010777 continue;
10778
Douglas Gregor22584312010-07-02 23:41:54 +000010779 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -070010780 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +000010781 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +000010782 LookupCopyingConstructor(BaseClassDecl, Quals))
Stephen Hines651f13c2014-04-23 16:59:28 -070010783 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +000010784 }
Stephen Hines651f13c2014-04-23 16:59:28 -070010785 for (const auto &Base : ClassDecl->vbases()) {
Douglas Gregor22584312010-07-02 23:41:54 +000010786 CXXRecordDecl *BaseClassDecl
Stephen Hines651f13c2014-04-23 16:59:28 -070010787 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +000010788 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +000010789 LookupCopyingConstructor(BaseClassDecl, Quals))
Stephen Hines651f13c2014-04-23 16:59:28 -070010790 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +000010791 }
Stephen Hines651f13c2014-04-23 16:59:28 -070010792 for (const auto *Field : ClassDecl->fields()) {
David Blaikie262bc182012-04-30 02:36:29 +000010793 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +000010794 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
10795 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +000010796 LookupCopyingConstructor(FieldClassDecl,
10797 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +000010798 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +000010799 }
10800 }
Sebastian Redl60618fa2011-03-12 11:50:43 +000010801
Richard Smithb9d0b762012-07-27 04:22:15 +000010802 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +000010803}
10804
10805CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
10806 CXXRecordDecl *ClassDecl) {
10807 // C++ [class.copy]p4:
10808 // If the class definition does not explicitly declare a copy
10809 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +000010810 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +000010811
Richard Smithafb49182012-11-29 01:34:07 +000010812 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
10813 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010814 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +000010815
Sean Hunt49634cf2011-05-13 06:10:58 +000010816 QualType ClassType = Context.getTypeDeclType(ClassDecl);
10817 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +000010818 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +000010819 if (Const)
10820 ArgType = ArgType.withConst();
10821 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +000010822
Richard Smith7756afa2012-06-10 05:43:50 +000010823 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10824 CXXCopyConstructor,
10825 Const);
10826
Douglas Gregor4a0c26f2010-07-01 17:57:27 +000010827 DeclarationName Name
10828 = Context.DeclarationNames.getCXXConstructorName(
10829 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010830 SourceLocation ClassLoc = ClassDecl->getLocation();
10831 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +000010832
10833 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +000010834 // member of its class.
10835 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010836 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
Richard Smith61802452011-12-22 02:22:31 +000010837 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +000010838 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +000010839 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +000010840 CopyConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +000010841
Stephen Hines176edba2014-12-01 14:53:08 -080010842 if (getLangOpts().CUDA) {
10843 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor,
10844 CopyConstructor,
10845 /* ConstRHS */ Const,
10846 /* Diagnose */ false);
10847 }
10848
Richard Smithb9d0b762012-07-27 04:22:15 +000010849 // Build an exception specification pointing back at this member.
Reid Kleckneref072032013-08-27 23:08:25 +000010850 FunctionProtoType::ExtProtoInfo EPI =
10851 getImplicitMethodEPI(*this, CopyConstructor);
Richard Smithb9d0b762012-07-27 04:22:15 +000010852 CopyConstructor->setType(
Jordan Rosebea522f2013-03-08 21:51:21 +000010853 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +000010854
Douglas Gregor4a0c26f2010-07-01 17:57:27 +000010855 // Add the parameter to the constructor.
10856 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010857 ClassLoc, ClassLoc,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010858 /*IdentifierInfo=*/nullptr,
10859 ArgType, /*TInfo=*/nullptr,
10860 SC_None, nullptr);
David Blaikie4278c652011-09-21 18:16:56 +000010861 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +000010862
Richard Smithbc2a35d2012-12-08 08:32:28 +000010863 CopyConstructor->setTrivial(
10864 ClassDecl->needsOverloadResolutionForCopyConstructor()
10865 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
10866 : ClassDecl->hasTrivialCopyConstructor());
Sean Hunt71a682f2011-05-18 03:41:58 +000010867
Richard Smith6c4c36c2012-03-30 20:53:28 +000010868 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +000010869 SetDeclDeleted(CopyConstructor, ClassLoc);
Richard Smith6c4c36c2012-03-30 20:53:28 +000010870
Richard Smithbc2a35d2012-12-08 08:32:28 +000010871 // Note that we have declared this constructor.
10872 ++ASTContext::NumImplicitCopyConstructorsDeclared;
10873
10874 if (Scope *S = getScopeForContext(ClassDecl))
10875 PushOnScopeChains(CopyConstructor, S, false);
10876 ClassDecl->addDecl(CopyConstructor);
10877
Douglas Gregor4a0c26f2010-07-01 17:57:27 +000010878 return CopyConstructor;
10879}
10880
Fariborz Jahanian485f0872009-06-22 23:34:40 +000010881void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +000010882 CXXConstructorDecl *CopyConstructor) {
10883 assert((CopyConstructor->isDefaulted() &&
10884 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +000010885 !CopyConstructor->doesThisDeclarationHaveABody() &&
10886 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +000010887 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +000010888
Anders Carlsson63010a72010-04-23 16:24:12 +000010889 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +000010890 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000010891
Richard Smith36155c12013-06-13 03:23:42 +000010892 // C++11 [class.copy]p7:
Benjamin Kramere5753592013-09-09 14:48:42 +000010893 // The [definition of an implicitly declared copy constructor] is
Richard Smith36155c12013-06-13 03:23:42 +000010894 // deprecated if the class has a user-declared copy assignment operator
10895 // or a user-declared destructor.
10896 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit())
10897 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation);
10898
Eli Friedman9a14db32012-10-18 20:14:08 +000010899 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +000010900 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000010901
David Blaikie93c86172013-01-17 05:26:25 +000010902 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +000010903 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +000010904 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +000010905 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +000010906 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +000010907 } else {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010908 SourceLocation Loc = CopyConstructor->getLocEnd().isValid()
10909 ? CopyConstructor->getLocEnd()
10910 : CopyConstructor->getLocation();
Dmitri Gribenko625bb562012-02-14 22:14:32 +000010911 Sema::CompoundScopeRAII CompoundScope(*this);
Stephen Hinesc568f1e2014-07-21 00:47:37 -070010912 CopyConstructor->setBody(
10913 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +000010914 }
Robert Wilhelmc895f4d2013-08-19 20:51:20 +000010915
Stephen Hines176edba2014-12-01 14:53:08 -080010916 // The exception specification is needed because we are defining the
10917 // function.
10918 ResolveExceptionSpec(CurrentLocation,
10919 CopyConstructor->getType()->castAs<FunctionProtoType>());
10920
Eli Friedman86164e82013-09-05 00:02:25 +000010921 CopyConstructor->markUsed(Context);
Stephen Hines176edba2014-12-01 14:53:08 -080010922 MarkVTableUsed(CurrentLocation, ClassDecl);
10923
Sebastian Redl58a2cd82011-04-24 16:28:06 +000010924 if (ASTMutationListener *L = getASTMutationListener()) {
10925 L->CompletedImplicitDefinition(CopyConstructor);
10926 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +000010927}
10928
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010929Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +000010930Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
10931 CXXRecordDecl *ClassDecl = MD->getParent();
10932
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010933 // C++ [except.spec]p14:
10934 // An implicitly declared special member function (Clause 12) shall have an
10935 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +000010936 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010937 if (ClassDecl->isInvalidDecl())
10938 return ExceptSpec;
10939
10940 // Direct base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -070010941 for (const auto &B : ClassDecl->bases()) {
10942 if (B.isVirtual()) // Handled below.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010943 continue;
10944
Stephen Hines651f13c2014-04-23 16:59:28 -070010945 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010946 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +000010947 CXXConstructorDecl *Constructor =
10948 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010949 // If this is a deleted function, add it anyway. This might be conformant
10950 // with the standard. This might not. I'm not sure. It might not matter.
10951 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -070010952 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010953 }
10954 }
10955
10956 // Virtual base-class constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -070010957 for (const auto &B : ClassDecl->vbases()) {
10958 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010959 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +000010960 CXXConstructorDecl *Constructor =
10961 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010962 // If this is a deleted function, add it anyway. This might be conformant
10963 // with the standard. This might not. I'm not sure. It might not matter.
10964 if (Constructor)
Stephen Hines651f13c2014-04-23 16:59:28 -070010965 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010966 }
10967 }
10968
10969 // Field constructors.
Stephen Hines651f13c2014-04-23 16:59:28 -070010970 for (const auto *F : ClassDecl->fields()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +000010971 QualType FieldType = Context.getBaseElementType(F->getType());
10972 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
10973 CXXConstructorDecl *Constructor =
10974 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010975 // If this is a deleted function, add it anyway. This might be conformant
10976 // with the standard. This might not. I'm not sure. It might not matter.
10977 // In particular, the problem is that this function never gets called. It
10978 // might just be ill-formed because this function attempts to refer to
10979 // a deleted function here.
10980 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +000010981 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010982 }
10983 }
10984
10985 return ExceptSpec;
10986}
10987
10988CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
10989 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +000010990 assert(ClassDecl->needsImplicitMoveConstructor());
10991
Richard Smithafb49182012-11-29 01:34:07 +000010992 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
10993 if (DSM.isAlreadyBeingDeclared())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010994 return nullptr;
Richard Smithafb49182012-11-29 01:34:07 +000010995
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010996 QualType ClassType = Context.getTypeDeclType(ClassDecl);
10997 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010998
Richard Smith7756afa2012-06-10 05:43:50 +000010999 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
11000 CXXMoveConstructor,
11001 false);
11002
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011003 DeclarationName Name
11004 = Context.DeclarationNames.getCXXConstructorName(
11005 Context.getCanonicalType(ClassType));
11006 SourceLocation ClassLoc = ClassDecl->getLocation();
11007 DeclarationNameInfo NameInfo(Name, ClassLoc);
11008
Richard Smitha8942d72013-05-07 03:19:20 +000011009 // C++11 [class.copy]p11:
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011010 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +000011011 // member of its class.
11012 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011013 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
Richard Smith61802452011-12-22 02:22:31 +000011014 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +000011015 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011016 MoveConstructor->setAccess(AS_public);
11017 MoveConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +000011018
Stephen Hines176edba2014-12-01 14:53:08 -080011019 if (getLangOpts().CUDA) {
11020 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor,
11021 MoveConstructor,
11022 /* ConstRHS */ false,
11023 /* Diagnose */ false);
11024 }
11025
Richard Smithb9d0b762012-07-27 04:22:15 +000011026 // Build an exception specification pointing back at this member.
Reid Kleckneref072032013-08-27 23:08:25 +000011027 FunctionProtoType::ExtProtoInfo EPI =
11028 getImplicitMethodEPI(*this, MoveConstructor);
Richard Smithb9d0b762012-07-27 04:22:15 +000011029 MoveConstructor->setType(
Jordan Rosebea522f2013-03-08 21:51:21 +000011030 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +000011031
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011032 // Add the parameter to the constructor.
11033 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
11034 ClassLoc, ClassLoc,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011035 /*IdentifierInfo=*/nullptr,
11036 ArgType, /*TInfo=*/nullptr,
11037 SC_None, nullptr);
David Blaikie4278c652011-09-21 18:16:56 +000011038 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011039
Richard Smithbc2a35d2012-12-08 08:32:28 +000011040 MoveConstructor->setTrivial(
11041 ClassDecl->needsOverloadResolutionForMoveConstructor()
11042 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
11043 : ClassDecl->hasTrivialMoveConstructor());
11044
Sean Hunt769bb2d2011-10-11 06:43:29 +000011045 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Richard Smith743cbb92013-11-04 01:48:18 +000011046 ClassDecl->setImplicitMoveConstructorIsDeleted();
11047 SetDeclDeleted(MoveConstructor, ClassLoc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011048 }
11049
11050 // Note that we have declared this constructor.
11051 ++ASTContext::NumImplicitMoveConstructorsDeclared;
11052
11053 if (Scope *S = getScopeForContext(ClassDecl))
11054 PushOnScopeChains(MoveConstructor, S, false);
11055 ClassDecl->addDecl(MoveConstructor);
11056
11057 return MoveConstructor;
11058}
11059
11060void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
11061 CXXConstructorDecl *MoveConstructor) {
11062 assert((MoveConstructor->isDefaulted() &&
11063 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +000011064 !MoveConstructor->doesThisDeclarationHaveABody() &&
11065 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011066 "DefineImplicitMoveConstructor - call it for implicit move ctor");
11067
11068 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
11069 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
11070
Eli Friedman9a14db32012-10-18 20:14:08 +000011071 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011072 DiagnosticErrorTrap Trap(Diags);
11073
David Blaikie93c86172013-01-17 05:26:25 +000011074 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) ||
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011075 Trap.hasErrorOccurred()) {
11076 Diag(CurrentLocation, diag::note_member_synthesized_at)
11077 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
11078 MoveConstructor->setInvalidDecl();
11079 } else {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011080 SourceLocation Loc = MoveConstructor->getLocEnd().isValid()
11081 ? MoveConstructor->getLocEnd()
11082 : MoveConstructor->getLocation();
Dmitri Gribenko625bb562012-02-14 22:14:32 +000011083 Sema::CompoundScopeRAII CompoundScope(*this);
Robert Wilhelmc895f4d2013-08-19 20:51:20 +000011084 MoveConstructor->setBody(ActOnCompoundStmt(
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011085 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011086 }
11087
Stephen Hines176edba2014-12-01 14:53:08 -080011088 // The exception specification is needed because we are defining the
11089 // function.
11090 ResolveExceptionSpec(CurrentLocation,
11091 MoveConstructor->getType()->castAs<FunctionProtoType>());
11092
Eli Friedman86164e82013-09-05 00:02:25 +000011093 MoveConstructor->markUsed(Context);
Stephen Hines176edba2014-12-01 14:53:08 -080011094 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011095
11096 if (ASTMutationListener *L = getASTMutationListener()) {
11097 L->CompletedImplicitDefinition(MoveConstructor);
11098 }
11099}
11100
Douglas Gregore4e68d42012-02-15 19:33:52 +000011101bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
Eli Friedmanc4ef9482013-07-18 23:29:14 +000011102 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD);
Douglas Gregore4e68d42012-02-15 19:33:52 +000011103}
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011104
11105void Sema::DefineImplicitLambdaToFunctionPointerConversion(
Faisal Valid6992ab2013-09-29 08:45:24 +000011106 SourceLocation CurrentLocation,
11107 CXXConversionDecl *Conv) {
11108 CXXRecordDecl *Lambda = Conv->getParent();
11109 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
11110 // If we are defining a specialization of a conversion to function-ptr
11111 // cache the deduced template arguments for this specialization
11112 // so that we can use them to retrieve the corresponding call-operator
11113 // and static-invoker.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011114 const TemplateArgumentList *DeducedTemplateArgs = nullptr;
11115
Faisal Valid6992ab2013-09-29 08:45:24 +000011116 // Retrieve the corresponding call-operator specialization.
11117 if (Lambda->isGenericLambda()) {
11118 assert(Conv->isFunctionTemplateSpecialization());
11119 FunctionTemplateDecl *CallOpTemplate =
11120 CallOp->getDescribedFunctionTemplate();
11121 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011122 void *InsertPos = nullptr;
Faisal Valid6992ab2013-09-29 08:45:24 +000011123 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization(
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011124 DeducedTemplateArgs->asArray(),
Faisal Valid6992ab2013-09-29 08:45:24 +000011125 InsertPos);
11126 assert(CallOpSpec &&
11127 "Conversion operator must have a corresponding call operator");
11128 CallOp = cast<CXXMethodDecl>(CallOpSpec);
11129 }
11130 // Mark the call operator referenced (and add to pending instantiations
11131 // if necessary).
11132 // For both the conversion and static-invoker template specializations
11133 // we construct their body's in this function, so no need to add them
11134 // to the PendingInstantiations.
11135 MarkFunctionReferenced(CurrentLocation, CallOp);
11136
Eli Friedman9a14db32012-10-18 20:14:08 +000011137 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011138 DiagnosticErrorTrap Trap(Diags);
Faisal Valid6992ab2013-09-29 08:45:24 +000011139
Stephen Hines651f13c2014-04-23 16:59:28 -070011140 // Retrieve the static invoker...
Faisal Valid6992ab2013-09-29 08:45:24 +000011141 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker();
11142 // ... and get the corresponding specialization for a generic lambda.
11143 if (Lambda->isGenericLambda()) {
11144 assert(DeducedTemplateArgs &&
11145 "Must have deduced template arguments from Conversion Operator");
11146 FunctionTemplateDecl *InvokeTemplate =
11147 Invoker->getDescribedFunctionTemplate();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011148 void *InsertPos = nullptr;
Faisal Valid6992ab2013-09-29 08:45:24 +000011149 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization(
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011150 DeducedTemplateArgs->asArray(),
Faisal Valid6992ab2013-09-29 08:45:24 +000011151 InsertPos);
11152 assert(InvokeSpec &&
11153 "Must have a corresponding static invoker specialization");
11154 Invoker = cast<CXXMethodDecl>(InvokeSpec);
11155 }
11156 // Construct the body of the conversion function { return __invoke; }.
11157 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011158 VK_LValue, Conv->getLocation()).get();
Faisal Valid6992ab2013-09-29 08:45:24 +000011159 assert(FunctionRef && "Can't refer to __invoke function?");
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011160 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
Faisal Valid6992ab2013-09-29 08:45:24 +000011161 Conv->setBody(new (Context) CompoundStmt(Context, Return,
11162 Conv->getLocation(),
11163 Conv->getLocation()));
11164
11165 Conv->markUsed(Context);
11166 Conv->setReferenced();
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011167
Faisal Valid6992ab2013-09-29 08:45:24 +000011168 // Fill in the __invoke function with a dummy implementation. IR generation
11169 // will fill in the actual details.
11170 Invoker->markUsed(Context);
11171 Invoker->setReferenced();
11172 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
11173
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011174 if (ASTMutationListener *L = getASTMutationListener()) {
11175 L->CompletedImplicitDefinition(Conv);
Faisal Valid6992ab2013-09-29 08:45:24 +000011176 L->CompletedImplicitDefinition(Invoker);
11177 }
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011178}
11179
Faisal Valid6992ab2013-09-29 08:45:24 +000011180
11181
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011182void Sema::DefineImplicitLambdaToBlockPointerConversion(
11183 SourceLocation CurrentLocation,
11184 CXXConversionDecl *Conv)
11185{
Faisal Vali56fe35b2013-09-29 17:08:32 +000011186 assert(!Conv->getParent()->isGenericLambda());
Faisal Valid6992ab2013-09-29 08:45:24 +000011187
Eli Friedman86164e82013-09-05 00:02:25 +000011188 Conv->markUsed(Context);
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011189
Eli Friedman9a14db32012-10-18 20:14:08 +000011190 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011191 DiagnosticErrorTrap Trap(Diags);
11192
Douglas Gregorac1303e2012-02-22 05:02:47 +000011193 // Copy-initialize the lambda object as needed to capture it.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011194 Expr *This = ActOnCXXThis(CurrentLocation).get();
11195 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get();
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011196
Eli Friedman23f02672012-03-01 04:01:32 +000011197 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
11198 Conv->getLocation(),
11199 Conv, DerefThis);
11200
11201 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
11202 // behavior. Note that only the general conversion function does this
11203 // (since it's unusable otherwise); in the case where we inline the
11204 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +000011205 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +000011206 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
11207 CK_CopyAndAutoreleaseBlockObject,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011208 BuildBlock.get(), nullptr, VK_RValue);
Eli Friedman23f02672012-03-01 04:01:32 +000011209
11210 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011211 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +000011212 Conv->setInvalidDecl();
11213 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011214 }
Douglas Gregorac1303e2012-02-22 05:02:47 +000011215
Douglas Gregorac1303e2012-02-22 05:02:47 +000011216 // Create the return statement that returns the block from the conversion
11217 // function.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011218 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +000011219 if (Return.isInvalid()) {
11220 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
11221 Conv->setInvalidDecl();
11222 return;
11223 }
11224
11225 // Set the body of the conversion function.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011226 Stmt *ReturnS = Return.get();
Nico Weberd36aa352012-12-29 20:03:39 +000011227 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
Douglas Gregorac1303e2012-02-22 05:02:47 +000011228 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011229 Conv->getLocation()));
11230
Douglas Gregorac1303e2012-02-22 05:02:47 +000011231 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +000011232 if (ASTMutationListener *L = getASTMutationListener()) {
11233 L->CompletedImplicitDefinition(Conv);
11234 }
11235}
11236
Douglas Gregorf52757d2012-03-10 06:53:13 +000011237/// \brief Determine whether the given list arguments contains exactly one
11238/// "real" (non-default) argument.
11239static bool hasOneRealArgument(MultiExprArg Args) {
11240 switch (Args.size()) {
11241 case 0:
11242 return false;
11243
11244 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000011245 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +000011246 return false;
11247
11248 // fall through
11249 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000011250 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +000011251 }
11252
11253 return false;
11254}
11255
John McCall60d7b3a2010-08-24 06:29:42 +000011256ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +000011257Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +000011258 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +000011259 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011260 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +000011261 bool IsListInitialization,
Stephen Hines176edba2014-12-01 14:53:08 -080011262 bool IsStdInitListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000011263 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +000011264 unsigned ConstructKind,
11265 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000011266 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +000011267
Douglas Gregor2f599792010-04-02 18:24:57 +000011268 // C++0x [class.copy]p34:
11269 // When certain criteria are met, an implementation is allowed to
11270 // omit the copy/move construction of a class object, even if the
11271 // copy/move constructor and/or destructor for the object have
11272 // side effects. [...]
11273 // - when a temporary class object that has not been bound to a
11274 // reference (12.2) would be copied/moved to a class object
11275 // with the same cv-unqualified type, the copy/move operation
11276 // can be omitted by constructing the temporary object
11277 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +000011278 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +000011279 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +000011280 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +000011281 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000011282 }
Mike Stump1eb44332009-09-09 15:08:12 +000011283
11284 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000011285 Elidable, ExprArgs, HadMultipleCandidates,
Stephen Hines176edba2014-12-01 14:53:08 -080011286 IsListInitialization,
11287 IsStdInitListInitialization, RequiresZeroInit,
Richard Smithc83c2302012-12-19 01:39:02 +000011288 ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000011289}
11290
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +000011291/// BuildCXXConstructExpr - Creates a complete call to a constructor,
11292/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +000011293ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +000011294Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
11295 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +000011296 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011297 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +000011298 bool IsListInitialization,
Stephen Hines176edba2014-12-01 14:53:08 -080011299 bool IsStdInitListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000011300 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +000011301 unsigned ConstructKind,
11302 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011303 MarkFunctionReferenced(ConstructLoc, Constructor);
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011304 return CXXConstructExpr::Create(
11305 Context, DeclInitType, ConstructLoc, Constructor, Elidable, ExprArgs,
Stephen Hines176edba2014-12-01 14:53:08 -080011306 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization,
11307 RequiresZeroInit,
Stephen Hinesc568f1e2014-07-21 00:47:37 -070011308 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
11309 ParenRange);
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +000011310}
11311
Stephen Hines176edba2014-12-01 14:53:08 -080011312ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) {
11313 assert(Field->hasInClassInitializer());
11314
11315 // If we already have the in-class initializer nothing needs to be done.
11316 if (Field->getInClassInitializer())
11317 return CXXDefaultInitExpr::Create(Context, Loc, Field);
11318
11319 // Maybe we haven't instantiated the in-class initializer. Go check the
11320 // pattern FieldDecl to see if it has one.
11321 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent());
11322
11323 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) {
11324 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern();
11325 DeclContext::lookup_result Lookup =
11326 ClassPattern->lookup(Field->getDeclName());
11327 assert(Lookup.size() == 1);
11328 FieldDecl *Pattern = cast<FieldDecl>(Lookup[0]);
11329 if (InstantiateInClassInitializer(Loc, Field, Pattern,
11330 getTemplateInstantiationArgs(Field)))
11331 return ExprError();
11332 return CXXDefaultInitExpr::Create(Context, Loc, Field);
11333 }
11334
11335 // DR1351:
11336 // If the brace-or-equal-initializer of a non-static data member
11337 // invokes a defaulted default constructor of its class or of an
11338 // enclosing class in a potentially evaluated subexpression, the
11339 // program is ill-formed.
11340 //
11341 // This resolution is unworkable: the exception specification of the
11342 // default constructor can be needed in an unevaluated context, in
11343 // particular, in the operand of a noexcept-expression, and we can be
11344 // unable to compute an exception specification for an enclosed class.
11345 //
11346 // Any attempt to resolve the exception specification of a defaulted default
11347 // constructor before the initializer is lexically complete will ultimately
11348 // come here at which point we can diagnose it.
11349 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext();
11350 if (OutermostClass == ParentRD) {
11351 Diag(Field->getLocEnd(), diag::err_in_class_initializer_not_yet_parsed)
11352 << ParentRD << Field;
11353 } else {
11354 Diag(Field->getLocEnd(),
11355 diag::err_in_class_initializer_not_yet_parsed_outer_class)
11356 << ParentRD << OutermostClass << Field;
11357 }
11358
11359 return ExprError();
11360}
11361
John McCall68c6c9a2010-02-02 09:10:11 +000011362void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011363 if (VD->isInvalidDecl()) return;
11364
John McCall68c6c9a2010-02-02 09:10:11 +000011365 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011366 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +000011367 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011368 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +000011369
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011370 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +000011371 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011372 CheckDestructorAccess(VD->getLocation(), Destructor,
11373 PDiag(diag::err_access_dtor_var)
11374 << VD->getDeclName()
11375 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +000011376 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +000011377
Stephen Hines651f13c2014-04-23 16:59:28 -070011378 if (Destructor->isTrivial()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000011379 if (!VD->hasGlobalStorage()) return;
11380
11381 // Emit warning for non-trivial dtor in global scope (a real global,
11382 // class-static, function-static).
11383 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
11384
11385 // TODO: this should be re-enabled for static locals by !CXAAtExit
11386 if (!VD->isStaticLocal())
11387 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +000011388}
11389
Douglas Gregor39da0b82009-09-09 23:08:42 +000011390/// \brief Given a constructor and the set of arguments provided for the
11391/// constructor, convert the arguments and add any required default arguments
11392/// to form a proper call to this constructor.
11393///
11394/// \returns true if an error occurred, false otherwise.
11395bool
11396Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
11397 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +000011398 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +000011399 SmallVectorImpl<Expr*> &ConvertedArgs,
Richard Smitha4dc51b2013-02-05 05:52:24 +000011400 bool AllowExplicit,
11401 bool IsListInitialization) {
Douglas Gregor39da0b82009-09-09 23:08:42 +000011402 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
11403 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +000011404 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +000011405
11406 const FunctionProtoType *Proto
11407 = Constructor->getType()->getAs<FunctionProtoType>();
11408 assert(Proto && "Constructor without a prototype?");
Stephen Hines651f13c2014-04-23 16:59:28 -070011409 unsigned NumParams = Proto->getNumParams();
11410
Douglas Gregor39da0b82009-09-09 23:08:42 +000011411 // If too few arguments are available, we'll fill in the rest with defaults.
Stephen Hines651f13c2014-04-23 16:59:28 -070011412 if (NumArgs < NumParams)
11413 ConvertedArgs.reserve(NumParams);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000011414 else
Douglas Gregor39da0b82009-09-09 23:08:42 +000011415 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000011416
11417 VariadicCallType CallType =
11418 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +000011419 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000011420 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
Dmitri Gribenko9e00f122013-05-09 21:02:07 +000011421 Proto, 0,
11422 llvm::makeArrayRef(Args, NumArgs),
11423 AllArgs,
Richard Smitha4dc51b2013-02-05 05:52:24 +000011424 CallType, AllowExplicit,
11425 IsListInitialization);
Benjamin Kramer14c59822012-02-14 12:06:21 +000011426 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +000011427
Dmitri Gribenko9e00f122013-05-09 21:02:07 +000011428 DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
Eli Friedmane61eb042012-02-18 04:48:30 +000011429
Dmitri Gribenko1c030e92013-01-13 20:46:02 +000011430 CheckConstructorCall(Constructor,
Stephen Hines176edba2014-12-01 14:53:08 -080011431 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()),
Richard Smith831421f2012-06-25 20:30:08 +000011432 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +000011433
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000011434 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +000011435}
11436
Anders Carlsson20d45d22009-12-12 00:32:00 +000011437static inline bool
11438CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
11439 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000011440 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +000011441 if (isa<NamespaceDecl>(DC)) {
11442 return SemaRef.Diag(FnDecl->getLocation(),
11443 diag::err_operator_new_delete_declared_in_namespace)
11444 << FnDecl->getDeclName();
11445 }
11446
11447 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +000011448 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +000011449 return SemaRef.Diag(FnDecl->getLocation(),
11450 diag::err_operator_new_delete_declared_static)
11451 << FnDecl->getDeclName();
11452 }
11453
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +000011454 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +000011455}
11456
Anders Carlsson156c78e2009-12-13 17:53:43 +000011457static inline bool
11458CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
11459 CanQualType ExpectedResultType,
11460 CanQualType ExpectedFirstParamType,
11461 unsigned DependentParamTypeDiag,
11462 unsigned InvalidParamTypeDiag) {
Stephen Hines651f13c2014-04-23 16:59:28 -070011463 QualType ResultType =
11464 FnDecl->getType()->getAs<FunctionType>()->getReturnType();
Anders Carlsson156c78e2009-12-13 17:53:43 +000011465
11466 // Check that the result type is not dependent.
11467 if (ResultType->isDependentType())
11468 return SemaRef.Diag(FnDecl->getLocation(),
11469 diag::err_operator_new_delete_dependent_result_type)
11470 << FnDecl->getDeclName() << ExpectedResultType;
11471
11472 // Check that the result type is what we expect.
11473 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
11474 return SemaRef.Diag(FnDecl->getLocation(),
11475 diag::err_operator_new_delete_invalid_result_type)
11476 << FnDecl->getDeclName() << ExpectedResultType;
11477
11478 // A function template must have at least 2 parameters.
11479 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
11480 return SemaRef.Diag(FnDecl->getLocation(),
11481 diag::err_operator_new_delete_template_too_few_parameters)
11482 << FnDecl->getDeclName();
11483
11484 // The function decl must have at least 1 parameter.
11485 if (FnDecl->getNumParams() == 0)
11486 return SemaRef.Diag(FnDecl->getLocation(),
11487 diag::err_operator_new_delete_too_few_parameters)
11488 << FnDecl->getDeclName();
11489
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +000011490 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +000011491 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
11492 if (FirstParamType->isDependentType())
11493 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
11494 << FnDecl->getDeclName() << ExpectedFirstParamType;
11495
11496 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +000011497 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +000011498 ExpectedFirstParamType)
11499 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
11500 << FnDecl->getDeclName() << ExpectedFirstParamType;
11501
11502 return false;
11503}
11504
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011505static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +000011506CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +000011507 // C++ [basic.stc.dynamic.allocation]p1:
11508 // A program is ill-formed if an allocation function is declared in a
11509 // namespace scope other than global scope or declared static in global
11510 // scope.
11511 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
11512 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +000011513
11514 CanQualType SizeTy =
11515 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
11516
11517 // C++ [basic.stc.dynamic.allocation]p1:
11518 // The return type shall be void*. The first parameter shall have type
11519 // std::size_t.
11520 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
11521 SizeTy,
11522 diag::err_operator_new_dependent_param_type,
11523 diag::err_operator_new_param_type))
11524 return true;
11525
11526 // C++ [basic.stc.dynamic.allocation]p1:
11527 // The first parameter shall not have an associated default argument.
11528 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +000011529 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +000011530 diag::err_operator_new_default_arg)
11531 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
11532
11533 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +000011534}
11535
11536static bool
Richard Smith444d3842012-10-20 08:26:51 +000011537CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011538 // C++ [basic.stc.dynamic.deallocation]p1:
11539 // A program is ill-formed if deallocation functions are declared in a
11540 // namespace scope other than global scope or declared static in global
11541 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +000011542 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
11543 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011544
11545 // C++ [basic.stc.dynamic.deallocation]p2:
11546 // Each deallocation function shall return void and its first parameter
11547 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +000011548 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
11549 SemaRef.Context.VoidPtrTy,
11550 diag::err_operator_delete_dependent_param_type,
11551 diag::err_operator_delete_param_type))
11552 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011553
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011554 return false;
11555}
11556
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011557/// CheckOverloadedOperatorDeclaration - Check whether the declaration
11558/// of this overloaded operator is well-formed. If so, returns false;
11559/// otherwise, emits appropriate diagnostics and returns true.
11560bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011561 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011562 "Expected an overloaded operator declaration");
11563
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011564 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
11565
Mike Stump1eb44332009-09-09 15:08:12 +000011566 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011567 // The allocation and deallocation functions, operator new,
11568 // operator new[], operator delete and operator delete[], are
11569 // described completely in 3.7.3. The attributes and restrictions
11570 // found in the rest of this subclause do not apply to them unless
11571 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +000011572 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000011573 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +000011574
Anders Carlssona3ccda52009-12-12 00:26:23 +000011575 if (Op == OO_New || Op == OO_Array_New)
11576 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011577
11578 // C++ [over.oper]p6:
11579 // An operator function shall either be a non-static member
11580 // function or be a non-member function and have at least one
11581 // parameter whose type is a class, a reference to a class, an
11582 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011583 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
11584 if (MethodDecl->isStatic())
11585 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000011586 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011587 } else {
11588 bool ClassOrEnumParam = false;
Stephen Hines651f13c2014-04-23 16:59:28 -070011589 for (auto Param : FnDecl->params()) {
11590 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +000011591 if (ParamType->isDependentType() || ParamType->isRecordType() ||
11592 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011593 ClassOrEnumParam = true;
11594 break;
11595 }
11596 }
11597
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011598 if (!ClassOrEnumParam)
11599 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +000011600 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000011601 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011602 }
11603
11604 // C++ [over.oper]p8:
11605 // An operator function cannot have default arguments (8.3.6),
11606 // except where explicitly stated below.
11607 //
Mike Stump1eb44332009-09-09 15:08:12 +000011608 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011609 // (C++ [over.call]p1).
11610 if (Op != OO_Call) {
Stephen Hines651f13c2014-04-23 16:59:28 -070011611 for (auto Param : FnDecl->params()) {
11612 if (Param->hasDefaultArg())
11613 return Diag(Param->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +000011614 diag::err_operator_overload_default_arg)
Stephen Hines651f13c2014-04-23 16:59:28 -070011615 << FnDecl->getDeclName() << Param->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011616 }
11617 }
11618
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011619 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
11620 { false, false, false }
11621#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
11622 , { Unary, Binary, MemberOnly }
11623#include "clang/Basic/OperatorKinds.def"
11624 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011625
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011626 bool CanBeUnaryOperator = OperatorUses[Op][0];
11627 bool CanBeBinaryOperator = OperatorUses[Op][1];
11628 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011629
11630 // C++ [over.oper]p8:
11631 // [...] Operator functions cannot have more or fewer parameters
11632 // than the number required for the corresponding operator, as
11633 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +000011634 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011635 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011636 if (Op != OO_Call &&
11637 ((NumParams == 1 && !CanBeUnaryOperator) ||
11638 (NumParams == 2 && !CanBeBinaryOperator) ||
11639 (NumParams < 1) || (NumParams > 2))) {
11640 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +000011641 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011642 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +000011643 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011644 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +000011645 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011646 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +000011647 assert(CanBeBinaryOperator &&
11648 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +000011649 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000011650 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011651
Chris Lattner416e46f2008-11-21 07:57:12 +000011652 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000011653 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011654 }
Sebastian Redl64b45f72009-01-05 20:52:13 +000011655
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011656 // Overloaded operators other than operator() cannot be variadic.
11657 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +000011658 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000011659 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000011660 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011661 }
11662
11663 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011664 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
11665 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +000011666 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000011667 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011668 }
11669
11670 // C++ [over.inc]p1:
11671 // The user-defined function called operator++ implements the
11672 // prefix and postfix ++ operator. If this function is a member
11673 // function with no parameters, or a non-member function with one
11674 // parameter of class or enumeration type, it defines the prefix
11675 // increment operator ++ for objects of that type. If the function
11676 // is a member function with one parameter (which shall be of type
11677 // int) or a non-member function with two parameters (the second
11678 // of which shall be of type int), it defines the postfix
11679 // increment operator ++ for objects of that type.
11680 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
11681 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
Stephen Hines651f13c2014-04-23 16:59:28 -070011682 QualType ParamType = LastParam->getType();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011683
Stephen Hines651f13c2014-04-23 16:59:28 -070011684 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) &&
11685 !ParamType->isDependentType())
Chris Lattneraf7ae4e2008-11-21 07:50:02 +000011686 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +000011687 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +000011688 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011689 }
11690
Douglas Gregor43c7bad2008-11-17 16:14:12 +000011691 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000011692}
Chris Lattner5a003a42008-12-17 07:09:26 +000011693
Sean Hunta6c058d2010-01-13 09:01:02 +000011694/// CheckLiteralOperatorDeclaration - Check whether the declaration
11695/// of this literal operator function is well-formed. If so, returns
11696/// false; otherwise, emits appropriate diagnostics and returns true.
11697bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +000011698 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +000011699 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
11700 << FnDecl->getDeclName();
11701 return true;
11702 }
11703
Richard Smithb4a7b1e2012-03-04 09:41:16 +000011704 if (FnDecl->isExternC()) {
11705 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
11706 return true;
11707 }
11708
Sean Hunta6c058d2010-01-13 09:01:02 +000011709 bool Valid = false;
11710
Richard Smith36f5cfe2012-03-09 08:00:36 +000011711 // This might be the definition of a literal operator template.
11712 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
11713 // This might be a specialization of a literal operator template.
11714 if (!TpDecl)
11715 TpDecl = FnDecl->getPrimaryTemplate();
11716
Richard Smithb328e292013-10-07 19:57:58 +000011717 // template <char...> type operator "" name() and
11718 // template <class T, T...> type operator "" name() are the only valid
11719 // template signatures, and the only valid signatures with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +000011720 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +000011721 if (FnDecl->param_size() == 0) {
Richard Smithb328e292013-10-07 19:57:58 +000011722 // Must have one or two template parameters
Sean Hunt216c2782010-04-07 23:11:06 +000011723 TemplateParameterList *Params = TpDecl->getTemplateParameters();
11724 if (Params->size() == 1) {
11725 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +000011726 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +000011727
Sean Hunt216c2782010-04-07 23:11:06 +000011728 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +000011729 if (PmDecl && PmDecl->isTemplateParameterPack() &&
11730 Context.hasSameType(PmDecl->getType(), Context.CharTy))
11731 Valid = true;
Richard Smithb328e292013-10-07 19:57:58 +000011732 } else if (Params->size() == 2) {
11733 TemplateTypeParmDecl *PmType =
11734 dyn_cast<TemplateTypeParmDecl>(Params->getParam(0));
11735 NonTypeTemplateParmDecl *PmArgs =
11736 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(1));
11737
11738 // The second template parameter must be a parameter pack with the
11739 // first template parameter as its type.
11740 if (PmType && PmArgs &&
11741 !PmType->isTemplateParameterPack() &&
11742 PmArgs->isTemplateParameterPack()) {
11743 const TemplateTypeParmType *TArgs =
11744 PmArgs->getType()->getAs<TemplateTypeParmType>();
11745 if (TArgs && TArgs->getDepth() == PmType->getDepth() &&
11746 TArgs->getIndex() == PmType->getIndex()) {
11747 Valid = true;
11748 if (ActiveTemplateInstantiations.empty())
11749 Diag(FnDecl->getLocation(),
11750 diag::ext_string_literal_operator_template);
11751 }
11752 }
Sean Hunt216c2782010-04-07 23:11:06 +000011753 }
11754 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +000011755 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +000011756 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +000011757 FunctionDecl::param_iterator Param = FnDecl->param_begin();
11758
Richard Smithb4a7b1e2012-03-04 09:41:16 +000011759 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +000011760
Sean Hunt30019c02010-04-07 22:57:35 +000011761 // unsigned long long int, long double, and any character type are allowed
11762 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +000011763 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
11764 Context.hasSameType(T, Context.LongDoubleTy) ||
11765 Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg15f92ba2013-05-10 10:08:40 +000011766 Context.hasSameType(T, Context.WideCharTy) ||
Sean Hunta6c058d2010-01-13 09:01:02 +000011767 Context.hasSameType(T, Context.Char16Ty) ||
11768 Context.hasSameType(T, Context.Char32Ty)) {
11769 if (++Param == FnDecl->param_end())
11770 Valid = true;
11771 goto FinishedParams;
11772 }
11773
Sean Hunt30019c02010-04-07 22:57:35 +000011774 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +000011775 const PointerType *PT = T->getAs<PointerType>();
11776 if (!PT)
11777 goto FinishedParams;
11778 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +000011779 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +000011780 goto FinishedParams;
11781 T = T.getUnqualifiedType();
11782
11783 // Move on to the second parameter;
11784 ++Param;
11785
11786 // If there is no second parameter, the first must be a const char *
11787 if (Param == FnDecl->param_end()) {
11788 if (Context.hasSameType(T, Context.CharTy))
11789 Valid = true;
11790 goto FinishedParams;
11791 }
11792
11793 // const char *, const wchar_t*, const char16_t*, and const char32_t*
11794 // are allowed as the first parameter to a two-parameter function
11795 if (!(Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg15f92ba2013-05-10 10:08:40 +000011796 Context.hasSameType(T, Context.WideCharTy) ||
Sean Hunta6c058d2010-01-13 09:01:02 +000011797 Context.hasSameType(T, Context.Char16Ty) ||
11798 Context.hasSameType(T, Context.Char32Ty)))
11799 goto FinishedParams;
11800
11801 // The second and final parameter must be an std::size_t
11802 T = (*Param)->getType().getUnqualifiedType();
11803 if (Context.hasSameType(T, Context.getSizeType()) &&
11804 ++Param == FnDecl->param_end())
11805 Valid = true;
11806 }
11807
11808 // FIXME: This diagnostic is absolutely terrible.
11809FinishedParams:
11810 if (!Valid) {
11811 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
11812 << FnDecl->getDeclName();
11813 return true;
11814 }
11815
Richard Smitha9e88b22012-03-09 08:16:22 +000011816 // A parameter-declaration-clause containing a default argument is not
11817 // equivalent to any of the permitted forms.
Stephen Hines651f13c2014-04-23 16:59:28 -070011818 for (auto Param : FnDecl->params()) {
11819 if (Param->hasDefaultArg()) {
11820 Diag(Param->getDefaultArgRange().getBegin(),
Richard Smitha9e88b22012-03-09 08:16:22 +000011821 diag::err_literal_operator_default_argument)
Stephen Hines651f13c2014-04-23 16:59:28 -070011822 << Param->getDefaultArgRange();
Richard Smitha9e88b22012-03-09 08:16:22 +000011823 break;
11824 }
11825 }
11826
Richard Smith2fb4ae32012-03-08 02:39:21 +000011827 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +000011828 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
11829 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +000011830 // C++11 [usrlit.suffix]p1:
11831 // Literal suffix identifiers that do not start with an underscore
11832 // are reserved for future standardization.
Richard Smith4ac537b2013-07-23 08:14:48 +000011833 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved)
11834 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName);
Douglas Gregor1155c422011-08-30 22:40:35 +000011835 }
Richard Smith2fb4ae32012-03-08 02:39:21 +000011836
Sean Hunta6c058d2010-01-13 09:01:02 +000011837 return false;
11838}
11839
Douglas Gregor074149e2009-01-05 19:45:36 +000011840/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
11841/// linkage specification, including the language and (if present)
Stephen Hines651f13c2014-04-23 16:59:28 -070011842/// the '{'. ExternLoc is the location of the 'extern', Lang is the
11843/// language string literal. LBraceLoc, if valid, provides the location of
Douglas Gregor074149e2009-01-05 19:45:36 +000011844/// the '{' brace. Otherwise, this linkage specification does not
11845/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +000011846Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -070011847 Expr *LangStr,
Chris Lattner7d642712010-11-09 20:15:55 +000011848 SourceLocation LBraceLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -070011849 StringLiteral *Lit = cast<StringLiteral>(LangStr);
11850 if (!Lit->isAscii()) {
11851 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii)
11852 << LangStr->getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011853 return nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -070011854 }
11855
11856 StringRef Lang = Lit->getString();
Chris Lattnercc98eac2008-12-17 07:13:27 +000011857 LinkageSpecDecl::LanguageIDs Language;
Stephen Hines651f13c2014-04-23 16:59:28 -070011858 if (Lang == "C")
Chris Lattnercc98eac2008-12-17 07:13:27 +000011859 Language = LinkageSpecDecl::lang_c;
Stephen Hines651f13c2014-04-23 16:59:28 -070011860 else if (Lang == "C++")
Chris Lattnercc98eac2008-12-17 07:13:27 +000011861 Language = LinkageSpecDecl::lang_cxx;
11862 else {
Stephen Hines651f13c2014-04-23 16:59:28 -070011863 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown)
11864 << LangStr->getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011865 return nullptr;
Chris Lattnercc98eac2008-12-17 07:13:27 +000011866 }
Mike Stump1eb44332009-09-09 15:08:12 +000011867
Chris Lattnercc98eac2008-12-17 07:13:27 +000011868 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +000011869
Stephen Hines651f13c2014-04-23 16:59:28 -070011870 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc,
11871 LangStr->getExprLoc(), Language,
Rafael Espindolae5e575d2013-04-26 01:30:23 +000011872 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000011873 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +000011874 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +000011875 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +000011876}
11877
Abramo Bagnara35f9a192010-07-30 16:47:02 +000011878/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +000011879/// the C++ linkage specification LinkageSpec. If RBraceLoc is
11880/// valid, it's the position of the closing '}' brace in a linkage
11881/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +000011882Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000011883 Decl *LinkageSpec,
11884 SourceLocation RBraceLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -070011885 if (RBraceLoc.isValid()) {
11886 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
11887 LSDecl->setRBraceLoc(RBraceLoc);
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000011888 }
Stephen Hines651f13c2014-04-23 16:59:28 -070011889 PopDeclContext();
Douglas Gregor074149e2009-01-05 19:45:36 +000011890 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +000011891}
11892
Michael Han684aa732013-02-22 17:15:32 +000011893Decl *Sema::ActOnEmptyDeclaration(Scope *S,
11894 AttributeList *AttrList,
11895 SourceLocation SemiLoc) {
11896 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc);
11897 // Attribute declarations appertain to empty declaration so we handle
11898 // them here.
11899 if (AttrList)
11900 ProcessDeclAttributeList(S, ED, AttrList);
Richard Smith6b3d3e52013-02-20 19:22:51 +000011901
Michael Han684aa732013-02-22 17:15:32 +000011902 CurContext->addDecl(ED);
11903 return ED;
Richard Smith6b3d3e52013-02-20 19:22:51 +000011904}
11905
Douglas Gregord308e622009-05-18 20:51:54 +000011906/// \brief Perform semantic analysis for the variable declaration that
11907/// occurs within a C++ catch clause, returning the newly-created
11908/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000011909VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +000011910 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000011911 SourceLocation StartLoc,
11912 SourceLocation Loc,
11913 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +000011914 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +000011915 QualType ExDeclType = TInfo->getType();
11916
Sebastian Redl4b07b292008-12-22 19:15:10 +000011917 // Arrays and functions decay.
11918 if (ExDeclType->isArrayType())
11919 ExDeclType = Context.getArrayDecayedType(ExDeclType);
11920 else if (ExDeclType->isFunctionType())
11921 ExDeclType = Context.getPointerType(ExDeclType);
11922
11923 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
11924 // The exception-declaration shall not denote a pointer or reference to an
11925 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +000011926 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +000011927 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +000011928 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +000011929 Invalid = true;
11930 }
Douglas Gregord308e622009-05-18 20:51:54 +000011931
Sebastian Redl4b07b292008-12-22 19:15:10 +000011932 QualType BaseType = ExDeclType;
11933 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +000011934 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +000011935 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000011936 BaseType = Ptr->getPointeeType();
11937 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +000011938 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +000011939 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +000011940 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +000011941 BaseType = Ref->getPointeeType();
11942 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +000011943 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +000011944 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +000011945 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +000011946 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +000011947 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000011948
Mike Stump1eb44332009-09-09 15:08:12 +000011949 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +000011950 RequireNonAbstractType(Loc, ExDeclType,
11951 diag::err_abstract_type_in_decl,
11952 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +000011953 Invalid = true;
11954
John McCall5a180392010-07-24 00:37:23 +000011955 // Only the non-fragile NeXT runtime currently supports C++ catches
11956 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +000011957 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +000011958 QualType T = ExDeclType;
11959 if (const ReferenceType *RT = T->getAs<ReferenceType>())
11960 T = RT->getPointeeType();
11961
11962 if (T->isObjCObjectType()) {
11963 Diag(Loc, diag::err_objc_object_catch);
11964 Invalid = true;
11965 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +000011966 // FIXME: should this be a test for macosx-fragile specifically?
11967 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +000011968 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +000011969 }
11970 }
11971
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000011972 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
Rafael Espindolad2615cc2013-04-03 19:27:57 +000011973 ExDeclType, TInfo, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +000011974 ExDecl->setExceptionVariable(true);
11975
Douglas Gregor9aab9c42011-12-10 01:22:52 +000011976 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000011977 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +000011978 Invalid = true;
11979
Douglas Gregorc41b8782011-07-06 18:14:43 +000011980 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +000011981 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
John McCallb760f112013-03-22 02:10:40 +000011982 // Insulate this from anything else we might currently be parsing.
11983 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
11984
Douglas Gregor6d182892010-03-05 23:38:39 +000011985 // C++ [except.handle]p16:
Nick Lewyckyee0bc3b2013-09-22 10:06:57 +000011986 // The object declared in an exception-declaration or, if the
11987 // exception-declaration does not specify a name, a temporary (12.2) is
Douglas Gregor6d182892010-03-05 23:38:39 +000011988 // copy-initialized (8.5) from the exception object. [...]
11989 // The object is destroyed when the handler exits, after the destruction
11990 // of any automatic objects initialized within the handler.
11991 //
Nick Lewyckyee0bc3b2013-09-22 10:06:57 +000011992 // We just pretend to initialize the object with itself, then make sure
Douglas Gregor6d182892010-03-05 23:38:39 +000011993 // it can be destroyed later.
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070011994 QualType initType = Context.getExceptionObjectType(ExDeclType);
John McCalle996ffd2011-02-16 08:02:54 +000011995
11996 InitializedEntity entity =
11997 InitializedEntity::InitializeVariable(ExDecl);
11998 InitializationKind initKind =
11999 InitializationKind::CreateCopy(Loc, SourceLocation());
12000
12001 Expr *opaqueValue =
12002 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +000012003 InitializationSequence sequence(*this, entity, initKind, opaqueValue);
12004 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue);
John McCalle996ffd2011-02-16 08:02:54 +000012005 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +000012006 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +000012007 else {
12008 // If the constructor used was non-trivial, set this as the
12009 // "initializer".
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012010 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>();
John McCalle996ffd2011-02-16 08:02:54 +000012011 if (!construct->getConstructor()->isTrivial()) {
12012 Expr *init = MaybeCreateExprWithCleanups(construct);
12013 ExDecl->setInit(init);
12014 }
12015
12016 // And make sure it's destructable.
12017 FinalizeVarWithDestructor(ExDecl, recordType);
12018 }
Douglas Gregor6d182892010-03-05 23:38:39 +000012019 }
12020 }
12021
Douglas Gregord308e622009-05-18 20:51:54 +000012022 if (Invalid)
12023 ExDecl->setInvalidDecl();
12024
12025 return ExDecl;
12026}
12027
12028/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
12029/// handler.
John McCalld226f652010-08-21 09:40:31 +000012030Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +000012031 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +000012032 bool Invalid = D.isInvalidType();
12033
12034 // Check for unexpanded parameter packs.
Jordan Rose41f3f3a2013-03-05 01:27:54 +000012035 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
12036 UPPC_ExceptionType)) {
Douglas Gregora669c532010-12-16 17:48:04 +000012037 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
12038 D.getIdentifierLoc());
12039 Invalid = true;
12040 }
12041
Sebastian Redl4b07b292008-12-22 19:15:10 +000012042 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +000012043 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +000012044 LookupOrdinaryName,
12045 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000012046 // The scope should be freshly made just for us. There is just no way
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012047 // it contains any previous declaration, except for function parameters in
12048 // a function-try-block's catch statement.
John McCalld226f652010-08-21 09:40:31 +000012049 assert(!S->isDeclScope(PrevDecl));
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012050 if (isDeclInScope(PrevDecl, CurContext, S)) {
12051 Diag(D.getIdentifierLoc(), diag::err_redefinition)
12052 << D.getIdentifier();
12053 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
12054 Invalid = true;
12055 } else if (PrevDecl->isTemplateParameter())
Sebastian Redl4b07b292008-12-22 19:15:10 +000012056 // Maybe we will complain about the shadowed template parameter.
12057 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +000012058 }
12059
Chris Lattnereaaebc72009-04-25 08:06:05 +000012060 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000012061 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
12062 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +000012063 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000012064 }
12065
Douglas Gregor83cb9422010-09-09 17:09:21 +000012066 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +000012067 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000012068 D.getIdentifierLoc(),
12069 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +000012070 if (Invalid)
12071 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000012072
Sebastian Redl4b07b292008-12-22 19:15:10 +000012073 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +000012074 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +000012075 PushOnScopeChains(ExDecl, S);
12076 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000012077 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +000012078
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000012079 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +000012080 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +000012081}
Anders Carlssonfb311762009-03-14 00:25:26 +000012082
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000012083Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +000012084 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +000012085 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000012086 SourceLocation RParenLoc) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012087 StringLiteral *AssertMessage =
12088 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr;
Anders Carlssonfb311762009-03-14 00:25:26 +000012089
Richard Smithe3f470a2012-07-11 22:37:56 +000012090 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012091 return nullptr;
Richard Smithe3f470a2012-07-11 22:37:56 +000012092
12093 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
12094 AssertMessage, RParenLoc, false);
12095}
12096
12097Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
12098 Expr *AssertExpr,
12099 StringLiteral *AssertMessage,
12100 SourceLocation RParenLoc,
12101 bool Failed) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012102 assert(AssertExpr != nullptr && "Expected non-null condition");
Richard Smithe3f470a2012-07-11 22:37:56 +000012103 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
12104 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +000012105 // In a static_assert-declaration, the constant-expression shall be a
12106 // constant expression that can be contextually converted to bool.
12107 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
12108 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000012109 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +000012110
Richard Smithdaaefc52011-12-14 23:32:26 +000012111 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +000012112 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +000012113 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +000012114 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000012115 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +000012116
Richard Smithe3f470a2012-07-11 22:37:56 +000012117 if (!Failed && !Cond) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000012118 SmallString<256> MsgBuffer;
Richard Smith0cc323c2012-03-05 23:20:05 +000012119 llvm::raw_svector_ostream Msg(MsgBuffer);
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012120 if (AssertMessage)
12121 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000012122 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012123 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +000012124 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +000012125 }
Anders Carlssonc3082412009-03-14 00:33:21 +000012126 }
Mike Stump1eb44332009-09-09 15:08:12 +000012127
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000012128 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +000012129 AssertExpr, AssertMessage, RParenLoc,
12130 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +000012131
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000012132 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +000012133 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +000012134}
Sebastian Redl50de12f2009-03-24 22:27:57 +000012135
Douglas Gregor1d869352010-04-07 16:53:43 +000012136/// \brief Perform semantic analysis of the given friend type declaration.
12137///
12138/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +000012139FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +000012140 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +000012141 TypeSourceInfo *TSInfo) {
12142 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
12143
12144 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +000012145 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +000012146
Richard Smith6b130222011-10-18 21:39:00 +000012147 // C++03 [class.friend]p2:
12148 // An elaborated-type-specifier shall be used in a friend declaration
12149 // for a class.*
12150 //
12151 // * The class-key of the elaborated-type-specifier is required.
12152 if (!ActiveTemplateInstantiations.empty()) {
12153 // Do not complain about the form of friend template types during
12154 // template instantiation; we will already have complained when the
12155 // template was declared.
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000012156 } else {
12157 if (!T->isElaboratedTypeSpecifier()) {
12158 // If we evaluated the type to a record type, suggest putting
12159 // a tag in front.
12160 if (const RecordType *RT = T->getAs<RecordType>()) {
12161 RecordDecl *RD = RT->getDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012162
12163 SmallString<16> InsertionText(" ");
12164 InsertionText += RD->getKindName();
12165
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000012166 Diag(TypeRange.getBegin(),
12167 getLangOpts().CPlusPlus11 ?
12168 diag::warn_cxx98_compat_unelaborated_friend_type :
12169 diag::ext_unelaborated_friend_type)
12170 << (unsigned) RD->getTagKind()
12171 << T
12172 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
12173 InsertionText);
12174 } else {
12175 Diag(FriendLoc,
12176 getLangOpts().CPlusPlus11 ?
12177 diag::warn_cxx98_compat_nonclass_type_friend :
12178 diag::ext_nonclass_type_friend)
12179 << T
12180 << TypeRange;
12181 }
12182 } else if (T->getAs<EnumType>()) {
Richard Smith6b130222011-10-18 21:39:00 +000012183 Diag(FriendLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +000012184 getLangOpts().CPlusPlus11 ?
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000012185 diag::warn_cxx98_compat_enum_friend :
12186 diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +000012187 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000012188 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000012189 }
Douglas Gregor1d869352010-04-07 16:53:43 +000012190
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000012191 // C++11 [class.friend]p3:
12192 // A friend declaration that does not declare a function shall have one
12193 // of the following forms:
12194 // friend elaborated-type-specifier ;
12195 // friend simple-type-specifier ;
12196 // friend typename-specifier ;
12197 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
12198 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
12199 }
Richard Smithd6f80da2012-09-20 01:31:00 +000012200
Douglas Gregor06245bf2010-04-07 17:57:12 +000012201 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +000012202 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +000012203 // the friend declaration is ignored.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012204 return FriendDecl::Create(Context, CurContext,
12205 TSInfo->getTypeLoc().getLocStart(), TSInfo,
12206 FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +000012207}
12208
John McCall9a34edb2010-10-19 01:40:49 +000012209/// Handle a friend tag declaration where the scope specifier was
12210/// templated.
12211Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
12212 unsigned TagSpec, SourceLocation TagLoc,
12213 CXXScopeSpec &SS,
Enea Zaffanella8c840282013-01-31 09:54:08 +000012214 IdentifierInfo *Name,
12215 SourceLocation NameLoc,
John McCall9a34edb2010-10-19 01:40:49 +000012216 AttributeList *Attr,
12217 MultiTemplateParamsArg TempParamLists) {
12218 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
12219
12220 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +000012221 bool Invalid = false;
12222
Robert Wilhelm1169e2f2013-07-21 15:20:44 +000012223 if (TemplateParameterList *TemplateParams =
12224 MatchTemplateParametersToScopeSpecifier(
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012225 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true,
Robert Wilhelm1169e2f2013-07-21 15:20:44 +000012226 isExplicitSpecialization, Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +000012227 if (TemplateParams->size() > 0) {
12228 // This is a declaration of a class template.
12229 if (Invalid)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012230 return nullptr;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000012231
Stephen Hines176edba2014-12-01 14:53:08 -080012232 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name,
12233 NameLoc, Attr, TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +000012234 /*ModulePrivateLoc=*/SourceLocation(),
Stephen Hines176edba2014-12-01 14:53:08 -080012235 FriendLoc, TempParamLists.size() - 1,
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012236 TempParamLists.data()).get();
John McCall9a34edb2010-10-19 01:40:49 +000012237 } else {
12238 // The "template<>" header is extraneous.
12239 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
12240 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
12241 isExplicitSpecialization = true;
12242 }
12243 }
12244
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012245 if (Invalid) return nullptr;
John McCall9a34edb2010-10-19 01:40:49 +000012246
John McCall9a34edb2010-10-19 01:40:49 +000012247 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000012248 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000012249 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000012250 isAllExplicitSpecializations = false;
12251 break;
12252 }
12253 }
12254
12255 // FIXME: don't ignore attributes.
12256
12257 // If it's explicit specializations all the way down, just forget
12258 // about the template header and build an appropriate non-templated
12259 // friend. TODO: for source fidelity, remember the headers.
12260 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000012261 if (SS.isEmpty()) {
12262 bool Owned = false;
12263 bool IsDependent = false;
12264 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
Stephen Hines651f13c2014-04-23 16:59:28 -070012265 Attr, AS_public,
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000012266 /*ModulePrivateLoc=*/SourceLocation(),
Stephen Hines651f13c2014-04-23 16:59:28 -070012267 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000012268 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000012269 /*ScopedEnumUsesClassTag=*/false,
Stephen Hines651f13c2014-04-23 16:59:28 -070012270 /*UnderlyingType=*/TypeResult(),
12271 /*IsTypeSpecifier=*/false);
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000012272 }
Stephen Hines651f13c2014-04-23 16:59:28 -070012273
Douglas Gregor2494dd02011-03-01 01:34:45 +000012274 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000012275 ElaboratedTypeKeyword Keyword
12276 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000012277 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000012278 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000012279 if (T.isNull())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012280 return nullptr;
John McCall9a34edb2010-10-19 01:40:49 +000012281
12282 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
12283 if (isa<DependentNameType>(T)) {
David Blaikie39e6ab42013-02-18 22:06:02 +000012284 DependentNameTypeLoc TL =
12285 TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000012286 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000012287 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000012288 TL.setNameLoc(NameLoc);
12289 } else {
David Blaikie39e6ab42013-02-18 22:06:02 +000012290 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000012291 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000012292 TL.setQualifierLoc(QualifierLoc);
David Blaikie39e6ab42013-02-18 22:06:02 +000012293 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000012294 }
12295
12296 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanella8c840282013-01-31 09:54:08 +000012297 TSI, FriendLoc, TempParamLists);
John McCall9a34edb2010-10-19 01:40:49 +000012298 Friend->setAccess(AS_public);
12299 CurContext->addDecl(Friend);
12300 return Friend;
12301 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000012302
12303 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
12304
12305
John McCall9a34edb2010-10-19 01:40:49 +000012306
12307 // Handle the case of a templated-scope friend class. e.g.
12308 // template <class T> class A<T>::B;
12309 // FIXME: we don't support these right now.
Richard Smithce6426f2013-11-08 18:59:56 +000012310 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported)
12311 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext);
John McCall9a34edb2010-10-19 01:40:49 +000012312 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
12313 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
12314 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
David Blaikie39e6ab42013-02-18 22:06:02 +000012315 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000012316 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000012317 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000012318 TL.setNameLoc(NameLoc);
12319
12320 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanella8c840282013-01-31 09:54:08 +000012321 TSI, FriendLoc, TempParamLists);
John McCall9a34edb2010-10-19 01:40:49 +000012322 Friend->setAccess(AS_public);
12323 Friend->setUnsupportedFriend(true);
12324 CurContext->addDecl(Friend);
12325 return Friend;
12326}
12327
12328
John McCalldd4a3b02009-09-16 22:47:08 +000012329/// Handle a friend type declaration. This works in tandem with
12330/// ActOnTag.
12331///
12332/// Notes on friend class templates:
12333///
12334/// We generally treat friend class declarations as if they were
12335/// declaring a class. So, for example, the elaborated type specifier
12336/// in a friend declaration is required to obey the restrictions of a
12337/// class-head (i.e. no typedefs in the scope chain), template
12338/// parameters are required to match up with simple template-ids, &c.
12339/// However, unlike when declaring a template specialization, it's
12340/// okay to refer to a template specialization without an empty
12341/// template parameter declaration, e.g.
12342/// friend class A<T>::B<unsigned>;
12343/// We permit this as a special case; if there are any template
12344/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000012345/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000012346Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000012347 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000012348 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000012349
12350 assert(DS.isFriendSpecified());
12351 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
12352
John McCalldd4a3b02009-09-16 22:47:08 +000012353 // Try to convert the decl specifier to a type. This works for
12354 // friend templates because ActOnTag never produces a ClassTemplateDecl
12355 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000012356 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000012357 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
12358 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000012359 if (TheDeclarator.isInvalidType())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012360 return nullptr;
John McCall67d1a672009-08-06 02:15:43 +000012361
Douglas Gregor6ccab972010-12-16 01:14:37 +000012362 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012363 return nullptr;
Douglas Gregor6ccab972010-12-16 01:14:37 +000012364
John McCalldd4a3b02009-09-16 22:47:08 +000012365 // This is definitely an error in C++98. It's probably meant to
12366 // be forbidden in C++0x, too, but the specification is just
12367 // poorly written.
12368 //
12369 // The problem is with declarations like the following:
12370 // template <T> friend A<T>::foo;
12371 // where deciding whether a class C is a friend or not now hinges
12372 // on whether there exists an instantiation of A that causes
12373 // 'foo' to equal C. There are restrictions on class-heads
12374 // (which we declare (by fiat) elaborated friend declarations to
12375 // be) that makes this tractable.
12376 //
12377 // FIXME: handle "template <> friend class A<T>;", which
12378 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000012379 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000012380 Diag(Loc, diag::err_tagless_friend_type_template)
12381 << DS.getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012382 return nullptr;
John McCalldd4a3b02009-09-16 22:47:08 +000012383 }
Douglas Gregor1d869352010-04-07 16:53:43 +000012384
John McCall02cace72009-08-28 07:59:38 +000012385 // C++98 [class.friend]p1: A friend of a class is a function
12386 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000012387 // This is fixed in DR77, which just barely didn't make the C++03
12388 // deadline. It's also a very silly restriction that seriously
12389 // affects inner classes and which nobody else seems to implement;
12390 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000012391 //
12392 // But note that we could warn about it: it's always useless to
12393 // friend one of your own members (it's not, however, worthless to
12394 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000012395
John McCalldd4a3b02009-09-16 22:47:08 +000012396 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000012397 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000012398 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000012399 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000012400 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000012401 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000012402 DS.getFriendSpecLoc());
12403 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000012404 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000012405
12406 if (!D)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012407 return nullptr;
12408
John McCalldd4a3b02009-09-16 22:47:08 +000012409 D->setAccess(AS_public);
12410 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000012411
John McCalld226f652010-08-21 09:40:31 +000012412 return D;
John McCall02cace72009-08-28 07:59:38 +000012413}
12414
Rafael Espindolafc35cbc2013-01-08 20:44:06 +000012415NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
12416 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000012417 const DeclSpec &DS = D.getDeclSpec();
12418
12419 assert(DS.isFriendSpecified());
12420 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
12421
12422 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000012423 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000012424
12425 // C++ [class.friend]p1
12426 // A friend of a class is a function or class....
12427 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000012428 // It *doesn't* see through dependent types, which is correct
12429 // according to [temp.arg.type]p3:
12430 // If a declaration acquires a function type through a
12431 // type dependent on a template-parameter and this causes
12432 // a declaration that does not use the syntactic form of a
12433 // function declarator to have a function type, the program
12434 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012435 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000012436 Diag(Loc, diag::err_unexpected_friend);
12437
12438 // It might be worthwhile to try to recover by creating an
12439 // appropriate declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012440 return nullptr;
John McCall67d1a672009-08-06 02:15:43 +000012441 }
12442
12443 // C++ [namespace.memdef]p3
12444 // - If a friend declaration in a non-local class first declares a
12445 // class or function, the friend class or function is a member
12446 // of the innermost enclosing namespace.
12447 // - The name of the friend is not found by simple name lookup
12448 // until a matching declaration is provided in that namespace
12449 // scope (either before or after the class declaration granting
12450 // friendship).
12451 // - If a friend function is called, its name may be found by the
12452 // name lookup that considers functions from namespaces and
12453 // classes associated with the types of the function arguments.
12454 // - When looking for a prior declaration of a class or a function
12455 // declared as a friend, scopes outside the innermost enclosing
12456 // namespace scope are not considered.
12457
John McCall337ec3d2010-10-12 23:13:28 +000012458 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000012459 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
12460 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000012461 assert(Name);
12462
Douglas Gregor6ccab972010-12-16 01:14:37 +000012463 // Check for unexpanded parameter packs.
12464 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
12465 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
12466 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012467 return nullptr;
Douglas Gregor6ccab972010-12-16 01:14:37 +000012468
John McCall67d1a672009-08-06 02:15:43 +000012469 // The context we found the declaration in, or in which we should
12470 // create the declaration.
12471 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000012472 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000012473 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000012474 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000012475
Richard Smith4e9686b2013-08-09 04:35:01 +000012476 // There are five cases here.
12477 // - There's no scope specifier and we're in a local class. Only look
12478 // for functions declared in the immediately-enclosing block scope.
12479 // We recover from invalid scope qualifiers as if they just weren't there.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012480 FunctionDecl *FunctionContainingLocalClass = nullptr;
Richard Smith4e9686b2013-08-09 04:35:01 +000012481 if ((SS.isInvalid() || !SS.isSet()) &&
12482 (FunctionContainingLocalClass =
12483 cast<CXXRecordDecl>(CurContext)->isLocalClass())) {
12484 // C++11 [class.friend]p11:
John McCall29ae6e52010-10-13 05:45:15 +000012485 // If a friend declaration appears in a local class and the name
12486 // specified is an unqualified name, a prior declaration is
12487 // looked up without considering scopes that are outside the
12488 // innermost enclosing non-class scope. For a friend function
12489 // declaration, if there is no prior declaration, the program is
12490 // ill-formed.
Richard Smith4e9686b2013-08-09 04:35:01 +000012491
12492 // Find the innermost enclosing non-class scope. This is the block
12493 // scope containing the local class definition (or for a nested class,
12494 // the outer local class).
12495 DCScope = S->getFnParent();
12496
12497 // Look up the function name in the scope.
12498 Previous.clear(LookupLocalFriendName);
12499 LookupName(Previous, S, /*AllowBuiltinCreation*/false);
12500
12501 if (!Previous.empty()) {
12502 // All possible previous declarations must have the same context:
12503 // either they were declared at block scope or they are members of
12504 // one of the enclosing local classes.
12505 DC = Previous.getRepresentativeDecl()->getDeclContext();
12506 } else {
12507 // This is ill-formed, but provide the context that we would have
12508 // declared the function in, if we were permitted to, for error recovery.
12509 DC = FunctionContainingLocalClass;
12510 }
Richard Smitha41c97a2013-09-20 01:15:31 +000012511 adjustContextForLocalExternDecl(DC);
Richard Smith4e9686b2013-08-09 04:35:01 +000012512
12513 // C++ [class.friend]p6:
12514 // A function can be defined in a friend declaration of a class if and
12515 // only if the class is a non-local class (9.8), the function name is
12516 // unqualified, and the function has namespace scope.
12517 if (D.isFunctionDefinition()) {
12518 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
12519 }
12520
12521 // - There's no scope specifier, in which case we just go to the
12522 // appropriate scope and look for a function or function template
12523 // there as appropriate.
12524 } else if (SS.isInvalid() || !SS.isSet()) {
12525 // C++11 [namespace.memdef]p3:
12526 // If the name in a friend declaration is neither qualified nor
12527 // a template-id and the declaration is a function or an
12528 // elaborated-type-specifier, the lookup to determine whether
12529 // the entity has been previously declared shall not consider
12530 // any scopes outside the innermost enclosing namespace.
John McCall8a407372010-10-14 22:22:28 +000012531 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000012532
John McCall29ae6e52010-10-13 05:45:15 +000012533 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000012534 DC = CurContext;
John McCall67d1a672009-08-06 02:15:43 +000012535
Rafael Espindola11dc6342013-04-25 20:12:36 +000012536 // Skip class contexts. If someone can cite chapter and verse
12537 // for this behavior, that would be nice --- it's what GCC and
12538 // EDG do, and it seems like a reasonable intent, but the spec
12539 // really only says that checks for unqualified existing
12540 // declarations should stop at the nearest enclosing namespace,
12541 // not that they should only consider the nearest enclosing
12542 // namespace.
12543 while (DC->isRecord())
12544 DC = DC->getParent();
12545
12546 DeclContext *LookupDC = DC;
12547 while (LookupDC->isTransparentContext())
12548 LookupDC = LookupDC->getParent();
12549
12550 while (true) {
12551 LookupQualifiedName(Previous, LookupDC);
John McCall67d1a672009-08-06 02:15:43 +000012552
Rafael Espindola11dc6342013-04-25 20:12:36 +000012553 if (!Previous.empty()) {
12554 DC = LookupDC;
12555 break;
John McCall8a407372010-10-14 22:22:28 +000012556 }
Rafael Espindola11dc6342013-04-25 20:12:36 +000012557
12558 if (isTemplateId) {
12559 if (isa<TranslationUnitDecl>(LookupDC)) break;
12560 } else {
12561 if (LookupDC->isFileContext()) break;
12562 }
12563 LookupDC = LookupDC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000012564 }
12565
John McCall380aaa42010-10-13 06:22:15 +000012566 DCScope = getScopeForDeclContext(S, DC);
Richard Smith4e9686b2013-08-09 04:35:01 +000012567
John McCall337ec3d2010-10-12 23:13:28 +000012568 // - There's a non-dependent scope specifier, in which case we
12569 // compute it and do a previous lookup there for a function
12570 // or function template.
12571 } else if (!SS.getScopeRep()->isDependent()) {
12572 DC = computeDeclContext(SS);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012573 if (!DC) return nullptr;
John McCall337ec3d2010-10-12 23:13:28 +000012574
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012575 if (RequireCompleteDeclContext(SS, DC)) return nullptr;
John McCall337ec3d2010-10-12 23:13:28 +000012576
12577 LookupQualifiedName(Previous, DC);
12578
12579 // Ignore things found implicitly in the wrong scope.
12580 // TODO: better diagnostics for this case. Suggesting the right
12581 // qualified scope would be nice...
12582 LookupResult::Filter F = Previous.makeFilter();
12583 while (F.hasNext()) {
12584 NamedDecl *D = F.next();
12585 if (!DC->InEnclosingNamespaceSetOf(
12586 D->getDeclContext()->getRedeclContext()))
12587 F.erase();
12588 }
12589 F.done();
12590
12591 if (Previous.empty()) {
12592 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012593 Diag(Loc, diag::err_qualified_friend_not_found)
12594 << Name << TInfo->getType();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012595 return nullptr;
John McCall337ec3d2010-10-12 23:13:28 +000012596 }
12597
12598 // C++ [class.friend]p1: A friend of a class is a function or
12599 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000012600 if (DC->Equals(CurContext))
12601 Diag(DS.getFriendSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +000012602 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +000012603 diag::warn_cxx98_compat_friend_is_member :
12604 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000012605
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012606 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000012607 // C++ [class.friend]p6:
12608 // A function can be defined in a friend declaration of a class if and
12609 // only if the class is a non-local class (9.8), the function name is
12610 // unqualified, and the function has namespace scope.
12611 SemaDiagnosticBuilder DB
12612 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
12613
12614 DB << SS.getScopeRep();
12615 if (DC->isFileContext())
12616 DB << FixItHint::CreateRemoval(SS.getRange());
12617 SS.clear();
12618 }
John McCall337ec3d2010-10-12 23:13:28 +000012619
12620 // - There's a scope specifier that does not match any template
12621 // parameter lists, in which case we use some arbitrary context,
12622 // create a method or method template, and wait for instantiation.
12623 // - There's a scope specifier that does match some template
12624 // parameter lists, which we don't handle right now.
12625 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012626 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000012627 // C++ [class.friend]p6:
12628 // A function can be defined in a friend declaration of a class if and
12629 // only if the class is a non-local class (9.8), the function name is
12630 // unqualified, and the function has namespace scope.
12631 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
12632 << SS.getScopeRep();
12633 }
12634
John McCall337ec3d2010-10-12 23:13:28 +000012635 DC = CurContext;
12636 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000012637 }
Douglas Gregor883af832011-10-10 01:11:59 +000012638
John McCall29ae6e52010-10-13 05:45:15 +000012639 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000012640 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000012641 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
12642 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
12643 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000012644 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000012645 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
12646 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012647 return nullptr;
John McCall67d1a672009-08-06 02:15:43 +000012648 }
John McCall67d1a672009-08-06 02:15:43 +000012649 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012650
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000012651 // FIXME: This is an egregious hack to cope with cases where the scope stack
12652 // does not contain the declaration context, i.e., in an out-of-line
12653 // definition of a class.
12654 Scope FakeDCScope(S, Scope::DeclScope, Diags);
12655 if (!DCScope) {
12656 FakeDCScope.setEntity(DC);
12657 DCScope = &FakeDCScope;
12658 }
Richard Smith4e9686b2013-08-09 04:35:01 +000012659
Francois Pichetaf0f4d02011-08-14 03:52:19 +000012660 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000012661 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000012662 TemplateParams, AddToScope);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012663 if (!ND) return nullptr;
John McCallab88d972009-08-31 22:39:49 +000012664
Douglas Gregor182ddf02009-09-28 00:08:27 +000012665 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000012666
Richard Smith4e9686b2013-08-09 04:35:01 +000012667 // If we performed typo correction, we might have added a scope specifier
12668 // and changed the decl context.
12669 DC = ND->getDeclContext();
12670
John McCallab88d972009-08-31 22:39:49 +000012671 // Add the function declaration to the appropriate lookup tables,
12672 // adjusting the redeclarations list as necessary. We don't
12673 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000012674 //
John McCallab88d972009-08-31 22:39:49 +000012675 // Also update the scope-based lookup if the target context's
12676 // lookup context is in lexical scope.
12677 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000012678 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000012679 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000012680 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000012681 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000012682 }
John McCall02cace72009-08-28 07:59:38 +000012683
12684 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000012685 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000012686 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000012687 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000012688 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000012689
John McCall1f2e1a92012-08-10 03:15:35 +000012690 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000012691 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000012692 } else {
12693 if (DC->isRecord()) CheckFriendAccess(ND);
12694
John McCall6102ca12010-10-16 06:59:13 +000012695 FunctionDecl *FD;
12696 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
12697 FD = FTD->getTemplatedDecl();
12698 else
12699 FD = cast<FunctionDecl>(ND);
12700
David Majnemerf6a144f2013-06-25 23:09:30 +000012701 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a
12702 // default argument expression, that declaration shall be a definition
12703 // and shall be the only declaration of the function or function
12704 // template in the translation unit.
12705 if (functionDeclHasDefaultArgument(FD)) {
12706 if (FunctionDecl *OldFD = FD->getPreviousDecl()) {
12707 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
12708 Diag(OldFD->getLocation(), diag::note_previous_declaration);
12709 } else if (!D.isFunctionDefinition())
12710 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def);
12711 }
12712
John McCall6102ca12010-10-16 06:59:13 +000012713 // Mark templated-scope function declarations as unsupported.
Stephen Hines176edba2014-12-01 14:53:08 -080012714 if (FD->getNumTemplateParameterLists() && SS.isValid()) {
12715 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported)
12716 << SS.getScopeRep() << SS.getRange()
12717 << cast<CXXRecordDecl>(CurContext);
John McCall6102ca12010-10-16 06:59:13 +000012718 FrD->setUnsupportedFriend(true);
Stephen Hines176edba2014-12-01 14:53:08 -080012719 }
John McCall6102ca12010-10-16 06:59:13 +000012720 }
John McCall337ec3d2010-10-12 23:13:28 +000012721
John McCalld226f652010-08-21 09:40:31 +000012722 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000012723}
12724
John McCalld226f652010-08-21 09:40:31 +000012725void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
12726 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000012727
Aaron Ballmanafb7ce32013-01-16 23:39:10 +000012728 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl);
Sebastian Redl50de12f2009-03-24 22:27:57 +000012729 if (!Fn) {
12730 Diag(DelLoc, diag::err_deleted_non_function);
12731 return;
12732 }
Richard Smith0ab5b4c2013-04-02 19:38:47 +000012733
Douglas Gregoref96ee02012-01-14 16:38:05 +000012734 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000012735 // Don't consider the implicit declaration we generate for explicit
12736 // specializations. FIXME: Do not generate these implicit declarations.
Stephen Hines651f13c2014-04-23 16:59:28 -070012737 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization ||
12738 Prev->getPreviousDecl()) &&
12739 !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000012740 Diag(DelLoc, diag::err_deleted_decl_not_first);
Stephen Hines651f13c2014-04-23 16:59:28 -070012741 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(),
12742 Prev->isImplicit() ? diag::note_previous_implicit_declaration
12743 : diag::note_previous_declaration);
David Blaikied9cf8262012-06-25 21:55:30 +000012744 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000012745 // If the declaration wasn't the first, we delete the function anyway for
12746 // recovery.
Richard Smith0ab5b4c2013-04-02 19:38:47 +000012747 Fn = Fn->getCanonicalDecl();
Sebastian Redl50de12f2009-03-24 22:27:57 +000012748 }
Richard Smith0ab5b4c2013-04-02 19:38:47 +000012749
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012750 // dllimport/dllexport cannot be deleted.
12751 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) {
12752 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr;
12753 Fn->setInvalidDecl();
12754 }
12755
Richard Smith0ab5b4c2013-04-02 19:38:47 +000012756 if (Fn->isDeleted())
12757 return;
12758
12759 // See if we're deleting a function which is already known to override a
12760 // non-deleted virtual function.
12761 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) {
12762 bool IssuedDiagnostic = false;
12763 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
12764 E = MD->end_overridden_methods();
12765 I != E; ++I) {
12766 if (!(*MD->begin_overridden_methods())->isDeleted()) {
12767 if (!IssuedDiagnostic) {
12768 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
12769 IssuedDiagnostic = true;
12770 }
12771 Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
12772 }
12773 }
12774 }
12775
Stephen Hines651f13c2014-04-23 16:59:28 -070012776 // C++11 [basic.start.main]p3:
12777 // A program that defines main as deleted [...] is ill-formed.
12778 if (Fn->isMain())
12779 Diag(DelLoc, diag::err_deleted_main);
12780
Sean Hunt10620eb2011-05-06 20:44:56 +000012781 Fn->setDeletedAsWritten();
Sebastian Redl50de12f2009-03-24 22:27:57 +000012782}
Sebastian Redl13e88542009-04-27 21:33:24 +000012783
Sean Hunte4246a62011-05-12 06:15:49 +000012784void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
Aaron Ballmanafb7ce32013-01-16 23:39:10 +000012785 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl);
Sean Hunte4246a62011-05-12 06:15:49 +000012786
12787 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000012788 if (MD->getParent()->isDependentType()) {
12789 MD->setDefaulted();
12790 MD->setExplicitlyDefaulted();
12791 return;
12792 }
12793
Sean Hunte4246a62011-05-12 06:15:49 +000012794 CXXSpecialMember Member = getSpecialMember(MD);
12795 if (Member == CXXInvalid) {
Eli Friedmanfcb5a252013-07-11 23:55:07 +000012796 if (!MD->isInvalidDecl())
12797 Diag(DefaultLoc, diag::err_default_special_members);
Sean Hunte4246a62011-05-12 06:15:49 +000012798 return;
12799 }
12800
12801 MD->setDefaulted();
12802 MD->setExplicitlyDefaulted();
12803
Sean Huntcd10dec2011-05-23 23:14:04 +000012804 // If this definition appears within the record, do the checking when
12805 // the record is complete.
12806 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000012807 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000012808 // Find the uninstantiated declaration that actually had the '= default'
12809 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000012810 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000012811
Richard Smith12fef492013-03-27 00:22:47 +000012812 // If the method was defaulted on its first declaration, we will have
12813 // already performed the checking in CheckCompletedCXXClass. Such a
12814 // declaration doesn't trigger an implicit definition.
Sean Huntcd10dec2011-05-23 23:14:04 +000012815 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000012816 return;
12817
Richard Smithb9d0b762012-07-27 04:22:15 +000012818 CheckExplicitlyDefaultedSpecialMember(MD);
12819
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012820 if (MD->isInvalidDecl())
12821 return;
12822
Sean Hunte4246a62011-05-12 06:15:49 +000012823 switch (Member) {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012824 case CXXDefaultConstructor:
12825 DefineImplicitDefaultConstructor(DefaultLoc,
12826 cast<CXXConstructorDecl>(MD));
Sean Hunt49634cf2011-05-13 06:10:58 +000012827 break;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012828 case CXXCopyConstructor:
12829 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
Sean Hunte4246a62011-05-12 06:15:49 +000012830 break;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012831 case CXXCopyAssignment:
12832 DefineImplicitCopyAssignment(DefaultLoc, MD);
Sean Hunt2b188082011-05-14 05:23:28 +000012833 break;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012834 case CXXDestructor:
12835 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD));
Sean Huntcb45a0f2011-05-12 22:46:25 +000012836 break;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012837 case CXXMoveConstructor:
12838 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
Sean Hunt82713172011-05-25 23:16:36 +000012839 break;
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000012840 case CXXMoveAssignment:
12841 DefineImplicitMoveAssignment(DefaultLoc, MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000012842 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000012843 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000012844 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000012845 }
12846 } else {
12847 Diag(DefaultLoc, diag::err_default_special_members);
12848 }
12849}
12850
Sebastian Redl13e88542009-04-27 21:33:24 +000012851static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000012852 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000012853 Stmt *SubStmt = *CI;
12854 if (!SubStmt)
12855 continue;
12856 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000012857 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000012858 diag::err_return_in_constructor_handler);
12859 if (!isa<Expr>(SubStmt))
12860 SearchForReturnInStmt(Self, SubStmt);
12861 }
12862}
12863
12864void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
12865 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
12866 CXXCatchStmt *Handler = TryBlock->getHandler(I);
12867 SearchForReturnInStmt(*this, Handler);
12868 }
12869}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012870
David Blaikie299adab2013-01-18 23:03:15 +000012871bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
Aaron Ballmanfff32482012-12-09 17:45:41 +000012872 const CXXMethodDecl *Old) {
12873 const FunctionType *NewFT = New->getType()->getAs<FunctionType>();
12874 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>();
12875
12876 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
12877
12878 // If the calling conventions match, everything is fine
12879 if (NewCC == OldCC)
12880 return false;
12881
Stephen Hines651f13c2014-04-23 16:59:28 -070012882 // If the calling conventions mismatch because the new function is static,
12883 // suppress the calling convention mismatch error; the error about static
12884 // function override (err_static_overrides_virtual from
12885 // Sema::CheckFunctionDeclaration) is more clear.
12886 if (New->getStorageClass() == SC_Static)
12887 return false;
12888
Reid Kleckneref072032013-08-27 23:08:25 +000012889 Diag(New->getLocation(),
12890 diag::err_conflicting_overriding_cc_attributes)
12891 << New->getDeclName() << New->getType() << Old->getType();
12892 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
12893 return true;
Aaron Ballmanfff32482012-12-09 17:45:41 +000012894}
12895
Mike Stump1eb44332009-09-09 15:08:12 +000012896bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012897 const CXXMethodDecl *Old) {
Stephen Hines651f13c2014-04-23 16:59:28 -070012898 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType();
12899 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012900
Chandler Carruth73857792010-02-15 11:53:20 +000012901 if (Context.hasSameType(NewTy, OldTy) ||
12902 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012903 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000012904
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012905 // Check if the return types are covariant
12906 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000012907
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012908 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000012909 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
12910 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012911 NewClassTy = NewPT->getPointeeType();
12912 OldClassTy = OldPT->getPointeeType();
12913 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000012914 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
12915 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
12916 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
12917 NewClassTy = NewRT->getPointeeType();
12918 OldClassTy = OldRT->getPointeeType();
12919 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012920 }
12921 }
Mike Stump1eb44332009-09-09 15:08:12 +000012922
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012923 // The return types aren't either both pointers or references to a class type.
12924 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000012925 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012926 diag::err_different_return_type_for_overriding_virtual_function)
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012927 << New->getDeclName() << NewTy << OldTy
12928 << New->getReturnTypeSourceRange();
12929 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12930 << Old->getReturnTypeSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +000012931
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012932 return true;
12933 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012934
Anders Carlssonbe2e2052009-12-31 18:34:24 +000012935 // C++ [class.virtual]p6:
12936 // If the return type of D::f differs from the return type of B::f, the
12937 // class type in the return type of D::f shall be complete at the point of
12938 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000012939 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
12940 if (!RT->isBeingDefined() &&
12941 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000012942 diag::err_covariant_return_incomplete,
12943 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000012944 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000012945 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000012946
Douglas Gregora4923eb2009-11-16 21:35:15 +000012947 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012948 // Check if the new class derives from the old class.
12949 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012950 Diag(New->getLocation(), diag::err_covariant_return_not_derived)
12951 << New->getDeclName() << NewTy << OldTy
12952 << New->getReturnTypeSourceRange();
12953 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12954 << Old->getReturnTypeSourceRange();
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012955 return true;
12956 }
Mike Stump1eb44332009-09-09 15:08:12 +000012957
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012958 // Check if we the conversion from derived to base is valid.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012959 if (CheckDerivedToBaseConversion(
12960 NewClassTy, OldClassTy,
12961 diag::err_covariant_return_inaccessible_base,
12962 diag::err_covariant_return_ambiguous_derived_to_base_conv,
12963 New->getLocation(), New->getReturnTypeSourceRange(),
12964 New->getDeclName(), nullptr)) {
John McCalleee1d542011-02-14 07:13:47 +000012965 // FIXME: this note won't trigger for delayed access control
12966 // diagnostics, and it's impossible to get an undelayed error
12967 // here from access control during the original parse because
12968 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012969 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12970 << Old->getReturnTypeSourceRange();
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012971 return true;
12972 }
12973 }
Mike Stump1eb44332009-09-09 15:08:12 +000012974
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012975 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000012976 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012977 Diag(New->getLocation(),
12978 diag::err_covariant_return_type_different_qualifications)
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012979 << New->getDeclName() << NewTy << OldTy
12980 << New->getReturnTypeSourceRange();
12981 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12982 << Old->getReturnTypeSourceRange();
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012983 return true;
12984 };
Mike Stump1eb44332009-09-09 15:08:12 +000012985
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012986
12987 // The new class type must have the same or less qualifiers as the old type.
12988 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
12989 Diag(New->getLocation(),
12990 diag::err_covariant_return_type_class_type_more_qualified)
Stephen Hinesc568f1e2014-07-21 00:47:37 -070012991 << New->getDeclName() << NewTy << OldTy
12992 << New->getReturnTypeSourceRange();
12993 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12994 << Old->getReturnTypeSourceRange();
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012995 return true;
12996 };
Mike Stump1eb44332009-09-09 15:08:12 +000012997
Anders Carlssonc3a68b22009-05-14 19:52:19 +000012998 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000012999}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013000
Douglas Gregor4ba31362009-12-01 17:24:26 +000013001/// \brief Mark the given method pure.
13002///
13003/// \param Method the method to be marked pure.
13004///
13005/// \param InitRange the source range that covers the "0" initializer.
13006bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000013007 SourceLocation EndLoc = InitRange.getEnd();
13008 if (EndLoc.isValid())
13009 Method->setRangeEnd(EndLoc);
13010
Douglas Gregor4ba31362009-12-01 17:24:26 +000013011 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
13012 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000013013 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000013014 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000013015
13016 if (!Method->isInvalidDecl())
13017 Diag(Method->getLocation(), diag::err_non_virtual_pure)
13018 << Method->getDeclName() << InitRange;
13019 return true;
13020}
13021
Douglas Gregor552e2992012-02-21 02:22:07 +000013022/// \brief Determine whether the given declaration is a static data member.
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000013023static bool isStaticDataMember(const Decl *D) {
13024 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D))
13025 return Var->isStaticDataMember();
13026
13027 return false;
Douglas Gregor552e2992012-02-21 02:22:07 +000013028}
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000013029
John McCall731ad842009-12-19 09:28:58 +000013030/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
13031/// an initializer for the out-of-line declaration 'Dcl'. The scope
13032/// is a fresh scope pushed for just this purpose.
13033///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013034/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
13035/// static data member of class X, names should be looked up in the scope of
13036/// class X.
John McCalld226f652010-08-21 09:40:31 +000013037void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013038 // If there is no declaration, there was an error parsing it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013039 if (!D || D->isInvalidDecl())
13040 return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013041
Stephen Hines651f13c2014-04-23 16:59:28 -070013042 // We will always have a nested name specifier here, but this declaration
13043 // might not be out of line if the specifier names the current namespace:
13044 // extern int n;
13045 // int ::n = 0;
13046 if (D->isOutOfLine())
13047 EnterDeclaratorContext(S, D->getDeclContext());
13048
Douglas Gregor552e2992012-02-21 02:22:07 +000013049 // If we are parsing the initializer for a static data member, push a
13050 // new expression evaluation context that is associated with this static
13051 // data member.
13052 if (isStaticDataMember(D))
13053 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013054}
13055
13056/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000013057/// initializer for the out-of-line declaration 'D'.
13058void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013059 // If there is no declaration, there was an error parsing it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013060 if (!D || D->isInvalidDecl())
13061 return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013062
Douglas Gregor552e2992012-02-21 02:22:07 +000013063 if (isStaticDataMember(D))
Stephen Hines651f13c2014-04-23 16:59:28 -070013064 PopExpressionEvaluationContext();
Douglas Gregor552e2992012-02-21 02:22:07 +000013065
Stephen Hines651f13c2014-04-23 16:59:28 -070013066 if (D->isOutOfLine())
13067 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000013068}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013069
13070/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
13071/// C++ if/switch/while/for statement.
13072/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000013073DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013074 // C++ 6.4p2:
13075 // The declarator shall not specify a function or an array.
13076 // The type-specifier-seq shall not contain typedef and shall not declare a
13077 // new class or enumeration.
13078 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
13079 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000013080
13081 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000013082 if (!Dcl)
13083 return true;
13084
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000013085 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
13086 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013087 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000013088 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013089 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013090
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000013091 return Dcl;
13092}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000013093
Douglas Gregordfe65432011-07-28 19:11:31 +000013094void Sema::LoadExternalVTableUses() {
13095 if (!ExternalSource)
13096 return;
13097
13098 SmallVector<ExternalVTableUse, 4> VTables;
13099 ExternalSource->ReadUsedVTables(VTables);
13100 SmallVector<VTableUse, 4> NewUses;
13101 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
13102 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
13103 = VTablesUsed.find(VTables[I].Record);
13104 // Even if a definition wasn't required before, it may be required now.
13105 if (Pos != VTablesUsed.end()) {
13106 if (!Pos->second && VTables[I].DefinitionRequired)
13107 Pos->second = true;
13108 continue;
13109 }
13110
13111 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
13112 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
13113 }
13114
13115 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
13116}
13117
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013118void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
13119 bool DefinitionRequired) {
13120 // Ignore any vtable uses in unevaluated operands or for classes that do
13121 // not have a vtable.
13122 if (!Class->isDynamicClass() || Class->isDependentContext() ||
John McCallaeeacf72013-05-03 00:10:13 +000013123 CurContext->isDependentContext() || isUnevaluatedContext())
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000013124 return;
13125
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013126 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000013127 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013128 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
13129 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
13130 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
13131 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000013132 // If we already had an entry, check to see if we are promoting this vtable
Stephen Hines0e2c34f2015-03-23 12:09:02 -070013133 // to require a definition. If so, we need to reappend to the VTableUses
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000013134 // list, since we may have already processed the first entry.
13135 if (DefinitionRequired && !Pos.first->second) {
13136 Pos.first->second = true;
13137 } else {
13138 // Otherwise, we can early exit.
13139 return;
13140 }
Stephen Hines651f13c2014-04-23 16:59:28 -070013141 } else {
13142 // The Microsoft ABI requires that we perform the destructor body
13143 // checks (i.e. operator delete() lookup) when the vtable is marked used, as
13144 // the deleting destructor is emitted with the vtable, not with the
13145 // destructor definition as in the Itanium ABI.
13146 // If it has a definition, we do the check at that point instead.
13147 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
13148 Class->hasUserDeclaredDestructor() &&
13149 !Class->getDestructor()->isDefined() &&
13150 !Class->getDestructor()->isDeleted()) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -070013151 CXXDestructorDecl *DD = Class->getDestructor();
13152 ContextRAII SavedContext(*this, DD);
13153 CheckDestructor(DD);
Stephen Hines651f13c2014-04-23 16:59:28 -070013154 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013155 }
13156
13157 // Local classes need to have their virtual members marked
13158 // immediately. For all other classes, we mark their virtual members
13159 // at the end of the translation unit.
13160 if (Class->isLocalClass())
13161 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000013162 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013163 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000013164}
13165
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013166bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000013167 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013168 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000013169 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000013170
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013171 // Note: The VTableUses vector could grow as a result of marking
13172 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000013173 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013174 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000013175 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013176 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000013177 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013178 if (!Class)
13179 continue;
13180
13181 SourceLocation Loc = VTableUses[I].second;
13182
Richard Smithb9d0b762012-07-27 04:22:15 +000013183 bool DefineVTable = true;
13184
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013185 // If this class has a key function, but that key function is
13186 // defined in another translation unit, we don't need to emit the
13187 // vtable even though we're using it.
John McCalld5617ee2013-01-25 22:31:03 +000013188 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000013189 if (KeyFunction && !KeyFunction->hasBody()) {
Rafael Espindolafc218132013-08-26 23:23:21 +000013190 // The key function is in another translation unit.
13191 DefineVTable = false;
13192 TemplateSpecializationKind TSK =
13193 KeyFunction->getTemplateSpecializationKind();
13194 assert(TSK != TSK_ExplicitInstantiationDefinition &&
13195 TSK != TSK_ImplicitInstantiation &&
13196 "Instantiations don't have key functions");
13197 (void)TSK;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013198 } else if (!KeyFunction) {
13199 // If we have a class with no key function that is the subject
13200 // of an explicit instantiation declaration, suppress the
13201 // vtable; it will live with the explicit instantiation
13202 // definition.
13203 bool IsExplicitInstantiationDeclaration
13204 = Class->getTemplateSpecializationKind()
13205 == TSK_ExplicitInstantiationDeclaration;
Stephen Hines651f13c2014-04-23 16:59:28 -070013206 for (auto R : Class->redecls()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013207 TemplateSpecializationKind TSK
Stephen Hines651f13c2014-04-23 16:59:28 -070013208 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013209 if (TSK == TSK_ExplicitInstantiationDeclaration)
13210 IsExplicitInstantiationDeclaration = true;
13211 else if (TSK == TSK_ExplicitInstantiationDefinition) {
13212 IsExplicitInstantiationDeclaration = false;
13213 break;
13214 }
13215 }
13216
13217 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000013218 DefineVTable = false;
13219 }
13220
13221 // The exception specifications for all virtual members may be needed even
13222 // if we are not providing an authoritative form of the vtable in this TU.
13223 // We may choose to emit it available_externally anyway.
13224 if (!DefineVTable) {
13225 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
13226 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013227 }
13228
13229 // Mark all of the virtual members of this class as referenced, so
13230 // that we can build a vtable. Then, tell the AST consumer that a
13231 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000013232 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013233 MarkVirtualMembersReferenced(Loc, Class);
13234 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
Stephen Hines0e2c34f2015-03-23 12:09:02 -070013235 if (VTablesUsed[Canonical])
13236 Consumer.HandleVTable(Class);
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013237
13238 // Optionally warn if we're emitting a weak vtable.
Rafael Espindola181e3ec2013-05-13 00:12:11 +000013239 if (Class->isExternallyVisible() &&
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013240 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013241 const FunctionDecl *KeyFunctionDef = nullptr;
Douglas Gregora120d012011-09-23 19:04:03 +000013242 if (!KeyFunction ||
13243 (KeyFunction->hasBody(KeyFunctionDef) &&
13244 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000013245 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
13246 TSK_ExplicitInstantiationDefinition
13247 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
13248 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013249 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000013250 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000013251 VTableUses.clear();
13252
Douglas Gregor78844032011-04-22 22:25:37 +000013253 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000013254}
Anders Carlssond6a637f2009-12-07 08:24:59 +000013255
Richard Smithb9d0b762012-07-27 04:22:15 +000013256void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
13257 const CXXRecordDecl *RD) {
Stephen Hines651f13c2014-04-23 16:59:28 -070013258 for (const auto *I : RD->methods())
13259 if (I->isVirtual() && !I->isPure())
13260 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>());
Richard Smithb9d0b762012-07-27 04:22:15 +000013261}
13262
Rafael Espindola3e1ae932010-03-26 00:36:59 +000013263void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
13264 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000013265 // Mark all functions which will appear in RD's vtable as used.
13266 CXXFinalOverriderMap FinalOverriders;
13267 RD->getFinalOverriders(FinalOverriders);
13268 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
13269 E = FinalOverriders.end();
13270 I != E; ++I) {
13271 for (OverridingMethods::const_iterator OI = I->second.begin(),
13272 OE = I->second.end();
13273 OI != OE; ++OI) {
13274 assert(OI->second.size() > 0 && "no final overrider");
13275 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000013276
Richard Smithff817f72012-07-07 06:59:51 +000013277 // C++ [basic.def.odr]p2:
13278 // [...] A virtual member function is used if it is not pure. [...]
13279 if (!Overrider->isPure())
13280 MarkFunctionReferenced(Loc, Overrider);
13281 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000013282 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000013283
13284 // Only classes that have virtual bases need a VTT.
13285 if (RD->getNumVBases() == 0)
13286 return;
13287
Stephen Hines651f13c2014-04-23 16:59:28 -070013288 for (const auto &I : RD->bases()) {
Rafael Espindola3e1ae932010-03-26 00:36:59 +000013289 const CXXRecordDecl *Base =
Stephen Hines651f13c2014-04-23 16:59:28 -070013290 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000013291 if (Base->getNumVBases() == 0)
13292 continue;
13293 MarkVirtualMembersReferenced(Loc, Base);
13294 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000013295}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013296
13297/// SetIvarInitializers - This routine builds initialization ASTs for the
13298/// Objective-C implementation whose ivars need be initialized.
13299void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000013300 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013301 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000013302 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000013303 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013304 CollectIvarsToConstructOrDestruct(OID, ivars);
13305 if (ivars.empty())
13306 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000013307 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013308 for (unsigned i = 0; i < ivars.size(); i++) {
13309 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000013310 if (Field->isInvalidDecl())
13311 continue;
13312
Sean Huntcbb67482011-01-08 20:30:50 +000013313 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013314 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
13315 InitializationKind InitKind =
13316 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
Dmitri Gribenko62ed8892013-05-05 20:40:26 +000013317
13318 InitializationSequence InitSeq(*this, InitEntity, InitKind, None);
13319 ExprResult MemberInit =
13320 InitSeq.Perform(*this, InitEntity, InitKind, None);
Douglas Gregor53c374f2010-12-07 00:41:46 +000013321 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013322 // Note, MemberInit could actually come back empty if no initialization
13323 // is required (e.g., because it would call a trivial default constructor)
13324 if (!MemberInit.get() || MemberInit.isInvalid())
13325 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000013326
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013327 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000013328 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
13329 SourceLocation(),
Stephen Hinesc568f1e2014-07-21 00:47:37 -070013330 MemberInit.getAs<Expr>(),
Sean Huntcbb67482011-01-08 20:30:50 +000013331 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013332 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000013333
13334 // Be sure that the destructor is accessible and is marked as referenced.
Stephen Hines176edba2014-12-01 14:53:08 -080013335 if (const RecordType *RecordTy =
13336 Context.getBaseElementType(Field->getType())
13337 ->getAs<RecordType>()) {
13338 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000013339 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000013340 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000013341 CheckDestructorAccess(Field->getLocation(), Destructor,
13342 PDiag(diag::err_access_dtor_ivar)
13343 << Context.getBaseElementType(Field->getType()));
13344 }
13345 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000013346 }
13347 ObjCImplementation->setIvarInitializers(Context,
13348 AllToInit.data(), AllToInit.size());
13349 }
13350}
Sean Huntfe57eef2011-05-04 05:57:24 +000013351
Sean Huntebcbe1d2011-05-04 23:29:54 +000013352static
13353void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
13354 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
13355 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
13356 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
13357 Sema &S) {
Sean Huntebcbe1d2011-05-04 23:29:54 +000013358 if (Ctor->isInvalidDecl())
13359 return;
13360
Richard Smitha8eaf002012-08-23 06:16:52 +000013361 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
13362
13363 // Target may not be determinable yet, for instance if this is a dependent
13364 // call in an uninstantiated template.
13365 if (Target) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013366 const FunctionDecl *FNTarget = nullptr;
Richard Smitha8eaf002012-08-23 06:16:52 +000013367 (void)Target->hasBody(FNTarget);
13368 Target = const_cast<CXXConstructorDecl*>(
13369 cast_or_null<CXXConstructorDecl>(FNTarget));
13370 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000013371
13372 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
13373 // Avoid dereferencing a null pointer here.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013374 *TCanonical = Target? Target->getCanonicalDecl() : nullptr;
Sean Huntebcbe1d2011-05-04 23:29:54 +000013375
Stephen Hines176edba2014-12-01 14:53:08 -080013376 if (!Current.insert(Canonical).second)
Sean Huntebcbe1d2011-05-04 23:29:54 +000013377 return;
13378
13379 // We know that beyond here, we aren't chaining into a cycle.
13380 if (!Target || !Target->isDelegatingConstructor() ||
13381 Target->isInvalidDecl() || Valid.count(TCanonical)) {
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000013382 Valid.insert(Current.begin(), Current.end());
Sean Huntebcbe1d2011-05-04 23:29:54 +000013383 Current.clear();
13384 // We've hit a cycle.
13385 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
13386 Current.count(TCanonical)) {
13387 // If we haven't diagnosed this cycle yet, do so now.
13388 if (!Invalid.count(TCanonical)) {
13389 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000013390 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000013391 << Ctor;
13392
Richard Smitha8eaf002012-08-23 06:16:52 +000013393 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000013394 if (TCanonical != Canonical)
13395 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
13396
13397 CXXConstructorDecl *C = Target;
13398 while (C->getCanonicalDecl() != Canonical) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013399 const FunctionDecl *FNTarget = nullptr;
Sean Huntebcbe1d2011-05-04 23:29:54 +000013400 (void)C->getTargetConstructor()->hasBody(FNTarget);
13401 assert(FNTarget && "Ctor cycle through bodiless function");
13402
Richard Smitha8eaf002012-08-23 06:16:52 +000013403 C = const_cast<CXXConstructorDecl*>(
13404 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000013405 S.Diag(C->getLocation(), diag::note_which_delegates_to);
13406 }
13407 }
13408
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000013409 Invalid.insert(Current.begin(), Current.end());
Sean Huntebcbe1d2011-05-04 23:29:54 +000013410 Current.clear();
13411 } else {
13412 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
13413 }
13414}
13415
13416
Sean Huntfe57eef2011-05-04 05:57:24 +000013417void Sema::CheckDelegatingCtorCycles() {
13418 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
13419
Douglas Gregor0129b562011-07-27 21:57:17 +000013420 for (DelegatingCtorDeclsType::iterator
13421 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000013422 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000013423 I != E; ++I)
13424 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000013425
Benjamin Kramer4c7736e2013-07-24 15:28:33 +000013426 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(),
13427 CE = Invalid.end();
13428 CI != CE; ++CI)
Sean Huntebcbe1d2011-05-04 23:29:54 +000013429 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000013430}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000013431
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013432namespace {
13433 /// \brief AST visitor that finds references to the 'this' expression.
13434 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
13435 Sema &S;
13436
13437 public:
13438 explicit FindCXXThisExpr(Sema &S) : S(S) { }
13439
13440 bool VisitCXXThisExpr(CXXThisExpr *E) {
13441 S.Diag(E->getLocation(), diag::err_this_static_member_func)
13442 << E->isImplicit();
13443 return false;
13444 }
13445 };
13446}
13447
13448bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
13449 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
13450 if (!TSInfo)
13451 return false;
13452
13453 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +000013454 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013455 if (!ProtoTL)
13456 return false;
13457
13458 // C++11 [expr.prim.general]p3:
13459 // [The expression this] shall not appear before the optional
13460 // cv-qualifier-seq and it shall not appear within the declaration of a
13461 // static member function (although its type and value category are defined
13462 // within a static member function as they are within a non-static member
13463 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000013464 // until the complete declarator is known. - end note ]
David Blaikie39e6ab42013-02-18 22:06:02 +000013465 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013466 FindCXXThisExpr Finder(*this);
13467
13468 // If the return type came after the cv-qualifier-seq, check it now.
13469 if (Proto->hasTrailingReturn() &&
Stephen Hines651f13c2014-04-23 16:59:28 -070013470 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc()))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013471 return true;
13472
13473 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013474 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
13475 return true;
13476
13477 return checkThisInStaticMemberFunctionAttributes(Method);
13478}
13479
13480bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
13481 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
13482 if (!TSInfo)
13483 return false;
13484
13485 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +000013486 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013487 if (!ProtoTL)
13488 return false;
13489
David Blaikie39e6ab42013-02-18 22:06:02 +000013490 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013491 FindCXXThisExpr Finder(*this);
13492
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013493 switch (Proto->getExceptionSpecType()) {
Stephen Hines176edba2014-12-01 14:53:08 -080013494 case EST_Unparsed:
Richard Smithe6975e92012-04-17 00:58:00 +000013495 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000013496 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013497 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013498 case EST_DynamicNone:
13499 case EST_MSAny:
13500 case EST_None:
13501 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013502
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013503 case EST_ComputedNoexcept:
13504 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
13505 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013506
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013507 case EST_Dynamic:
Stephen Hines651f13c2014-04-23 16:59:28 -070013508 for (const auto &E : Proto->exceptions()) {
13509 if (!Finder.TraverseType(E))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013510 return true;
13511 }
13512 break;
13513 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013514
13515 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013516}
13517
13518bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
13519 FindCXXThisExpr Finder(*this);
13520
13521 // Check attributes.
Stephen Hines651f13c2014-04-23 16:59:28 -070013522 for (const auto *A : Method->attrs()) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013523 // FIXME: This should be emitted by tblgen.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013524 Expr *Arg = nullptr;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013525 ArrayRef<Expr *> Args;
Stephen Hines651f13c2014-04-23 16:59:28 -070013526 if (const auto *G = dyn_cast<GuardedByAttr>(A))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013527 Arg = G->getArg();
Stephen Hines651f13c2014-04-23 16:59:28 -070013528 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013529 Arg = G->getArg();
Stephen Hines651f13c2014-04-23 16:59:28 -070013530 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013531 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013532 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013533 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013534 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013535 Arg = ETLF->getSuccessValue();
Stephen Hines176edba2014-12-01 14:53:08 -080013536 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013537 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) {
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013538 Arg = STLF->getSuccessValue();
Stephen Hines176edba2014-12-01 14:53:08 -080013539 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013540 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013541 Arg = LR->getArg();
Stephen Hines651f13c2014-04-23 16:59:28 -070013542 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013543 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013544 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013545 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013546 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013547 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013548 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013549 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
Stephen Hines651f13c2014-04-23 16:59:28 -070013550 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A))
Stephen Hines176edba2014-12-01 14:53:08 -080013551 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
Douglas Gregorcefc3af2012-04-16 07:05:22 +000013552
13553 if (Arg && !Finder.TraverseStmt(Arg))
13554 return true;
13555
13556 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
13557 if (!Finder.TraverseStmt(Args[I]))
13558 return true;
13559 }
13560 }
13561
13562 return false;
13563}
13564
Stephen Hines176edba2014-12-01 14:53:08 -080013565void Sema::checkExceptionSpecification(
13566 bool IsTopLevel, ExceptionSpecificationType EST,
13567 ArrayRef<ParsedType> DynamicExceptions,
13568 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr,
13569 SmallVectorImpl<QualType> &Exceptions,
13570 FunctionProtoType::ExceptionSpecInfo &ESI) {
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013571 Exceptions.clear();
Stephen Hines176edba2014-12-01 14:53:08 -080013572 ESI.Type = EST;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013573 if (EST == EST_Dynamic) {
13574 Exceptions.reserve(DynamicExceptions.size());
13575 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
13576 // FIXME: Preserve type source info.
13577 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
13578
Stephen Hines176edba2014-12-01 14:53:08 -080013579 if (IsTopLevel) {
13580 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
13581 collectUnexpandedParameterPacks(ET, Unexpanded);
13582 if (!Unexpanded.empty()) {
13583 DiagnoseUnexpandedParameterPacks(
13584 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType,
13585 Unexpanded);
13586 continue;
13587 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013588 }
13589
13590 // Check that the type is valid for an exception spec, and
13591 // drop it if not.
13592 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
13593 Exceptions.push_back(ET);
13594 }
Stephen Hines176edba2014-12-01 14:53:08 -080013595 ESI.Exceptions = Exceptions;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013596 return;
13597 }
Stephen Hines176edba2014-12-01 14:53:08 -080013598
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013599 if (EST == EST_ComputedNoexcept) {
13600 // If an error occurred, there's no expression here.
13601 if (NoexceptExpr) {
13602 assert((NoexceptExpr->isTypeDependent() ||
13603 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
13604 Context.BoolTy) &&
13605 "Parser should have made sure that the expression is boolean");
Stephen Hines176edba2014-12-01 14:53:08 -080013606 if (IsTopLevel && NoexceptExpr &&
13607 DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
13608 ESI.Type = EST_BasicNoexcept;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013609 return;
13610 }
Stephen Hines176edba2014-12-01 14:53:08 -080013611
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013612 if (!NoexceptExpr->isValueDependent())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013613 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr,
Douglas Gregorab41fe92012-05-04 22:38:52 +000013614 diag::err_noexcept_needs_constant_expression,
Stephen Hinesc568f1e2014-07-21 00:47:37 -070013615 /*AllowFold*/ false).get();
Stephen Hines176edba2014-12-01 14:53:08 -080013616 ESI.NoexceptExpr = NoexceptExpr;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000013617 }
13618 return;
13619 }
13620}
13621
Stephen Hines176edba2014-12-01 14:53:08 -080013622void Sema::actOnDelayedExceptionSpecification(Decl *MethodD,
13623 ExceptionSpecificationType EST,
13624 SourceRange SpecificationRange,
13625 ArrayRef<ParsedType> DynamicExceptions,
13626 ArrayRef<SourceRange> DynamicExceptionRanges,
13627 Expr *NoexceptExpr) {
13628 if (!MethodD)
13629 return;
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000013630
Stephen Hines176edba2014-12-01 14:53:08 -080013631 // Dig out the method we're referring to.
13632 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD))
13633 MethodD = FunTmpl->getTemplatedDecl();
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000013634
Stephen Hines176edba2014-12-01 14:53:08 -080013635 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD);
13636 if (!Method)
13637 return;
13638
13639 // Check the exception specification.
13640 llvm::SmallVector<QualType, 4> Exceptions;
13641 FunctionProtoType::ExceptionSpecInfo ESI;
13642 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions,
13643 DynamicExceptionRanges, NoexceptExpr, Exceptions,
13644 ESI);
13645
13646 // Update the exception specification on the function type.
13647 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true);
13648
13649 if (Method->isStatic())
13650 checkThisInStaticMemberFunctionExceptionSpec(Method);
13651
13652 if (Method->isVirtual()) {
13653 // Check overrides, which we previously had to delay.
13654 for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(),
13655 OEnd = Method->end_overridden_methods();
13656 O != OEnd; ++O)
13657 CheckOverridingFunctionExceptionSpec(Method, *O);
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000013658 }
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000013659}
John McCall76da55d2013-04-16 07:28:30 +000013660
13661/// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class.
13662///
13663MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record,
13664 SourceLocation DeclStart,
13665 Declarator &D, Expr *BitWidth,
13666 InClassInitStyle InitStyle,
13667 AccessSpecifier AS,
13668 AttributeList *MSPropertyAttr) {
13669 IdentifierInfo *II = D.getIdentifier();
13670 if (!II) {
13671 Diag(DeclStart, diag::err_anonymous_property);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013672 return nullptr;
John McCall76da55d2013-04-16 07:28:30 +000013673 }
13674 SourceLocation Loc = D.getIdentifierLoc();
13675
13676 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13677 QualType T = TInfo->getType();
13678 if (getLangOpts().CPlusPlus) {
13679 CheckExtraCXXDefaultArguments(D);
13680
13681 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13682 UPPC_DataMemberType)) {
13683 D.setInvalidType();
13684 T = Context.IntTy;
13685 TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
13686 }
13687 }
13688
13689 DiagnoseFunctionSpecifiers(D.getDeclSpec());
13690
13691 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
13692 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
13693 diag::err_invalid_thread)
13694 << DeclSpec::getSpecifierName(TSCS);
13695
13696 // Check to see if this name was declared as a member previously
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013697 NamedDecl *PrevDecl = nullptr;
John McCall76da55d2013-04-16 07:28:30 +000013698 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
13699 LookupName(Previous, S);
13700 switch (Previous.getResultKind()) {
13701 case LookupResult::Found:
13702 case LookupResult::FoundUnresolvedValue:
13703 PrevDecl = Previous.getAsSingle<NamedDecl>();
13704 break;
13705
13706 case LookupResult::FoundOverloaded:
13707 PrevDecl = Previous.getRepresentativeDecl();
13708 break;
13709
13710 case LookupResult::NotFound:
13711 case LookupResult::NotFoundInCurrentInstantiation:
13712 case LookupResult::Ambiguous:
13713 break;
13714 }
13715
13716 if (PrevDecl && PrevDecl->isTemplateParameter()) {
13717 // Maybe we will complain about the shadowed template parameter.
13718 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13719 // Just pretend that we didn't see the previous declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013720 PrevDecl = nullptr;
John McCall76da55d2013-04-16 07:28:30 +000013721 }
13722
13723 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013724 PrevDecl = nullptr;
John McCall76da55d2013-04-16 07:28:30 +000013725
13726 SourceLocation TSSL = D.getLocStart();
John McCall76da55d2013-04-16 07:28:30 +000013727 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData();
Stephen Hines651f13c2014-04-23 16:59:28 -070013728 MSPropertyDecl *NewPD = MSPropertyDecl::Create(
13729 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId);
John McCall76da55d2013-04-16 07:28:30 +000013730 ProcessDeclAttributes(TUScope, NewPD, D);
13731 NewPD->setAccess(AS);
13732
13733 if (NewPD->isInvalidDecl())
13734 Record->setInvalidDecl();
13735
13736 if (D.getDeclSpec().isModulePrivateSpecified())
13737 NewPD->setModulePrivate();
13738
13739 if (NewPD->isInvalidDecl() && PrevDecl) {
13740 // Don't introduce NewFD into scope; there's already something
13741 // with the same name in the same scope.
13742 } else if (II) {
13743 PushOnScopeChains(NewPD, S);
13744 } else
13745 Record->addDecl(NewPD);
13746
13747 return NewPD;
13748}