blob: cbe4a2829bbb764eebf4a65aa2cd8537df0f0876 [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"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/AST/CharUnits.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000020#include "clang/AST/DeclVisitor.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"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000030#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000031#include "clang/Sema/CXXFieldCollector.h"
32#include "clang/Sema/DeclSpec.h"
33#include "clang/Sema/Initialization.h"
34#include "clang/Sema/Lookup.h"
35#include "clang/Sema/ParsedTemplate.h"
36#include "clang/Sema/Scope.h"
37#include "clang/Sema/ScopeInfo.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000039#include "llvm/ADT/SmallString.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000040#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000041#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000042
43using namespace clang;
44
Chris Lattner8123a952008-04-10 02:22:51 +000045//===----------------------------------------------------------------------===//
46// CheckDefaultArgumentVisitor
47//===----------------------------------------------------------------------===//
48
Chris Lattner9e979552008-04-12 23:52:44 +000049namespace {
50 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
51 /// the default argument of a parameter to determine whether it
52 /// contains any ill-formed subexpressions. For example, this will
53 /// diagnose the use of local variables or parameters within the
54 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000055 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000056 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000057 Expr *DefaultArg;
58 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000059
Chris Lattner9e979552008-04-12 23:52:44 +000060 public:
Mike Stump1eb44332009-09-09 15:08:12 +000061 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000062 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000063
Chris Lattner9e979552008-04-12 23:52:44 +000064 bool VisitExpr(Expr *Node);
65 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000066 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000067 bool VisitLambdaExpr(LambdaExpr *Lambda);
John McCall045d2522013-04-09 01:56:28 +000068 bool VisitPseudoObjectExpr(PseudoObjectExpr *POE);
Chris Lattner9e979552008-04-12 23:52:44 +000069 };
Chris Lattner8123a952008-04-10 02:22:51 +000070
Chris Lattner9e979552008-04-12 23:52:44 +000071 /// VisitExpr - Visit all of the children of this expression.
72 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
73 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000074 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000075 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000076 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000077 }
78
Chris Lattner9e979552008-04-12 23:52:44 +000079 /// VisitDeclRefExpr - Visit a reference to a declaration, to
80 /// determine whether this declaration can be used in the default
81 /// argument expression.
82 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000083 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000084 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
85 // C++ [dcl.fct.default]p9
86 // Default arguments are evaluated each time the function is
87 // called. The order of evaluation of function arguments is
88 // unspecified. Consequently, parameters of a function shall not
89 // be used in default argument expressions, even if they are not
90 // evaluated. Parameters of a function declared before a default
91 // argument expression are in scope and can hide namespace and
92 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000093 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000094 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000095 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000096 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000097 // C++ [dcl.fct.default]p7
98 // Local variables shall not be used in default argument
99 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +0000100 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000101 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000102 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000103 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000104 }
Chris Lattner8123a952008-04-10 02:22:51 +0000105
Douglas Gregor3996f232008-11-04 13:41:56 +0000106 return false;
107 }
Chris Lattner9e979552008-04-12 23:52:44 +0000108
Douglas Gregor796da182008-11-04 14:32:21 +0000109 /// VisitCXXThisExpr - Visit a C++ "this" expression.
110 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
111 // C++ [dcl.fct.default]p8:
112 // The keyword this shall not be used in a default argument of a
113 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000114 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000115 diag::err_param_default_argument_references_this)
116 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000117 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000118
John McCall045d2522013-04-09 01:56:28 +0000119 bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) {
120 bool Invalid = false;
121 for (PseudoObjectExpr::semantics_iterator
122 i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) {
123 Expr *E = *i;
124
125 // Look through bindings.
126 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
127 E = OVE->getSourceExpr();
128 assert(E && "pseudo-object binding without source expression?");
129 }
130
131 Invalid |= Visit(E);
132 }
133 return Invalid;
134 }
135
Douglas Gregorf0459f82012-02-10 23:30:22 +0000136 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
137 // C++11 [expr.lambda.prim]p13:
138 // A lambda-expression appearing in a default argument shall not
139 // implicitly or explicitly capture any entity.
140 if (Lambda->capture_begin() == Lambda->capture_end())
141 return false;
142
143 return S->Diag(Lambda->getLocStart(),
144 diag::err_lambda_capture_default_arg);
145 }
Chris Lattner8123a952008-04-10 02:22:51 +0000146}
147
Richard Smith0b0ca472013-04-10 06:11:48 +0000148void
149Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
150 const CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000151 // If we have an MSAny spec already, don't bother.
152 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000153 return;
154
155 const FunctionProtoType *Proto
156 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000157 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
158 if (!Proto)
159 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000160
161 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
162
163 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000164 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000165 ClearExceptions();
166 ComputedEST = EST;
167 return;
168 }
169
Richard Smith7a614d82011-06-11 17:19:42 +0000170 // FIXME: If the call to this decl is using any of its default arguments, we
171 // need to search them for potentially-throwing calls.
172
Sean Hunt001cad92011-05-10 00:49:42 +0000173 // If this function has a basic noexcept, it doesn't affect the outcome.
174 if (EST == EST_BasicNoexcept)
175 return;
176
177 // If we have a throw-all spec at this point, ignore the function.
178 if (ComputedEST == EST_None)
179 return;
180
181 // If we're still at noexcept(true) and there's a nothrow() callee,
182 // change to that specification.
183 if (EST == EST_DynamicNone) {
184 if (ComputedEST == EST_BasicNoexcept)
185 ComputedEST = EST_DynamicNone;
186 return;
187 }
188
189 // Check out noexcept specs.
190 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000191 FunctionProtoType::NoexceptResult NR =
192 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000193 assert(NR != FunctionProtoType::NR_NoNoexcept &&
194 "Must have noexcept result for EST_ComputedNoexcept.");
195 assert(NR != FunctionProtoType::NR_Dependent &&
196 "Should not generate implicit declarations for dependent cases, "
197 "and don't know how to handle them anyway.");
198
199 // noexcept(false) -> no spec on the new function
200 if (NR == FunctionProtoType::NR_Throw) {
201 ClearExceptions();
202 ComputedEST = EST_None;
203 }
204 // noexcept(true) won't change anything either.
205 return;
206 }
207
208 assert(EST == EST_Dynamic && "EST case not considered earlier.");
209 assert(ComputedEST != EST_None &&
210 "Shouldn't collect exceptions when throw-all is guaranteed.");
211 ComputedEST = EST_Dynamic;
212 // Record the exceptions in this function's exception specification.
213 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
214 EEnd = Proto->exception_end();
215 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000216 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000217 Exceptions.push_back(*E);
218}
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;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000272 Arg = Result.takeAs<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;
319 }
320
Anders Carlsson66e30672009-08-25 01:02:06 +0000321 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000322 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
323 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000324 Param->setInvalidDecl();
325 return;
326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
John McCall9ae2f072010-08-23 23:25:46 +0000328 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000329}
330
Douglas Gregor61366e92008-12-24 00:01:03 +0000331/// ActOnParamUnparsedDefaultArgument - We've seen a default
332/// argument for a function parameter, but we can't parse it yet
333/// because we're inside a class definition. Note that this default
334/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000335void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 SourceLocation EqualLoc,
337 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000338 if (!param)
339 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000340
John McCalld226f652010-08-21 09:40:31 +0000341 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000342 if (Param)
343 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Anders Carlsson5e300d12009-06-12 16:51:40 +0000345 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000346}
347
Douglas Gregor72b505b2008-12-16 21:30:33 +0000348/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
349/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000350void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000351 if (!param)
352 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000353
John McCalld226f652010-08-21 09:40:31 +0000354 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Anders Carlsson5e300d12009-06-12 16:51:40 +0000356 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000357
Anders Carlsson5e300d12009-06-12 16:51:40 +0000358 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000359}
360
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000361/// CheckExtraCXXDefaultArguments - Check for any extra default
362/// arguments in the declarator, which is not a function declaration
363/// or definition and therefore is not permitted to have default
364/// arguments. This routine should be invoked for every declarator
365/// that is not a function declaration or definition.
366void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
367 // C++ [dcl.fct.default]p3
368 // A default argument expression shall be specified only in the
369 // parameter-declaration-clause of a function declaration or in a
370 // template-parameter (14.1). It shall not be specified for a
371 // parameter pack. If it is specified in a
372 // parameter-declaration-clause, it shall not occur within a
373 // declarator or abstract-declarator of a parameter-declaration.
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000374 bool MightBeFunction = D.isFunctionDeclarationContext();
Chris Lattnerb28317a2009-03-28 19:18:32 +0000375 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000376 DeclaratorChunk &chunk = D.getTypeObject(i);
377 if (chunk.Kind == DeclaratorChunk::Function) {
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000378 if (MightBeFunction) {
379 // This is a function declaration. It can have default arguments, but
380 // keep looking in case its return type is a function type with default
381 // arguments.
382 MightBeFunction = false;
383 continue;
384 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000385 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
386 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000387 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000388 if (Param->hasUnparsedDefaultArg()) {
389 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000390 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000391 << SourceRange((*Toks)[1].getLocation(),
392 Toks->back().getLocation());
Douglas Gregor72b505b2008-12-16 21:30:33 +0000393 delete Toks;
394 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000395 } else if (Param->getDefaultArg()) {
396 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
397 << Param->getDefaultArg()->getSourceRange();
398 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000399 }
400 }
Richard Smith3cdbbdc2013-03-06 01:37:38 +0000401 } else if (chunk.Kind != DeclaratorChunk::Paren) {
402 MightBeFunction = false;
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000403 }
404 }
405}
406
Craig Topper1a6eac82012-09-21 04:33:26 +0000407/// MergeCXXFunctionDecl - Merge two declarations of the same C++
408/// function, once we already know that they have the same
409/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
410/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000411bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
412 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000413 bool Invalid = false;
414
Chris Lattner3d1cee32008-04-08 05:04:30 +0000415 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000416 // For non-template functions, default arguments can be added in
417 // later declarations of a function in the same
418 // scope. Declarations in different scopes have completely
419 // distinct sets of default arguments. That is, declarations in
420 // inner scopes do not acquire default arguments from
421 // declarations in outer scopes, and vice versa. In a given
422 // function declaration, all parameters subsequent to a
423 // parameter with a default argument shall have default
424 // arguments supplied in this or previous declarations. A
425 // default argument shall not be redefined by a later
426 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000427 //
428 // C++ [dcl.fct.default]p6:
429 // Except for member functions of class templates, the default arguments
430 // in a member function definition that appears outside of the class
431 // definition are added to the set of default arguments provided by the
432 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000433 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
434 ParmVarDecl *OldParam = Old->getParamDecl(p);
435 ParmVarDecl *NewParam = New->getParamDecl(p);
436
James Molloy9cda03f2012-03-13 08:55:35 +0000437 bool OldParamHasDfl = OldParam->hasDefaultArg();
438 bool NewParamHasDfl = NewParam->hasDefaultArg();
439
440 NamedDecl *ND = Old;
441 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
442 // Ignore default parameters of old decl if they are not in
443 // the same scope.
444 OldParamHasDfl = false;
445
446 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000447
Francois Pichet8d051e02011-04-10 03:03:52 +0000448 unsigned DiagDefaultParamID =
449 diag::err_param_default_argument_redefinition;
450
451 // MSVC accepts that default parameters be redefined for member functions
452 // of template class. The new default parameter's value is ignored.
453 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000454 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000455 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
456 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000457 // Merge the old default argument into the new parameter.
458 NewParam->setHasInheritedDefaultArg();
459 if (OldParam->hasUninstantiatedDefaultArg())
460 NewParam->setUninstantiatedDefaultArg(
461 OldParam->getUninstantiatedDefaultArg());
462 else
463 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000464 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000465 Invalid = false;
466 }
467 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000468
Francois Pichet8cf90492011-04-10 04:58:30 +0000469 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
470 // hint here. Alternatively, we could walk the type-source information
471 // for NewParam to find the last source location in the type... but it
472 // isn't worth the effort right now. This is the kind of test case that
473 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000474 // int f(int);
475 // void g(int (*fp)(int) = f);
476 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000477 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000478 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000479
480 // Look for the function declaration where the default argument was
481 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000482 for (FunctionDecl *Older = Old->getPreviousDecl();
483 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000484 if (!Older->getParamDecl(p)->hasDefaultArg())
485 break;
486
487 OldParam = Older->getParamDecl(p);
488 }
489
490 Diag(OldParam->getLocation(), diag::note_previous_definition)
491 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000492 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000493 // Merge the old default argument into the new parameter.
494 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000495 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000496 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000497 if (OldParam->hasUninstantiatedDefaultArg())
498 NewParam->setUninstantiatedDefaultArg(
499 OldParam->getUninstantiatedDefaultArg());
500 else
John McCall3d6c1782010-05-04 01:53:42 +0000501 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000502 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000503 if (New->getDescribedFunctionTemplate()) {
504 // Paragraph 4, quoted above, only applies to non-template functions.
505 Diag(NewParam->getLocation(),
506 diag::err_param_default_argument_template_redecl)
507 << NewParam->getDefaultArgRange();
508 Diag(Old->getLocation(), diag::note_template_prev_declaration)
509 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000510 } else if (New->getTemplateSpecializationKind()
511 != TSK_ImplicitInstantiation &&
512 New->getTemplateSpecializationKind() != TSK_Undeclared) {
513 // C++ [temp.expr.spec]p21:
514 // Default function arguments shall not be specified in a declaration
515 // or a definition for one of the following explicit specializations:
516 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000517 // - the explicit specialization of a member function template;
518 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000519 // template where the class template specialization to which the
520 // member function specialization belongs is implicitly
521 // instantiated.
522 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
523 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
524 << New->getDeclName()
525 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000526 } else if (New->getDeclContext()->isDependentContext()) {
527 // C++ [dcl.fct.default]p6 (DR217):
528 // Default arguments for a member function of a class template shall
529 // be specified on the initial declaration of the member function
530 // within the class template.
531 //
532 // Reading the tea leaves a bit in DR217 and its reference to DR205
533 // leads me to the conclusion that one cannot add default function
534 // arguments for an out-of-line definition of a member function of a
535 // dependent type.
536 int WhichKind = 2;
537 if (CXXRecordDecl *Record
538 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
539 if (Record->getDescribedClassTemplate())
540 WhichKind = 0;
541 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
542 WhichKind = 1;
543 else
544 WhichKind = 2;
545 }
546
547 Diag(NewParam->getLocation(),
548 diag::err_param_default_argument_member_template_redecl)
549 << WhichKind
550 << NewParam->getDefaultArgRange();
551 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000552 }
553 }
554
Richard Smithb8abff62012-11-28 03:45:24 +0000555 // DR1344: If a default argument is added outside a class definition and that
556 // default argument makes the function a special member function, the program
557 // is ill-formed. This can only happen for constructors.
558 if (isa<CXXConstructorDecl>(New) &&
559 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
560 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
561 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
562 if (NewSM != OldSM) {
563 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
564 assert(NewParam->hasDefaultArg());
565 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
566 << NewParam->getDefaultArgRange() << NewSM;
567 Diag(Old->getLocation(), diag::note_previous_declaration);
568 }
569 }
570
Richard Smithff234882012-02-20 23:28:05 +0000571 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000572 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000573 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000574 if (New->isConstexpr() != Old->isConstexpr()) {
575 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
576 << New << New->isConstexpr();
577 Diag(Old->getLocation(), diag::note_previous_declaration);
578 Invalid = true;
579 }
580
Douglas Gregore13ad832010-02-12 07:32:17 +0000581 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000582 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000583
Douglas Gregorcda9c672009-02-16 17:45:42 +0000584 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000585}
586
Sebastian Redl60618fa2011-03-12 11:50:43 +0000587/// \brief Merge the exception specifications of two variable declarations.
588///
589/// This is called when there's a redeclaration of a VarDecl. The function
590/// checks if the redeclaration might have an exception specification and
591/// validates compatibility and merges the specs if necessary.
592void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
593 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000594 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000595 return;
596
597 assert(Context.hasSameType(New->getType(), Old->getType()) &&
598 "Should only be called if types are otherwise the same.");
599
600 QualType NewType = New->getType();
601 QualType OldType = Old->getType();
602
603 // We're only interested in pointers and references to functions, as well
604 // as pointers to member functions.
605 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
606 NewType = R->getPointeeType();
607 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
608 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
609 NewType = P->getPointeeType();
610 OldType = OldType->getAs<PointerType>()->getPointeeType();
611 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
612 NewType = M->getPointeeType();
613 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
614 }
615
616 if (!NewType->isFunctionProtoType())
617 return;
618
619 // There's lots of special cases for functions. For function pointers, system
620 // libraries are hopefully not as broken so that we don't need these
621 // workarounds.
622 if (CheckEquivalentExceptionSpec(
623 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
624 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
625 New->setInvalidDecl();
626 }
627}
628
Chris Lattner3d1cee32008-04-08 05:04:30 +0000629/// CheckCXXDefaultArguments - Verify that the default arguments for a
630/// function declaration are well-formed according to C++
631/// [dcl.fct.default].
632void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
633 unsigned NumParams = FD->getNumParams();
634 unsigned p;
635
636 // Find first parameter with a default argument
637 for (p = 0; p < NumParams; ++p) {
638 ParmVarDecl *Param = FD->getParamDecl(p);
Richard Smith7974c602013-04-17 16:25:20 +0000639 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000640 break;
641 }
642
643 // C++ [dcl.fct.default]p4:
644 // In a given function declaration, all parameters
645 // subsequent to a parameter with a default argument shall
646 // have default arguments supplied in this or previous
647 // declarations. A default argument shall not be redefined
648 // by a later declaration (not even to the same value).
649 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000650 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000651 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000652 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000653 if (Param->isInvalidDecl())
654 /* We already complained about this parameter. */;
655 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000656 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000657 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000658 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000659 else
Mike Stump1eb44332009-09-09 15:08:12 +0000660 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000661 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Chris Lattner3d1cee32008-04-08 05:04:30 +0000663 LastMissingDefaultArg = p;
664 }
665 }
666
667 if (LastMissingDefaultArg > 0) {
668 // Some default arguments were missing. Clear out all of the
669 // default arguments up to (and including) the last missing
670 // default argument, so that we leave the function parameters
671 // in a semantically valid state.
672 for (p = 0; p <= LastMissingDefaultArg; ++p) {
673 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000674 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000675 Param->setDefaultArg(0);
676 }
677 }
678 }
679}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000680
Richard Smith9f569cc2011-10-01 02:31:28 +0000681// CheckConstexprParameterTypes - Check whether a function's parameter types
682// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000683// diagnostic and return false.
684static bool CheckConstexprParameterTypes(Sema &SemaRef,
685 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000686 unsigned ArgIndex = 0;
687 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
688 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
689 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
690 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
691 SourceLocation ParamLoc = PD->getLocation();
692 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000693 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000694 diag::err_constexpr_non_literal_param,
695 ArgIndex+1, PD->getSourceRange(),
696 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000697 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000698 }
Joao Matos17d35c32012-08-31 22:18:20 +0000699 return true;
700}
701
702/// \brief Get diagnostic %select index for tag kind for
703/// record diagnostic message.
704/// WARNING: Indexes apply to particular diagnostics only!
705///
706/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000707static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000708 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000709 case TTK_Struct: return 0;
710 case TTK_Interface: return 1;
711 case TTK_Class: return 2;
712 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000713 }
Joao Matos17d35c32012-08-31 22:18:20 +0000714}
715
716// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
717// the requirements of a constexpr function definition or a constexpr
718// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000719// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000720//
Richard Smith86c3ae42012-02-13 03:54:03 +0000721// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
722bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000723 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
724 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000725 // C++11 [dcl.constexpr]p4:
726 // The definition of a constexpr constructor shall satisfy the following
727 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000728 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000729 const CXXRecordDecl *RD = MD->getParent();
730 if (RD->getNumVBases()) {
731 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
732 << isa<CXXConstructorDecl>(NewFD)
733 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
734 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
735 E = RD->vbases_end(); I != E; ++I)
736 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000737 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000738 return false;
739 }
Richard Smith35340502012-01-13 04:54:00 +0000740 }
741
742 if (!isa<CXXConstructorDecl>(NewFD)) {
743 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000744 // The definition of a constexpr function shall satisfy the following
745 // constraints:
746 // - it shall not be virtual;
747 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
748 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000749 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000750
Richard Smith86c3ae42012-02-13 03:54:03 +0000751 // If it's not obvious why this function is virtual, find an overridden
752 // function which uses the 'virtual' keyword.
753 const CXXMethodDecl *WrittenVirtual = Method;
754 while (!WrittenVirtual->isVirtualAsWritten())
755 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
756 if (WrittenVirtual != Method)
757 Diag(WrittenVirtual->getLocation(),
758 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000759 return false;
760 }
761
762 // - its return type shall be a literal type;
763 QualType RT = NewFD->getResultType();
764 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000765 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000766 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000767 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000768 }
769
Richard Smith35340502012-01-13 04:54:00 +0000770 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000771 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000772 return false;
773
Richard Smith9f569cc2011-10-01 02:31:28 +0000774 return true;
775}
776
777/// Check the given declaration statement is legal within a constexpr function
Richard Smitha10b9782013-04-22 15:31:51 +0000778/// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3.
Richard Smith9f569cc2011-10-01 02:31:28 +0000779///
Richard Smitha10b9782013-04-22 15:31:51 +0000780/// \return true if the body is OK (maybe only as an extension), false if we
781/// have diagnosed a problem.
Richard Smith9f569cc2011-10-01 02:31:28 +0000782static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
Richard Smitha10b9782013-04-22 15:31:51 +0000783 DeclStmt *DS, SourceLocation &Cxx1yLoc) {
784 // C++11 [dcl.constexpr]p3 and p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000785 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
786 // contain only
787 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
788 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
789 switch ((*DclIt)->getKind()) {
790 case Decl::StaticAssert:
791 case Decl::Using:
792 case Decl::UsingShadow:
793 case Decl::UsingDirective:
794 case Decl::UnresolvedUsingTypename:
Richard Smitha10b9782013-04-22 15:31:51 +0000795 case Decl::UnresolvedUsingValue:
Richard Smith9f569cc2011-10-01 02:31:28 +0000796 // - static_assert-declarations
797 // - using-declarations,
798 // - using-directives,
799 continue;
800
801 case Decl::Typedef:
802 case Decl::TypeAlias: {
803 // - typedef declarations and alias-declarations that do not define
804 // classes or enumerations,
805 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
806 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
807 // Don't allow variably-modified types in constexpr functions.
808 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
809 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
810 << TL.getSourceRange() << TL.getType()
811 << isa<CXXConstructorDecl>(Dcl);
812 return false;
813 }
814 continue;
815 }
816
817 case Decl::Enum:
818 case Decl::CXXRecord:
Richard Smitha10b9782013-04-22 15:31:51 +0000819 // C++1y allows types to be defined, not just declared.
820 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition())
821 SemaRef.Diag(DS->getLocStart(),
822 SemaRef.getLangOpts().CPlusPlus1y
823 ? diag::warn_cxx11_compat_constexpr_type_definition
824 : diag::ext_constexpr_type_definition)
Richard Smith9f569cc2011-10-01 02:31:28 +0000825 << isa<CXXConstructorDecl>(Dcl);
Richard Smith9f569cc2011-10-01 02:31:28 +0000826 continue;
827
Richard Smitha10b9782013-04-22 15:31:51 +0000828 case Decl::EnumConstant:
829 case Decl::IndirectField:
830 case Decl::ParmVar:
831 // These can only appear with other declarations which are banned in
832 // C++11 and permitted in C++1y, so ignore them.
833 continue;
834
835 case Decl::Var: {
836 // C++1y [dcl.constexpr]p3 allows anything except:
837 // a definition of a variable of non-literal type or of static or
838 // thread storage duration or for which no initialization is performed.
839 VarDecl *VD = cast<VarDecl>(*DclIt);
840 if (VD->isThisDeclarationADefinition()) {
841 if (VD->isStaticLocal()) {
842 SemaRef.Diag(VD->getLocation(),
843 diag::err_constexpr_local_var_static)
844 << isa<CXXConstructorDecl>(Dcl)
845 << (VD->getTLSKind() == VarDecl::TLS_Dynamic);
846 return false;
847 }
Richard Smithbebf5b12013-04-26 14:36:30 +0000848 if (!VD->getType()->isDependentType() &&
849 SemaRef.RequireLiteralType(
Richard Smitha10b9782013-04-22 15:31:51 +0000850 VD->getLocation(), VD->getType(),
851 diag::err_constexpr_local_var_non_literal_type,
852 isa<CXXConstructorDecl>(Dcl)))
853 return false;
854 if (!VD->hasInit()) {
855 SemaRef.Diag(VD->getLocation(),
856 diag::err_constexpr_local_var_no_init)
857 << isa<CXXConstructorDecl>(Dcl);
858 return false;
859 }
860 }
861 SemaRef.Diag(VD->getLocation(),
862 SemaRef.getLangOpts().CPlusPlus1y
863 ? diag::warn_cxx11_compat_constexpr_local_var
864 : diag::ext_constexpr_local_var)
Richard Smith9f569cc2011-10-01 02:31:28 +0000865 << isa<CXXConstructorDecl>(Dcl);
Richard Smitha10b9782013-04-22 15:31:51 +0000866 continue;
867 }
868
869 case Decl::NamespaceAlias:
870 case Decl::Function:
871 // These are disallowed in C++11 and permitted in C++1y. Allow them
872 // everywhere as an extension.
873 if (!Cxx1yLoc.isValid())
874 Cxx1yLoc = DS->getLocStart();
875 continue;
Richard Smith9f569cc2011-10-01 02:31:28 +0000876
877 default:
878 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
879 << isa<CXXConstructorDecl>(Dcl);
880 return false;
881 }
882 }
883
884 return true;
885}
886
887/// Check that the given field is initialized within a constexpr constructor.
888///
889/// \param Dcl The constexpr constructor being checked.
890/// \param Field The field being checked. This may be a member of an anonymous
891/// struct or union nested within the class being checked.
892/// \param Inits All declarations, including anonymous struct/union members and
893/// indirect members, for which any initialization was provided.
894/// \param Diagnosed Set to true if an error is produced.
895static void CheckConstexprCtorInitializer(Sema &SemaRef,
896 const FunctionDecl *Dcl,
897 FieldDecl *Field,
898 llvm::SmallSet<Decl*, 16> &Inits,
899 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000900 if (Field->isUnnamedBitfield())
901 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000902
903 if (Field->isAnonymousStructOrUnion() &&
904 Field->getType()->getAsCXXRecordDecl()->isEmpty())
905 return;
906
Richard Smith9f569cc2011-10-01 02:31:28 +0000907 if (!Inits.count(Field)) {
908 if (!Diagnosed) {
909 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
910 Diagnosed = true;
911 }
912 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
913 } else if (Field->isAnonymousStructOrUnion()) {
914 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
915 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
916 I != E; ++I)
917 // If an anonymous union contains an anonymous struct of which any member
918 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000919 if (!RD->isUnion() || Inits.count(*I))
920 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000921 }
922}
923
Richard Smitha10b9782013-04-22 15:31:51 +0000924/// Check the provided statement is allowed in a constexpr function
925/// definition.
926static bool
927CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S,
928 llvm::SmallVectorImpl<SourceLocation> &ReturnStmts,
929 SourceLocation &Cxx1yLoc) {
930 // - its function-body shall be [...] a compound-statement that contains only
931 switch (S->getStmtClass()) {
932 case Stmt::NullStmtClass:
933 // - null statements,
934 return true;
935
936 case Stmt::DeclStmtClass:
937 // - static_assert-declarations
938 // - using-declarations,
939 // - using-directives,
940 // - typedef declarations and alias-declarations that do not define
941 // classes or enumerations,
942 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc))
943 return false;
944 return true;
945
946 case Stmt::ReturnStmtClass:
947 // - and exactly one return statement;
948 if (isa<CXXConstructorDecl>(Dcl)) {
949 // C++1y allows return statements in constexpr constructors.
950 if (!Cxx1yLoc.isValid())
951 Cxx1yLoc = S->getLocStart();
952 return true;
953 }
954
955 ReturnStmts.push_back(S->getLocStart());
956 return true;
957
958 case Stmt::CompoundStmtClass: {
959 // C++1y allows compound-statements.
960 if (!Cxx1yLoc.isValid())
961 Cxx1yLoc = S->getLocStart();
962
963 CompoundStmt *CompStmt = cast<CompoundStmt>(S);
964 for (CompoundStmt::body_iterator BodyIt = CompStmt->body_begin(),
965 BodyEnd = CompStmt->body_end(); BodyIt != BodyEnd; ++BodyIt) {
966 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, *BodyIt, ReturnStmts,
967 Cxx1yLoc))
968 return false;
969 }
970 return true;
971 }
972
973 case Stmt::AttributedStmtClass:
974 if (!Cxx1yLoc.isValid())
975 Cxx1yLoc = S->getLocStart();
976 return true;
977
978 case Stmt::IfStmtClass: {
979 // C++1y allows if-statements.
980 if (!Cxx1yLoc.isValid())
981 Cxx1yLoc = S->getLocStart();
982
983 IfStmt *If = cast<IfStmt>(S);
984 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts,
985 Cxx1yLoc))
986 return false;
987 if (If->getElse() &&
988 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts,
989 Cxx1yLoc))
990 return false;
991 return true;
992 }
993
994 case Stmt::WhileStmtClass:
995 case Stmt::DoStmtClass:
996 case Stmt::ForStmtClass:
997 case Stmt::CXXForRangeStmtClass:
998 case Stmt::ContinueStmtClass:
999 // C++1y allows all of these. We don't allow them as extensions in C++11,
1000 // because they don't make sense without variable mutation.
1001 if (!SemaRef.getLangOpts().CPlusPlus1y)
1002 break;
1003 if (!Cxx1yLoc.isValid())
1004 Cxx1yLoc = S->getLocStart();
1005 for (Stmt::child_range Children = S->children(); Children; ++Children)
1006 if (*Children &&
1007 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1008 Cxx1yLoc))
1009 return false;
1010 return true;
1011
1012 case Stmt::SwitchStmtClass:
1013 case Stmt::CaseStmtClass:
1014 case Stmt::DefaultStmtClass:
1015 case Stmt::BreakStmtClass:
1016 // C++1y allows switch-statements, and since they don't need variable
1017 // mutation, we can reasonably allow them in C++11 as an extension.
1018 if (!Cxx1yLoc.isValid())
1019 Cxx1yLoc = S->getLocStart();
1020 for (Stmt::child_range Children = S->children(); Children; ++Children)
1021 if (*Children &&
1022 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1023 Cxx1yLoc))
1024 return false;
1025 return true;
1026
1027 default:
1028 if (!isa<Expr>(S))
1029 break;
1030
1031 // C++1y allows expression-statements.
1032 if (!Cxx1yLoc.isValid())
1033 Cxx1yLoc = S->getLocStart();
1034 return true;
1035 }
1036
1037 SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1038 << isa<CXXConstructorDecl>(Dcl);
1039 return false;
1040}
1041
Richard Smith9f569cc2011-10-01 02:31:28 +00001042/// Check the body for the given constexpr function declaration only contains
1043/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
1044///
1045/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +00001046bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001047 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +00001048 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +00001049 // The definition of a constexpr function shall satisfy the following
1050 // constraints: [...]
1051 // - its function-body shall be = delete, = default, or a
1052 // compound-statement
1053 //
Richard Smith5ba73e12012-02-04 00:33:54 +00001054 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +00001055 // In the definition of a constexpr constructor, [...]
1056 // - its function-body shall not be a function-try-block;
1057 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
1058 << isa<CXXConstructorDecl>(Dcl);
1059 return false;
1060 }
1061
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001062 SmallVector<SourceLocation, 4> ReturnStmts;
Richard Smitha10b9782013-04-22 15:31:51 +00001063
1064 // - its function-body shall be [...] a compound-statement that contains only
1065 // [... list of cases ...]
1066 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
1067 SourceLocation Cxx1yLoc;
Richard Smith9f569cc2011-10-01 02:31:28 +00001068 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
1069 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
Richard Smitha10b9782013-04-22 15:31:51 +00001070 if (!CheckConstexprFunctionStmt(*this, Dcl, *BodyIt, ReturnStmts, Cxx1yLoc))
1071 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +00001072 }
1073
Richard Smitha10b9782013-04-22 15:31:51 +00001074 if (Cxx1yLoc.isValid())
1075 Diag(Cxx1yLoc,
1076 getLangOpts().CPlusPlus1y
1077 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt
1078 : diag::ext_constexpr_body_invalid_stmt)
1079 << isa<CXXConstructorDecl>(Dcl);
1080
Richard Smith9f569cc2011-10-01 02:31:28 +00001081 if (const CXXConstructorDecl *Constructor
1082 = dyn_cast<CXXConstructorDecl>(Dcl)) {
1083 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +00001084 // DR1359:
1085 // - every non-variant non-static data member and base class sub-object
1086 // shall be initialized;
1087 // - if the class is a non-empty union, or for each non-empty anonymous
1088 // union member of a non-union class, exactly one non-static data member
1089 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +00001090 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +00001091 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001092 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
1093 return false;
1094 }
Richard Smith6e433752011-10-10 16:38:04 +00001095 } else if (!Constructor->isDependentContext() &&
1096 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001097 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
1098
1099 // Skip detailed checking if we have enough initializers, and we would
1100 // allow at most one initializer per member.
1101 bool AnyAnonStructUnionMembers = false;
1102 unsigned Fields = 0;
1103 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1104 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +00001105 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +00001106 AnyAnonStructUnionMembers = true;
1107 break;
1108 }
1109 }
1110 if (AnyAnonStructUnionMembers ||
1111 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
1112 // Check initialization of non-static data members. Base classes are
1113 // always initialized so do not need to be checked. Dependent bases
1114 // might not have initializers in the member initializer list.
1115 llvm::SmallSet<Decl*, 16> Inits;
1116 for (CXXConstructorDecl::init_const_iterator
1117 I = Constructor->init_begin(), E = Constructor->init_end();
1118 I != E; ++I) {
1119 if (FieldDecl *FD = (*I)->getMember())
1120 Inits.insert(FD);
1121 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
1122 Inits.insert(ID->chain_begin(), ID->chain_end());
1123 }
1124
1125 bool Diagnosed = false;
1126 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1127 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00001128 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +00001129 if (Diagnosed)
1130 return false;
1131 }
1132 }
Richard Smith9f569cc2011-10-01 02:31:28 +00001133 } else {
1134 if (ReturnStmts.empty()) {
Richard Smitha10b9782013-04-22 15:31:51 +00001135 // C++1y doesn't require constexpr functions to contain a 'return'
1136 // statement. We still do, unless the return type is void, because
1137 // otherwise if there's no return statement, the function cannot
1138 // be used in a core constant expression.
Richard Smithbebf5b12013-04-26 14:36:30 +00001139 bool OK = getLangOpts().CPlusPlus1y && Dcl->getResultType()->isVoidType();
Richard Smitha10b9782013-04-22 15:31:51 +00001140 Diag(Dcl->getLocation(),
Richard Smithbebf5b12013-04-26 14:36:30 +00001141 OK ? diag::warn_cxx11_compat_constexpr_body_no_return
1142 : diag::err_constexpr_body_no_return);
1143 return OK;
Richard Smith9f569cc2011-10-01 02:31:28 +00001144 }
1145 if (ReturnStmts.size() > 1) {
Richard Smitha10b9782013-04-22 15:31:51 +00001146 Diag(ReturnStmts.back(),
1147 getLangOpts().CPlusPlus1y
1148 ? diag::warn_cxx11_compat_constexpr_body_multiple_return
1149 : diag::ext_constexpr_body_multiple_return);
Richard Smith9f569cc2011-10-01 02:31:28 +00001150 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
1151 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
Richard Smith9f569cc2011-10-01 02:31:28 +00001152 }
1153 }
1154
Richard Smith5ba73e12012-02-04 00:33:54 +00001155 // C++11 [dcl.constexpr]p5:
1156 // if no function argument values exist such that the function invocation
1157 // substitution would produce a constant expression, the program is
1158 // ill-formed; no diagnostic required.
1159 // C++11 [dcl.constexpr]p3:
1160 // - every constructor call and implicit conversion used in initializing the
1161 // return value shall be one of those allowed in a constant expression.
1162 // C++11 [dcl.constexpr]p4:
1163 // - every constructor involved in initializing non-static data members and
1164 // base class sub-objects shall be a constexpr constructor.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001165 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +00001166 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smithafee0ff2012-12-09 05:55:43 +00001167 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
Richard Smith745f5142012-01-27 01:14:48 +00001168 << isa<CXXConstructorDecl>(Dcl);
1169 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1170 Diag(Diags[I].first, Diags[I].second);
Richard Smithafee0ff2012-12-09 05:55:43 +00001171 // Don't return false here: we allow this for compatibility in
1172 // system headers.
Richard Smith745f5142012-01-27 01:14:48 +00001173 }
1174
Richard Smith9f569cc2011-10-01 02:31:28 +00001175 return true;
1176}
1177
Douglas Gregorb48fe382008-10-31 09:07:45 +00001178/// isCurrentClassName - Determine whether the identifier II is the
1179/// name of the class type currently being defined. In the case of
1180/// nested classes, this will only return true if II is the name of
1181/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001182bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1183 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001184 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001185
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001186 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001187 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001188 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001189 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1190 } else
1191 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1192
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001193 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001194 return &II == CurDecl->getIdentifier();
1195 else
1196 return false;
1197}
1198
Douglas Gregor229d47a2012-11-10 07:24:09 +00001199/// \brief Determine whether the given class is a base class of the given
1200/// class, including looking at dependent bases.
1201static bool findCircularInheritance(const CXXRecordDecl *Class,
1202 const CXXRecordDecl *Current) {
1203 SmallVector<const CXXRecordDecl*, 8> Queue;
1204
1205 Class = Class->getCanonicalDecl();
1206 while (true) {
1207 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1208 E = Current->bases_end();
1209 I != E; ++I) {
1210 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1211 if (!Base)
1212 continue;
1213
1214 Base = Base->getDefinition();
1215 if (!Base)
1216 continue;
1217
1218 if (Base->getCanonicalDecl() == Class)
1219 return true;
1220
1221 Queue.push_back(Base);
1222 }
1223
1224 if (Queue.empty())
1225 return false;
1226
1227 Current = Queue.back();
1228 Queue.pop_back();
1229 }
1230
1231 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001232}
1233
Mike Stump1eb44332009-09-09 15:08:12 +00001234/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001235///
1236/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1237/// and returns NULL otherwise.
1238CXXBaseSpecifier *
1239Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1240 SourceRange SpecifierRange,
1241 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001242 TypeSourceInfo *TInfo,
1243 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001244 QualType BaseType = TInfo->getType();
1245
Douglas Gregor2943aed2009-03-03 04:44:36 +00001246 // C++ [class.union]p1:
1247 // A union shall not have base classes.
1248 if (Class->isUnion()) {
1249 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1250 << SpecifierRange;
1251 return 0;
1252 }
1253
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001254 if (EllipsisLoc.isValid() &&
1255 !TInfo->getType()->containsUnexpandedParameterPack()) {
1256 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1257 << TInfo->getTypeLoc().getSourceRange();
1258 EllipsisLoc = SourceLocation();
1259 }
Douglas Gregord777e282012-11-10 01:18:17 +00001260
1261 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1262
1263 if (BaseType->isDependentType()) {
1264 // Make sure that we don't have circular inheritance among our dependent
1265 // bases. For non-dependent bases, the check for completeness below handles
1266 // this.
1267 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1268 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1269 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001270 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001271 Diag(BaseLoc, diag::err_circular_inheritance)
1272 << BaseType << Context.getTypeDeclType(Class);
1273
1274 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1275 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1276 << BaseType;
1277
1278 return 0;
1279 }
1280 }
1281
Mike Stump1eb44332009-09-09 15:08:12 +00001282 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001283 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001284 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001285 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001286
1287 // Base specifiers must be record types.
1288 if (!BaseType->isRecordType()) {
1289 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1290 return 0;
1291 }
1292
1293 // C++ [class.union]p1:
1294 // A union shall not be used as a base class.
1295 if (BaseType->isUnionType()) {
1296 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1297 return 0;
1298 }
1299
1300 // C++ [class.derived]p2:
1301 // The class-name in a base-specifier shall not be an incompletely
1302 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001303 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001304 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001305 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001306 return 0;
John McCall572fc622010-08-17 07:23:57 +00001307 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001308
Eli Friedman1d954f62009-08-15 21:55:26 +00001309 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001310 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001311 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001312 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001313 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Chandler Carruth62341d32013-06-20 07:06:34 +00001314 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
Eli Friedman1d954f62009-08-15 21:55:26 +00001315 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001316
Anders Carlsson1d209272011-03-25 14:55:14 +00001317 // C++ [class]p3:
1318 // If a class is marked final and it appears as a base-type-specifier in
1319 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001320 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001321 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1322 << CXXBaseDecl->getDeclName();
1323 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1324 << CXXBaseDecl->getDeclName();
1325 return 0;
1326 }
1327
John McCall572fc622010-08-17 07:23:57 +00001328 if (BaseDecl->isInvalidDecl())
1329 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001330
1331 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001332 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001333 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001334 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001335}
1336
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001337/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1338/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001339/// example:
1340/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001341/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001342BaseResult
John McCalld226f652010-08-21 09:40:31 +00001343Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Richard Smith05321402013-02-19 23:47:15 +00001344 ParsedAttributes &Attributes,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001345 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001346 ParsedType basetype, SourceLocation BaseLoc,
1347 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001348 if (!classdecl)
1349 return true;
1350
Douglas Gregor40808ce2009-03-09 23:48:35 +00001351 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001352 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001353 if (!Class)
1354 return true;
1355
Richard Smith05321402013-02-19 23:47:15 +00001356 // We do not support any C++11 attributes on base-specifiers yet.
1357 // Diagnose any attributes we see.
1358 if (!Attributes.empty()) {
1359 for (AttributeList *Attr = Attributes.getList(); Attr;
1360 Attr = Attr->getNext()) {
1361 if (Attr->isInvalid() ||
1362 Attr->getKind() == AttributeList::IgnoredAttribute)
1363 continue;
1364 Diag(Attr->getLoc(),
1365 Attr->getKind() == AttributeList::UnknownAttribute
1366 ? diag::warn_unknown_attribute_ignored
1367 : diag::err_base_specifier_attribute)
1368 << Attr->getName();
1369 }
1370 }
1371
Nick Lewycky56062202010-07-26 16:56:01 +00001372 TypeSourceInfo *TInfo = 0;
1373 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001374
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001375 if (EllipsisLoc.isInvalid() &&
1376 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001377 UPPC_BaseType))
1378 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001379
Douglas Gregor2943aed2009-03-03 04:44:36 +00001380 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001381 Virtual, Access, TInfo,
1382 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001383 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001384 else
1385 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001386
Douglas Gregor2943aed2009-03-03 04:44:36 +00001387 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001388}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001389
Douglas Gregor2943aed2009-03-03 04:44:36 +00001390/// \brief Performs the actual work of attaching the given base class
1391/// specifiers to a C++ class.
1392bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1393 unsigned NumBases) {
1394 if (NumBases == 0)
1395 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001396
1397 // Used to keep track of which base types we have already seen, so
1398 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001399 // that the key is always the unqualified canonical type of the base
1400 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001401 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1402
1403 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001404 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001405 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001406 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001407 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001408 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001409 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001410
1411 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1412 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001413 // C++ [class.mi]p3:
1414 // A class shall not be specified as a direct base class of a
1415 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001416 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001417 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001418 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001419 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001420
1421 // Delete the duplicate base class specifier; we're going to
1422 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001423 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001424
1425 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001426 } else {
1427 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001428 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001429 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001430 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1431 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1432 if (Class->isInterface() &&
1433 (!RD->isInterface() ||
1434 KnownBase->getAccessSpecifier() != AS_public)) {
1435 // The Microsoft extension __interface does not permit bases that
1436 // are not themselves public interfaces.
1437 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1438 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1439 << RD->getSourceRange();
1440 Invalid = true;
1441 }
1442 if (RD->hasAttr<WeakAttr>())
1443 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1444 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001445 }
1446 }
1447
1448 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001449 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001450
1451 // Delete the remaining (good) base class specifiers, since their
1452 // data has been copied into the CXXRecordDecl.
1453 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001454 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001455
1456 return Invalid;
1457}
1458
1459/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1460/// class, after checking whether there are any duplicate base
1461/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001462void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001463 unsigned NumBases) {
1464 if (!ClassDecl || !Bases || !NumBases)
1465 return;
1466
1467 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001468 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001469 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001470}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001471
Douglas Gregora8f32e02009-10-06 17:59:45 +00001472/// \brief Determine whether the type \p Derived is a C++ class that is
1473/// derived from the type \p Base.
1474bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001475 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001476 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001477
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001478 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001479 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001480 return false;
1481
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001482 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001483 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001484 return false;
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001485
1486 // If either the base or the derived type is invalid, don't try to
1487 // check whether one is derived from the other.
1488 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl())
1489 return false;
1490
John McCall86ff3082010-02-04 22:26:26 +00001491 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1492 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001493}
1494
1495/// \brief Determine whether the type \p Derived is a C++ class that is
1496/// derived from the type \p Base.
1497bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001498 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001499 return false;
1500
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001501 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001502 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001503 return false;
1504
Douglas Gregor0162c1c2013-03-26 23:36:30 +00001505 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCall3cb0ebd2010-03-10 03:28:59 +00001506 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001507 return false;
1508
Douglas Gregora8f32e02009-10-06 17:59:45 +00001509 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1510}
1511
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001512void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001513 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001514 assert(BasePathArray.empty() && "Base path array must be empty!");
1515 assert(Paths.isRecordingPaths() && "Must record paths!");
1516
1517 const CXXBasePath &Path = Paths.front();
1518
1519 // We first go backward and check if we have a virtual base.
1520 // FIXME: It would be better if CXXBasePath had the base specifier for
1521 // the nearest virtual base.
1522 unsigned Start = 0;
1523 for (unsigned I = Path.size(); I != 0; --I) {
1524 if (Path[I - 1].Base->isVirtual()) {
1525 Start = I - 1;
1526 break;
1527 }
1528 }
1529
1530 // Now add all bases.
1531 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001532 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001533}
1534
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001535/// \brief Determine whether the given base path includes a virtual
1536/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001537bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1538 for (CXXCastPath::const_iterator B = BasePath.begin(),
1539 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001540 B != BEnd; ++B)
1541 if ((*B)->isVirtual())
1542 return true;
1543
1544 return false;
1545}
1546
Douglas Gregora8f32e02009-10-06 17:59:45 +00001547/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1548/// conversion (where Derived and Base are class types) is
1549/// well-formed, meaning that the conversion is unambiguous (and
1550/// that all of the base classes are accessible). Returns true
1551/// and emits a diagnostic if the code is ill-formed, returns false
1552/// otherwise. Loc is the location where this routine should point to
1553/// if there is an error, and Range is the source range to highlight
1554/// if there is an error.
1555bool
1556Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001557 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001558 unsigned AmbigiousBaseConvID,
1559 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001560 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001561 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001562 // First, determine whether the path from Derived to Base is
1563 // ambiguous. This is slightly more expensive than checking whether
1564 // the Derived to Base conversion exists, because here we need to
1565 // explore multiple paths to determine if there is an ambiguity.
1566 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1567 /*DetectVirtual=*/false);
1568 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1569 assert(DerivationOkay &&
1570 "Can only be used with a derived-to-base conversion");
1571 (void)DerivationOkay;
1572
1573 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001574 if (InaccessibleBaseID) {
1575 // Check that the base class can be accessed.
1576 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1577 InaccessibleBaseID)) {
1578 case AR_inaccessible:
1579 return true;
1580 case AR_accessible:
1581 case AR_dependent:
1582 case AR_delayed:
1583 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001584 }
John McCall6b2accb2010-02-10 09:31:12 +00001585 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001586
1587 // Build a base path if necessary.
1588 if (BasePath)
1589 BuildBasePathArray(Paths, *BasePath);
1590 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001591 }
1592
1593 // We know that the derived-to-base conversion is ambiguous, and
1594 // we're going to produce a diagnostic. Perform the derived-to-base
1595 // search just one more time to compute all of the possible paths so
1596 // that we can print them out. This is more expensive than any of
1597 // the previous derived-to-base checks we've done, but at this point
1598 // performance isn't as much of an issue.
1599 Paths.clear();
1600 Paths.setRecordingPaths(true);
1601 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1602 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1603 (void)StillOkay;
1604
1605 // Build up a textual representation of the ambiguous paths, e.g.,
1606 // D -> B -> A, that will be used to illustrate the ambiguous
1607 // conversions in the diagnostic. We only print one of the paths
1608 // to each base class subobject.
1609 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1610
1611 Diag(Loc, AmbigiousBaseConvID)
1612 << Derived << Base << PathDisplayStr << Range << Name;
1613 return true;
1614}
1615
1616bool
1617Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001618 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001619 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001620 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001621 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001622 IgnoreAccess ? 0
1623 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001624 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001625 Loc, Range, DeclarationName(),
1626 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001627}
1628
1629
1630/// @brief Builds a string representing ambiguous paths from a
1631/// specific derived class to different subobjects of the same base
1632/// class.
1633///
1634/// This function builds a string that can be used in error messages
1635/// to show the different paths that one can take through the
1636/// inheritance hierarchy to go from the derived class to different
1637/// subobjects of a base class. The result looks something like this:
1638/// @code
1639/// struct D -> struct B -> struct A
1640/// struct D -> struct C -> struct A
1641/// @endcode
1642std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1643 std::string PathDisplayStr;
1644 std::set<unsigned> DisplayedPaths;
1645 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1646 Path != Paths.end(); ++Path) {
1647 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1648 // We haven't displayed a path to this particular base
1649 // class subobject yet.
1650 PathDisplayStr += "\n ";
1651 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1652 for (CXXBasePath::const_iterator Element = Path->begin();
1653 Element != Path->end(); ++Element)
1654 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1655 }
1656 }
1657
1658 return PathDisplayStr;
1659}
1660
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001661//===----------------------------------------------------------------------===//
1662// C++ class member Handling
1663//===----------------------------------------------------------------------===//
1664
Abramo Bagnara6206d532010-06-05 05:09:32 +00001665/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001666bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1667 SourceLocation ASLoc,
1668 SourceLocation ColonLoc,
1669 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001670 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001671 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001672 ASLoc, ColonLoc);
1673 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001674 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001675}
1676
Richard Smitha4b39652012-08-06 03:25:17 +00001677/// CheckOverrideControl - Check C++11 override control semantics.
1678void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001679 if (D->isInvalidDecl())
1680 return;
1681
Chris Lattner5f9e2722011-07-23 10:55:15 +00001682 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001683
Richard Smitha4b39652012-08-06 03:25:17 +00001684 // Do we know which functions this declaration might be overriding?
1685 bool OverridesAreKnown = !MD ||
1686 (!MD->getParent()->hasAnyDependentBases() &&
1687 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001688
Richard Smitha4b39652012-08-06 03:25:17 +00001689 if (!MD || !MD->isVirtual()) {
1690 if (OverridesAreKnown) {
1691 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1692 Diag(OA->getLocation(),
1693 diag::override_keyword_only_allowed_on_virtual_member_functions)
1694 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1695 D->dropAttr<OverrideAttr>();
1696 }
1697 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1698 Diag(FA->getLocation(),
1699 diag::override_keyword_only_allowed_on_virtual_member_functions)
1700 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1701 D->dropAttr<FinalAttr>();
1702 }
1703 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001704 return;
1705 }
Richard Smitha4b39652012-08-06 03:25:17 +00001706
1707 if (!OverridesAreKnown)
1708 return;
1709
1710 // C++11 [class.virtual]p5:
1711 // If a virtual function is marked with the virt-specifier override and
1712 // does not override a member function of a base class, the program is
1713 // ill-formed.
1714 bool HasOverriddenMethods =
1715 MD->begin_overridden_methods() != MD->end_overridden_methods();
1716 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1717 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1718 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001719}
1720
Richard Smitha4b39652012-08-06 03:25:17 +00001721/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001722/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001723/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001724bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1725 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001726 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001727 return false;
1728
1729 Diag(New->getLocation(), diag::err_final_function_overridden)
1730 << New->getDeclName();
1731 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1732 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001733}
1734
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001735static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001736 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1737 // FIXME: Destruction of ObjC lifetime types has side-effects.
1738 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1739 return !RD->isCompleteDefinition() ||
1740 !RD->hasTrivialDefaultConstructor() ||
1741 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001742 return false;
1743}
1744
John McCall76da55d2013-04-16 07:28:30 +00001745static AttributeList *getMSPropertyAttr(AttributeList *list) {
1746 for (AttributeList* it = list; it != 0; it = it->getNext())
1747 if (it->isDeclspecPropertyAttribute())
1748 return it;
1749 return 0;
1750}
1751
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001752/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1753/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001754/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001755/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1756/// present (but parsing it has been deferred).
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00001757NamedDecl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001758Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001759 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001760 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001761 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001762 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001763 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1764 DeclarationName Name = NameInfo.getName();
1765 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001766
1767 // For anonymous bitfields, the location should point to the type.
1768 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001769 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001770
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001771 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001772
John McCall4bde1e12010-06-04 08:34:12 +00001773 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001774 assert(!DS.isFriendSpecified());
1775
Richard Smith1ab0d902011-06-25 02:28:38 +00001776 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001777
John McCalle402e722012-09-25 07:32:39 +00001778 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1779 // The Microsoft extension __interface only permits public member functions
1780 // and prohibits constructors, destructors, operators, non-public member
1781 // functions, static methods and data members.
1782 unsigned InvalidDecl;
1783 bool ShowDeclName = true;
1784 if (!isFunc)
1785 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1786 else if (AS != AS_public)
1787 InvalidDecl = 2;
1788 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1789 InvalidDecl = 3;
1790 else switch (Name.getNameKind()) {
1791 case DeclarationName::CXXConstructorName:
1792 InvalidDecl = 4;
1793 ShowDeclName = false;
1794 break;
1795
1796 case DeclarationName::CXXDestructorName:
1797 InvalidDecl = 5;
1798 ShowDeclName = false;
1799 break;
1800
1801 case DeclarationName::CXXOperatorName:
1802 case DeclarationName::CXXConversionFunctionName:
1803 InvalidDecl = 6;
1804 break;
1805
1806 default:
1807 InvalidDecl = 0;
1808 break;
1809 }
1810
1811 if (InvalidDecl) {
1812 if (ShowDeclName)
1813 Diag(Loc, diag::err_invalid_member_in_interface)
1814 << (InvalidDecl-1) << Name;
1815 else
1816 Diag(Loc, diag::err_invalid_member_in_interface)
1817 << (InvalidDecl-1) << "";
1818 return 0;
1819 }
1820 }
1821
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001822 // C++ 9.2p6: A member shall not be declared to have automatic storage
1823 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001824 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1825 // data members and cannot be applied to names declared const or static,
1826 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001827 switch (DS.getStorageClassSpec()) {
Richard Smithec642442013-04-12 22:46:28 +00001828 case DeclSpec::SCS_unspecified:
1829 case DeclSpec::SCS_typedef:
1830 case DeclSpec::SCS_static:
1831 break;
1832 case DeclSpec::SCS_mutable:
1833 if (isFunc) {
1834 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001835
Richard Smithec642442013-04-12 22:46:28 +00001836 // FIXME: It would be nicer if the keyword was ignored only for this
1837 // declarator. Otherwise we could get follow-up errors.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001838 D.getMutableDeclSpec().ClearStorageClassSpecs();
Richard Smithec642442013-04-12 22:46:28 +00001839 }
1840 break;
1841 default:
1842 Diag(DS.getStorageClassSpecLoc(),
1843 diag::err_storageclass_invalid_for_member);
1844 D.getMutableDeclSpec().ClearStorageClassSpecs();
1845 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001846 }
1847
Sebastian Redl669d5d72008-11-14 23:42:31 +00001848 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1849 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001850 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001851
David Blaikie1d87fba2013-01-30 01:22:18 +00001852 if (DS.isConstexprSpecified() && isInstField) {
1853 SemaDiagnosticBuilder B =
1854 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member);
1855 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc();
1856 if (InitStyle == ICIS_NoInit) {
1857 B << 0 << 0 << FixItHint::CreateReplacement(ConstexprLoc, "const");
1858 D.getMutableDeclSpec().ClearConstexprSpec();
1859 const char *PrevSpec;
1860 unsigned DiagID;
1861 bool Failed = D.getMutableDeclSpec().SetTypeQual(DeclSpec::TQ_const, ConstexprLoc,
1862 PrevSpec, DiagID, getLangOpts());
Matt Beaumont-Gay3e55e3e2013-01-31 00:08:03 +00001863 (void)Failed;
David Blaikie1d87fba2013-01-30 01:22:18 +00001864 assert(!Failed && "Making a constexpr member const shouldn't fail");
1865 } else {
1866 B << 1;
1867 const char *PrevSpec;
1868 unsigned DiagID;
David Blaikie1d87fba2013-01-30 01:22:18 +00001869 if (D.getMutableDeclSpec().SetStorageClassSpec(
1870 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID)) {
Matt Beaumont-Gay3e55e3e2013-01-31 00:08:03 +00001871 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable &&
David Blaikie1d87fba2013-01-30 01:22:18 +00001872 "This is the only DeclSpec that should fail to be applied");
1873 B << 1;
1874 } else {
1875 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static ");
1876 isInstField = false;
1877 }
1878 }
1879 }
1880
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00001881 NamedDecl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001882 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001883 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001884
1885 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001886 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001887 Diag(Loc, diag::err_bad_variable_name)
1888 << Name;
1889 return 0;
1890 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001891
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001892 IdentifierInfo *II = Name.getAsIdentifierInfo();
1893
Douglas Gregorf2503652011-09-21 14:40:46 +00001894 // Member field could not be with "template" keyword.
1895 // So TemplateParameterLists should be empty in this case.
1896 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001897 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001898 if (TemplateParams->size()) {
1899 // There is no such thing as a member field template.
1900 Diag(D.getIdentifierLoc(), diag::err_template_member)
1901 << II
1902 << SourceRange(TemplateParams->getTemplateLoc(),
1903 TemplateParams->getRAngleLoc());
1904 } else {
1905 // There is an extraneous 'template<>' for this member.
1906 Diag(TemplateParams->getTemplateLoc(),
1907 diag::err_template_member_noparams)
1908 << II
1909 << SourceRange(TemplateParams->getTemplateLoc(),
1910 TemplateParams->getRAngleLoc());
1911 }
1912 return 0;
1913 }
1914
Douglas Gregor922fff22010-10-13 22:19:53 +00001915 if (SS.isSet() && !SS.isInvalid()) {
1916 // The user provided a superfluous scope specifier inside a class
1917 // definition:
1918 //
1919 // class X {
1920 // int X::member;
1921 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001922 if (DeclContext *DC = computeDeclContext(SS, false))
1923 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001924 else
1925 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1926 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001927
Douglas Gregor922fff22010-10-13 22:19:53 +00001928 SS.clear();
1929 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001930
John McCall76da55d2013-04-16 07:28:30 +00001931 AttributeList *MSPropertyAttr =
1932 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList());
1933 if (MSPropertyAttr) {
1934 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D,
1935 BitWidth, InitStyle, AS, MSPropertyAttr);
1936 isInstField = false;
1937 } else {
1938 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D,
1939 BitWidth, InitStyle, AS);
1940 }
Chris Lattner6f8ce142009-03-05 23:03:49 +00001941 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001942 } else {
David Blaikie1d87fba2013-01-30 01:22:18 +00001943 assert(InitStyle == ICIS_NoInit || D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static);
Richard Smith7a614d82011-06-11 17:19:42 +00001944
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001945 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001946 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001947 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001948 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001949
1950 // Non-instance-fields can't have a bitfield.
1951 if (BitWidth) {
1952 if (Member->isInvalidDecl()) {
1953 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001954 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001955 // C++ 9.6p3: A bit-field shall not be a static member.
1956 // "static member 'A' cannot be a bit-field"
1957 Diag(Loc, diag::err_static_not_bitfield)
1958 << Name << BitWidth->getSourceRange();
1959 } else if (isa<TypedefDecl>(Member)) {
1960 // "typedef member 'x' cannot be a bit-field"
1961 Diag(Loc, diag::err_typedef_not_bitfield)
1962 << Name << BitWidth->getSourceRange();
1963 } else {
1964 // A function typedef ("typedef int f(); f a;").
1965 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1966 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001967 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001968 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001969 }
Mike Stump1eb44332009-09-09 15:08:12 +00001970
Chris Lattner8b963ef2009-03-05 23:01:03 +00001971 BitWidth = 0;
1972 Member->setInvalidDecl();
1973 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001974
1975 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Douglas Gregor37b372b2009-08-20 22:52:58 +00001977 // If we have declared a member function template, set the access of the
1978 // templated declaration as well.
1979 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1980 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001981 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001982
Richard Smitha4b39652012-08-06 03:25:17 +00001983 if (VS.isOverrideSpecified())
1984 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1985 if (VS.isFinalSpecified())
1986 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001987
Douglas Gregorf5251602011-03-08 17:10:18 +00001988 if (VS.getLastLocation().isValid()) {
1989 // Update the end location of a method that has a virt-specifiers.
1990 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1991 MD->setRangeEnd(VS.getLastLocation());
1992 }
Richard Smitha4b39652012-08-06 03:25:17 +00001993
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001994 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001995
Douglas Gregor10bd3682008-11-17 22:58:34 +00001996 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001997
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001998 if (isInstField) {
1999 FieldDecl *FD = cast<FieldDecl>(Member);
2000 FieldCollector->Add(FD);
2001
2002 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
2003 FD->getLocation())
2004 != DiagnosticsEngine::Ignored) {
2005 // Remember all explicit private FieldDecls that have a name, no side
2006 // effects and are not part of a dependent type declaration.
2007 if (!FD->isImplicit() && FD->getDeclName() &&
2008 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00002009 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00002010 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002011 !InitializationHasSideEffects(*FD))
2012 UnusedPrivateFields.insert(FD);
2013 }
2014 }
2015
John McCalld226f652010-08-21 09:40:31 +00002016 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002017}
2018
Hans Wennborg471f9852012-09-18 15:58:06 +00002019namespace {
2020 class UninitializedFieldVisitor
2021 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2022 Sema &S;
2023 ValueDecl *VD;
2024 public:
2025 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
2026 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002027 S(S) {
2028 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(VD))
2029 this->VD = IFD->getAnonField();
2030 else
2031 this->VD = VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00002032 }
2033
2034 void HandleExpr(Expr *E) {
2035 if (!E) return;
2036
2037 // Expressions like x(x) sometimes lack the surrounding expressions
2038 // but need to be checked anyways.
2039 HandleValue(E);
2040 Visit(E);
2041 }
2042
2043 void HandleValue(Expr *E) {
2044 E = E->IgnoreParens();
2045
2046 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
2047 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002048 return;
2049
2050 // FieldME is the inner-most MemberExpr that is not an anonymous struct
2051 // or union.
2052 MemberExpr *FieldME = ME;
2053
Hans Wennborg471f9852012-09-18 15:58:06 +00002054 Expr *Base = E;
2055 while (isa<MemberExpr>(Base)) {
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002056 ME = cast<MemberExpr>(Base);
2057
2058 if (isa<VarDecl>(ME->getMemberDecl()))
2059 return;
2060
2061 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
2062 if (!FD->isAnonymousStructOrUnion())
2063 FieldME = ME;
2064
Hans Wennborg471f9852012-09-18 15:58:06 +00002065 Base = ME->getBase();
2066 }
2067
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002068 if (VD == FieldME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg471f9852012-09-18 15:58:06 +00002069 unsigned diag = VD->getType()->isReferenceType()
2070 ? diag::warn_reference_field_is_uninit
2071 : diag::warn_field_is_uninit;
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002072 S.Diag(FieldME->getExprLoc(), diag) << VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00002073 }
Nick Lewycky621ba4f2012-11-15 08:19:20 +00002074 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00002075 }
2076
2077 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2078 HandleValue(CO->getTrueExpr());
2079 HandleValue(CO->getFalseExpr());
2080 return;
2081 }
2082
2083 if (BinaryConditionalOperator *BCO =
2084 dyn_cast<BinaryConditionalOperator>(E)) {
2085 HandleValue(BCO->getCommon());
2086 HandleValue(BCO->getFalseExpr());
2087 return;
2088 }
2089
2090 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2091 switch (BO->getOpcode()) {
2092 default:
2093 return;
2094 case(BO_PtrMemD):
2095 case(BO_PtrMemI):
2096 HandleValue(BO->getLHS());
2097 return;
2098 case(BO_Comma):
2099 HandleValue(BO->getRHS());
2100 return;
2101 }
2102 }
2103 }
2104
2105 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
2106 if (E->getCastKind() == CK_LValueToRValue)
2107 HandleValue(E->getSubExpr());
2108
2109 Inherited::VisitImplicitCastExpr(E);
2110 }
2111
2112 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2113 Expr *Callee = E->getCallee();
2114 if (isa<MemberExpr>(Callee))
2115 HandleValue(Callee);
2116
2117 Inherited::VisitCXXMemberCallExpr(E);
2118 }
2119 };
2120 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
2121 ValueDecl *VD) {
2122 UninitializedFieldVisitor(S, VD).HandleExpr(E);
2123 }
2124} // namespace
2125
Richard Smith7a614d82011-06-11 17:19:42 +00002126/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00002127/// in-class initializer for a non-static C++ class member, and after
2128/// instantiating an in-class initializer in a class template. Such actions
2129/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00002130void
Richard Smithca523302012-06-10 03:12:00 +00002131Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00002132 Expr *InitExpr) {
2133 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00002134 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
2135 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00002136
2137 if (!InitExpr) {
2138 FD->setInvalidDecl();
2139 FD->removeInClassInitializer();
2140 return;
2141 }
2142
Peter Collingbournefef21892011-10-23 18:59:44 +00002143 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
2144 FD->setInvalidDecl();
2145 FD->removeInClassInitializer();
2146 return;
2147 }
2148
Hans Wennborg471f9852012-09-18 15:58:06 +00002149 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
2150 != DiagnosticsEngine::Ignored) {
2151 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
2152 }
2153
Richard Smith7a614d82011-06-11 17:19:42 +00002154 ExprResult Init = InitExpr;
Richard Smithc83c2302012-12-19 01:39:02 +00002155 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl33deb352012-02-22 10:50:08 +00002156 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00002157 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00002158 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00002159 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002160 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
2161 Init = Seq.Perform(*this, Entity, Kind, InitExpr);
Richard Smith7a614d82011-06-11 17:19:42 +00002162 if (Init.isInvalid()) {
2163 FD->setInvalidDecl();
2164 return;
2165 }
Richard Smith7a614d82011-06-11 17:19:42 +00002166 }
2167
Richard Smith41956372013-01-14 22:39:08 +00002168 // C++11 [class.base.init]p7:
Richard Smith7a614d82011-06-11 17:19:42 +00002169 // The initialization of each base and member constitutes a
2170 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002171 Init = ActOnFinishFullExpr(Init.take(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00002172 if (Init.isInvalid()) {
2173 FD->setInvalidDecl();
2174 return;
2175 }
2176
2177 InitExpr = Init.release();
2178
2179 FD->setInClassInitializer(InitExpr);
2180}
2181
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002182/// \brief Find the direct and/or virtual base specifiers that
2183/// correspond to the given base type, for use in base initialization
2184/// within a constructor.
2185static bool FindBaseInitializer(Sema &SemaRef,
2186 CXXRecordDecl *ClassDecl,
2187 QualType BaseType,
2188 const CXXBaseSpecifier *&DirectBaseSpec,
2189 const CXXBaseSpecifier *&VirtualBaseSpec) {
2190 // First, check for a direct base class.
2191 DirectBaseSpec = 0;
2192 for (CXXRecordDecl::base_class_const_iterator Base
2193 = ClassDecl->bases_begin();
2194 Base != ClassDecl->bases_end(); ++Base) {
2195 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
2196 // We found a direct base of this type. That's what we're
2197 // initializing.
2198 DirectBaseSpec = &*Base;
2199 break;
2200 }
2201 }
2202
2203 // Check for a virtual base class.
2204 // FIXME: We might be able to short-circuit this if we know in advance that
2205 // there are no virtual bases.
2206 VirtualBaseSpec = 0;
2207 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
2208 // We haven't found a base yet; search the class hierarchy for a
2209 // virtual base class.
2210 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2211 /*DetectVirtual=*/false);
2212 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
2213 BaseType, Paths)) {
2214 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2215 Path != Paths.end(); ++Path) {
2216 if (Path->back().Base->isVirtual()) {
2217 VirtualBaseSpec = Path->back().Base;
2218 break;
2219 }
2220 }
2221 }
2222 }
2223
2224 return DirectBaseSpec || VirtualBaseSpec;
2225}
2226
Sebastian Redl6df65482011-09-24 17:48:25 +00002227/// \brief Handle a C++ member initializer using braced-init-list syntax.
2228MemInitResult
2229Sema::ActOnMemInitializer(Decl *ConstructorD,
2230 Scope *S,
2231 CXXScopeSpec &SS,
2232 IdentifierInfo *MemberOrBase,
2233 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002234 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002235 SourceLocation IdLoc,
2236 Expr *InitList,
2237 SourceLocation EllipsisLoc) {
2238 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002239 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002240 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002241}
2242
2243/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002244MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002245Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002246 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002247 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002248 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002249 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002250 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002251 SourceLocation IdLoc,
2252 SourceLocation LParenLoc,
Dmitri Gribenkoa36bbac2013-05-09 23:51:52 +00002253 ArrayRef<Expr *> Args,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002254 SourceLocation RParenLoc,
2255 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002256 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
Dmitri Gribenkoa36bbac2013-05-09 23:51:52 +00002257 Args, RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002258 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002259 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002260}
2261
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002262namespace {
2263
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002264// Callback to only accept typo corrections that can be a valid C++ member
2265// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002266class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2267 public:
2268 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2269 : ClassDecl(ClassDecl) {}
2270
2271 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2272 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2273 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2274 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2275 else
2276 return isa<TypeDecl>(ND);
2277 }
2278 return false;
2279 }
2280
2281 private:
2282 CXXRecordDecl *ClassDecl;
2283};
2284
2285}
2286
Sebastian Redl6df65482011-09-24 17:48:25 +00002287/// \brief Handle a C++ member initializer.
2288MemInitResult
2289Sema::BuildMemInitializer(Decl *ConstructorD,
2290 Scope *S,
2291 CXXScopeSpec &SS,
2292 IdentifierInfo *MemberOrBase,
2293 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002294 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002295 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002296 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002297 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002298 if (!ConstructorD)
2299 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002300
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002301 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002302
2303 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002304 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002305 if (!Constructor) {
2306 // The user wrote a constructor initializer on a function that is
2307 // not a C++ constructor. Ignore the error for now, because we may
2308 // have more member initializers coming; we'll diagnose it just
2309 // once in ActOnMemInitializers.
2310 return true;
2311 }
2312
2313 CXXRecordDecl *ClassDecl = Constructor->getParent();
2314
2315 // C++ [class.base.init]p2:
2316 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002317 // constructor's class and, if not found in that scope, are looked
2318 // up in the scope containing the constructor's definition.
2319 // [Note: if the constructor's class contains a member with the
2320 // same name as a direct or virtual base class of the class, a
2321 // mem-initializer-id naming the member or base class and composed
2322 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002323 // mem-initializer-id for the hidden base class may be specified
2324 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002325 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002326 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002327 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002328 = ClassDecl->lookup(MemberOrBase);
David Blaikie3bc93e32012-12-19 00:45:41 +00002329 if (!Result.empty()) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002330 ValueDecl *Member;
David Blaikie3bc93e32012-12-19 00:45:41 +00002331 if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
2332 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002333 if (EllipsisLoc.isValid())
2334 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002335 << MemberOrBase
2336 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002337
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002338 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002339 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002340 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002341 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002342 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002343 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002344 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002345
2346 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002347 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002348 } else if (DS.getTypeSpecType() == TST_decltype) {
2349 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002350 } else {
2351 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2352 LookupParsedName(R, S, &SS);
2353
2354 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2355 if (!TyD) {
2356 if (R.isAmbiguous()) return true;
2357
John McCallfd225442010-04-09 19:01:14 +00002358 // We don't want access-control diagnostics here.
2359 R.suppressDiagnostics();
2360
Douglas Gregor7a886e12010-01-19 06:46:48 +00002361 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2362 bool NotUnknownSpecialization = false;
2363 DeclContext *DC = computeDeclContext(SS, false);
2364 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2365 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2366
2367 if (!NotUnknownSpecialization) {
2368 // When the scope specifier can refer to a member of an unknown
2369 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002370 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2371 SS.getWithLocInContext(Context),
2372 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002373 if (BaseType.isNull())
2374 return true;
2375
Douglas Gregor7a886e12010-01-19 06:46:48 +00002376 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002377 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002378 }
2379 }
2380
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002381 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002382 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002383 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002384 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002385 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002386 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002387 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2388 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002389 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002390 // We have found a non-static data member with a similar
2391 // name to what was typed; complain and initialize that
2392 // member.
2393 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2394 << MemberOrBase << true << CorrectedQuotedStr
2395 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2396 Diag(Member->getLocation(), diag::note_previous_decl)
2397 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002398
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002399 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002400 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002401 const CXXBaseSpecifier *DirectBaseSpec;
2402 const CXXBaseSpecifier *VirtualBaseSpec;
2403 if (FindBaseInitializer(*this, ClassDecl,
2404 Context.getTypeDeclType(Type),
2405 DirectBaseSpec, VirtualBaseSpec)) {
2406 // We have found a direct or virtual base class with a
2407 // similar name to what was typed; complain and initialize
2408 // that base class.
2409 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002410 << MemberOrBase << false << CorrectedQuotedStr
2411 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002412
2413 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2414 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002415 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002416 diag::note_base_class_specified_here)
2417 << BaseSpec->getType()
2418 << BaseSpec->getSourceRange();
2419
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002420 TyD = Type;
2421 }
2422 }
2423 }
2424
Douglas Gregor7a886e12010-01-19 06:46:48 +00002425 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002426 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002427 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002428 return true;
2429 }
John McCall2b194412009-12-21 10:41:20 +00002430 }
2431
Douglas Gregor7a886e12010-01-19 06:46:48 +00002432 if (BaseType.isNull()) {
2433 BaseType = Context.getTypeDeclType(TyD);
2434 if (SS.isSet()) {
2435 NestedNameSpecifier *Qualifier =
2436 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002437
Douglas Gregor7a886e12010-01-19 06:46:48 +00002438 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002439 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002440 }
John McCall2b194412009-12-21 10:41:20 +00002441 }
2442 }
Mike Stump1eb44332009-09-09 15:08:12 +00002443
John McCalla93c9342009-12-07 02:54:59 +00002444 if (!TInfo)
2445 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002446
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002447 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002448}
2449
Chandler Carruth81c64772011-09-03 01:14:15 +00002450/// Checks a member initializer expression for cases where reference (or
2451/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002452static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2453 Expr *Init,
2454 SourceLocation IdLoc) {
2455 QualType MemberTy = Member->getType();
2456
2457 // We only handle pointers and references currently.
2458 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2459 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2460 return;
2461
2462 const bool IsPointer = MemberTy->isPointerType();
2463 if (IsPointer) {
2464 if (const UnaryOperator *Op
2465 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2466 // The only case we're worried about with pointers requires taking the
2467 // address.
2468 if (Op->getOpcode() != UO_AddrOf)
2469 return;
2470
2471 Init = Op->getSubExpr();
2472 } else {
2473 // We only handle address-of expression initializers for pointers.
2474 return;
2475 }
2476 }
2477
Richard Smitha4bb99c2013-06-12 21:51:50 +00002478 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002479 // We only warn when referring to a non-reference parameter declaration.
2480 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2481 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002482 return;
2483
2484 S.Diag(Init->getExprLoc(),
2485 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2486 : diag::warn_bind_ref_member_to_parameter)
2487 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002488 } else {
2489 // Other initializers are fine.
2490 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002491 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002492
2493 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2494 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002495}
2496
John McCallf312b1e2010-08-26 23:41:50 +00002497MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002498Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002499 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002500 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2501 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2502 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002503 "Member must be a FieldDecl or IndirectFieldDecl");
2504
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002505 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002506 return true;
2507
Douglas Gregor464b2f02010-11-05 22:21:31 +00002508 if (Member->isInvalidDecl())
2509 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002510
John McCallb4190042009-11-04 23:02:40 +00002511 // Diagnose value-uses of fields to initialize themselves, e.g.
2512 // foo(foo)
2513 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002514 // TODO: implement -Wuninitialized and fold this into that framework.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002515 MultiExprArg Args;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002516 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002517 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Richard Smithc83c2302012-12-19 01:39:02 +00002518 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002519 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
Richard Smithc83c2302012-12-19 01:39:02 +00002520 } else {
2521 // Template instantiation doesn't reconstruct ParenListExprs for us.
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002522 Args = Init;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002523 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002524
Richard Trieude5e75c2012-06-14 23:11:34 +00002525 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2526 != DiagnosticsEngine::Ignored)
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002527 for (unsigned i = 0, e = Args.size(); i != e; ++i)
Richard Trieude5e75c2012-06-14 23:11:34 +00002528 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002529 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002530 // initializing the i'th field, throw a warning if any of the >= i'th
2531 // fields are used, as they are not yet initialized.
2532 // Right now we are only handling the case where the i'th field uses
2533 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002534 // Also need to take into account that some fields may be initialized by
2535 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002536 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002537
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002538 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002539
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002540 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002541 // Can't check initialization for a member of dependent type or when
2542 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002543 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002544 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002545 bool InitList = false;
2546 if (isa<InitListExpr>(Init)) {
2547 InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002548 Args = Init;
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002549 }
2550
Chandler Carruth894aed92010-12-06 09:23:57 +00002551 // Initialize the member.
2552 InitializedEntity MemberEntity =
2553 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2554 : InitializedEntity::InitializeMember(IndirectMember, 0);
2555 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002556 InitList ? InitializationKind::CreateDirectList(IdLoc)
2557 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2558 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002559
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002560 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args);
2561 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args, 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002562 if (MemberInit.isInvalid())
2563 return true;
2564
Richard Smith8a07cd32013-06-12 20:42:33 +00002565 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc);
2566
Richard Smith41956372013-01-14 22:39:08 +00002567 // C++11 [class.base.init]p7:
Chandler Carruth894aed92010-12-06 09:23:57 +00002568 // The initialization of each base and member constitutes a
2569 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002570 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002571 if (MemberInit.isInvalid())
2572 return true;
2573
Richard Smithc83c2302012-12-19 01:39:02 +00002574 Init = MemberInit.get();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002575 }
2576
Chandler Carruth894aed92010-12-06 09:23:57 +00002577 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002578 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2579 InitRange.getBegin(), Init,
2580 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002581 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002582 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2583 InitRange.getBegin(), Init,
2584 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002585 }
Eli Friedman59c04372009-07-29 19:44:27 +00002586}
2587
John McCallf312b1e2010-08-26 23:41:50 +00002588MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002589Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002590 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002591 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Richard Smith80ad52f2013-01-02 11:42:31 +00002592 if (!LangOpts.CPlusPlus11)
Douglas Gregor76852c22011-11-01 01:16:03 +00002593 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002594 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002595 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002596
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002597 bool InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002598 MultiExprArg Args = Init;
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002599 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2600 InitList = false;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002601 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002602 }
2603
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002604 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002605 // Initialize the object.
2606 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2607 QualType(ClassDecl->getTypeForDecl(), 0));
2608 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002609 InitList ? InitializationKind::CreateDirectList(NameLoc)
2610 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2611 InitRange.getEnd());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002612 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002613 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002614 Args, 0);
Sean Hunt41717662011-02-26 19:13:13 +00002615 if (DelegationInit.isInvalid())
2616 return true;
2617
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002618 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2619 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002620
Richard Smith41956372013-01-14 22:39:08 +00002621 // C++11 [class.base.init]p7:
Sean Hunt41717662011-02-26 19:13:13 +00002622 // The initialization of each base and member constitutes a
2623 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002624 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
2625 InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002626 if (DelegationInit.isInvalid())
2627 return true;
2628
Eli Friedmand21016f2012-05-19 23:35:23 +00002629 // If we are in a dependent context, template instantiation will
2630 // perform this type-checking again. Just save the arguments that we
2631 // received in a ParenListExpr.
2632 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2633 // of the information that we have about the base
2634 // initializer. However, deconstructing the ASTs is a dicey process,
2635 // and this approach is far more likely to get the corner cases right.
2636 if (CurContext->isDependentContext())
2637 DelegationInit = Owned(Init);
2638
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002639 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002640 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002641 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002642}
2643
2644MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002645Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002646 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002647 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002648 SourceLocation BaseLoc
2649 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002650
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002651 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2652 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2653 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2654
2655 // C++ [class.base.init]p2:
2656 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002657 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002658 // of that class, the mem-initializer is ill-formed. A
2659 // mem-initializer-list can initialize a base class using any
2660 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002661 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002662
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002663 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002664 if (EllipsisLoc.isValid()) {
2665 // This is a pack expansion.
2666 if (!BaseType->containsUnexpandedParameterPack()) {
2667 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002668 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002669
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002670 EllipsisLoc = SourceLocation();
2671 }
2672 } else {
2673 // Check for any unexpanded parameter packs.
2674 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2675 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002676
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002677 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002678 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002679 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002680
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002681 // Check for direct and virtual base classes.
2682 const CXXBaseSpecifier *DirectBaseSpec = 0;
2683 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2684 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002685 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2686 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002687 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002688
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002689 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2690 VirtualBaseSpec);
2691
2692 // C++ [base.class.init]p2:
2693 // Unless the mem-initializer-id names a nonstatic data member of the
2694 // constructor's class or a direct or virtual base of that class, the
2695 // mem-initializer is ill-formed.
2696 if (!DirectBaseSpec && !VirtualBaseSpec) {
2697 // If the class has any dependent bases, then it's possible that
2698 // one of those types will resolve to the same type as
2699 // BaseType. Therefore, just treat this as a dependent base
2700 // class initialization. FIXME: Should we try to check the
2701 // initialization anyway? It seems odd.
2702 if (ClassDecl->hasAnyDependentBases())
2703 Dependent = true;
2704 else
2705 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2706 << BaseType << Context.getTypeDeclType(ClassDecl)
2707 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2708 }
2709 }
2710
2711 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002712 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002713
Sebastian Redl6df65482011-09-24 17:48:25 +00002714 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2715 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002716 InitRange.getBegin(), Init,
2717 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002718 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002719
2720 // C++ [base.class.init]p2:
2721 // If a mem-initializer-id is ambiguous because it designates both
2722 // a direct non-virtual base class and an inherited virtual base
2723 // class, the mem-initializer is ill-formed.
2724 if (DirectBaseSpec && VirtualBaseSpec)
2725 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002726 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002727
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002728 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002729 if (!BaseSpec)
2730 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2731
2732 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002733 bool InitList = true;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002734 MultiExprArg Args = Init;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002735 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002736 InitList = false;
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002737 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002738 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002739
2740 InitializedEntity BaseEntity =
2741 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2742 InitializationKind Kind =
2743 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2744 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2745 InitRange.getEnd());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002746 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args);
2747 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002748 if (BaseInit.isInvalid())
2749 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002750
Richard Smith41956372013-01-14 22:39:08 +00002751 // C++11 [class.base.init]p7:
2752 // The initialization of each base and member constitutes a
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002753 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002754 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002755 if (BaseInit.isInvalid())
2756 return true;
2757
2758 // If we are in a dependent context, template instantiation will
2759 // perform this type-checking again. Just save the arguments that we
2760 // received in a ParenListExpr.
2761 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2762 // of the information that we have about the base
2763 // initializer. However, deconstructing the ASTs is a dicey process,
2764 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002765 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002766 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002767
Sean Huntcbb67482011-01-08 20:30:50 +00002768 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002769 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002770 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002771 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002772 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002773}
2774
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002775// Create a static_cast\<T&&>(expr).
Richard Smith07b0fdc2013-03-18 21:12:30 +00002776static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) {
2777 if (T.isNull()) T = E->getType();
2778 QualType TargetType = SemaRef.BuildReferenceType(
2779 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002780 SourceLocation ExprLoc = E->getLocStart();
2781 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2782 TargetType, ExprLoc);
2783
2784 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2785 SourceRange(ExprLoc, ExprLoc),
2786 E->getSourceRange()).take();
2787}
2788
Anders Carlssone5ef7402010-04-23 03:10:23 +00002789/// ImplicitInitializerKind - How an implicit base or member initializer should
2790/// initialize its base or member.
2791enum ImplicitInitializerKind {
2792 IIK_Default,
2793 IIK_Copy,
Richard Smith07b0fdc2013-03-18 21:12:30 +00002794 IIK_Move,
2795 IIK_Inherit
Anders Carlssone5ef7402010-04-23 03:10:23 +00002796};
2797
Anders Carlssondefefd22010-04-23 02:00:02 +00002798static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002799BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002800 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002801 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002802 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002803 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002804 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002805 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2806 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002807
John McCall60d7b3a2010-08-24 06:29:42 +00002808 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002809
2810 switch (ImplicitInitKind) {
Richard Smith07b0fdc2013-03-18 21:12:30 +00002811 case IIK_Inherit: {
2812 const CXXRecordDecl *Inherited =
2813 Constructor->getInheritedConstructor()->getParent();
2814 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
2815 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) {
2816 // C++11 [class.inhctor]p8:
2817 // Each expression in the expression-list is of the form
2818 // static_cast<T&&>(p), where p is the name of the corresponding
2819 // constructor parameter and T is the declared type of p.
2820 SmallVector<Expr*, 16> Args;
2821 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) {
2822 ParmVarDecl *PD = Constructor->getParamDecl(I);
2823 ExprResult ArgExpr =
2824 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(),
2825 VK_LValue, SourceLocation());
2826 if (ArgExpr.isInvalid())
2827 return true;
2828 Args.push_back(CastForMoving(SemaRef, ArgExpr.take(), PD->getType()));
2829 }
2830
2831 InitializationKind InitKind = InitializationKind::CreateDirect(
2832 Constructor->getLocation(), SourceLocation(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002833 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args);
Richard Smith07b0fdc2013-03-18 21:12:30 +00002834 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args);
2835 break;
2836 }
2837 }
2838 // Fall through.
Anders Carlssone5ef7402010-04-23 03:10:23 +00002839 case IIK_Default: {
2840 InitializationKind InitKind
2841 = InitializationKind::CreateDefault(Constructor->getLocation());
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00002842 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
2843 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002844 break;
2845 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002846
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002847 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002848 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002849 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002850 ParmVarDecl *Param = Constructor->getParamDecl(0);
2851 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002852
Anders Carlssone5ef7402010-04-23 03:10:23 +00002853 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002854 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002855 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002856 Constructor->getLocation(), ParamType,
2857 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002858
Eli Friedman5f2987c2012-02-02 03:46:19 +00002859 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2860
Anders Carlssonc7957502010-04-24 22:02:54 +00002861 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002862 QualType ArgTy =
2863 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2864 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002865
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002866 if (Moving) {
2867 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2868 }
2869
John McCallf871d0c2010-08-07 06:22:56 +00002870 CXXCastPath BasePath;
2871 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002872 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2873 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002874 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002875 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002876
Anders Carlssone5ef7402010-04-23 03:10:23 +00002877 InitializationKind InitKind
2878 = InitializationKind::CreateDirect(Constructor->getLocation(),
2879 SourceLocation(), SourceLocation());
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00002880 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg);
2881 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002882 break;
2883 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002884 }
John McCall9ae2f072010-08-23 23:25:46 +00002885
Douglas Gregor53c374f2010-12-07 00:41:46 +00002886 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002887 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002888 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002889
Anders Carlssondefefd22010-04-23 02:00:02 +00002890 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002891 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002892 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2893 SourceLocation()),
2894 BaseSpec->isVirtual(),
2895 SourceLocation(),
2896 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002897 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002898 SourceLocation());
2899
Anders Carlssondefefd22010-04-23 02:00:02 +00002900 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002901}
2902
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002903static bool RefersToRValueRef(Expr *MemRef) {
2904 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2905 return Referenced->getType()->isRValueReferenceType();
2906}
2907
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002908static bool
2909BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002910 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002911 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002912 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002913 if (Field->isInvalidDecl())
2914 return true;
2915
Chandler Carruthf186b542010-06-29 23:50:44 +00002916 SourceLocation Loc = Constructor->getLocation();
2917
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002918 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2919 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002920 ParmVarDecl *Param = Constructor->getParamDecl(0);
2921 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002922
2923 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002924 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2925 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002926
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002927 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002928 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002929 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002930 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002931
Eli Friedman5f2987c2012-02-02 03:46:19 +00002932 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2933
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002934 if (Moving) {
2935 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2936 }
2937
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002938 // Build a reference to this field within the parameter.
2939 CXXScopeSpec SS;
2940 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2941 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002942 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2943 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002944 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002945 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002946 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002947 ParamType, Loc,
2948 /*IsArrow=*/false,
2949 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002950 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002951 /*FirstQualifierInScope=*/0,
2952 MemberLookup,
2953 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002954 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002955 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002956
2957 // C++11 [class.copy]p15:
2958 // - if a member m has rvalue reference type T&&, it is direct-initialized
2959 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002960 if (RefersToRValueRef(CtorArg.get())) {
2961 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002962 }
2963
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002964 // When the field we are copying is an array, create index variables for
2965 // each dimension of the array. We use these index variables to subscript
2966 // the source array, and other clients (e.g., CodeGen) will perform the
2967 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002968 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002969 QualType BaseType = Field->getType();
2970 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002971 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002972 while (const ConstantArrayType *Array
2973 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002974 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002975 // Create the iteration variable for this array index.
2976 IdentifierInfo *IterationVarName = 0;
2977 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002978 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002979 llvm::raw_svector_ostream OS(Str);
2980 OS << "__i" << IndexVariables.size();
2981 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2982 }
2983 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002984 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002985 IterationVarName, SizeType,
2986 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002987 SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002988 IndexVariables.push_back(IterationVar);
2989
2990 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002991 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002992 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002993 assert(!IterationVarRef.isInvalid() &&
2994 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002995 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2996 assert(!IterationVarRef.isInvalid() &&
2997 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002998
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002999 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00003000 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00003001 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00003002 Loc);
3003 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003004 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003005
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003006 BaseType = Array->getElementType();
3007 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003008
3009 // The array subscript expression is an lvalue, which is wrong for moving.
3010 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00003011 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003012
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003013 // Construct the entity that we will be initializing. For an array, this
3014 // will be first element in the array, which may require several levels
3015 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003016 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003017 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003018 if (Indirect)
3019 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
3020 else
3021 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003022 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
3023 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
3024 0,
3025 Entities.back()));
3026
3027 // Direct-initialize to use the copy constructor.
3028 InitializationKind InitKind =
3029 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
3030
Sebastian Redl74e611a2011-09-04 18:14:28 +00003031 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00003032 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind, CtorArgE);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003033
John McCall60d7b3a2010-08-24 06:29:42 +00003034 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003035 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00003036 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00003037 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00003038 if (MemberInit.isInvalid())
3039 return true;
3040
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003041 if (Indirect) {
3042 assert(IndexVariables.size() == 0 &&
3043 "Indirect field improperly initialized");
3044 CXXMemberInit
3045 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3046 Loc, Loc,
3047 MemberInit.takeAs<Expr>(),
3048 Loc);
3049 } else
3050 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
3051 Loc, MemberInit.takeAs<Expr>(),
3052 Loc,
3053 IndexVariables.data(),
3054 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00003055 return false;
3056 }
3057
Richard Smith07b0fdc2013-03-18 21:12:30 +00003058 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) &&
3059 "Unhandled implicit init kind!");
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003060
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003061 QualType FieldBaseElementType =
3062 SemaRef.Context.getBaseElementType(Field->getType());
3063
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003064 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003065 InitializedEntity InitEntity
3066 = Indirect? InitializedEntity::InitializeMember(Indirect)
3067 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00003068 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00003069 InitializationKind::CreateDefault(Loc);
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00003070
3071 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
3072 ExprResult MemberInit =
3073 InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
John McCall9ae2f072010-08-23 23:25:46 +00003074
Douglas Gregor53c374f2010-12-07 00:41:46 +00003075 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003076 if (MemberInit.isInvalid())
3077 return true;
3078
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003079 if (Indirect)
3080 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3081 Indirect, Loc,
3082 Loc,
3083 MemberInit.get(),
3084 Loc);
3085 else
3086 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3087 Field, Loc, Loc,
3088 MemberInit.get(),
3089 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003090 return false;
3091 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003092
Sean Hunt1f2f3842011-05-17 00:19:05 +00003093 if (!Field->getParent()->isUnion()) {
3094 if (FieldBaseElementType->isReferenceType()) {
3095 SemaRef.Diag(Constructor->getLocation(),
3096 diag::err_uninitialized_member_in_ctor)
3097 << (int)Constructor->isImplicit()
3098 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3099 << 0 << Field->getDeclName();
3100 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3101 return true;
3102 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003103
Sean Hunt1f2f3842011-05-17 00:19:05 +00003104 if (FieldBaseElementType.isConstQualified()) {
3105 SemaRef.Diag(Constructor->getLocation(),
3106 diag::err_uninitialized_member_in_ctor)
3107 << (int)Constructor->isImplicit()
3108 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3109 << 1 << Field->getDeclName();
3110 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3111 return true;
3112 }
Anders Carlsson114a2972010-04-23 03:07:47 +00003113 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003114
David Blaikie4e4d0842012-03-11 07:00:24 +00003115 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00003116 FieldBaseElementType->isObjCRetainableType() &&
3117 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
3118 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00003119 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00003120 // Default-initialize Objective-C pointers to NULL.
3121 CXXMemberInit
3122 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3123 Loc, Loc,
3124 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
3125 Loc);
3126 return false;
3127 }
3128
Anders Carlssonddfb75f2010-04-23 02:15:47 +00003129 // Nothing to initialize.
3130 CXXMemberInit = 0;
3131 return false;
3132}
John McCallf1860e52010-05-20 23:23:51 +00003133
3134namespace {
3135struct BaseAndFieldInfo {
3136 Sema &S;
3137 CXXConstructorDecl *Ctor;
3138 bool AnyErrorsInInits;
3139 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00003140 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003141 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00003142
3143 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
3144 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003145 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
3146 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00003147 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003148 else if (Generated && Ctor->isMoveConstructor())
3149 IIK = IIK_Move;
Richard Smith07b0fdc2013-03-18 21:12:30 +00003150 else if (Ctor->getInheritedConstructor())
3151 IIK = IIK_Inherit;
John McCallf1860e52010-05-20 23:23:51 +00003152 else
3153 IIK = IIK_Default;
3154 }
Douglas Gregorf4853882011-11-28 20:03:15 +00003155
3156 bool isImplicitCopyOrMove() const {
3157 switch (IIK) {
3158 case IIK_Copy:
3159 case IIK_Move:
3160 return true;
3161
3162 case IIK_Default:
Richard Smith07b0fdc2013-03-18 21:12:30 +00003163 case IIK_Inherit:
Douglas Gregorf4853882011-11-28 20:03:15 +00003164 return false;
3165 }
David Blaikie30263482012-01-20 21:50:17 +00003166
3167 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00003168 }
Richard Smith0b8220a2012-08-07 21:30:42 +00003169
3170 bool addFieldInitializer(CXXCtorInitializer *Init) {
3171 AllToInit.push_back(Init);
3172
3173 // Check whether this initializer makes the field "used".
Richard Smithc3bf52c2013-04-20 22:23:05 +00003174 if (Init->getInit()->HasSideEffects(S.Context))
Richard Smith0b8220a2012-08-07 21:30:42 +00003175 S.UnusedPrivateFields.remove(Init->getAnyMember());
3176
3177 return false;
3178 }
John McCallf1860e52010-05-20 23:23:51 +00003179};
3180}
3181
Richard Smitha4950662011-09-19 13:34:43 +00003182/// \brief Determine whether the given indirect field declaration is somewhere
3183/// within an anonymous union.
3184static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
3185 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
3186 CEnd = F->chain_end();
3187 C != CEnd; ++C)
3188 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
3189 if (Record->isUnion())
3190 return true;
3191
3192 return false;
3193}
3194
Douglas Gregorddb21472011-11-02 23:04:16 +00003195/// \brief Determine whether the given type is an incomplete or zero-lenfgth
3196/// array type.
3197static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
3198 if (T->isIncompleteArrayType())
3199 return true;
3200
3201 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
3202 if (!ArrayT->getSize())
3203 return true;
3204
3205 T = ArrayT->getElementType();
3206 }
3207
3208 return false;
3209}
3210
Richard Smith7a614d82011-06-11 17:19:42 +00003211static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003212 FieldDecl *Field,
3213 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00003214
Chandler Carruthe861c602010-06-30 02:59:29 +00003215 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00003216 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
3217 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003218
Richard Smith0b8220a2012-08-07 21:30:42 +00003219 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00003220 // has a brace-or-equal-initializer, the entity is initialized as specified
3221 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003222 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Richard Smithc3bf52c2013-04-20 22:23:05 +00003223 Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
3224 Info.Ctor->getLocation(), Field);
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003225 CXXCtorInitializer *Init;
3226 if (Indirect)
3227 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3228 SourceLocation(),
Richard Smithc3bf52c2013-04-20 22:23:05 +00003229 SourceLocation(), DIE,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003230 SourceLocation());
3231 else
3232 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3233 SourceLocation(),
Richard Smithc3bf52c2013-04-20 22:23:05 +00003234 SourceLocation(), DIE,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003235 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003236 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003237 }
3238
Richard Smithc115f632011-09-18 11:14:50 +00003239 // Don't build an implicit initializer for union members if none was
3240 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003241 if (Field->getParent()->isUnion() ||
3242 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003243 return false;
3244
Douglas Gregorddb21472011-11-02 23:04:16 +00003245 // Don't initialize incomplete or zero-length arrays.
3246 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3247 return false;
3248
John McCallf1860e52010-05-20 23:23:51 +00003249 // Don't try to build an implicit initializer if there were semantic
3250 // errors in any of the initializers (and therefore we might be
3251 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003252 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003253 return false;
3254
Sean Huntcbb67482011-01-08 20:30:50 +00003255 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003256 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3257 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003258 return true;
John McCallf1860e52010-05-20 23:23:51 +00003259
Richard Smith0b8220a2012-08-07 21:30:42 +00003260 if (!Init)
3261 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003262
Richard Smith0b8220a2012-08-07 21:30:42 +00003263 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003264}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003265
3266bool
3267Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3268 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003269 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003270 Constructor->setNumCtorInitializers(1);
3271 CXXCtorInitializer **initializer =
3272 new (Context) CXXCtorInitializer*[1];
3273 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3274 Constructor->setCtorInitializers(initializer);
3275
Sean Huntb76af9c2011-05-03 23:05:34 +00003276 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003277 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003278 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3279 }
3280
Sean Huntc1598702011-05-05 00:05:47 +00003281 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003282
Sean Hunt059ce0d2011-05-01 07:04:31 +00003283 return false;
3284}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003285
David Blaikie93c86172013-01-17 05:26:25 +00003286bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
3287 ArrayRef<CXXCtorInitializer *> Initializers) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003288 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003289 // Just store the initializers as written, they will be checked during
3290 // instantiation.
David Blaikie93c86172013-01-17 05:26:25 +00003291 if (!Initializers.empty()) {
3292 Constructor->setNumCtorInitializers(Initializers.size());
Sean Huntcbb67482011-01-08 20:30:50 +00003293 CXXCtorInitializer **baseOrMemberInitializers =
David Blaikie93c86172013-01-17 05:26:25 +00003294 new (Context) CXXCtorInitializer*[Initializers.size()];
3295 memcpy(baseOrMemberInitializers, Initializers.data(),
3296 Initializers.size() * sizeof(CXXCtorInitializer*));
Sean Huntcbb67482011-01-08 20:30:50 +00003297 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003298 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003299
3300 // Let template instantiation know whether we had errors.
3301 if (AnyErrors)
3302 Constructor->setInvalidDecl();
3303
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003304 return false;
3305 }
3306
John McCallf1860e52010-05-20 23:23:51 +00003307 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003308
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003309 // We need to build the initializer AST according to order of construction
3310 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003311 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003312 if (!ClassDecl)
3313 return true;
3314
Eli Friedman80c30da2009-11-09 19:20:36 +00003315 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003316
David Blaikie93c86172013-01-17 05:26:25 +00003317 for (unsigned i = 0; i < Initializers.size(); i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003318 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003319
3320 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003321 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003322 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003323 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003324 }
3325
Anders Carlsson711f34a2010-04-21 19:52:01 +00003326 // Keep track of the direct virtual bases.
3327 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3328 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3329 E = ClassDecl->bases_end(); I != E; ++I) {
3330 if (I->isVirtual())
3331 DirectVBases.insert(I);
3332 }
3333
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003334 // Push virtual bases before others.
3335 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3336 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3337
Sean Huntcbb67482011-01-08 20:30:50 +00003338 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003339 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3340 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003341 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003342 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003343 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003344 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003345 VBase, IsInheritedVirtualBase,
3346 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003347 HadError = true;
3348 continue;
3349 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003350
John McCallf1860e52010-05-20 23:23:51 +00003351 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003352 }
3353 }
Mike Stump1eb44332009-09-09 15:08:12 +00003354
John McCallf1860e52010-05-20 23:23:51 +00003355 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003356 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3357 E = ClassDecl->bases_end(); Base != E; ++Base) {
3358 // Virtuals are in the virtual base list and already constructed.
3359 if (Base->isVirtual())
3360 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003361
Sean Huntcbb67482011-01-08 20:30:50 +00003362 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003363 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3364 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003365 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003366 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003367 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003368 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003369 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003370 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003371 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003372 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003373
John McCallf1860e52010-05-20 23:23:51 +00003374 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003375 }
3376 }
Mike Stump1eb44332009-09-09 15:08:12 +00003377
John McCallf1860e52010-05-20 23:23:51 +00003378 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003379 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3380 MemEnd = ClassDecl->decls_end();
3381 Mem != MemEnd; ++Mem) {
3382 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003383 // C++ [class.bit]p2:
3384 // A declaration for a bit-field that omits the identifier declares an
3385 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3386 // initialized.
3387 if (F->isUnnamedBitfield())
3388 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003389
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003390 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003391 // handle anonymous struct/union fields based on their individual
3392 // indirect fields.
Richard Smith07b0fdc2013-03-18 21:12:30 +00003393 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove())
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003394 continue;
3395
3396 if (CollectFieldInitializer(*this, Info, F))
3397 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003398 continue;
3399 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003400
3401 // Beyond this point, we only consider default initialization.
Richard Smith07b0fdc2013-03-18 21:12:30 +00003402 if (Info.isImplicitCopyOrMove())
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003403 continue;
3404
3405 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3406 if (F->getType()->isIncompleteArrayType()) {
3407 assert(ClassDecl->hasFlexibleArrayMember() &&
3408 "Incomplete array type is not valid");
3409 continue;
3410 }
3411
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003412 // Initialize each field of an anonymous struct individually.
3413 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3414 HadError = true;
3415
3416 continue;
3417 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003418 }
Mike Stump1eb44332009-09-09 15:08:12 +00003419
David Blaikie93c86172013-01-17 05:26:25 +00003420 unsigned NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003421 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003422 Constructor->setNumCtorInitializers(NumInitializers);
3423 CXXCtorInitializer **baseOrMemberInitializers =
3424 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003425 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003426 NumInitializers * sizeof(CXXCtorInitializer*));
3427 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003428
John McCallef027fe2010-03-16 21:39:52 +00003429 // Constructors implicitly reference the base and member
3430 // destructors.
3431 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3432 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003433 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003434
3435 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003436}
3437
David Blaikieee000bb2013-01-17 08:49:22 +00003438static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) {
Ted Kremenek6217b802009-07-29 21:53:49 +00003439 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
David Blaikieee000bb2013-01-17 08:49:22 +00003440 const RecordDecl *RD = RT->getDecl();
3441 if (RD->isAnonymousStructOrUnion()) {
3442 for (RecordDecl::field_iterator Field = RD->field_begin(),
3443 E = RD->field_end(); Field != E; ++Field)
3444 PopulateKeysForFields(*Field, IdealInits);
3445 return;
3446 }
Eli Friedman6347f422009-07-21 19:28:10 +00003447 }
David Blaikieee000bb2013-01-17 08:49:22 +00003448 IdealInits.push_back(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003449}
3450
Anders Carlssonea356fb2010-04-02 05:42:15 +00003451static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003452 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003453}
3454
Anders Carlssonea356fb2010-04-02 05:42:15 +00003455static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003456 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003457 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003458 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003459
David Blaikieee000bb2013-01-17 08:49:22 +00003460 return Member->getAnyMember();
Eli Friedman6347f422009-07-21 19:28:10 +00003461}
3462
David Blaikie93c86172013-01-17 05:26:25 +00003463static void DiagnoseBaseOrMemInitializerOrder(
3464 Sema &SemaRef, const CXXConstructorDecl *Constructor,
3465 ArrayRef<CXXCtorInitializer *> Inits) {
John McCalld6ca8da2010-04-10 07:37:23 +00003466 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003467 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003468
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003469 // Don't check initializers order unless the warning is enabled at the
3470 // location of at least one initializer.
3471 bool ShouldCheckOrder = false;
David Blaikie93c86172013-01-17 05:26:25 +00003472 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003473 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003474 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3475 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003476 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003477 ShouldCheckOrder = true;
3478 break;
3479 }
3480 }
3481 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003482 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003483
John McCalld6ca8da2010-04-10 07:37:23 +00003484 // Build the list of bases and members in the order that they'll
3485 // actually be initialized. The explicit initializers should be in
3486 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003487 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003488
Anders Carlsson071d6102010-04-02 03:38:04 +00003489 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3490
John McCalld6ca8da2010-04-10 07:37:23 +00003491 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003492 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003493 ClassDecl->vbases_begin(),
3494 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003495 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003496
John McCalld6ca8da2010-04-10 07:37:23 +00003497 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003498 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003499 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003500 if (Base->isVirtual())
3501 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003502 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003503 }
Mike Stump1eb44332009-09-09 15:08:12 +00003504
John McCalld6ca8da2010-04-10 07:37:23 +00003505 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003506 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003507 E = ClassDecl->field_end(); Field != E; ++Field) {
3508 if (Field->isUnnamedBitfield())
3509 continue;
3510
David Blaikieee000bb2013-01-17 08:49:22 +00003511 PopulateKeysForFields(*Field, IdealInitKeys);
Douglas Gregord61db332011-10-10 17:22:13 +00003512 }
3513
John McCalld6ca8da2010-04-10 07:37:23 +00003514 unsigned NumIdealInits = IdealInitKeys.size();
3515 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003516
Sean Huntcbb67482011-01-08 20:30:50 +00003517 CXXCtorInitializer *PrevInit = 0;
David Blaikie93c86172013-01-17 05:26:25 +00003518 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003519 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003520 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003521
3522 // Scan forward to try to find this initializer in the idealized
3523 // initializers list.
3524 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3525 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003526 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003527
3528 // If we didn't find this initializer, it must be because we
3529 // scanned past it on a previous iteration. That can only
3530 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003531 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003532 Sema::SemaDiagnosticBuilder D =
3533 SemaRef.Diag(PrevInit->getSourceLocation(),
3534 diag::warn_initializer_out_of_order);
3535
Francois Pichet00eb3f92010-12-04 09:14:42 +00003536 if (PrevInit->isAnyMemberInitializer())
3537 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003538 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003539 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003540
Francois Pichet00eb3f92010-12-04 09:14:42 +00003541 if (Init->isAnyMemberInitializer())
3542 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003543 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003544 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003545
3546 // Move back to the initializer's location in the ideal list.
3547 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3548 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003549 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003550
3551 assert(IdealIndex != NumIdealInits &&
3552 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003553 }
John McCalld6ca8da2010-04-10 07:37:23 +00003554
3555 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003556 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003557}
3558
John McCall3c3ccdb2010-04-10 09:28:51 +00003559namespace {
3560bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003561 CXXCtorInitializer *Init,
3562 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003563 if (!PrevInit) {
3564 PrevInit = Init;
3565 return false;
3566 }
3567
Douglas Gregordc392c12013-03-25 23:28:23 +00003568 if (FieldDecl *Field = Init->getAnyMember())
John McCall3c3ccdb2010-04-10 09:28:51 +00003569 S.Diag(Init->getSourceLocation(),
3570 diag::err_multiple_mem_initialization)
3571 << Field->getDeclName()
3572 << Init->getSourceRange();
3573 else {
John McCallf4c73712011-01-19 06:33:43 +00003574 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003575 assert(BaseClass && "neither field nor base");
3576 S.Diag(Init->getSourceLocation(),
3577 diag::err_multiple_base_initialization)
3578 << QualType(BaseClass, 0)
3579 << Init->getSourceRange();
3580 }
3581 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3582 << 0 << PrevInit->getSourceRange();
3583
3584 return true;
3585}
3586
Sean Huntcbb67482011-01-08 20:30:50 +00003587typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003588typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3589
3590bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003591 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003592 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003593 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003594 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003595 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003596
3597 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003598 if (Parent->isUnion()) {
3599 UnionEntry &En = Unions[Parent];
3600 if (En.first && En.first != Child) {
3601 S.Diag(Init->getSourceLocation(),
3602 diag::err_multiple_mem_union_initialization)
3603 << Field->getDeclName()
3604 << Init->getSourceRange();
3605 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3606 << 0 << En.second->getSourceRange();
3607 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003608 }
3609 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003610 En.first = Child;
3611 En.second = Init;
3612 }
David Blaikie6fe29652011-11-17 06:01:57 +00003613 if (!Parent->isAnonymousStructOrUnion())
3614 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003615 }
3616
3617 Child = Parent;
3618 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003619 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003620
3621 return false;
3622}
3623}
3624
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003625/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003626void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003627 SourceLocation ColonLoc,
David Blaikie93c86172013-01-17 05:26:25 +00003628 ArrayRef<CXXCtorInitializer*> MemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003629 bool AnyErrors) {
3630 if (!ConstructorDecl)
3631 return;
3632
3633 AdjustDeclIfTemplate(ConstructorDecl);
3634
3635 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003636 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003637
3638 if (!Constructor) {
3639 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3640 return;
3641 }
3642
John McCall3c3ccdb2010-04-10 09:28:51 +00003643 // Mapping for the duplicate initializers check.
3644 // For member initializers, this is keyed with a FieldDecl*.
3645 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003646 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003647
3648 // Mapping for the inconsistent anonymous-union initializers check.
3649 RedundantUnionMap MemberUnions;
3650
Anders Carlssonea356fb2010-04-02 05:42:15 +00003651 bool HadError = false;
David Blaikie93c86172013-01-17 05:26:25 +00003652 for (unsigned i = 0; i < MemInits.size(); i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003653 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003654
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003655 // Set the source order index.
3656 Init->setSourceOrder(i);
3657
Francois Pichet00eb3f92010-12-04 09:14:42 +00003658 if (Init->isAnyMemberInitializer()) {
3659 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003660 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3661 CheckRedundantUnionInit(*this, Init, MemberUnions))
3662 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003663 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003664 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3665 if (CheckRedundantInit(*this, Init, Members[Key]))
3666 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003667 } else {
3668 assert(Init->isDelegatingInitializer());
3669 // This must be the only initializer
David Blaikie93c86172013-01-17 05:26:25 +00003670 if (MemInits.size() != 1) {
Richard Smitha6ddea62012-09-14 18:21:10 +00003671 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003672 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003673 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003674 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003675 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003676 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003677 // Return immediately as the initializer is set.
3678 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003679 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003680 }
3681
Anders Carlssonea356fb2010-04-02 05:42:15 +00003682 if (HadError)
3683 return;
3684
David Blaikie93c86172013-01-17 05:26:25 +00003685 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003686
David Blaikie93c86172013-01-17 05:26:25 +00003687 SetCtorInitializers(Constructor, AnyErrors, MemInits);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003688}
3689
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003690void
John McCallef027fe2010-03-16 21:39:52 +00003691Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3692 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003693 // Ignore dependent contexts. Also ignore unions, since their members never
3694 // have destructors implicitly called.
3695 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003696 return;
John McCall58e6f342010-03-16 05:22:47 +00003697
3698 // FIXME: all the access-control diagnostics are positioned on the
3699 // field/base declaration. That's probably good; that said, the
3700 // user might reasonably want to know why the destructor is being
3701 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003702
Anders Carlsson9f853df2009-11-17 04:44:12 +00003703 // Non-static data members.
3704 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3705 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003706 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003707 if (Field->isInvalidDecl())
3708 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003709
3710 // Don't destroy incomplete or zero-length arrays.
3711 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3712 continue;
3713
Anders Carlsson9f853df2009-11-17 04:44:12 +00003714 QualType FieldType = Context.getBaseElementType(Field->getType());
3715
3716 const RecordType* RT = FieldType->getAs<RecordType>();
3717 if (!RT)
3718 continue;
3719
3720 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003721 if (FieldClassDecl->isInvalidDecl())
3722 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003723 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003724 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003725 // The destructor for an implicit anonymous union member is never invoked.
3726 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3727 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003728
Douglas Gregordb89f282010-07-01 22:47:18 +00003729 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003730 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003731 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003732 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003733 << Field->getDeclName()
3734 << FieldType);
3735
Eli Friedman5f2987c2012-02-02 03:46:19 +00003736 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003737 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003738 }
3739
John McCall58e6f342010-03-16 05:22:47 +00003740 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3741
Anders Carlsson9f853df2009-11-17 04:44:12 +00003742 // Bases.
3743 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3744 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003745 // Bases are always records in a well-formed non-dependent class.
3746 const RecordType *RT = Base->getType()->getAs<RecordType>();
3747
3748 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003749 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003750 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003751
John McCall58e6f342010-03-16 05:22:47 +00003752 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003753 // If our base class is invalid, we probably can't get its dtor anyway.
3754 if (BaseClassDecl->isInvalidDecl())
3755 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003756 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003757 continue;
John McCall58e6f342010-03-16 05:22:47 +00003758
Douglas Gregordb89f282010-07-01 22:47:18 +00003759 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003760 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003761
3762 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003763 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003764 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003765 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003766 << Base->getSourceRange(),
3767 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003768
Eli Friedman5f2987c2012-02-02 03:46:19 +00003769 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003770 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003771 }
3772
3773 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003774 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3775 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003776
3777 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003778 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003779
3780 // Ignore direct virtual bases.
3781 if (DirectVirtualBases.count(RT))
3782 continue;
3783
John McCall58e6f342010-03-16 05:22:47 +00003784 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003785 // If our base class is invalid, we probably can't get its dtor anyway.
3786 if (BaseClassDecl->isInvalidDecl())
3787 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003788 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003789 continue;
John McCall58e6f342010-03-16 05:22:47 +00003790
Douglas Gregordb89f282010-07-01 22:47:18 +00003791 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003792 assert(Dtor && "No dtor found for BaseClassDecl!");
Chandler Carruth62341d32013-06-20 07:06:34 +00003793 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
3794 PDiag(diag::err_access_dtor_vbase)
3795 << VBase->getType(),
3796 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003797
Eli Friedman5f2987c2012-02-02 03:46:19 +00003798 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003799 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003800 }
3801}
3802
John McCalld226f652010-08-21 09:40:31 +00003803void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003804 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003805 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003806
Mike Stump1eb44332009-09-09 15:08:12 +00003807 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003808 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
David Blaikie93c86172013-01-17 05:26:25 +00003809 SetCtorInitializers(Constructor, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003810}
3811
Mike Stump1eb44332009-09-09 15:08:12 +00003812bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003813 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003814 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3815 unsigned DiagID;
3816 AbstractDiagSelID SelID;
3817
3818 public:
3819 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3820 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3821
3822 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003823 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003824 if (SelID == -1)
3825 S.Diag(Loc, DiagID) << T;
3826 else
3827 S.Diag(Loc, DiagID) << SelID << T;
3828 }
3829 } Diagnoser(DiagID, SelID);
3830
3831 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003832}
3833
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003834bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003835 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003836 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003837 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003838
Anders Carlsson11f21a02009-03-23 19:10:31 +00003839 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003840 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003841
Ted Kremenek6217b802009-07-29 21:53:49 +00003842 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003843 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003844 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003845 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003846
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003847 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003848 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003849 }
Mike Stump1eb44332009-09-09 15:08:12 +00003850
Ted Kremenek6217b802009-07-29 21:53:49 +00003851 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003852 if (!RT)
3853 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003854
John McCall86ff3082010-02-04 22:26:26 +00003855 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003856
John McCall94c3b562010-08-18 09:41:07 +00003857 // We can't answer whether something is abstract until it has a
3858 // definition. If it's currently being defined, we'll walk back
3859 // over all the declarations when we have a full definition.
3860 const CXXRecordDecl *Def = RD->getDefinition();
3861 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003862 return false;
3863
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003864 if (!RD->isAbstract())
3865 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003866
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003867 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003868 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003869
John McCall94c3b562010-08-18 09:41:07 +00003870 return true;
3871}
3872
3873void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3874 // Check if we've already emitted the list of pure virtual functions
3875 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003876 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003877 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003878
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003879 CXXFinalOverriderMap FinalOverriders;
3880 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003881
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003882 // Keep a set of seen pure methods so we won't diagnose the same method
3883 // more than once.
3884 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3885
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003886 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3887 MEnd = FinalOverriders.end();
3888 M != MEnd;
3889 ++M) {
3890 for (OverridingMethods::iterator SO = M->second.begin(),
3891 SOEnd = M->second.end();
3892 SO != SOEnd; ++SO) {
3893 // C++ [class.abstract]p4:
3894 // A class is abstract if it contains or inherits at least one
3895 // pure virtual function for which the final overrider is pure
3896 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003897
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003898 //
3899 if (SO->second.size() != 1)
3900 continue;
3901
3902 if (!SO->second.front().Method->isPure())
3903 continue;
3904
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003905 if (!SeenPureMethods.insert(SO->second.front().Method))
3906 continue;
3907
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003908 Diag(SO->second.front().Method->getLocation(),
3909 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003910 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003911 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003912 }
3913
3914 if (!PureVirtualClassDiagSet)
3915 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3916 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003917}
3918
Anders Carlsson8211eff2009-03-24 01:19:16 +00003919namespace {
John McCall94c3b562010-08-18 09:41:07 +00003920struct AbstractUsageInfo {
3921 Sema &S;
3922 CXXRecordDecl *Record;
3923 CanQualType AbstractType;
3924 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003925
John McCall94c3b562010-08-18 09:41:07 +00003926 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3927 : S(S), Record(Record),
3928 AbstractType(S.Context.getCanonicalType(
3929 S.Context.getTypeDeclType(Record))),
3930 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003931
John McCall94c3b562010-08-18 09:41:07 +00003932 void DiagnoseAbstractType() {
3933 if (Invalid) return;
3934 S.DiagnoseAbstractType(Record);
3935 Invalid = true;
3936 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003937
John McCall94c3b562010-08-18 09:41:07 +00003938 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3939};
3940
3941struct CheckAbstractUsage {
3942 AbstractUsageInfo &Info;
3943 const NamedDecl *Ctx;
3944
3945 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3946 : Info(Info), Ctx(Ctx) {}
3947
3948 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3949 switch (TL.getTypeLocClass()) {
3950#define ABSTRACT_TYPELOC(CLASS, PARENT)
3951#define TYPELOC(CLASS, PARENT) \
David Blaikie39e6ab42013-02-18 22:06:02 +00003952 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break;
John McCall94c3b562010-08-18 09:41:07 +00003953#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003954 }
John McCall94c3b562010-08-18 09:41:07 +00003955 }
Mike Stump1eb44332009-09-09 15:08:12 +00003956
John McCall94c3b562010-08-18 09:41:07 +00003957 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3958 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3959 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003960 if (!TL.getArg(I))
3961 continue;
3962
John McCall94c3b562010-08-18 09:41:07 +00003963 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3964 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003965 }
John McCall94c3b562010-08-18 09:41:07 +00003966 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003967
John McCall94c3b562010-08-18 09:41:07 +00003968 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3969 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3970 }
Mike Stump1eb44332009-09-09 15:08:12 +00003971
John McCall94c3b562010-08-18 09:41:07 +00003972 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3973 // Visit the type parameters from a permissive context.
3974 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3975 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3976 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3977 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3978 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3979 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003980 }
John McCall94c3b562010-08-18 09:41:07 +00003981 }
Mike Stump1eb44332009-09-09 15:08:12 +00003982
John McCall94c3b562010-08-18 09:41:07 +00003983 // Visit pointee types from a permissive context.
3984#define CheckPolymorphic(Type) \
3985 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3986 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3987 }
3988 CheckPolymorphic(PointerTypeLoc)
3989 CheckPolymorphic(ReferenceTypeLoc)
3990 CheckPolymorphic(MemberPointerTypeLoc)
3991 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003992 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003993
John McCall94c3b562010-08-18 09:41:07 +00003994 /// Handle all the types we haven't given a more specific
3995 /// implementation for above.
3996 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3997 // Every other kind of type that we haven't called out already
3998 // that has an inner type is either (1) sugar or (2) contains that
3999 // inner type in some way as a subobject.
4000 if (TypeLoc Next = TL.getNextTypeLoc())
4001 return Visit(Next, Sel);
4002
4003 // If there's no inner type and we're in a permissive context,
4004 // don't diagnose.
4005 if (Sel == Sema::AbstractNone) return;
4006
4007 // Check whether the type matches the abstract type.
4008 QualType T = TL.getType();
4009 if (T->isArrayType()) {
4010 Sel = Sema::AbstractArrayType;
4011 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00004012 }
John McCall94c3b562010-08-18 09:41:07 +00004013 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
4014 if (CT != Info.AbstractType) return;
4015
4016 // It matched; do some magic.
4017 if (Sel == Sema::AbstractArrayType) {
4018 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
4019 << T << TL.getSourceRange();
4020 } else {
4021 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
4022 << Sel << T << TL.getSourceRange();
4023 }
4024 Info.DiagnoseAbstractType();
4025 }
4026};
4027
4028void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
4029 Sema::AbstractDiagSelID Sel) {
4030 CheckAbstractUsage(*this, D).Visit(TL, Sel);
4031}
4032
4033}
4034
4035/// Check for invalid uses of an abstract type in a method declaration.
4036static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4037 CXXMethodDecl *MD) {
4038 // No need to do the check on definitions, which require that
4039 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00004040 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00004041 return;
4042
4043 // For safety's sake, just ignore it if we don't have type source
4044 // information. This should never happen for non-implicit methods,
4045 // but...
4046 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
4047 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
4048}
4049
4050/// Check for invalid uses of an abstract type within a class definition.
4051static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4052 CXXRecordDecl *RD) {
4053 for (CXXRecordDecl::decl_iterator
4054 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
4055 Decl *D = *I;
4056 if (D->isImplicit()) continue;
4057
4058 // Methods and method templates.
4059 if (isa<CXXMethodDecl>(D)) {
4060 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
4061 } else if (isa<FunctionTemplateDecl>(D)) {
4062 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
4063 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
4064
4065 // Fields and static variables.
4066 } else if (isa<FieldDecl>(D)) {
4067 FieldDecl *FD = cast<FieldDecl>(D);
4068 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
4069 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
4070 } else if (isa<VarDecl>(D)) {
4071 VarDecl *VD = cast<VarDecl>(D);
4072 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
4073 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
4074
4075 // Nested classes and class templates.
4076 } else if (isa<CXXRecordDecl>(D)) {
4077 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
4078 } else if (isa<ClassTemplateDecl>(D)) {
4079 CheckAbstractClassUsage(Info,
4080 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
4081 }
4082 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00004083}
4084
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004085/// \brief Perform semantic checks on a class definition that has been
4086/// completing, introducing implicitly-declared members, checking for
4087/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004088void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00004089 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004090 return;
4091
John McCall94c3b562010-08-18 09:41:07 +00004092 if (Record->isAbstract() && !Record->isInvalidDecl()) {
4093 AbstractUsageInfo Info(*this, Record);
4094 CheckAbstractClassUsage(Info, Record);
4095 }
Douglas Gregor325e5932010-04-15 00:00:53 +00004096
4097 // If this is not an aggregate type and has no user-declared constructor,
4098 // complain about any non-static data members of reference or const scalar
4099 // type, since they will never get initializers.
4100 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00004101 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
4102 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00004103 bool Complained = false;
4104 for (RecordDecl::field_iterator F = Record->field_begin(),
4105 FEnd = Record->field_end();
4106 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00004107 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00004108 continue;
4109
Douglas Gregor325e5932010-04-15 00:00:53 +00004110 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00004111 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00004112 if (!Complained) {
4113 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
4114 << Record->getTagKind() << Record;
4115 Complained = true;
4116 }
4117
4118 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
4119 << F->getType()->isReferenceType()
4120 << F->getDeclName();
4121 }
4122 }
4123 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004124
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00004125 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004126 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00004127
4128 if (Record->getIdentifier()) {
4129 // C++ [class.mem]p13:
4130 // If T is the name of a class, then each of the following shall have a
4131 // name different from T:
4132 // - every member of every anonymous union that is a member of class T.
4133 //
4134 // C++ [class.mem]p14:
4135 // In addition, if class T has a user-declared constructor (12.1), every
4136 // non-static data member of class T shall have a name different from T.
David Blaikie3bc93e32012-12-19 00:45:41 +00004137 DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
4138 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
4139 ++I) {
4140 NamedDecl *D = *I;
Francois Pichet87c2e122010-11-21 06:08:52 +00004141 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
4142 isa<IndirectFieldDecl>(D)) {
4143 Diag(D->getLocation(), diag::err_member_name_of_class)
4144 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00004145 break;
4146 }
Francois Pichet87c2e122010-11-21 06:08:52 +00004147 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00004148 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004149
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00004150 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00004151 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004152 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00004153 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00004154 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
4155 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
4156 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004157
David Blaikieb6b5b972012-09-21 03:21:07 +00004158 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
4159 Diag(Record->getLocation(), diag::warn_abstract_final_class);
4160 DiagnoseAbstractType(Record);
4161 }
4162
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004163 if (!Record->isDependentType()) {
4164 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
4165 MEnd = Record->method_end();
4166 M != MEnd; ++M) {
Richard Smith1d28caf2012-12-11 01:14:52 +00004167 // See if a method overloads virtual methods in a base
4168 // class without overriding any.
David Blaikie262bc182012-04-30 02:36:29 +00004169 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00004170 DiagnoseHiddenVirtualMethods(Record, *M);
Richard Smith1d28caf2012-12-11 01:14:52 +00004171
4172 // Check whether the explicitly-defaulted special members are valid.
4173 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
4174 CheckExplicitlyDefaultedSpecialMember(*M);
4175
4176 // For an explicitly defaulted or deleted special member, we defer
4177 // determining triviality until the class is complete. That time is now!
4178 if (!M->isImplicit() && !M->isUserProvided()) {
4179 CXXSpecialMember CSM = getSpecialMember(*M);
4180 if (CSM != CXXInvalid) {
4181 M->setTrivial(SpecialMemberIsTrivial(*M, CSM));
4182
4183 // Inform the class that we've finished declaring this member.
4184 Record->finishedDefaultedOrDeletedMember(*M);
4185 }
4186 }
4187 }
4188 }
4189
4190 // C++11 [dcl.constexpr]p8: A constexpr specifier for a non-static member
4191 // function that is not a constructor declares that member function to be
4192 // const. [...] The class of which that function is a member shall be
4193 // a literal type.
4194 //
4195 // If the class has virtual bases, any constexpr members will already have
4196 // been diagnosed by the checks performed on the member declaration, so
4197 // suppress this (less useful) diagnostic.
4198 //
4199 // We delay this until we know whether an explicitly-defaulted (or deleted)
4200 // destructor for the class is trivial.
Richard Smith80ad52f2013-01-02 11:42:31 +00004201 if (LangOpts.CPlusPlus11 && !Record->isDependentType() &&
Richard Smith1d28caf2012-12-11 01:14:52 +00004202 !Record->isLiteral() && !Record->getNumVBases()) {
4203 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
4204 MEnd = Record->method_end();
4205 M != MEnd; ++M) {
4206 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
4207 switch (Record->getTemplateSpecializationKind()) {
4208 case TSK_ImplicitInstantiation:
4209 case TSK_ExplicitInstantiationDeclaration:
4210 case TSK_ExplicitInstantiationDefinition:
4211 // If a template instantiates to a non-literal type, but its members
4212 // instantiate to constexpr functions, the template is technically
4213 // ill-formed, but we allow it for sanity.
4214 continue;
4215
4216 case TSK_Undeclared:
4217 case TSK_ExplicitSpecialization:
4218 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
4219 diag::err_constexpr_method_non_literal);
4220 break;
4221 }
4222
4223 // Only produce one error per class.
4224 break;
4225 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004226 }
4227 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00004228
Richard Smith07b0fdc2013-03-18 21:12:30 +00004229 // Declare inheriting constructors. We do this eagerly here because:
4230 // - The standard requires an eager diagnostic for conflicting inheriting
Sebastian Redlf677ea32011-02-05 19:23:19 +00004231 // constructors from different classes.
4232 // - The lazy declaration of the other implicit constructors is so as to not
4233 // waste space and performance on classes that are not meant to be
4234 // instantiated (e.g. meta-functions). This doesn't apply to classes that
Richard Smith07b0fdc2013-03-18 21:12:30 +00004235 // have inheriting constructors.
4236 DeclareInheritingConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004237}
4238
Richard Smith7756afa2012-06-10 05:43:50 +00004239/// Is the special member function which would be selected to perform the
4240/// specified operation on the specified class type a constexpr constructor?
4241static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4242 Sema::CXXSpecialMember CSM,
4243 bool ConstArg) {
4244 Sema::SpecialMemberOverloadResult *SMOR =
4245 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4246 false, false, false, false);
4247 if (!SMOR || !SMOR->getMethod())
4248 // A constructor we wouldn't select can't be "involved in initializing"
4249 // anything.
4250 return true;
4251 return SMOR->getMethod()->isConstexpr();
4252}
4253
4254/// Determine whether the specified special member function would be constexpr
4255/// if it were implicitly defined.
4256static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4257 Sema::CXXSpecialMember CSM,
4258 bool ConstArg) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004259 if (!S.getLangOpts().CPlusPlus11)
Richard Smith7756afa2012-06-10 05:43:50 +00004260 return false;
4261
4262 // C++11 [dcl.constexpr]p4:
4263 // In the definition of a constexpr constructor [...]
Richard Smitha8942d72013-05-07 03:19:20 +00004264 bool Ctor = true;
Richard Smith7756afa2012-06-10 05:43:50 +00004265 switch (CSM) {
4266 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004267 // Since default constructor lookup is essentially trivial (and cannot
4268 // involve, for instance, template instantiation), we compute whether a
4269 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4270 //
4271 // This is important for performance; we need to know whether the default
4272 // constructor is constexpr to determine whether the type is a literal type.
4273 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4274
Richard Smith7756afa2012-06-10 05:43:50 +00004275 case Sema::CXXCopyConstructor:
4276 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004277 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004278 break;
4279
4280 case Sema::CXXCopyAssignment:
4281 case Sema::CXXMoveAssignment:
Richard Smitha8942d72013-05-07 03:19:20 +00004282 if (!S.getLangOpts().CPlusPlus1y)
4283 return false;
4284 // In C++1y, we need to perform overload resolution.
4285 Ctor = false;
4286 break;
4287
Richard Smith7756afa2012-06-10 05:43:50 +00004288 case Sema::CXXDestructor:
4289 case Sema::CXXInvalid:
4290 return false;
4291 }
4292
4293 // -- if the class is a non-empty union, or for each non-empty anonymous
4294 // union member of a non-union class, exactly one non-static data member
4295 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004296 //
4297 // If we squint, this is guaranteed, since exactly one non-static data member
4298 // will be initialized (if the constructor isn't deleted), we just don't know
4299 // which one.
Richard Smitha8942d72013-05-07 03:19:20 +00004300 if (Ctor && ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004301 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004302
4303 // -- the class shall not have any virtual base classes;
Richard Smitha8942d72013-05-07 03:19:20 +00004304 if (Ctor && ClassDecl->getNumVBases())
4305 return false;
4306
4307 // C++1y [class.copy]p26:
4308 // -- [the class] is a literal type, and
4309 if (!Ctor && !ClassDecl->isLiteral())
Richard Smith7756afa2012-06-10 05:43:50 +00004310 return false;
4311
4312 // -- every constructor involved in initializing [...] base class
4313 // sub-objects shall be a constexpr constructor;
Richard Smitha8942d72013-05-07 03:19:20 +00004314 // -- the assignment operator selected to copy/move each direct base
4315 // class is a constexpr function, and
Richard Smith7756afa2012-06-10 05:43:50 +00004316 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4317 BEnd = ClassDecl->bases_end();
4318 B != BEnd; ++B) {
4319 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4320 if (!BaseType) continue;
4321
4322 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4323 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4324 return false;
4325 }
4326
4327 // -- every constructor involved in initializing non-static data members
4328 // [...] shall be a constexpr constructor;
4329 // -- every non-static data member and base class sub-object shall be
4330 // initialized
Richard Smitha8942d72013-05-07 03:19:20 +00004331 // -- for each non-stastic data member of X that is of class type (or array
4332 // thereof), the assignment operator selected to copy/move that member is
4333 // a constexpr function
Richard Smith7756afa2012-06-10 05:43:50 +00004334 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4335 FEnd = ClassDecl->field_end();
4336 F != FEnd; ++F) {
4337 if (F->isInvalidDecl())
4338 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004339 if (const RecordType *RecordTy =
4340 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004341 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4342 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4343 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004344 }
4345 }
4346
4347 // All OK, it's constexpr!
4348 return true;
4349}
4350
Richard Smithb9d0b762012-07-27 04:22:15 +00004351static Sema::ImplicitExceptionSpecification
4352computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4353 switch (S.getSpecialMember(MD)) {
4354 case Sema::CXXDefaultConstructor:
4355 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4356 case Sema::CXXCopyConstructor:
4357 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4358 case Sema::CXXCopyAssignment:
4359 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4360 case Sema::CXXMoveConstructor:
4361 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4362 case Sema::CXXMoveAssignment:
4363 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4364 case Sema::CXXDestructor:
4365 return S.ComputeDefaultedDtorExceptionSpec(MD);
4366 case Sema::CXXInvalid:
4367 break;
4368 }
Richard Smith07b0fdc2013-03-18 21:12:30 +00004369 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() &&
4370 "only special members have implicit exception specs");
4371 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD));
Richard Smithb9d0b762012-07-27 04:22:15 +00004372}
4373
Richard Smithdd25e802012-07-30 23:48:14 +00004374static void
4375updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4376 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4377 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4378 ExceptSpec.getEPI(EPI);
Richard Smith4841ca52013-04-10 05:48:59 +00004379 FD->setType(S.Context.getFunctionType(FPT->getResultType(),
4380 FPT->getArgTypes(), EPI));
Richard Smithdd25e802012-07-30 23:48:14 +00004381}
4382
Richard Smithb9d0b762012-07-27 04:22:15 +00004383void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4384 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4385 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4386 return;
4387
Richard Smithdd25e802012-07-30 23:48:14 +00004388 // Evaluate the exception specification.
4389 ImplicitExceptionSpecification ExceptSpec =
4390 computeImplicitExceptionSpec(*this, Loc, MD);
4391
4392 // Update the type of the special member to use it.
4393 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4394
4395 // A user-provided destructor can be defined outside the class. When that
4396 // happens, be sure to update the exception specification on both
4397 // declarations.
4398 const FunctionProtoType *CanonicalFPT =
4399 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4400 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4401 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4402 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004403}
4404
Richard Smith3003e1d2012-05-15 04:39:51 +00004405void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4406 CXXRecordDecl *RD = MD->getParent();
4407 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004408
Richard Smith3003e1d2012-05-15 04:39:51 +00004409 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4410 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004411
4412 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004413 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004414 bool First = MD == MD->getCanonicalDecl();
4415
4416 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004417
4418 // C++11 [dcl.fct.def.default]p1:
4419 // A function that is explicitly defaulted shall
4420 // -- be a special member function (checked elsewhere),
4421 // -- have the same type (except for ref-qualifiers, and except that a
4422 // copy operation can take a non-const reference) as an implicit
4423 // declaration, and
4424 // -- not have default arguments.
4425 unsigned ExpectedParams = 1;
4426 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4427 ExpectedParams = 0;
4428 if (MD->getNumParams() != ExpectedParams) {
4429 // This also checks for default arguments: a copy or move constructor with a
4430 // default argument is classified as a default constructor, and assignment
4431 // operations and destructors can't have default arguments.
4432 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4433 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004434 HadError = true;
Richard Smith50464392012-12-07 02:10:28 +00004435 } else if (MD->isVariadic()) {
4436 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
4437 << CSM << MD->getSourceRange();
4438 HadError = true;
Sean Hunt2b188082011-05-14 05:23:28 +00004439 }
4440
Richard Smith3003e1d2012-05-15 04:39:51 +00004441 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004442
Richard Smith7756afa2012-06-10 05:43:50 +00004443 bool CanHaveConstParam = false;
Richard Smithac713512012-12-08 02:53:02 +00004444 if (CSM == CXXCopyConstructor)
Richard Smithacf796b2012-11-28 06:23:12 +00004445 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smithac713512012-12-08 02:53:02 +00004446 else if (CSM == CXXCopyAssignment)
Richard Smithacf796b2012-11-28 06:23:12 +00004447 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Sean Hunt2b188082011-05-14 05:23:28 +00004448
Richard Smith3003e1d2012-05-15 04:39:51 +00004449 QualType ReturnType = Context.VoidTy;
4450 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4451 // Check for return type matching.
4452 ReturnType = Type->getResultType();
4453 QualType ExpectedReturnType =
4454 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4455 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4456 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4457 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4458 HadError = true;
4459 }
4460
4461 // A defaulted special member cannot have cv-qualifiers.
4462 if (Type->getTypeQuals()) {
4463 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
Richard Smitha8942d72013-05-07 03:19:20 +00004464 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus1y;
Richard Smith3003e1d2012-05-15 04:39:51 +00004465 HadError = true;
4466 }
4467 }
4468
4469 // Check for parameter type matching.
4470 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004471 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004472 if (ExpectedParams && ArgType->isReferenceType()) {
4473 // Argument must be reference to possibly-const T.
4474 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004475 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004476
4477 if (ReferentType.isVolatileQualified()) {
4478 Diag(MD->getLocation(),
4479 diag::err_defaulted_special_member_volatile_param) << CSM;
4480 HadError = true;
4481 }
4482
Richard Smith7756afa2012-06-10 05:43:50 +00004483 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004484 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4485 Diag(MD->getLocation(),
4486 diag::err_defaulted_special_member_copy_const_param)
4487 << (CSM == CXXCopyAssignment);
4488 // FIXME: Explain why this special member can't be const.
4489 } else {
4490 Diag(MD->getLocation(),
4491 diag::err_defaulted_special_member_move_const_param)
4492 << (CSM == CXXMoveAssignment);
4493 }
4494 HadError = true;
4495 }
Richard Smith3003e1d2012-05-15 04:39:51 +00004496 } else if (ExpectedParams) {
4497 // A copy assignment operator can take its argument by value, but a
4498 // defaulted one cannot.
4499 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004500 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004501 HadError = true;
4502 }
Sean Huntbe631222011-05-17 20:44:43 +00004503
Richard Smith61802452011-12-22 02:22:31 +00004504 // C++11 [dcl.fct.def.default]p2:
4505 // An explicitly-defaulted function may be declared constexpr only if it
4506 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004507 // Do not apply this rule to members of class templates, since core issue 1358
4508 // makes such functions always instantiate to constexpr functions. For
Richard Smitha8942d72013-05-07 03:19:20 +00004509 // functions which cannot be constexpr (for non-constructors in C++11 and for
4510 // destructors in C++1y), this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004511 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4512 HasConstParam);
Richard Smitha8942d72013-05-07 03:19:20 +00004513 if ((getLangOpts().CPlusPlus1y ? !isa<CXXDestructorDecl>(MD)
4514 : isa<CXXConstructorDecl>(MD)) &&
4515 MD->isConstexpr() && !Constexpr &&
Richard Smith3003e1d2012-05-15 04:39:51 +00004516 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4517 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smitha8942d72013-05-07 03:19:20 +00004518 // FIXME: Explain why the special member can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004519 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004520 }
Richard Smith1d28caf2012-12-11 01:14:52 +00004521
Richard Smith61802452011-12-22 02:22:31 +00004522 // and may have an explicit exception-specification only if it is compatible
4523 // with the exception-specification on the implicit declaration.
Richard Smith1d28caf2012-12-11 01:14:52 +00004524 if (Type->hasExceptionSpec()) {
4525 // Delay the check if this is the first declaration of the special member,
4526 // since we may not have parsed some necessary in-class initializers yet.
Richard Smith12fef492013-03-27 00:22:47 +00004527 if (First) {
4528 // If the exception specification needs to be instantiated, do so now,
4529 // before we clobber it with an EST_Unevaluated specification below.
4530 if (Type->getExceptionSpecType() == EST_Uninstantiated) {
4531 InstantiateExceptionSpec(MD->getLocStart(), MD);
4532 Type = MD->getType()->getAs<FunctionProtoType>();
4533 }
Richard Smith1d28caf2012-12-11 01:14:52 +00004534 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
Richard Smith12fef492013-03-27 00:22:47 +00004535 } else
Richard Smith1d28caf2012-12-11 01:14:52 +00004536 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
4537 }
Richard Smith61802452011-12-22 02:22:31 +00004538
4539 // If a function is explicitly defaulted on its first declaration,
4540 if (First) {
4541 // -- it is implicitly considered to be constexpr if the implicit
4542 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004543 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004544
Richard Smith3003e1d2012-05-15 04:39:51 +00004545 // -- it is implicitly considered to have the same exception-specification
4546 // as if it had been implicitly declared,
Richard Smith1d28caf2012-12-11 01:14:52 +00004547 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4548 EPI.ExceptionSpecType = EST_Unevaluated;
4549 EPI.ExceptionSpecDecl = MD;
Jordan Rosebea522f2013-03-08 21:51:21 +00004550 MD->setType(Context.getFunctionType(ReturnType,
4551 ArrayRef<QualType>(&ArgType,
4552 ExpectedParams),
4553 EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004554 }
4555
Richard Smith3003e1d2012-05-15 04:39:51 +00004556 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004557 if (First) {
Richard Smith0ab5b4c2013-04-02 19:38:47 +00004558 SetDeclDeleted(MD, MD->getLocation());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004559 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004560 // C++11 [dcl.fct.def.default]p4:
4561 // [For a] user-provided explicitly-defaulted function [...] if such a
4562 // function is implicitly defined as deleted, the program is ill-formed.
4563 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4564 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004565 }
4566 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004567
Richard Smith3003e1d2012-05-15 04:39:51 +00004568 if (HadError)
4569 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004570}
4571
Richard Smith1d28caf2012-12-11 01:14:52 +00004572/// Check whether the exception specification provided for an
4573/// explicitly-defaulted special member matches the exception specification
4574/// that would have been generated for an implicit special member, per
4575/// C++11 [dcl.fct.def.default]p2.
4576void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
4577 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
4578 // Compute the implicit exception specification.
4579 FunctionProtoType::ExtProtoInfo EPI;
4580 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4581 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
Dmitri Gribenko55431692013-05-05 00:41:58 +00004582 Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smith1d28caf2012-12-11 01:14:52 +00004583
4584 // Ensure that it matches.
4585 CheckEquivalentExceptionSpec(
4586 PDiag(diag::err_incorrect_defaulted_exception_spec)
4587 << getSpecialMember(MD), PDiag(),
4588 ImplicitType, SourceLocation(),
4589 SpecifiedType, MD->getLocation());
4590}
4591
4592void Sema::CheckDelayedExplicitlyDefaultedMemberExceptionSpecs() {
4593 for (unsigned I = 0, N = DelayedDefaultedMemberExceptionSpecs.size();
4594 I != N; ++I)
4595 CheckExplicitlyDefaultedMemberExceptionSpec(
4596 DelayedDefaultedMemberExceptionSpecs[I].first,
4597 DelayedDefaultedMemberExceptionSpecs[I].second);
4598
4599 DelayedDefaultedMemberExceptionSpecs.clear();
4600}
4601
Richard Smith7d5088a2012-02-18 02:02:13 +00004602namespace {
4603struct SpecialMemberDeletionInfo {
4604 Sema &S;
4605 CXXMethodDecl *MD;
4606 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004607 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004608
4609 // Properties of the special member, computed for convenience.
4610 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4611 SourceLocation Loc;
4612
4613 bool AllFieldsAreConst;
4614
4615 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004616 Sema::CXXSpecialMember CSM, bool Diagnose)
4617 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004618 IsConstructor(false), IsAssignment(false), IsMove(false),
4619 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4620 AllFieldsAreConst(true) {
4621 switch (CSM) {
4622 case Sema::CXXDefaultConstructor:
4623 case Sema::CXXCopyConstructor:
4624 IsConstructor = true;
4625 break;
4626 case Sema::CXXMoveConstructor:
4627 IsConstructor = true;
4628 IsMove = true;
4629 break;
4630 case Sema::CXXCopyAssignment:
4631 IsAssignment = true;
4632 break;
4633 case Sema::CXXMoveAssignment:
4634 IsAssignment = true;
4635 IsMove = true;
4636 break;
4637 case Sema::CXXDestructor:
4638 break;
4639 case Sema::CXXInvalid:
4640 llvm_unreachable("invalid special member kind");
4641 }
4642
4643 if (MD->getNumParams()) {
4644 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4645 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4646 }
4647 }
4648
4649 bool inUnion() const { return MD->getParent()->isUnion(); }
4650
4651 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004652 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4653 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004654 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004655 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4656 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4657 Quals = 0;
4658 return S.LookupSpecialMember(Class, CSM,
4659 ConstArg || (Quals & Qualifiers::Const),
4660 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004661 MD->getRefQualifier() == RQ_RValue,
4662 TQ & Qualifiers::Const,
4663 TQ & Qualifiers::Volatile);
4664 }
4665
Richard Smith6c4c36c2012-03-30 20:53:28 +00004666 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004667
Richard Smith6c4c36c2012-03-30 20:53:28 +00004668 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004669 bool shouldDeleteForField(FieldDecl *FD);
4670 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004671
Richard Smith517bb842012-07-18 03:51:16 +00004672 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4673 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004674 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4675 Sema::SpecialMemberOverloadResult *SMOR,
4676 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004677
4678 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004679};
4680}
4681
John McCall12d8d802012-04-09 20:53:23 +00004682/// Is the given special member inaccessible when used on the given
4683/// sub-object.
4684bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4685 CXXMethodDecl *target) {
4686 /// If we're operating on a base class, the object type is the
4687 /// type of this special member.
4688 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004689 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004690 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4691 objectTy = S.Context.getTypeDeclType(MD->getParent());
4692 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4693
4694 // If we're operating on a field, the object type is the type of the field.
4695 } else {
4696 objectTy = S.Context.getTypeDeclType(target->getParent());
4697 }
4698
4699 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4700}
4701
Richard Smith6c4c36c2012-03-30 20:53:28 +00004702/// Check whether we should delete a special member due to the implicit
4703/// definition containing a call to a special member of a subobject.
4704bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4705 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4706 bool IsDtorCallInCtor) {
4707 CXXMethodDecl *Decl = SMOR->getMethod();
4708 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4709
4710 int DiagKind = -1;
4711
4712 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4713 DiagKind = !Decl ? 0 : 1;
4714 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4715 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004716 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004717 DiagKind = 3;
4718 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4719 !Decl->isTrivial()) {
4720 // A member of a union must have a trivial corresponding special member.
4721 // As a weird special case, a destructor call from a union's constructor
4722 // must be accessible and non-deleted, but need not be trivial. Such a
4723 // destructor is never actually called, but is semantically checked as
4724 // if it were.
4725 DiagKind = 4;
4726 }
4727
4728 if (DiagKind == -1)
4729 return false;
4730
4731 if (Diagnose) {
4732 if (Field) {
4733 S.Diag(Field->getLocation(),
4734 diag::note_deleted_special_member_class_subobject)
4735 << CSM << MD->getParent() << /*IsField*/true
4736 << Field << DiagKind << IsDtorCallInCtor;
4737 } else {
4738 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4739 S.Diag(Base->getLocStart(),
4740 diag::note_deleted_special_member_class_subobject)
4741 << CSM << MD->getParent() << /*IsField*/false
4742 << Base->getType() << DiagKind << IsDtorCallInCtor;
4743 }
4744
4745 if (DiagKind == 1)
4746 S.NoteDeletedFunction(Decl);
4747 // FIXME: Explain inaccessibility if DiagKind == 3.
4748 }
4749
4750 return true;
4751}
4752
Richard Smith9a561d52012-02-26 09:11:52 +00004753/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004754/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004755bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004756 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004757 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004758
4759 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004760 // -- any direct or virtual base class, or non-static data member with no
4761 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004762 // either M has no default constructor or overload resolution as applied
4763 // to M's default constructor results in an ambiguity or in a function
4764 // that is deleted or inaccessible
4765 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4766 // -- a direct or virtual base class B that cannot be copied/moved because
4767 // overload resolution, as applied to B's corresponding special member,
4768 // results in an ambiguity or a function that is deleted or inaccessible
4769 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004770 // C++11 [class.dtor]p5:
4771 // -- any direct or virtual base class [...] has a type with a destructor
4772 // that is deleted or inaccessible
4773 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004774 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004775 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004776 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004777
Richard Smith6c4c36c2012-03-30 20:53:28 +00004778 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4779 // -- any direct or virtual base class or non-static data member has a
4780 // type with a destructor that is deleted or inaccessible
4781 if (IsConstructor) {
4782 Sema::SpecialMemberOverloadResult *SMOR =
4783 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4784 false, false, false, false, false);
4785 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4786 return true;
4787 }
4788
Richard Smith9a561d52012-02-26 09:11:52 +00004789 return false;
4790}
4791
4792/// Check whether we should delete a special member function due to the class
4793/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004794bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004795 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004796 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004797}
4798
4799/// Check whether we should delete a special member function due to the class
4800/// having a particular non-static data member.
4801bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4802 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4803 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4804
4805 if (CSM == Sema::CXXDefaultConstructor) {
4806 // For a default constructor, all references must be initialized in-class
4807 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004808 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4809 if (Diagnose)
4810 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4811 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004812 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004813 }
Richard Smith79363f52012-02-27 06:07:25 +00004814 // C++11 [class.ctor]p5: any non-variant non-static data member of
4815 // const-qualified type (or array thereof) with no
4816 // brace-or-equal-initializer does not have a user-provided default
4817 // constructor.
4818 if (!inUnion() && FieldType.isConstQualified() &&
4819 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004820 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4821 if (Diagnose)
4822 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004823 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004824 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004825 }
4826
4827 if (inUnion() && !FieldType.isConstQualified())
4828 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004829 } else if (CSM == Sema::CXXCopyConstructor) {
4830 // For a copy constructor, data members must not be of rvalue reference
4831 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004832 if (FieldType->isRValueReferenceType()) {
4833 if (Diagnose)
4834 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4835 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004836 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004837 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004838 } else if (IsAssignment) {
4839 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004840 if (FieldType->isReferenceType()) {
4841 if (Diagnose)
4842 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4843 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004844 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004845 }
4846 if (!FieldRecord && FieldType.isConstQualified()) {
4847 // C++11 [class.copy]p23:
4848 // -- a non-static data member of const non-class type (or array thereof)
4849 if (Diagnose)
4850 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004851 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004852 return true;
4853 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004854 }
4855
4856 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004857 // Some additional restrictions exist on the variant members.
4858 if (!inUnion() && FieldRecord->isUnion() &&
4859 FieldRecord->isAnonymousStructOrUnion()) {
4860 bool AllVariantFieldsAreConst = true;
4861
Richard Smithdf8dc862012-03-29 19:00:10 +00004862 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004863 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4864 UE = FieldRecord->field_end();
4865 UI != UE; ++UI) {
4866 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004867
4868 if (!UnionFieldType.isConstQualified())
4869 AllVariantFieldsAreConst = false;
4870
Richard Smith9a561d52012-02-26 09:11:52 +00004871 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4872 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004873 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4874 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004875 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004876 }
4877
4878 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004879 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004880 FieldRecord->field_begin() != FieldRecord->field_end()) {
4881 if (Diagnose)
4882 S.Diag(FieldRecord->getLocation(),
4883 diag::note_deleted_default_ctor_all_const)
4884 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004885 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004886 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004887
Richard Smithdf8dc862012-03-29 19:00:10 +00004888 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004889 // This is technically non-conformant, but sanity demands it.
4890 return false;
4891 }
4892
Richard Smith517bb842012-07-18 03:51:16 +00004893 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4894 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004895 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004896 }
4897
4898 return false;
4899}
4900
4901/// C++11 [class.ctor] p5:
4902/// A defaulted default constructor for a class X is defined as deleted if
4903/// X is a union and all of its variant members are of const-qualified type.
4904bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004905 // This is a silly definition, because it gives an empty union a deleted
4906 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004907 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4908 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4909 if (Diagnose)
4910 S.Diag(MD->getParent()->getLocation(),
4911 diag::note_deleted_default_ctor_all_const)
4912 << MD->getParent() << /*not anonymous union*/0;
4913 return true;
4914 }
4915 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004916}
4917
4918/// Determine whether a defaulted special member function should be defined as
4919/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4920/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004921bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4922 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004923 if (MD->isInvalidDecl())
4924 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004925 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004926 assert(!RD->isDependentType() && "do deletion after instantiation");
Richard Smith80ad52f2013-01-02 11:42:31 +00004927 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004928 return false;
4929
Richard Smith7d5088a2012-02-18 02:02:13 +00004930 // C++11 [expr.lambda.prim]p19:
4931 // The closure type associated with a lambda-expression has a
4932 // deleted (8.4.3) default constructor and a deleted copy
4933 // assignment operator.
4934 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004935 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4936 if (Diagnose)
4937 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004938 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004939 }
4940
Richard Smith5bdaac52012-04-02 20:59:25 +00004941 // For an anonymous struct or union, the copy and assignment special members
4942 // will never be used, so skip the check. For an anonymous union declared at
4943 // namespace scope, the constructor and destructor are used.
4944 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4945 RD->isAnonymousStructOrUnion())
4946 return false;
4947
Richard Smith6c4c36c2012-03-30 20:53:28 +00004948 // C++11 [class.copy]p7, p18:
4949 // If the class definition declares a move constructor or move assignment
4950 // operator, an implicitly declared copy constructor or copy assignment
4951 // operator is defined as deleted.
4952 if (MD->isImplicit() &&
4953 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4954 CXXMethodDecl *UserDeclaredMove = 0;
4955
4956 // In Microsoft mode, a user-declared move only causes the deletion of the
4957 // corresponding copy operation, not both copy operations.
4958 if (RD->hasUserDeclaredMoveConstructor() &&
4959 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4960 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004961
4962 // Find any user-declared move constructor.
4963 for (CXXRecordDecl::ctor_iterator I = RD->ctor_begin(),
4964 E = RD->ctor_end(); I != E; ++I) {
4965 if (I->isMoveConstructor()) {
4966 UserDeclaredMove = *I;
4967 break;
4968 }
4969 }
Richard Smith1c931be2012-04-02 18:40:40 +00004970 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004971 } else if (RD->hasUserDeclaredMoveAssignment() &&
4972 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4973 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004974
4975 // Find any user-declared move assignment operator.
4976 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
4977 E = RD->method_end(); I != E; ++I) {
4978 if (I->isMoveAssignmentOperator()) {
4979 UserDeclaredMove = *I;
4980 break;
4981 }
4982 }
Richard Smith1c931be2012-04-02 18:40:40 +00004983 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004984 }
4985
4986 if (UserDeclaredMove) {
4987 Diag(UserDeclaredMove->getLocation(),
4988 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004989 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004990 << UserDeclaredMove->isMoveAssignmentOperator();
4991 return true;
4992 }
4993 }
Sean Hunte16da072011-10-10 06:18:57 +00004994
Richard Smith5bdaac52012-04-02 20:59:25 +00004995 // Do access control from the special member function
4996 ContextRAII MethodContext(*this, MD);
4997
Richard Smith9a561d52012-02-26 09:11:52 +00004998 // C++11 [class.dtor]p5:
4999 // -- for a virtual destructor, lookup of the non-array deallocation function
5000 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00005001 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00005002 FunctionDecl *OperatorDelete = 0;
5003 DeclarationName Name =
5004 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
5005 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00005006 OperatorDelete, false)) {
5007 if (Diagnose)
5008 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00005009 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00005010 }
Richard Smith9a561d52012-02-26 09:11:52 +00005011 }
5012
Richard Smith6c4c36c2012-03-30 20:53:28 +00005013 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00005014
Sean Huntcdee3fe2011-05-11 22:34:38 +00005015 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00005016 BE = RD->bases_end(); BI != BE; ++BI)
5017 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00005018 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00005019 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00005020
5021 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00005022 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00005023 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00005024 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00005025
5026 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00005027 FE = RD->field_end(); FI != FE; ++FI)
5028 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00005029 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00005030 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00005031
Richard Smith7d5088a2012-02-18 02:02:13 +00005032 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00005033 return true;
5034
5035 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005036}
5037
Richard Smithac713512012-12-08 02:53:02 +00005038/// Perform lookup for a special member of the specified kind, and determine
5039/// whether it is trivial. If the triviality can be determined without the
5040/// lookup, skip it. This is intended for use when determining whether a
5041/// special member of a containing object is trivial, and thus does not ever
5042/// perform overload resolution for default constructors.
5043///
5044/// If \p Selected is not \c NULL, \c *Selected will be filled in with the
5045/// member that was most likely to be intended to be trivial, if any.
5046static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
5047 Sema::CXXSpecialMember CSM, unsigned Quals,
5048 CXXMethodDecl **Selected) {
5049 if (Selected)
5050 *Selected = 0;
5051
5052 switch (CSM) {
5053 case Sema::CXXInvalid:
5054 llvm_unreachable("not a special member");
5055
5056 case Sema::CXXDefaultConstructor:
5057 // C++11 [class.ctor]p5:
5058 // A default constructor is trivial if:
5059 // - all the [direct subobjects] have trivial default constructors
5060 //
5061 // Note, no overload resolution is performed in this case.
5062 if (RD->hasTrivialDefaultConstructor())
5063 return true;
5064
5065 if (Selected) {
5066 // If there's a default constructor which could have been trivial, dig it
5067 // out. Otherwise, if there's any user-provided default constructor, point
5068 // to that as an example of why there's not a trivial one.
5069 CXXConstructorDecl *DefCtor = 0;
5070 if (RD->needsImplicitDefaultConstructor())
5071 S.DeclareImplicitDefaultConstructor(RD);
5072 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(),
5073 CE = RD->ctor_end(); CI != CE; ++CI) {
5074 if (!CI->isDefaultConstructor())
5075 continue;
5076 DefCtor = *CI;
5077 if (!DefCtor->isUserProvided())
5078 break;
5079 }
5080
5081 *Selected = DefCtor;
5082 }
5083
5084 return false;
5085
5086 case Sema::CXXDestructor:
5087 // C++11 [class.dtor]p5:
5088 // A destructor is trivial if:
5089 // - all the direct [subobjects] have trivial destructors
5090 if (RD->hasTrivialDestructor())
5091 return true;
5092
5093 if (Selected) {
5094 if (RD->needsImplicitDestructor())
5095 S.DeclareImplicitDestructor(RD);
5096 *Selected = RD->getDestructor();
5097 }
5098
5099 return false;
5100
5101 case Sema::CXXCopyConstructor:
5102 // C++11 [class.copy]p12:
5103 // A copy constructor is trivial if:
5104 // - the constructor selected to copy each direct [subobject] is trivial
5105 if (RD->hasTrivialCopyConstructor()) {
5106 if (Quals == Qualifiers::Const)
5107 // We must either select the trivial copy constructor or reach an
5108 // ambiguity; no need to actually perform overload resolution.
5109 return true;
5110 } else if (!Selected) {
5111 return false;
5112 }
5113 // In C++98, we are not supposed to perform overload resolution here, but we
5114 // treat that as a language defect, as suggested on cxx-abi-dev, to treat
5115 // cases like B as having a non-trivial copy constructor:
5116 // struct A { template<typename T> A(T&); };
5117 // struct B { mutable A a; };
5118 goto NeedOverloadResolution;
5119
5120 case Sema::CXXCopyAssignment:
5121 // C++11 [class.copy]p25:
5122 // A copy assignment operator is trivial if:
5123 // - the assignment operator selected to copy each direct [subobject] is
5124 // trivial
5125 if (RD->hasTrivialCopyAssignment()) {
5126 if (Quals == Qualifiers::Const)
5127 return true;
5128 } else if (!Selected) {
5129 return false;
5130 }
5131 // In C++98, we are not supposed to perform overload resolution here, but we
5132 // treat that as a language defect.
5133 goto NeedOverloadResolution;
5134
5135 case Sema::CXXMoveConstructor:
5136 case Sema::CXXMoveAssignment:
5137 NeedOverloadResolution:
5138 Sema::SpecialMemberOverloadResult *SMOR =
5139 S.LookupSpecialMember(RD, CSM,
5140 Quals & Qualifiers::Const,
5141 Quals & Qualifiers::Volatile,
5142 /*RValueThis*/false, /*ConstThis*/false,
5143 /*VolatileThis*/false);
5144
5145 // The standard doesn't describe how to behave if the lookup is ambiguous.
5146 // We treat it as not making the member non-trivial, just like the standard
5147 // mandates for the default constructor. This should rarely matter, because
5148 // the member will also be deleted.
5149 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
5150 return true;
5151
5152 if (!SMOR->getMethod()) {
5153 assert(SMOR->getKind() ==
5154 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
5155 return false;
5156 }
5157
5158 // We deliberately don't check if we found a deleted special member. We're
5159 // not supposed to!
5160 if (Selected)
5161 *Selected = SMOR->getMethod();
5162 return SMOR->getMethod()->isTrivial();
5163 }
5164
5165 llvm_unreachable("unknown special method kind");
5166}
5167
Benjamin Kramera574c892013-02-15 12:30:38 +00005168static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
Richard Smithac713512012-12-08 02:53:02 +00005169 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(), CE = RD->ctor_end();
5170 CI != CE; ++CI)
5171 if (!CI->isImplicit())
5172 return *CI;
5173
5174 // Look for constructor templates.
5175 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
5176 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
5177 if (CXXConstructorDecl *CD =
5178 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
5179 return CD;
5180 }
5181
5182 return 0;
5183}
5184
5185/// The kind of subobject we are checking for triviality. The values of this
5186/// enumeration are used in diagnostics.
5187enum TrivialSubobjectKind {
5188 /// The subobject is a base class.
5189 TSK_BaseClass,
5190 /// The subobject is a non-static data member.
5191 TSK_Field,
5192 /// The object is actually the complete object.
5193 TSK_CompleteObject
5194};
5195
5196/// Check whether the special member selected for a given type would be trivial.
5197static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
5198 QualType SubType,
5199 Sema::CXXSpecialMember CSM,
5200 TrivialSubobjectKind Kind,
5201 bool Diagnose) {
5202 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
5203 if (!SubRD)
5204 return true;
5205
5206 CXXMethodDecl *Selected;
5207 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
5208 Diagnose ? &Selected : 0))
5209 return true;
5210
5211 if (Diagnose) {
5212 if (!Selected && CSM == Sema::CXXDefaultConstructor) {
5213 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
5214 << Kind << SubType.getUnqualifiedType();
5215 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
5216 S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
5217 } else if (!Selected)
5218 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
5219 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
5220 else if (Selected->isUserProvided()) {
5221 if (Kind == TSK_CompleteObject)
5222 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
5223 << Kind << SubType.getUnqualifiedType() << CSM;
5224 else {
5225 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
5226 << Kind << SubType.getUnqualifiedType() << CSM;
5227 S.Diag(Selected->getLocation(), diag::note_declared_at);
5228 }
5229 } else {
5230 if (Kind != TSK_CompleteObject)
5231 S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
5232 << Kind << SubType.getUnqualifiedType() << CSM;
5233
5234 // Explain why the defaulted or deleted special member isn't trivial.
5235 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
5236 }
5237 }
5238
5239 return false;
5240}
5241
5242/// Check whether the members of a class type allow a special member to be
5243/// trivial.
5244static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
5245 Sema::CXXSpecialMember CSM,
5246 bool ConstArg, bool Diagnose) {
5247 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
5248 FE = RD->field_end(); FI != FE; ++FI) {
5249 if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
5250 continue;
5251
5252 QualType FieldType = S.Context.getBaseElementType(FI->getType());
5253
5254 // Pretend anonymous struct or union members are members of this class.
5255 if (FI->isAnonymousStructOrUnion()) {
5256 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
5257 CSM, ConstArg, Diagnose))
5258 return false;
5259 continue;
5260 }
5261
5262 // C++11 [class.ctor]p5:
5263 // A default constructor is trivial if [...]
5264 // -- no non-static data member of its class has a
5265 // brace-or-equal-initializer
5266 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
5267 if (Diagnose)
5268 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << *FI;
5269 return false;
5270 }
5271
5272 // Objective C ARC 4.3.5:
5273 // [...] nontrivally ownership-qualified types are [...] not trivially
5274 // default constructible, copy constructible, move constructible, copy
5275 // assignable, move assignable, or destructible [...]
5276 if (S.getLangOpts().ObjCAutoRefCount &&
5277 FieldType.hasNonTrivialObjCLifetime()) {
5278 if (Diagnose)
5279 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
5280 << RD << FieldType.getObjCLifetime();
5281 return false;
5282 }
5283
5284 if (ConstArg && !FI->isMutable())
5285 FieldType.addConst();
5286 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, CSM,
5287 TSK_Field, Diagnose))
5288 return false;
5289 }
5290
5291 return true;
5292}
5293
5294/// Diagnose why the specified class does not have a trivial special member of
5295/// the given kind.
5296void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
5297 QualType Ty = Context.getRecordType(RD);
5298 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)
5299 Ty.addConst();
5300
5301 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, CSM,
5302 TSK_CompleteObject, /*Diagnose*/true);
5303}
5304
5305/// Determine whether a defaulted or deleted special member function is trivial,
5306/// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
5307/// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
5308bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
5309 bool Diagnose) {
Richard Smithac713512012-12-08 02:53:02 +00005310 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
5311
5312 CXXRecordDecl *RD = MD->getParent();
5313
5314 bool ConstArg = false;
Richard Smithac713512012-12-08 02:53:02 +00005315
5316 // C++11 [class.copy]p12, p25:
5317 // A [special member] is trivial if its declared parameter type is the same
5318 // as if it had been implicitly declared [...]
5319 switch (CSM) {
5320 case CXXDefaultConstructor:
5321 case CXXDestructor:
5322 // Trivial default constructors and destructors cannot have parameters.
5323 break;
5324
5325 case CXXCopyConstructor:
5326 case CXXCopyAssignment: {
5327 // Trivial copy operations always have const, non-volatile parameter types.
5328 ConstArg = true;
Jordan Rose41f3f3a2013-03-05 01:27:54 +00005329 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smithac713512012-12-08 02:53:02 +00005330 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
5331 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
5332 if (Diagnose)
5333 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5334 << Param0->getSourceRange() << Param0->getType()
5335 << Context.getLValueReferenceType(
5336 Context.getRecordType(RD).withConst());
5337 return false;
5338 }
5339 break;
5340 }
5341
5342 case CXXMoveConstructor:
5343 case CXXMoveAssignment: {
5344 // Trivial move operations always have non-cv-qualified parameters.
Jordan Rose41f3f3a2013-03-05 01:27:54 +00005345 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smithac713512012-12-08 02:53:02 +00005346 const RValueReferenceType *RT =
5347 Param0->getType()->getAs<RValueReferenceType>();
5348 if (!RT || RT->getPointeeType().getCVRQualifiers()) {
5349 if (Diagnose)
5350 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5351 << Param0->getSourceRange() << Param0->getType()
5352 << Context.getRValueReferenceType(Context.getRecordType(RD));
5353 return false;
5354 }
5355 break;
5356 }
5357
5358 case CXXInvalid:
5359 llvm_unreachable("not a special member");
5360 }
5361
5362 // FIXME: We require that the parameter-declaration-clause is equivalent to
5363 // that of an implicit declaration, not just that the declared parameter type
5364 // matches, in order to prevent absuridities like a function simultaneously
5365 // being a trivial copy constructor and a non-trivial default constructor.
5366 // This issue has not yet been assigned a core issue number.
5367 if (MD->getMinRequiredArguments() < MD->getNumParams()) {
5368 if (Diagnose)
5369 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
5370 diag::note_nontrivial_default_arg)
5371 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
5372 return false;
5373 }
5374 if (MD->isVariadic()) {
5375 if (Diagnose)
5376 Diag(MD->getLocation(), diag::note_nontrivial_variadic);
5377 return false;
5378 }
5379
5380 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5381 // A copy/move [constructor or assignment operator] is trivial if
5382 // -- the [member] selected to copy/move each direct base class subobject
5383 // is trivial
5384 //
5385 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5386 // A [default constructor or destructor] is trivial if
5387 // -- all the direct base classes have trivial [default constructors or
5388 // destructors]
5389 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
5390 BE = RD->bases_end(); BI != BE; ++BI)
5391 if (!checkTrivialSubobjectCall(*this, BI->getLocStart(),
5392 ConstArg ? BI->getType().withConst()
5393 : BI->getType(),
5394 CSM, TSK_BaseClass, Diagnose))
5395 return false;
5396
5397 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5398 // A copy/move [constructor or assignment operator] for a class X is
5399 // trivial if
5400 // -- for each non-static data member of X that is of class type (or array
5401 // thereof), the constructor selected to copy/move that member is
5402 // trivial
5403 //
5404 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5405 // A [default constructor or destructor] is trivial if
5406 // -- for all of the non-static data members of its class that are of class
5407 // type (or array thereof), each such class has a trivial [default
5408 // constructor or destructor]
5409 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
5410 return false;
5411
5412 // C++11 [class.dtor]p5:
5413 // A destructor is trivial if [...]
5414 // -- the destructor is not virtual
5415 if (CSM == CXXDestructor && MD->isVirtual()) {
5416 if (Diagnose)
5417 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
5418 return false;
5419 }
5420
5421 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
5422 // A [special member] for class X is trivial if [...]
5423 // -- class X has no virtual functions and no virtual base classes
5424 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
5425 if (!Diagnose)
5426 return false;
5427
5428 if (RD->getNumVBases()) {
5429 // Check for virtual bases. We already know that the corresponding
5430 // member in all bases is trivial, so vbases must all be direct.
5431 CXXBaseSpecifier &BS = *RD->vbases_begin();
5432 assert(BS.isVirtual());
5433 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
5434 return false;
5435 }
5436
5437 // Must have a virtual method.
5438 for (CXXRecordDecl::method_iterator MI = RD->method_begin(),
5439 ME = RD->method_end(); MI != ME; ++MI) {
5440 if (MI->isVirtual()) {
5441 SourceLocation MLoc = MI->getLocStart();
5442 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
5443 return false;
5444 }
5445 }
5446
5447 llvm_unreachable("dynamic class with no vbases and no virtual functions");
5448 }
5449
5450 // Looks like it's trivial!
5451 return true;
5452}
5453
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005454/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005455namespace {
5456 struct FindHiddenVirtualMethodData {
5457 Sema *S;
5458 CXXMethodDecl *Method;
5459 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005460 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005461 };
5462}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005463
David Blaikie5f750682012-10-19 00:53:08 +00005464/// \brief Check whether any most overriden method from MD in Methods
5465static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
5466 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5467 if (MD->size_overridden_methods() == 0)
5468 return Methods.count(MD->getCanonicalDecl());
5469 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5470 E = MD->end_overridden_methods();
5471 I != E; ++I)
5472 if (CheckMostOverridenMethods(*I, Methods))
5473 return true;
5474 return false;
5475}
5476
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005477/// \brief Member lookup function that determines whether a given C++
5478/// method overloads virtual methods in a base class without overriding any,
5479/// to be used with CXXRecordDecl::lookupInBases().
5480static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
5481 CXXBasePath &Path,
5482 void *UserData) {
5483 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
5484
5485 FindHiddenVirtualMethodData &Data
5486 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
5487
5488 DeclarationName Name = Data.Method->getDeclName();
5489 assert(Name.getNameKind() == DeclarationName::Identifier);
5490
5491 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005492 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005493 for (Path.Decls = BaseRecord->lookup(Name);
David Blaikie3bc93e32012-12-19 00:45:41 +00005494 !Path.Decls.empty();
5495 Path.Decls = Path.Decls.slice(1)) {
5496 NamedDecl *D = Path.Decls.front();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005497 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00005498 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005499 foundSameNameMethod = true;
5500 // Interested only in hidden virtual methods.
5501 if (!MD->isVirtual())
5502 continue;
5503 // If the method we are checking overrides a method from its base
5504 // don't warn about the other overloaded methods.
5505 if (!Data.S->IsOverload(Data.Method, MD, false))
5506 return true;
5507 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00005508 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005509 overloadedMethods.push_back(MD);
5510 }
5511 }
5512
5513 if (foundSameNameMethod)
5514 Data.OverloadedMethods.append(overloadedMethods.begin(),
5515 overloadedMethods.end());
5516 return foundSameNameMethod;
5517}
5518
David Blaikie5f750682012-10-19 00:53:08 +00005519/// \brief Add the most overriden methods from MD to Methods
5520static void AddMostOverridenMethods(const CXXMethodDecl *MD,
5521 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5522 if (MD->size_overridden_methods() == 0)
5523 Methods.insert(MD->getCanonicalDecl());
5524 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5525 E = MD->end_overridden_methods();
5526 I != E; ++I)
5527 AddMostOverridenMethods(*I, Methods);
5528}
5529
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005530/// \brief See if a method overloads virtual methods in a base class without
5531/// overriding any.
5532void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
5533 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00005534 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005535 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00005536 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005537 return;
5538
5539 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
5540 /*bool RecordPaths=*/false,
5541 /*bool DetectVirtual=*/false);
5542 FindHiddenVirtualMethodData Data;
5543 Data.Method = MD;
5544 Data.S = this;
5545
5546 // Keep the base methods that were overriden or introduced in the subclass
5547 // by 'using' in a set. A base method not in this set is hidden.
David Blaikie3bc93e32012-12-19 00:45:41 +00005548 DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
5549 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
5550 NamedDecl *ND = *I;
5551 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
David Blaikie5f750682012-10-19 00:53:08 +00005552 ND = shad->getTargetDecl();
5553 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
5554 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005555 }
5556
5557 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
5558 !Data.OverloadedMethods.empty()) {
5559 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
5560 << MD << (Data.OverloadedMethods.size() > 1);
5561
5562 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
5563 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
Richard Trieuf608aff2013-04-05 23:02:24 +00005564 PartialDiagnostic PD = PDiag(
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005565 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
Richard Trieuf608aff2013-04-05 23:02:24 +00005566 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
5567 Diag(overloadedMD->getLocation(), PD);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005568 }
5569 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005570}
5571
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005572void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00005573 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005574 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00005575 SourceLocation RBrac,
5576 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005577 if (!TagDecl)
5578 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005579
Douglas Gregor42af25f2009-05-11 19:58:34 +00005580 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005581
Rafael Espindolaf729ce02012-07-12 04:32:30 +00005582 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
5583 if (l->getKind() != AttributeList::AT_Visibility)
5584 continue;
5585 l->setInvalid();
5586 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
5587 l->getName();
5588 }
5589
David Blaikie77b6de02011-09-22 02:58:26 +00005590 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00005591 // strict aliasing violation!
5592 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00005593 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00005594
Douglas Gregor23c94db2010-07-02 17:43:08 +00005595 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00005596 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005597}
5598
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005599/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
5600/// special functions, such as the default constructor, copy
5601/// constructor, or destructor, to the given C++ class (C++
5602/// [special]p1). This routine can only be executed just before the
5603/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00005604void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00005605 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00005606 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005607
Richard Smithbc2a35d2012-12-08 08:32:28 +00005608 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005609 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005610
Richard Smithbc2a35d2012-12-08 08:32:28 +00005611 // If the properties or semantics of the copy constructor couldn't be
5612 // determined while the class was being declared, force a declaration
5613 // of it now.
5614 if (ClassDecl->needsOverloadResolutionForCopyConstructor())
5615 DeclareImplicitCopyConstructor(ClassDecl);
5616 }
5617
Richard Smith80ad52f2013-01-02 11:42:31 +00005618 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00005619 ++ASTContext::NumImplicitMoveConstructors;
5620
Richard Smithbc2a35d2012-12-08 08:32:28 +00005621 if (ClassDecl->needsOverloadResolutionForMoveConstructor())
5622 DeclareImplicitMoveConstructor(ClassDecl);
5623 }
5624
Douglas Gregora376d102010-07-02 21:50:04 +00005625 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
5626 ++ASTContext::NumImplicitCopyAssignmentOperators;
Richard Smithbc2a35d2012-12-08 08:32:28 +00005627
5628 // If we have a dynamic class, then the copy assignment operator may be
Douglas Gregora376d102010-07-02 21:50:04 +00005629 // virtual, so we have to declare it immediately. This ensures that, e.g.,
Richard Smithbc2a35d2012-12-08 08:32:28 +00005630 // it shows up in the right place in the vtable and that we diagnose
5631 // problems with the implicit exception specification.
5632 if (ClassDecl->isDynamicClass() ||
5633 ClassDecl->needsOverloadResolutionForCopyAssignment())
Douglas Gregora376d102010-07-02 21:50:04 +00005634 DeclareImplicitCopyAssignment(ClassDecl);
5635 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005636
Richard Smith80ad52f2013-01-02 11:42:31 +00005637 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00005638 ++ASTContext::NumImplicitMoveAssignmentOperators;
5639
5640 // Likewise for the move assignment operator.
Richard Smithbc2a35d2012-12-08 08:32:28 +00005641 if (ClassDecl->isDynamicClass() ||
5642 ClassDecl->needsOverloadResolutionForMoveAssignment())
Richard Smithb701d3d2011-12-24 21:56:24 +00005643 DeclareImplicitMoveAssignment(ClassDecl);
5644 }
5645
Douglas Gregor4923aa22010-07-02 20:37:36 +00005646 if (!ClassDecl->hasUserDeclaredDestructor()) {
5647 ++ASTContext::NumImplicitDestructors;
Richard Smithbc2a35d2012-12-08 08:32:28 +00005648
5649 // If we have a dynamic class, then the destructor may be virtual, so we
Douglas Gregor4923aa22010-07-02 20:37:36 +00005650 // have to declare the destructor immediately. This ensures that, e.g., it
5651 // shows up in the right place in the vtable and that we diagnose problems
5652 // with the implicit exception specification.
Richard Smithbc2a35d2012-12-08 08:32:28 +00005653 if (ClassDecl->isDynamicClass() ||
5654 ClassDecl->needsOverloadResolutionForDestructor())
Douglas Gregor4923aa22010-07-02 20:37:36 +00005655 DeclareImplicitDestructor(ClassDecl);
5656 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005657}
5658
Francois Pichet8387e2a2011-04-22 22:18:13 +00005659void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
5660 if (!D)
5661 return;
5662
5663 int NumParamList = D->getNumTemplateParameterLists();
5664 for (int i = 0; i < NumParamList; i++) {
5665 TemplateParameterList* Params = D->getTemplateParameterList(i);
5666 for (TemplateParameterList::iterator Param = Params->begin(),
5667 ParamEnd = Params->end();
5668 Param != ParamEnd; ++Param) {
5669 NamedDecl *Named = cast<NamedDecl>(*Param);
5670 if (Named->getDeclName()) {
5671 S->AddDecl(Named);
5672 IdResolver.AddDecl(Named);
5673 }
5674 }
5675 }
5676}
5677
John McCalld226f652010-08-21 09:40:31 +00005678void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005679 if (!D)
5680 return;
5681
5682 TemplateParameterList *Params = 0;
5683 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5684 Params = Template->getTemplateParameters();
5685 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5686 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5687 Params = PartialSpec->getTemplateParameters();
5688 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005689 return;
5690
Douglas Gregor6569d682009-05-27 23:11:45 +00005691 for (TemplateParameterList::iterator Param = Params->begin(),
5692 ParamEnd = Params->end();
5693 Param != ParamEnd; ++Param) {
5694 NamedDecl *Named = cast<NamedDecl>(*Param);
5695 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005696 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005697 IdResolver.AddDecl(Named);
5698 }
5699 }
5700}
5701
John McCalld226f652010-08-21 09:40:31 +00005702void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005703 if (!RecordD) return;
5704 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005705 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005706 PushDeclContext(S, Record);
5707}
5708
John McCalld226f652010-08-21 09:40:31 +00005709void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005710 if (!RecordD) return;
5711 PopDeclContext();
5712}
5713
Douglas Gregor72b505b2008-12-16 21:30:33 +00005714/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5715/// parsing a top-level (non-nested) C++ class, and we are now
5716/// parsing those parts of the given Method declaration that could
5717/// not be parsed earlier (C++ [class.mem]p2), such as default
5718/// arguments. This action should enter the scope of the given
5719/// Method declaration as if we had just parsed the qualified method
5720/// name. However, it should not bring the parameters into scope;
5721/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005722void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005723}
5724
5725/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5726/// C++ method declaration. We're (re-)introducing the given
5727/// function parameter into scope for use in parsing later parts of
5728/// the method declaration. For example, we could see an
5729/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005730void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005731 if (!ParamD)
5732 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005733
John McCalld226f652010-08-21 09:40:31 +00005734 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005735
5736 // If this parameter has an unparsed default argument, clear it out
5737 // to make way for the parsed default argument.
5738 if (Param->hasUnparsedDefaultArg())
5739 Param->setDefaultArg(0);
5740
John McCalld226f652010-08-21 09:40:31 +00005741 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005742 if (Param->getDeclName())
5743 IdResolver.AddDecl(Param);
5744}
5745
5746/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5747/// processing the delayed method declaration for Method. The method
5748/// declaration is now considered finished. There may be a separate
5749/// ActOnStartOfFunctionDef action later (not necessarily
5750/// immediately!) for this method, if it was also defined inside the
5751/// class body.
John McCalld226f652010-08-21 09:40:31 +00005752void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005753 if (!MethodD)
5754 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005755
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005756 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005757
John McCalld226f652010-08-21 09:40:31 +00005758 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005759
5760 // Now that we have our default arguments, check the constructor
5761 // again. It could produce additional diagnostics or affect whether
5762 // the class has implicitly-declared destructors, among other
5763 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005764 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5765 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005766
5767 // Check the default arguments, which we may have added.
5768 if (!Method->isInvalidDecl())
5769 CheckCXXDefaultArguments(Method);
5770}
5771
Douglas Gregor42a552f2008-11-05 20:51:48 +00005772/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005773/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005774/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005775/// emit diagnostics and set the invalid bit to true. In any case, the type
5776/// will be updated to reflect a well-formed type for the constructor and
5777/// returned.
5778QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005779 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005780 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005781
5782 // C++ [class.ctor]p3:
5783 // A constructor shall not be virtual (10.3) or static (9.4). A
5784 // constructor can be invoked for a const, volatile or const
5785 // volatile object. A constructor shall not be declared const,
5786 // volatile, or const volatile (9.3.2).
5787 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005788 if (!D.isInvalidType())
5789 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5790 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5791 << SourceRange(D.getIdentifierLoc());
5792 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005793 }
John McCalld931b082010-08-26 03:08:43 +00005794 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005795 if (!D.isInvalidType())
5796 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5797 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5798 << SourceRange(D.getIdentifierLoc());
5799 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005800 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005801 }
Mike Stump1eb44332009-09-09 15:08:12 +00005802
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005803 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005804 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005805 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005806 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5807 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005808 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005809 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5810 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005811 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005812 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5813 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005814 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005815 }
Mike Stump1eb44332009-09-09 15:08:12 +00005816
Douglas Gregorc938c162011-01-26 05:01:58 +00005817 // C++0x [class.ctor]p4:
5818 // A constructor shall not be declared with a ref-qualifier.
5819 if (FTI.hasRefQualifier()) {
5820 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5821 << FTI.RefQualifierIsLValueRef
5822 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5823 D.setInvalidType();
5824 }
5825
Douglas Gregor42a552f2008-11-05 20:51:48 +00005826 // Rebuild the function type "R" without any type qualifiers (in
5827 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005828 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005829 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005830 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5831 return R;
5832
5833 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5834 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005835 EPI.RefQualifier = RQ_None;
5836
Richard Smith07b0fdc2013-03-18 21:12:30 +00005837 return Context.getFunctionType(Context.VoidTy, Proto->getArgTypes(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005838}
5839
Douglas Gregor72b505b2008-12-16 21:30:33 +00005840/// CheckConstructor - Checks a fully-formed constructor for
5841/// well-formedness, issuing any diagnostics required. Returns true if
5842/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005843void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005844 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005845 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5846 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005847 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005848
5849 // C++ [class.copy]p3:
5850 // A declaration of a constructor for a class X is ill-formed if
5851 // its first parameter is of type (optionally cv-qualified) X and
5852 // either there are no other parameters or else all other
5853 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005854 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005855 ((Constructor->getNumParams() == 1) ||
5856 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005857 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5858 Constructor->getTemplateSpecializationKind()
5859 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005860 QualType ParamType = Constructor->getParamDecl(0)->getType();
5861 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5862 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005863 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005864 const char *ConstRef
5865 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5866 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005867 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005868 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005869
5870 // FIXME: Rather that making the constructor invalid, we should endeavor
5871 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005872 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005873 }
5874 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005875}
5876
John McCall15442822010-08-04 01:04:25 +00005877/// CheckDestructor - Checks a fully-formed destructor definition for
5878/// well-formedness, issuing any diagnostics required. Returns true
5879/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005880bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005881 CXXRecordDecl *RD = Destructor->getParent();
5882
Peter Collingbournef51cfb82013-05-20 14:12:25 +00005883 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005884 SourceLocation Loc;
5885
5886 if (!Destructor->isImplicit())
5887 Loc = Destructor->getLocation();
5888 else
5889 Loc = RD->getLocation();
5890
5891 // If we have a virtual destructor, look up the deallocation function
5892 FunctionDecl *OperatorDelete = 0;
5893 DeclarationName Name =
5894 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005895 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005896 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005897
Eli Friedman5f2987c2012-02-02 03:46:19 +00005898 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005899
5900 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005901 }
Anders Carlsson37909802009-11-30 21:24:50 +00005902
5903 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005904}
5905
Mike Stump1eb44332009-09-09 15:08:12 +00005906static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005907FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5908 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5909 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005910 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005911}
5912
Douglas Gregor42a552f2008-11-05 20:51:48 +00005913/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5914/// the well-formednes of the destructor declarator @p D with type @p
5915/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005916/// emit diagnostics and set the declarator to invalid. Even if this happens,
5917/// will be updated to reflect a well-formed type for the destructor and
5918/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005919QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005920 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005921 // C++ [class.dtor]p1:
5922 // [...] A typedef-name that names a class is a class-name
5923 // (7.1.3); however, a typedef-name that names a class shall not
5924 // be used as the identifier in the declarator for a destructor
5925 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005926 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005927 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005928 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005929 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005930 else if (const TemplateSpecializationType *TST =
5931 DeclaratorType->getAs<TemplateSpecializationType>())
5932 if (TST->isTypeAlias())
5933 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5934 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005935
5936 // C++ [class.dtor]p2:
5937 // A destructor is used to destroy objects of its class type. A
5938 // destructor takes no parameters, and no return type can be
5939 // specified for it (not even void). The address of a destructor
5940 // shall not be taken. A destructor shall not be static. A
5941 // destructor can be invoked for a const, volatile or const
5942 // volatile object. A destructor shall not be declared const,
5943 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005944 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005945 if (!D.isInvalidType())
5946 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5947 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005948 << SourceRange(D.getIdentifierLoc())
5949 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5950
John McCalld931b082010-08-26 03:08:43 +00005951 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005952 }
Chris Lattner65401802009-04-25 08:28:21 +00005953 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005954 // Destructors don't have return types, but the parser will
5955 // happily parse something like:
5956 //
5957 // class X {
5958 // float ~X();
5959 // };
5960 //
5961 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005962 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5963 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5964 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005965 }
Mike Stump1eb44332009-09-09 15:08:12 +00005966
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005967 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005968 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005969 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005970 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5971 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005972 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005973 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5974 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005975 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005976 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5977 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005978 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005979 }
5980
Douglas Gregorc938c162011-01-26 05:01:58 +00005981 // C++0x [class.dtor]p2:
5982 // A destructor shall not be declared with a ref-qualifier.
5983 if (FTI.hasRefQualifier()) {
5984 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5985 << FTI.RefQualifierIsLValueRef
5986 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5987 D.setInvalidType();
5988 }
5989
Douglas Gregor42a552f2008-11-05 20:51:48 +00005990 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005991 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005992 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5993
5994 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005995 FTI.freeArgs();
5996 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005997 }
5998
Mike Stump1eb44332009-09-09 15:08:12 +00005999 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00006000 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00006001 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00006002 D.setInvalidType();
6003 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00006004
6005 // Rebuild the function type "R" without any type qualifiers or
6006 // parameters (in case any of the errors above fired) and with
6007 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00006008 // types.
John McCalle23cf432010-12-14 08:05:40 +00006009 if (!D.isInvalidType())
6010 return R;
6011
Douglas Gregord92ec472010-07-01 05:10:53 +00006012 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00006013 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
6014 EPI.Variadic = false;
6015 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00006016 EPI.RefQualifier = RQ_None;
Dmitri Gribenko55431692013-05-05 00:41:58 +00006017 return Context.getFunctionType(Context.VoidTy, None, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00006018}
6019
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006020/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
6021/// well-formednes of the conversion function declarator @p D with
6022/// type @p R. If there are any errors in the declarator, this routine
6023/// will emit diagnostics and return true. Otherwise, it will return
6024/// false. Either way, the type @p R will be updated to reflect a
6025/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00006026void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00006027 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006028 // C++ [class.conv.fct]p1:
6029 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00006030 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00006031 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00006032 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00006033 if (!D.isInvalidType())
6034 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
Eli Friedman4cde94a2013-06-20 20:58:02 +00006035 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
6036 << D.getName().getSourceRange();
Chris Lattner6e475012009-04-25 08:35:12 +00006037 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00006038 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006039 }
John McCalla3f81372010-04-13 00:04:31 +00006040
6041 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
6042
Chris Lattner6e475012009-04-25 08:35:12 +00006043 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006044 // Conversion functions don't have return types, but the parser will
6045 // happily parse something like:
6046 //
6047 // class X {
6048 // float operator bool();
6049 // };
6050 //
6051 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00006052 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
6053 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6054 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00006055 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006056 }
6057
John McCalla3f81372010-04-13 00:04:31 +00006058 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
6059
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006060 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00006061 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006062 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
6063
6064 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00006065 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00006066 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00006067 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006068 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00006069 D.setInvalidType();
6070 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006071
John McCalla3f81372010-04-13 00:04:31 +00006072 // Diagnose "&operator bool()" and other such nonsense. This
6073 // is actually a gcc extension which we don't support.
6074 if (Proto->getResultType() != ConvType) {
6075 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
6076 << Proto->getResultType();
6077 D.setInvalidType();
6078 ConvType = Proto->getResultType();
6079 }
6080
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006081 // C++ [class.conv.fct]p4:
6082 // The conversion-type-id shall not represent a function type nor
6083 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006084 if (ConvType->isArrayType()) {
6085 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
6086 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00006087 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006088 } else if (ConvType->isFunctionType()) {
6089 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
6090 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00006091 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006092 }
6093
6094 // Rebuild the function type "R" without any parameters (in case any
6095 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00006096 // return type.
John McCalle23cf432010-12-14 08:05:40 +00006097 if (D.isInvalidType())
Dmitri Gribenko55431692013-05-05 00:41:58 +00006098 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006099
Douglas Gregor09f41cf2009-01-14 15:45:31 +00006100 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00006101 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00006102 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006103 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00006104 diag::warn_cxx98_compat_explicit_conversion_functions :
6105 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00006106 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006107}
6108
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006109/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
6110/// the declaration of the given C++ conversion function. This routine
6111/// is responsible for recording the conversion function in the C++
6112/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00006113Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006114 assert(Conversion && "Expected to receive a conversion function declaration");
6115
Douglas Gregor9d350972008-12-12 08:25:50 +00006116 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006117
6118 // Make sure we aren't redeclaring the conversion function.
6119 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006120
6121 // C++ [class.conv.fct]p1:
6122 // [...] A conversion function is never used to convert a
6123 // (possibly cv-qualified) object to the (possibly cv-qualified)
6124 // same object type (or a reference to it), to a (possibly
6125 // cv-qualified) base class of that type (or a reference to it),
6126 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00006127 // FIXME: Suppress this warning if the conversion function ends up being a
6128 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00006129 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006130 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00006131 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006132 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00006133 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
6134 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00006135 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00006136 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006137 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
6138 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00006139 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00006140 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006141 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00006142 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00006143 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006144 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00006145 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00006146 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006147 }
6148
Douglas Gregore80622f2010-09-29 04:25:11 +00006149 if (FunctionTemplateDecl *ConversionTemplate
6150 = Conversion->getDescribedFunctionTemplate())
6151 return ConversionTemplate;
6152
John McCalld226f652010-08-21 09:40:31 +00006153 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00006154}
6155
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006156//===----------------------------------------------------------------------===//
6157// Namespace Handling
6158//===----------------------------------------------------------------------===//
6159
Richard Smithd1a55a62012-10-04 22:13:39 +00006160/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
6161/// reopened.
6162static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
6163 SourceLocation Loc,
6164 IdentifierInfo *II, bool *IsInline,
6165 NamespaceDecl *PrevNS) {
6166 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00006167
Richard Smithc969e6a2012-10-05 01:46:25 +00006168 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
6169 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
6170 // inline namespaces, with the intention of bringing names into namespace std.
6171 //
6172 // We support this just well enough to get that case working; this is not
6173 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00006174 if (*IsInline && II && II->getName().startswith("__atomic") &&
6175 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00006176 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00006177 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
6178 NS = NS->getPreviousDecl())
6179 NS->setInline(*IsInline);
6180 // Patch up the lookup table for the containing namespace. This isn't really
6181 // correct, but it's good enough for this particular case.
6182 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
6183 E = PrevNS->decls_end(); I != E; ++I)
6184 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
6185 PrevNS->getParent()->makeDeclVisibleInContext(ND);
6186 return;
6187 }
6188
6189 if (PrevNS->isInline())
6190 // The user probably just forgot the 'inline', so suggest that it
6191 // be added back.
6192 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
6193 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
6194 else
6195 S.Diag(Loc, diag::err_inline_namespace_mismatch)
6196 << IsInline;
6197
6198 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
6199 *IsInline = PrevNS->isInline();
6200}
John McCallea318642010-08-26 09:15:37 +00006201
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006202/// ActOnStartNamespaceDef - This is called at the start of a namespace
6203/// definition.
John McCalld226f652010-08-21 09:40:31 +00006204Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00006205 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006206 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00006207 SourceLocation IdentLoc,
6208 IdentifierInfo *II,
6209 SourceLocation LBrace,
6210 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006211 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
6212 // For anonymous namespace, take the location of the left brace.
6213 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006214 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00006215 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006216 bool IsStd = false;
6217 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006218 Scope *DeclRegionScope = NamespcScope->getParent();
6219
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006220 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006221 if (II) {
6222 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00006223 // The identifier in an original-namespace-definition shall not
6224 // have been previously defined in the declarative region in
6225 // which the original-namespace-definition appears. The
6226 // identifier in an original-namespace-definition is the name of
6227 // the namespace. Subsequently in that declarative region, it is
6228 // treated as an original-namespace-name.
6229 //
6230 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00006231 // look through using directives, just look for any ordinary names.
6232
6233 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006234 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
6235 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00006236 NamedDecl *PrevDecl = 0;
David Blaikie3bc93e32012-12-19 00:45:41 +00006237 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
6238 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
6239 ++I) {
6240 if ((*I)->getIdentifierNamespace() & IDNS) {
6241 PrevDecl = *I;
Douglas Gregor010157f2011-05-06 23:28:47 +00006242 break;
6243 }
6244 }
6245
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006246 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
6247
6248 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00006249 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00006250 if (IsInline != PrevNS->isInline())
6251 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
6252 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00006253 } else if (PrevDecl) {
6254 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006255 Diag(Loc, diag::err_redefinition_different_kind)
6256 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00006257 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00006258 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00006259 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006260 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00006261 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00006262 // This is the first "real" definition of the namespace "std", so update
6263 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006264 PrevNS = getStdNamespace();
6265 IsStd = true;
6266 AddToKnown = !IsInline;
6267 } else {
6268 // We've seen this namespace for the first time.
6269 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00006270 }
Douglas Gregor44b43212008-12-11 16:49:14 +00006271 } else {
John McCall9aeed322009-10-01 00:25:31 +00006272 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006273
6274 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00006275 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00006276 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006277 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00006278 } else {
6279 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006280 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00006281 }
6282
Richard Smithd1a55a62012-10-04 22:13:39 +00006283 if (PrevNS && IsInline != PrevNS->isInline())
6284 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
6285 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006286 }
6287
6288 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
6289 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00006290 if (IsInvalid)
6291 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006292
6293 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00006294
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006295 // FIXME: Should we be merging attributes?
6296 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006297 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006298
6299 if (IsStd)
6300 StdNamespace = Namespc;
6301 if (AddToKnown)
6302 KnownNamespaces[Namespc] = false;
6303
6304 if (II) {
6305 PushOnScopeChains(Namespc, DeclRegionScope);
6306 } else {
6307 // Link the anonymous namespace into its parent.
6308 DeclContext *Parent = CurContext->getRedeclContext();
6309 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6310 TU->setAnonymousNamespace(Namespc);
6311 } else {
6312 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00006313 }
John McCall9aeed322009-10-01 00:25:31 +00006314
Douglas Gregora4181472010-03-24 00:46:35 +00006315 CurContext->addDecl(Namespc);
6316
John McCall9aeed322009-10-01 00:25:31 +00006317 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
6318 // behaves as if it were replaced by
6319 // namespace unique { /* empty body */ }
6320 // using namespace unique;
6321 // namespace unique { namespace-body }
6322 // where all occurrences of 'unique' in a translation unit are
6323 // replaced by the same identifier and this identifier differs
6324 // from all other identifiers in the entire program.
6325
6326 // We just create the namespace with an empty name and then add an
6327 // implicit using declaration, just like the standard suggests.
6328 //
6329 // CodeGen enforces the "universally unique" aspect by giving all
6330 // declarations semantically contained within an anonymous
6331 // namespace internal linkage.
6332
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006333 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00006334 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006335 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00006336 /* 'using' */ LBrace,
6337 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00006338 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00006339 /* identifier */ SourceLocation(),
6340 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006341 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00006342 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006343 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00006344 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006345 }
6346
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00006347 ActOnDocumentableDecl(Namespc);
6348
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006349 // Although we could have an invalid decl (i.e. the namespace name is a
6350 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00006351 // FIXME: We should be able to push Namespc here, so that the each DeclContext
6352 // for the namespace has the declarations that showed up in that particular
6353 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00006354 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00006355 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006356}
6357
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006358/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
6359/// is a namespace alias, returns the namespace it points to.
6360static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
6361 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
6362 return AD->getNamespace();
6363 return dyn_cast_or_null<NamespaceDecl>(D);
6364}
6365
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006366/// ActOnFinishNamespaceDef - This callback is called after a namespace is
6367/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00006368void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006369 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
6370 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006371 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006372 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00006373 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006374 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006375}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006376
John McCall384aff82010-08-25 07:42:41 +00006377CXXRecordDecl *Sema::getStdBadAlloc() const {
6378 return cast_or_null<CXXRecordDecl>(
6379 StdBadAlloc.get(Context.getExternalSource()));
6380}
6381
6382NamespaceDecl *Sema::getStdNamespace() const {
6383 return cast_or_null<NamespaceDecl>(
6384 StdNamespace.get(Context.getExternalSource()));
6385}
6386
Douglas Gregor66992202010-06-29 17:53:46 +00006387/// \brief Retrieve the special "std" namespace, which may require us to
6388/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006389NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00006390 if (!StdNamespace) {
6391 // The "std" namespace has not yet been defined, so build one implicitly.
6392 StdNamespace = NamespaceDecl::Create(Context,
6393 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006394 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006395 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006396 &PP.getIdentifierTable().get("std"),
6397 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006398 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00006399 }
6400
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006401 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00006402}
6403
Sebastian Redl395e04d2012-01-17 22:49:33 +00006404bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006405 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00006406 "Looking for std::initializer_list outside of C++.");
6407
6408 // We're looking for implicit instantiations of
6409 // template <typename E> class std::initializer_list.
6410
6411 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
6412 return false;
6413
Sebastian Redl84760e32012-01-17 22:49:58 +00006414 ClassTemplateDecl *Template = 0;
6415 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006416
Sebastian Redl84760e32012-01-17 22:49:58 +00006417 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00006418
Sebastian Redl84760e32012-01-17 22:49:58 +00006419 ClassTemplateSpecializationDecl *Specialization =
6420 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
6421 if (!Specialization)
6422 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006423
Sebastian Redl84760e32012-01-17 22:49:58 +00006424 Template = Specialization->getSpecializedTemplate();
6425 Arguments = Specialization->getTemplateArgs().data();
6426 } else if (const TemplateSpecializationType *TST =
6427 Ty->getAs<TemplateSpecializationType>()) {
6428 Template = dyn_cast_or_null<ClassTemplateDecl>(
6429 TST->getTemplateName().getAsTemplateDecl());
6430 Arguments = TST->getArgs();
6431 }
6432 if (!Template)
6433 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006434
6435 if (!StdInitializerList) {
6436 // Haven't recognized std::initializer_list yet, maybe this is it.
6437 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
6438 if (TemplateClass->getIdentifier() !=
6439 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006440 !getStdNamespace()->InEnclosingNamespaceSetOf(
6441 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00006442 return false;
6443 // This is a template called std::initializer_list, but is it the right
6444 // template?
6445 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006446 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00006447 return false;
6448 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
6449 return false;
6450
6451 // It's the right template.
6452 StdInitializerList = Template;
6453 }
6454
6455 if (Template != StdInitializerList)
6456 return false;
6457
6458 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00006459 if (Element)
6460 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00006461 return true;
6462}
6463
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006464static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
6465 NamespaceDecl *Std = S.getStdNamespace();
6466 if (!Std) {
6467 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6468 return 0;
6469 }
6470
6471 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
6472 Loc, Sema::LookupOrdinaryName);
6473 if (!S.LookupQualifiedName(Result, Std)) {
6474 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6475 return 0;
6476 }
6477 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
6478 if (!Template) {
6479 Result.suppressDiagnostics();
6480 // We found something weird. Complain about the first thing we found.
6481 NamedDecl *Found = *Result.begin();
6482 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
6483 return 0;
6484 }
6485
6486 // We found some template called std::initializer_list. Now verify that it's
6487 // correct.
6488 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006489 if (Params->getMinRequiredArguments() != 1 ||
6490 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006491 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
6492 return 0;
6493 }
6494
6495 return Template;
6496}
6497
6498QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
6499 if (!StdInitializerList) {
6500 StdInitializerList = LookupStdInitializerList(*this, Loc);
6501 if (!StdInitializerList)
6502 return QualType();
6503 }
6504
6505 TemplateArgumentListInfo Args(Loc, Loc);
6506 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
6507 Context.getTrivialTypeSourceInfo(Element,
6508 Loc)));
6509 return Context.getCanonicalType(
6510 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
6511}
6512
Sebastian Redl98d36062012-01-17 22:50:14 +00006513bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
6514 // C++ [dcl.init.list]p2:
6515 // A constructor is an initializer-list constructor if its first parameter
6516 // is of type std::initializer_list<E> or reference to possibly cv-qualified
6517 // std::initializer_list<E> for some type E, and either there are no other
6518 // parameters or else all other parameters have default arguments.
6519 if (Ctor->getNumParams() < 1 ||
6520 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
6521 return false;
6522
6523 QualType ArgType = Ctor->getParamDecl(0)->getType();
6524 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
6525 ArgType = RT->getPointeeType().getUnqualifiedType();
6526
6527 return isStdInitializerList(ArgType, 0);
6528}
6529
Douglas Gregor9172aa62011-03-26 22:25:30 +00006530/// \brief Determine whether a using statement is in a context where it will be
6531/// apply in all contexts.
6532static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
6533 switch (CurContext->getDeclKind()) {
6534 case Decl::TranslationUnit:
6535 return true;
6536 case Decl::LinkageSpec:
6537 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
6538 default:
6539 return false;
6540 }
6541}
6542
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006543namespace {
6544
6545// Callback to only accept typo corrections that are namespaces.
6546class NamespaceValidatorCCC : public CorrectionCandidateCallback {
6547 public:
6548 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
6549 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
6550 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
6551 }
6552 return false;
6553 }
6554};
6555
6556}
6557
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006558static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
6559 CXXScopeSpec &SS,
6560 SourceLocation IdentLoc,
6561 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006562 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006563 R.clear();
6564 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006565 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00006566 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006567 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
6568 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006569 if (DeclContext *DC = S.computeDeclContext(SS, false))
6570 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
6571 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00006572 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
6573 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006574 else
6575 S.Diag(IdentLoc, diag::err_using_directive_suggest)
6576 << Ident << CorrectedQuotedStr
6577 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006578
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006579 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
6580 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006581
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006582 R.addDecl(Corrected.getCorrectionDecl());
6583 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006584 }
6585 return false;
6586}
6587
John McCalld226f652010-08-21 09:40:31 +00006588Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006589 SourceLocation UsingLoc,
6590 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006591 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006592 SourceLocation IdentLoc,
6593 IdentifierInfo *NamespcName,
6594 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00006595 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
6596 assert(NamespcName && "Invalid NamespcName.");
6597 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00006598
6599 // This can only happen along a recovery path.
6600 while (S->getFlags() & Scope::TemplateParamScope)
6601 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006602 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00006603
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006604 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00006605 NestedNameSpecifier *Qualifier = 0;
6606 if (SS.isSet())
6607 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6608
Douglas Gregoreb11cd02009-01-14 22:20:51 +00006609 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006610 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
6611 LookupParsedName(R, S, &SS);
6612 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006613 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006614
Douglas Gregor66992202010-06-29 17:53:46 +00006615 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006616 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00006617 // Allow "using namespace std;" or "using namespace ::std;" even if
6618 // "std" hasn't been defined yet, for GCC compatibility.
6619 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
6620 NamespcName->isStr("std")) {
6621 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006622 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00006623 R.resolveKind();
6624 }
6625 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006626 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00006627 }
6628
John McCallf36e02d2009-10-09 21:13:30 +00006629 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006630 NamedDecl *Named = R.getFoundDecl();
6631 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
6632 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006633 // C++ [namespace.udir]p1:
6634 // A using-directive specifies that the names in the nominated
6635 // namespace can be used in the scope in which the
6636 // using-directive appears after the using-directive. During
6637 // unqualified name lookup (3.4.1), the names appear as if they
6638 // were declared in the nearest enclosing namespace which
6639 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00006640 // namespace. [Note: in this context, "contains" means "contains
6641 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006642
6643 // Find enclosing context containing both using-directive and
6644 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006645 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006646 DeclContext *CommonAncestor = cast<DeclContext>(NS);
6647 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
6648 CommonAncestor = CommonAncestor->getParent();
6649
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006650 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00006651 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006652 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006653
Douglas Gregor9172aa62011-03-26 22:25:30 +00006654 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00006655 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006656 Diag(IdentLoc, diag::warn_using_directive_in_header);
6657 }
6658
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006659 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006660 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00006661 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00006662 }
6663
Richard Smith6b3d3e52013-02-20 19:22:51 +00006664 if (UDir)
6665 ProcessDeclAttributeList(S, UDir, AttrList);
6666
John McCalld226f652010-08-21 09:40:31 +00006667 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006668}
6669
6670void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006671 // If the scope has an associated entity and the using directive is at
6672 // namespace or translation unit scope, add the UsingDirectiveDecl into
6673 // its lookup structure so qualified name lookup can find it.
6674 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6675 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006676 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006677 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006678 // Otherwise, it is at block sope. The using-directives will affect lookup
6679 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006680 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006681}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006682
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006683
John McCalld226f652010-08-21 09:40:31 +00006684Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006685 AccessSpecifier AS,
6686 bool HasUsingKeyword,
6687 SourceLocation UsingLoc,
6688 CXXScopeSpec &SS,
6689 UnqualifiedId &Name,
6690 AttributeList *AttrList,
6691 bool IsTypeName,
6692 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006693 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006694
Douglas Gregor12c118a2009-11-04 16:30:06 +00006695 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006696 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006697 case UnqualifiedId::IK_Identifier:
6698 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006699 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006700 case UnqualifiedId::IK_ConversionFunctionId:
6701 break;
6702
6703 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006704 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006705 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006706 Diag(Name.getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006707 getLangOpts().CPlusPlus11 ?
Richard Smith07b0fdc2013-03-18 21:12:30 +00006708 diag::warn_cxx98_compat_using_decl_constructor :
Richard Smithebaf0e62011-10-18 20:49:44 +00006709 diag::err_using_decl_constructor)
6710 << SS.getRange();
6711
Richard Smith80ad52f2013-01-02 11:42:31 +00006712 if (getLangOpts().CPlusPlus11) break;
John McCall604e7f12009-12-08 07:46:18 +00006713
John McCalld226f652010-08-21 09:40:31 +00006714 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006715
6716 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006717 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006718 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006719 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006720
6721 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006722 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006723 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006724 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006725 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006726
6727 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6728 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006729 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006730 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006731
Richard Smith07b0fdc2013-03-18 21:12:30 +00006732 // Warn about access declarations.
John McCall60fa3cf2009-12-11 02:10:03 +00006733 // TODO: store that the declaration was written without 'using' and
6734 // talk about access decls instead of using decls in the
6735 // diagnostics.
6736 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006737 UsingLoc = Name.getLocStart();
Richard Smith1b2209f2013-06-13 02:12:17 +00006738
6739 Diag(UsingLoc,
6740 getLangOpts().CPlusPlus11 ? diag::err_access_decl
6741 : diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006742 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006743 }
6744
Douglas Gregor56c04582010-12-16 00:46:58 +00006745 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6746 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6747 return 0;
6748
John McCall9488ea12009-11-17 05:59:44 +00006749 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006750 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006751 /* IsInstantiation */ false,
6752 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006753 if (UD)
6754 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006755
John McCalld226f652010-08-21 09:40:31 +00006756 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006757}
6758
Douglas Gregor09acc982010-07-07 23:08:52 +00006759/// \brief Determine whether a using declaration considers the given
6760/// declarations as "equivalent", e.g., if they are redeclarations of
6761/// the same entity or are both typedefs of the same type.
6762static bool
6763IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6764 bool &SuppressRedeclaration) {
6765 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6766 SuppressRedeclaration = false;
6767 return true;
6768 }
6769
Richard Smith162e1c12011-04-15 14:24:37 +00006770 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6771 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006772 SuppressRedeclaration = true;
6773 return Context.hasSameType(TD1->getUnderlyingType(),
6774 TD2->getUnderlyingType());
6775 }
6776
6777 return false;
6778}
6779
6780
John McCall9f54ad42009-12-10 09:41:52 +00006781/// Determines whether to create a using shadow decl for a particular
6782/// decl, given the set of decls existing prior to this using lookup.
6783bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6784 const LookupResult &Previous) {
6785 // Diagnose finding a decl which is not from a base class of the
6786 // current class. We do this now because there are cases where this
6787 // function will silently decide not to build a shadow decl, which
6788 // will pre-empt further diagnostics.
6789 //
6790 // We don't need to do this in C++0x because we do the check once on
6791 // the qualifier.
6792 //
6793 // FIXME: diagnose the following if we care enough:
6794 // struct A { int foo; };
6795 // struct B : A { using A::foo; };
6796 // template <class T> struct C : A {};
6797 // template <class T> struct D : C<T> { using B::foo; } // <---
6798 // This is invalid (during instantiation) in C++03 because B::foo
6799 // resolves to the using decl in B, which is not a base class of D<T>.
6800 // We can't diagnose it immediately because C<T> is an unknown
6801 // specialization. The UsingShadowDecl in D<T> then points directly
6802 // to A::foo, which will look well-formed when we instantiate.
6803 // The right solution is to not collapse the shadow-decl chain.
Richard Smith80ad52f2013-01-02 11:42:31 +00006804 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006805 DeclContext *OrigDC = Orig->getDeclContext();
6806
6807 // Handle enums and anonymous structs.
6808 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6809 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6810 while (OrigRec->isAnonymousStructOrUnion())
6811 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6812
6813 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6814 if (OrigDC == CurContext) {
6815 Diag(Using->getLocation(),
6816 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006817 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006818 Diag(Orig->getLocation(), diag::note_using_decl_target);
6819 return true;
6820 }
6821
Douglas Gregordc355712011-02-25 00:36:19 +00006822 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006823 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006824 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006825 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006826 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006827 Diag(Orig->getLocation(), diag::note_using_decl_target);
6828 return true;
6829 }
6830 }
6831
6832 if (Previous.empty()) return false;
6833
6834 NamedDecl *Target = Orig;
6835 if (isa<UsingShadowDecl>(Target))
6836 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6837
John McCalld7533ec2009-12-11 02:33:26 +00006838 // If the target happens to be one of the previous declarations, we
6839 // don't have a conflict.
6840 //
6841 // FIXME: but we might be increasing its access, in which case we
6842 // should redeclare it.
6843 NamedDecl *NonTag = 0, *Tag = 0;
6844 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6845 I != E; ++I) {
6846 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006847 bool Result;
6848 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6849 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006850
6851 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6852 }
6853
John McCall9f54ad42009-12-10 09:41:52 +00006854 if (Target->isFunctionOrFunctionTemplate()) {
6855 FunctionDecl *FD;
6856 if (isa<FunctionTemplateDecl>(Target))
6857 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6858 else
6859 FD = cast<FunctionDecl>(Target);
6860
6861 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006862 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006863 case Ovl_Overload:
6864 return false;
6865
6866 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006867 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006868 break;
6869
6870 // We found a decl with the exact signature.
6871 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006872 // If we're in a record, we want to hide the target, so we
6873 // return true (without a diagnostic) to tell the caller not to
6874 // build a shadow decl.
6875 if (CurContext->isRecord())
6876 return true;
6877
6878 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006879 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006880 break;
6881 }
6882
6883 Diag(Target->getLocation(), diag::note_using_decl_target);
6884 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6885 return true;
6886 }
6887
6888 // Target is not a function.
6889
John McCall9f54ad42009-12-10 09:41:52 +00006890 if (isa<TagDecl>(Target)) {
6891 // No conflict between a tag and a non-tag.
6892 if (!Tag) return false;
6893
John McCall41ce66f2009-12-10 19:51:03 +00006894 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006895 Diag(Target->getLocation(), diag::note_using_decl_target);
6896 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6897 return true;
6898 }
6899
6900 // No conflict between a tag and a non-tag.
6901 if (!NonTag) return false;
6902
John McCall41ce66f2009-12-10 19:51:03 +00006903 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006904 Diag(Target->getLocation(), diag::note_using_decl_target);
6905 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6906 return true;
6907}
6908
John McCall9488ea12009-11-17 05:59:44 +00006909/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006910UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006911 UsingDecl *UD,
6912 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006913
6914 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006915 NamedDecl *Target = Orig;
6916 if (isa<UsingShadowDecl>(Target)) {
6917 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6918 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006919 }
6920
6921 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006922 = UsingShadowDecl::Create(Context, CurContext,
6923 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006924 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006925
6926 Shadow->setAccess(UD->getAccess());
6927 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6928 Shadow->setInvalidDecl();
6929
John McCall9488ea12009-11-17 05:59:44 +00006930 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006931 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006932 else
John McCall604e7f12009-12-08 07:46:18 +00006933 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006934
John McCall604e7f12009-12-08 07:46:18 +00006935
John McCall9f54ad42009-12-10 09:41:52 +00006936 return Shadow;
6937}
John McCall604e7f12009-12-08 07:46:18 +00006938
John McCall9f54ad42009-12-10 09:41:52 +00006939/// Hides a using shadow declaration. This is required by the current
6940/// using-decl implementation when a resolvable using declaration in a
6941/// class is followed by a declaration which would hide or override
6942/// one or more of the using decl's targets; for example:
6943///
6944/// struct Base { void foo(int); };
6945/// struct Derived : Base {
6946/// using Base::foo;
6947/// void foo(int);
6948/// };
6949///
6950/// The governing language is C++03 [namespace.udecl]p12:
6951///
6952/// When a using-declaration brings names from a base class into a
6953/// derived class scope, member functions in the derived class
6954/// override and/or hide member functions with the same name and
6955/// parameter types in a base class (rather than conflicting).
6956///
6957/// There are two ways to implement this:
6958/// (1) optimistically create shadow decls when they're not hidden
6959/// by existing declarations, or
6960/// (2) don't create any shadow decls (or at least don't make them
6961/// visible) until we've fully parsed/instantiated the class.
6962/// The problem with (1) is that we might have to retroactively remove
6963/// a shadow decl, which requires several O(n) operations because the
6964/// decl structures are (very reasonably) not designed for removal.
6965/// (2) avoids this but is very fiddly and phase-dependent.
6966void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006967 if (Shadow->getDeclName().getNameKind() ==
6968 DeclarationName::CXXConversionFunctionName)
6969 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6970
John McCall9f54ad42009-12-10 09:41:52 +00006971 // Remove it from the DeclContext...
6972 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006973
John McCall9f54ad42009-12-10 09:41:52 +00006974 // ...and the scope, if applicable...
6975 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006976 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006977 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006978 }
6979
John McCall9f54ad42009-12-10 09:41:52 +00006980 // ...and the using decl.
6981 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6982
6983 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006984 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006985}
6986
John McCall7ba107a2009-11-18 02:36:19 +00006987/// Builds a using declaration.
6988///
6989/// \param IsInstantiation - Whether this call arises from an
6990/// instantiation of an unresolved using declaration. We treat
6991/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006992NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6993 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006994 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006995 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006996 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006997 bool IsInstantiation,
6998 bool IsTypeName,
6999 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00007000 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007001 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00007002 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00007003
Anders Carlsson550b14b2009-08-28 05:49:21 +00007004 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00007005
Anders Carlssoncf9f9212009-08-28 03:16:11 +00007006 if (SS.isEmpty()) {
7007 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00007008 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00007009 }
Mike Stump1eb44332009-09-09 15:08:12 +00007010
John McCall9f54ad42009-12-10 09:41:52 +00007011 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007012 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00007013 ForRedeclaration);
7014 Previous.setHideTags(false);
7015 if (S) {
7016 LookupName(Previous, S);
7017
7018 // It is really dumb that we have to do this.
7019 LookupResult::Filter F = Previous.makeFilter();
7020 while (F.hasNext()) {
7021 NamedDecl *D = F.next();
7022 if (!isDeclInScope(D, CurContext, S))
7023 F.erase();
7024 }
7025 F.done();
7026 } else {
7027 assert(IsInstantiation && "no scope in non-instantiation");
7028 assert(CurContext->isRecord() && "scope not record in instantiation");
7029 LookupQualifiedName(Previous, CurContext);
7030 }
7031
John McCall9f54ad42009-12-10 09:41:52 +00007032 // Check for invalid redeclarations.
7033 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
7034 return 0;
7035
7036 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00007037 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
7038 return 0;
7039
John McCallaf8e6ed2009-11-12 03:15:40 +00007040 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00007041 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00007042 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00007043 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00007044 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00007045 // FIXME: not all declaration name kinds are legal here
7046 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
7047 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00007048 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007049 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00007050 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00007051 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
7052 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00007053 }
John McCalled976492009-12-04 22:46:56 +00007054 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00007055 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
7056 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00007057 }
John McCalled976492009-12-04 22:46:56 +00007058 D->setAccess(AS);
7059 CurContext->addDecl(D);
7060
7061 if (!LookupContext) return D;
7062 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00007063
John McCall77bb1aa2010-05-01 00:40:08 +00007064 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00007065 UD->setInvalidDecl();
7066 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00007067 }
7068
Richard Smithc5a89a12012-04-02 01:30:27 +00007069 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007070 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00007071 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00007072 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007073 return UD;
7074 }
7075
7076 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00007077
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007078 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00007079
John McCall604e7f12009-12-08 07:46:18 +00007080 // Unlike most lookups, we don't always want to hide tag
7081 // declarations: tag names are visible through the using declaration
7082 // even if hidden by ordinary names, *except* in a dependent context
7083 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00007084 if (!IsInstantiation)
7085 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00007086
John McCallb9abd8722012-04-07 03:04:20 +00007087 // For the purposes of this lookup, we have a base object type
7088 // equal to that of the current context.
7089 if (CurContext->isRecord()) {
7090 R.setBaseObjectType(
7091 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
7092 }
7093
John McCalla24dc2e2009-11-17 02:14:36 +00007094 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00007095
John McCallf36e02d2009-10-09 21:13:30 +00007096 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00007097 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00007098 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00007099 UD->setInvalidDecl();
7100 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00007101 }
7102
John McCalled976492009-12-04 22:46:56 +00007103 if (R.isAmbiguous()) {
7104 UD->setInvalidDecl();
7105 return UD;
7106 }
Mike Stump1eb44332009-09-09 15:08:12 +00007107
John McCall7ba107a2009-11-18 02:36:19 +00007108 if (IsTypeName) {
7109 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00007110 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00007111 Diag(IdentLoc, diag::err_using_typename_non_type);
7112 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
7113 Diag((*I)->getUnderlyingDecl()->getLocation(),
7114 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00007115 UD->setInvalidDecl();
7116 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00007117 }
7118 } else {
7119 // If we asked for a non-typename and we got a type, error out,
7120 // but only if this is an instantiation of an unresolved using
7121 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00007122 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00007123 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
7124 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00007125 UD->setInvalidDecl();
7126 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00007127 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00007128 }
7129
Anders Carlsson73b39cf2009-08-28 03:35:18 +00007130 // C++0x N2914 [namespace.udecl]p6:
7131 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00007132 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00007133 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
7134 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00007135 UD->setInvalidDecl();
7136 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00007137 }
Mike Stump1eb44332009-09-09 15:08:12 +00007138
John McCall9f54ad42009-12-10 09:41:52 +00007139 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
7140 if (!CheckUsingShadowDecl(UD, *I, Previous))
7141 BuildUsingShadowDecl(S, UD, *I);
7142 }
John McCall9488ea12009-11-17 05:59:44 +00007143
7144 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00007145}
7146
Sebastian Redlf677ea32011-02-05 19:23:19 +00007147/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00007148bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
7149 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00007150
Douglas Gregordc355712011-02-25 00:36:19 +00007151 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007152 assert(SourceType &&
7153 "Using decl naming constructor doesn't have type in scope spec.");
7154 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
7155
7156 // Check whether the named type is a direct base class.
7157 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
7158 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
7159 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
7160 BaseIt != BaseE; ++BaseIt) {
7161 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
7162 if (CanonicalSourceType == BaseType)
7163 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00007164 if (BaseIt->getType()->isDependentType())
7165 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007166 }
7167
7168 if (BaseIt == BaseE) {
7169 // Did not find SourceType in the bases.
7170 Diag(UD->getUsingLocation(),
7171 diag::err_using_decl_constructor_not_in_direct_base)
7172 << UD->getNameInfo().getSourceRange()
7173 << QualType(SourceType, 0) << TargetClass;
7174 return true;
7175 }
7176
Richard Smithc5a89a12012-04-02 01:30:27 +00007177 if (!CurContext->isDependentContext())
7178 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007179
7180 return false;
7181}
7182
John McCall9f54ad42009-12-10 09:41:52 +00007183/// Checks that the given using declaration is not an invalid
7184/// redeclaration. Note that this is checking only for the using decl
7185/// itself, not for any ill-formedness among the UsingShadowDecls.
7186bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
7187 bool isTypeName,
7188 const CXXScopeSpec &SS,
7189 SourceLocation NameLoc,
7190 const LookupResult &Prev) {
7191 // C++03 [namespace.udecl]p8:
7192 // C++0x [namespace.udecl]p10:
7193 // A using-declaration is a declaration and can therefore be used
7194 // repeatedly where (and only where) multiple declarations are
7195 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00007196 //
John McCall8a726212010-11-29 18:01:58 +00007197 // That's in non-member contexts.
7198 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00007199 return false;
7200
7201 NestedNameSpecifier *Qual
7202 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
7203
7204 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
7205 NamedDecl *D = *I;
7206
7207 bool DTypename;
7208 NestedNameSpecifier *DQual;
7209 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
7210 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00007211 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00007212 } else if (UnresolvedUsingValueDecl *UD
7213 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
7214 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00007215 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00007216 } else if (UnresolvedUsingTypenameDecl *UD
7217 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
7218 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00007219 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00007220 } else continue;
7221
7222 // using decls differ if one says 'typename' and the other doesn't.
7223 // FIXME: non-dependent using decls?
7224 if (isTypeName != DTypename) continue;
7225
7226 // using decls differ if they name different scopes (but note that
7227 // template instantiation can cause this check to trigger when it
7228 // didn't before instantiation).
7229 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
7230 Context.getCanonicalNestedNameSpecifier(DQual))
7231 continue;
7232
7233 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00007234 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00007235 return true;
7236 }
7237
7238 return false;
7239}
7240
John McCall604e7f12009-12-08 07:46:18 +00007241
John McCalled976492009-12-04 22:46:56 +00007242/// Checks that the given nested-name qualifier used in a using decl
7243/// in the current context is appropriately related to the current
7244/// scope. If an error is found, diagnoses it and returns true.
7245bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
7246 const CXXScopeSpec &SS,
7247 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00007248 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00007249
John McCall604e7f12009-12-08 07:46:18 +00007250 if (!CurContext->isRecord()) {
7251 // C++03 [namespace.udecl]p3:
7252 // C++0x [namespace.udecl]p8:
7253 // A using-declaration for a class member shall be a member-declaration.
7254
7255 // If we weren't able to compute a valid scope, it must be a
7256 // dependent class scope.
7257 if (!NamedContext || NamedContext->isRecord()) {
7258 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
7259 << SS.getRange();
7260 return true;
7261 }
7262
7263 // Otherwise, everything is known to be fine.
7264 return false;
7265 }
7266
7267 // The current scope is a record.
7268
7269 // If the named context is dependent, we can't decide much.
7270 if (!NamedContext) {
7271 // FIXME: in C++0x, we can diagnose if we can prove that the
7272 // nested-name-specifier does not refer to a base class, which is
7273 // still possible in some cases.
7274
7275 // Otherwise we have to conservatively report that things might be
7276 // okay.
7277 return false;
7278 }
7279
7280 if (!NamedContext->isRecord()) {
7281 // Ideally this would point at the last name in the specifier,
7282 // but we don't have that level of source info.
7283 Diag(SS.getRange().getBegin(),
7284 diag::err_using_decl_nested_name_specifier_is_not_class)
7285 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
7286 return true;
7287 }
7288
Douglas Gregor6fb07292010-12-21 07:41:49 +00007289 if (!NamedContext->isDependentContext() &&
7290 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
7291 return true;
7292
Richard Smith80ad52f2013-01-02 11:42:31 +00007293 if (getLangOpts().CPlusPlus11) {
John McCall604e7f12009-12-08 07:46:18 +00007294 // C++0x [namespace.udecl]p3:
7295 // In a using-declaration used as a member-declaration, the
7296 // nested-name-specifier shall name a base class of the class
7297 // being defined.
7298
7299 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
7300 cast<CXXRecordDecl>(NamedContext))) {
7301 if (CurContext == NamedContext) {
7302 Diag(NameLoc,
7303 diag::err_using_decl_nested_name_specifier_is_current_class)
7304 << SS.getRange();
7305 return true;
7306 }
7307
7308 Diag(SS.getRange().getBegin(),
7309 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7310 << (NestedNameSpecifier*) SS.getScopeRep()
7311 << cast<CXXRecordDecl>(CurContext)
7312 << SS.getRange();
7313 return true;
7314 }
7315
7316 return false;
7317 }
7318
7319 // C++03 [namespace.udecl]p4:
7320 // A using-declaration used as a member-declaration shall refer
7321 // to a member of a base class of the class being defined [etc.].
7322
7323 // Salient point: SS doesn't have to name a base class as long as
7324 // lookup only finds members from base classes. Therefore we can
7325 // diagnose here only if we can prove that that can't happen,
7326 // i.e. if the class hierarchies provably don't intersect.
7327
7328 // TODO: it would be nice if "definitely valid" results were cached
7329 // in the UsingDecl and UsingShadowDecl so that these checks didn't
7330 // need to be repeated.
7331
7332 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00007333 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00007334
7335 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
7336 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7337 Data->Bases.insert(Base);
7338 return true;
7339 }
7340
7341 bool hasDependentBases(const CXXRecordDecl *Class) {
7342 return !Class->forallBases(collect, this);
7343 }
7344
7345 /// Returns true if the base is dependent or is one of the
7346 /// accumulated base classes.
7347 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
7348 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7349 return !Data->Bases.count(Base);
7350 }
7351
7352 bool mightShareBases(const CXXRecordDecl *Class) {
7353 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
7354 }
7355 };
7356
7357 UserData Data;
7358
7359 // Returns false if we find a dependent base.
7360 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
7361 return false;
7362
7363 // Returns false if the class has a dependent base or if it or one
7364 // of its bases is present in the base set of the current context.
7365 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
7366 return false;
7367
7368 Diag(SS.getRange().getBegin(),
7369 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7370 << (NestedNameSpecifier*) SS.getScopeRep()
7371 << cast<CXXRecordDecl>(CurContext)
7372 << SS.getRange();
7373
7374 return true;
John McCalled976492009-12-04 22:46:56 +00007375}
7376
Richard Smith162e1c12011-04-15 14:24:37 +00007377Decl *Sema::ActOnAliasDeclaration(Scope *S,
7378 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007379 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00007380 SourceLocation UsingLoc,
7381 UnqualifiedId &Name,
Richard Smith6b3d3e52013-02-20 19:22:51 +00007382 AttributeList *AttrList,
Richard Smith162e1c12011-04-15 14:24:37 +00007383 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00007384 // Skip up to the relevant declaration scope.
7385 while (S->getFlags() & Scope::TemplateParamScope)
7386 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00007387 assert((S->getFlags() & Scope::DeclScope) &&
7388 "got alias-declaration outside of declaration scope");
7389
7390 if (Type.isInvalid())
7391 return 0;
7392
7393 bool Invalid = false;
7394 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
7395 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00007396 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00007397
7398 if (DiagnoseClassNameShadow(CurContext, NameInfo))
7399 return 0;
7400
7401 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007402 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00007403 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007404 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
7405 TInfo->getTypeLoc().getBeginLoc());
7406 }
Richard Smith162e1c12011-04-15 14:24:37 +00007407
7408 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
7409 LookupName(Previous, S);
7410
7411 // Warn about shadowing the name of a template parameter.
7412 if (Previous.isSingleResult() &&
7413 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00007414 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00007415 Previous.clear();
7416 }
7417
7418 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
7419 "name in alias declaration must be an identifier");
7420 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
7421 Name.StartLocation,
7422 Name.Identifier, TInfo);
7423
7424 NewTD->setAccess(AS);
7425
7426 if (Invalid)
7427 NewTD->setInvalidDecl();
7428
Richard Smith6b3d3e52013-02-20 19:22:51 +00007429 ProcessDeclAttributeList(S, NewTD, AttrList);
7430
Richard Smith3e4c6c42011-05-05 21:57:07 +00007431 CheckTypedefForVariablyModifiedType(S, NewTD);
7432 Invalid |= NewTD->isInvalidDecl();
7433
Richard Smith162e1c12011-04-15 14:24:37 +00007434 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007435
7436 NamedDecl *NewND;
7437 if (TemplateParamLists.size()) {
7438 TypeAliasTemplateDecl *OldDecl = 0;
7439 TemplateParameterList *OldTemplateParams = 0;
7440
7441 if (TemplateParamLists.size() != 1) {
7442 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007443 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
7444 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00007445 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007446 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00007447
7448 // Only consider previous declarations in the same scope.
7449 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
7450 /*ExplicitInstantiationOrSpecialization*/false);
7451 if (!Previous.empty()) {
7452 Redeclaration = true;
7453
7454 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
7455 if (!OldDecl && !Invalid) {
7456 Diag(UsingLoc, diag::err_redefinition_different_kind)
7457 << Name.Identifier;
7458
7459 NamedDecl *OldD = Previous.getRepresentativeDecl();
7460 if (OldD->getLocation().isValid())
7461 Diag(OldD->getLocation(), diag::note_previous_definition);
7462
7463 Invalid = true;
7464 }
7465
7466 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
7467 if (TemplateParameterListsAreEqual(TemplateParams,
7468 OldDecl->getTemplateParameters(),
7469 /*Complain=*/true,
7470 TPL_TemplateMatch))
7471 OldTemplateParams = OldDecl->getTemplateParameters();
7472 else
7473 Invalid = true;
7474
7475 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
7476 if (!Invalid &&
7477 !Context.hasSameType(OldTD->getUnderlyingType(),
7478 NewTD->getUnderlyingType())) {
7479 // FIXME: The C++0x standard does not clearly say this is ill-formed,
7480 // but we can't reasonably accept it.
7481 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
7482 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
7483 if (OldTD->getLocation().isValid())
7484 Diag(OldTD->getLocation(), diag::note_previous_definition);
7485 Invalid = true;
7486 }
7487 }
7488 }
7489
7490 // Merge any previous default template arguments into our parameters,
7491 // and check the parameter list.
7492 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
7493 TPC_TypeAliasTemplate))
7494 return 0;
7495
7496 TypeAliasTemplateDecl *NewDecl =
7497 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
7498 Name.Identifier, TemplateParams,
7499 NewTD);
7500
7501 NewDecl->setAccess(AS);
7502
7503 if (Invalid)
7504 NewDecl->setInvalidDecl();
7505 else if (OldDecl)
7506 NewDecl->setPreviousDeclaration(OldDecl);
7507
7508 NewND = NewDecl;
7509 } else {
7510 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
7511 NewND = NewTD;
7512 }
Richard Smith162e1c12011-04-15 14:24:37 +00007513
7514 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00007515 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00007516
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00007517 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00007518 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00007519}
7520
John McCalld226f652010-08-21 09:40:31 +00007521Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007522 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00007523 SourceLocation AliasLoc,
7524 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00007525 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007526 SourceLocation IdentLoc,
7527 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00007528
Anders Carlsson81c85c42009-03-28 23:53:49 +00007529 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00007530 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
7531 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00007532
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007533 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00007534 NamedDecl *PrevDecl
7535 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
7536 ForRedeclaration);
7537 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
7538 PrevDecl = 0;
7539
7540 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00007541 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00007542 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00007543 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00007544 // FIXME: At some point, we'll want to create the (redundant)
7545 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00007546 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00007547 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00007548 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00007549 }
Mike Stump1eb44332009-09-09 15:08:12 +00007550
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007551 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
7552 diag::err_redefinition_different_kind;
7553 Diag(AliasLoc, DiagID) << Alias;
7554 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00007555 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007556 }
7557
John McCalla24dc2e2009-11-17 02:14:36 +00007558 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00007559 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00007560
John McCallf36e02d2009-10-09 21:13:30 +00007561 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007562 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00007563 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00007564 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00007565 }
Anders Carlsson5721c682009-03-28 06:42:02 +00007566 }
Mike Stump1eb44332009-09-09 15:08:12 +00007567
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007568 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00007569 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00007570 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00007571 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00007572
John McCall3dbd3d52010-02-16 06:53:13 +00007573 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00007574 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00007575}
7576
Sean Hunt001cad92011-05-10 00:49:42 +00007577Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007578Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
7579 CXXMethodDecl *MD) {
7580 CXXRecordDecl *ClassDecl = MD->getParent();
7581
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007582 // C++ [except.spec]p14:
7583 // An implicitly declared special member function (Clause 12) shall have an
7584 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00007585 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007586 if (ClassDecl->isInvalidDecl())
7587 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007588
Sebastian Redl60618fa2011-03-12 11:50:43 +00007589 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007590 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7591 BEnd = ClassDecl->bases_end();
7592 B != BEnd; ++B) {
7593 if (B->isVirtual()) // Handled below.
7594 continue;
7595
Douglas Gregor18274032010-07-03 00:47:00 +00007596 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7597 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007598 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7599 // If this is a deleted function, add it anyway. This might be conformant
7600 // with the standard. This might not. I'm not sure. It might not matter.
7601 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007602 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007603 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007604 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007605
7606 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007607 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7608 BEnd = ClassDecl->vbases_end();
7609 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00007610 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7611 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007612 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7613 // If this is a deleted function, add it anyway. This might be conformant
7614 // with the standard. This might not. I'm not sure. It might not matter.
7615 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007616 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007617 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007618 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007619
7620 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007621 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7622 FEnd = ClassDecl->field_end();
7623 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00007624 if (F->hasInClassInitializer()) {
7625 if (Expr *E = F->getInClassInitializer())
7626 ExceptSpec.CalledExpr(E);
7627 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007628 // DR1351:
7629 // If the brace-or-equal-initializer of a non-static data member
7630 // invokes a defaulted default constructor of its class or of an
7631 // enclosing class in a potentially evaluated subexpression, the
7632 // program is ill-formed.
7633 //
7634 // This resolution is unworkable: the exception specification of the
7635 // default constructor can be needed in an unevaluated context, in
7636 // particular, in the operand of a noexcept-expression, and we can be
7637 // unable to compute an exception specification for an enclosed class.
7638 //
7639 // We do not allow an in-class initializer to require the evaluation
7640 // of the exception specification for any in-class initializer whose
7641 // definition is not lexically complete.
7642 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00007643 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00007644 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00007645 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7646 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
7647 // If this is a deleted function, add it anyway. This might be conformant
7648 // with the standard. This might not. I'm not sure. It might not matter.
7649 // In particular, the problem is that this function never gets called. It
7650 // might just be ill-formed because this function attempts to refer to
7651 // a deleted function here.
7652 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007653 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007654 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007655 }
John McCalle23cf432010-12-14 08:05:40 +00007656
Sean Hunt001cad92011-05-10 00:49:42 +00007657 return ExceptSpec;
7658}
7659
Richard Smith07b0fdc2013-03-18 21:12:30 +00007660Sema::ImplicitExceptionSpecification
Richard Smith0b0ca472013-04-10 06:11:48 +00007661Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) {
7662 CXXRecordDecl *ClassDecl = CD->getParent();
7663
7664 // C++ [except.spec]p14:
7665 // An inheriting constructor [...] shall have an exception-specification. [...]
Richard Smith07b0fdc2013-03-18 21:12:30 +00007666 ImplicitExceptionSpecification ExceptSpec(*this);
Richard Smith0b0ca472013-04-10 06:11:48 +00007667 if (ClassDecl->isInvalidDecl())
7668 return ExceptSpec;
7669
7670 // Inherited constructor.
7671 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor();
7672 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent();
7673 // FIXME: Copying or moving the parameters could add extra exceptions to the
7674 // set, as could the default arguments for the inherited constructor. This
7675 // will be addressed when we implement the resolution of core issue 1351.
7676 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD);
7677
7678 // Direct base-class constructors.
7679 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7680 BEnd = ClassDecl->bases_end();
7681 B != BEnd; ++B) {
7682 if (B->isVirtual()) // Handled below.
7683 continue;
7684
7685 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7686 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
7687 if (BaseClassDecl == InheritedDecl)
7688 continue;
7689 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7690 if (Constructor)
7691 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
7692 }
7693 }
7694
7695 // Virtual base-class constructors.
7696 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7697 BEnd = ClassDecl->vbases_end();
7698 B != BEnd; ++B) {
7699 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7700 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
7701 if (BaseClassDecl == InheritedDecl)
7702 continue;
7703 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7704 if (Constructor)
7705 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
7706 }
7707 }
7708
7709 // Field constructors.
7710 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7711 FEnd = ClassDecl->field_end();
7712 F != FEnd; ++F) {
7713 if (F->hasInClassInitializer()) {
7714 if (Expr *E = F->getInClassInitializer())
7715 ExceptSpec.CalledExpr(E);
7716 else if (!F->isInvalidDecl())
7717 Diag(CD->getLocation(),
7718 diag::err_in_class_initializer_references_def_ctor) << CD;
7719 } else if (const RecordType *RecordTy
7720 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
7721 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7722 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
7723 if (Constructor)
7724 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
7725 }
7726 }
7727
Richard Smith07b0fdc2013-03-18 21:12:30 +00007728 return ExceptSpec;
7729}
7730
Richard Smithafb49182012-11-29 01:34:07 +00007731namespace {
7732/// RAII object to register a special member as being currently declared.
7733struct DeclaringSpecialMember {
7734 Sema &S;
7735 Sema::SpecialMemberDecl D;
7736 bool WasAlreadyBeingDeclared;
7737
7738 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
7739 : S(S), D(RD, CSM) {
7740 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
7741 if (WasAlreadyBeingDeclared)
7742 // This almost never happens, but if it does, ensure that our cache
7743 // doesn't contain a stale result.
7744 S.SpecialMemberCache.clear();
7745
7746 // FIXME: Register a note to be produced if we encounter an error while
7747 // declaring the special member.
7748 }
7749 ~DeclaringSpecialMember() {
7750 if (!WasAlreadyBeingDeclared)
7751 S.SpecialMembersBeingDeclared.erase(D);
7752 }
7753
7754 /// \brief Are we already trying to declare this special member?
7755 bool isAlreadyBeingDeclared() const {
7756 return WasAlreadyBeingDeclared;
7757 }
7758};
7759}
7760
Sean Hunt001cad92011-05-10 00:49:42 +00007761CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
7762 CXXRecordDecl *ClassDecl) {
7763 // C++ [class.ctor]p5:
7764 // A default constructor for a class X is a constructor of class X
7765 // that can be called without an argument. If there is no
7766 // user-declared constructor for class X, a default constructor is
7767 // implicitly declared. An implicitly-declared default constructor
7768 // is an inline public member of its class.
Richard Smithd0adeb62012-11-27 21:20:31 +00007769 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00007770 "Should not build implicit default constructor!");
7771
Richard Smithafb49182012-11-29 01:34:07 +00007772 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
7773 if (DSM.isAlreadyBeingDeclared())
7774 return 0;
7775
Richard Smith7756afa2012-06-10 05:43:50 +00007776 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
7777 CXXDefaultConstructor,
7778 false);
7779
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007780 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007781 CanQualType ClassType
7782 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007783 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007784 DeclarationName Name
7785 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007786 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007787 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007788 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007789 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007790 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007791 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007792 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007793 DefaultCon->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00007794
7795 // Build an exception specification pointing back at this constructor.
7796 FunctionProtoType::ExtProtoInfo EPI;
7797 EPI.ExceptionSpecType = EST_Unevaluated;
7798 EPI.ExceptionSpecDecl = DefaultCon;
Dmitri Gribenko55431692013-05-05 00:41:58 +00007799 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00007800
Richard Smithbc2a35d2012-12-08 08:32:28 +00007801 // We don't need to use SpecialMemberIsTrivial here; triviality for default
7802 // constructors is easy to compute.
7803 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
7804
7805 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00007806 SetDeclDeleted(DefaultCon, ClassLoc);
Richard Smithbc2a35d2012-12-08 08:32:28 +00007807
Douglas Gregor18274032010-07-03 00:47:00 +00007808 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007809 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
Richard Smithbc2a35d2012-12-08 08:32:28 +00007810
Douglas Gregor23c94db2010-07-02 17:43:08 +00007811 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007812 PushOnScopeChains(DefaultCon, S, false);
7813 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007814
Douglas Gregor32df23e2010-07-01 22:02:46 +00007815 return DefaultCon;
7816}
7817
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007818void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7819 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007820 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007821 !Constructor->doesThisDeclarationHaveABody() &&
7822 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007823 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007824
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007825 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007826 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007827
Eli Friedman9a14db32012-10-18 20:14:08 +00007828 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007829 DiagnosticErrorTrap Trap(Diags);
David Blaikie93c86172013-01-17 05:26:25 +00007830 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007831 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007832 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007833 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007834 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007835 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007836 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007837
7838 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007839 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007840
7841 Constructor->setUsed();
7842 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007843
7844 if (ASTMutationListener *L = getASTMutationListener()) {
7845 L->CompletedImplicitDefinition(Constructor);
7846 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007847}
7848
Richard Smith7a614d82011-06-11 17:19:42 +00007849void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
Richard Smith1d28caf2012-12-11 01:14:52 +00007850 // Check that any explicitly-defaulted methods have exception specifications
7851 // compatible with their implicit exception specifications.
7852 CheckDelayedExplicitlyDefaultedMemberExceptionSpecs();
Richard Smith7a614d82011-06-11 17:19:42 +00007853}
7854
Richard Smith4841ca52013-04-10 05:48:59 +00007855namespace {
7856/// Information on inheriting constructors to declare.
7857class InheritingConstructorInfo {
7858public:
7859 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived)
7860 : SemaRef(SemaRef), Derived(Derived) {
7861 // Mark the constructors that we already have in the derived class.
7862 //
7863 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7864 // unless there is a user-declared constructor with the same signature in
7865 // the class where the using-declaration appears.
7866 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived);
7867 }
7868
7869 void inheritAll(CXXRecordDecl *RD) {
7870 visitAll(RD, &InheritingConstructorInfo::inherit);
7871 }
7872
7873private:
7874 /// Information about an inheriting constructor.
7875 struct InheritingConstructor {
7876 InheritingConstructor()
7877 : DeclaredInDerived(false), BaseCtor(0), DerivedCtor(0) {}
7878
7879 /// If \c true, a constructor with this signature is already declared
7880 /// in the derived class.
7881 bool DeclaredInDerived;
7882
7883 /// The constructor which is inherited.
7884 const CXXConstructorDecl *BaseCtor;
7885
7886 /// The derived constructor we declared.
7887 CXXConstructorDecl *DerivedCtor;
7888 };
7889
7890 /// Inheriting constructors with a given canonical type. There can be at
7891 /// most one such non-template constructor, and any number of templated
7892 /// constructors.
7893 struct InheritingConstructorsForType {
7894 InheritingConstructor NonTemplate;
7895 llvm::SmallVector<
7896 std::pair<TemplateParameterList*, InheritingConstructor>, 4> Templates;
7897
7898 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) {
7899 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) {
7900 TemplateParameterList *ParamList = FTD->getTemplateParameters();
7901 for (unsigned I = 0, N = Templates.size(); I != N; ++I)
7902 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first,
7903 false, S.TPL_TemplateMatch))
7904 return Templates[I].second;
7905 Templates.push_back(std::make_pair(ParamList, InheritingConstructor()));
7906 return Templates.back().second;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007907 }
Richard Smith4841ca52013-04-10 05:48:59 +00007908
7909 return NonTemplate;
7910 }
7911 };
7912
7913 /// Get or create the inheriting constructor record for a constructor.
7914 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor,
7915 QualType CtorType) {
7916 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()]
7917 .getEntry(SemaRef, Ctor);
7918 }
7919
7920 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*);
7921
7922 /// Process all constructors for a class.
7923 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) {
7924 for (CXXRecordDecl::ctor_iterator CtorIt = RD->ctor_begin(),
7925 CtorE = RD->ctor_end();
7926 CtorIt != CtorE; ++CtorIt)
7927 (this->*Callback)(*CtorIt);
7928 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl>
7929 I(RD->decls_begin()), E(RD->decls_end());
7930 I != E; ++I) {
7931 const FunctionDecl *FD = (*I)->getTemplatedDecl();
7932 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
7933 (this->*Callback)(CD);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007934 }
7935 }
Richard Smith4841ca52013-04-10 05:48:59 +00007936
7937 /// Note that a constructor (or constructor template) was declared in Derived.
7938 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) {
7939 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true;
7940 }
7941
7942 /// Inherit a single constructor.
7943 void inherit(const CXXConstructorDecl *Ctor) {
7944 const FunctionProtoType *CtorType =
7945 Ctor->getType()->castAs<FunctionProtoType>();
7946 ArrayRef<QualType> ArgTypes(CtorType->getArgTypes());
7947 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo();
7948
7949 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent());
7950
7951 // Core issue (no number yet): the ellipsis is always discarded.
7952 if (EPI.Variadic) {
7953 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis);
7954 SemaRef.Diag(Ctor->getLocation(),
7955 diag::note_using_decl_constructor_ellipsis);
7956 EPI.Variadic = false;
7957 }
7958
7959 // Declare a constructor for each number of parameters.
7960 //
7961 // C++11 [class.inhctor]p1:
7962 // The candidate set of inherited constructors from the class X named in
7963 // the using-declaration consists of [... modulo defects ...] for each
7964 // constructor or constructor template of X, the set of constructors or
7965 // constructor templates that results from omitting any ellipsis parameter
7966 // specification and successively omitting parameters with a default
7967 // argument from the end of the parameter-type-list
Richard Smith987c0302013-04-17 19:00:52 +00007968 unsigned MinParams = minParamsToInherit(Ctor);
7969 unsigned Params = Ctor->getNumParams();
7970 if (Params >= MinParams) {
7971 do
7972 declareCtor(UsingLoc, Ctor,
7973 SemaRef.Context.getFunctionType(
7974 Ctor->getResultType(), ArgTypes.slice(0, Params), EPI));
7975 while (Params > MinParams &&
7976 Ctor->getParamDecl(--Params)->hasDefaultArg());
7977 }
Richard Smith4841ca52013-04-10 05:48:59 +00007978 }
7979
7980 /// Find the using-declaration which specified that we should inherit the
7981 /// constructors of \p Base.
7982 SourceLocation getUsingLoc(const CXXRecordDecl *Base) {
7983 // No fancy lookup required; just look for the base constructor name
7984 // directly within the derived class.
7985 ASTContext &Context = SemaRef.Context;
7986 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
7987 Context.getCanonicalType(Context.getRecordType(Base)));
7988 DeclContext::lookup_const_result Decls = Derived->lookup(Name);
7989 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation();
7990 }
7991
7992 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) {
7993 // C++11 [class.inhctor]p3:
7994 // [F]or each constructor template in the candidate set of inherited
7995 // constructors, a constructor template is implicitly declared
7996 if (Ctor->getDescribedFunctionTemplate())
7997 return 0;
7998
7999 // For each non-template constructor in the candidate set of inherited
8000 // constructors other than a constructor having no parameters or a
8001 // copy/move constructor having a single parameter, a constructor is
8002 // implicitly declared [...]
8003 if (Ctor->getNumParams() == 0)
8004 return 1;
8005 if (Ctor->isCopyOrMoveConstructor())
8006 return 2;
8007
8008 // Per discussion on core reflector, never inherit a constructor which
8009 // would become a default, copy, or move constructor of Derived either.
8010 const ParmVarDecl *PD = Ctor->getParamDecl(0);
8011 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>();
8012 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1;
8013 }
8014
8015 /// Declare a single inheriting constructor, inheriting the specified
8016 /// constructor, with the given type.
8017 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor,
8018 QualType DerivedType) {
8019 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType);
8020
8021 // C++11 [class.inhctor]p3:
8022 // ... a constructor is implicitly declared with the same constructor
8023 // characteristics unless there is a user-declared constructor with
8024 // the same signature in the class where the using-declaration appears
8025 if (Entry.DeclaredInDerived)
8026 return;
8027
8028 // C++11 [class.inhctor]p7:
8029 // If two using-declarations declare inheriting constructors with the
8030 // same signature, the program is ill-formed
8031 if (Entry.DerivedCtor) {
8032 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) {
8033 // Only diagnose this once per constructor.
8034 if (Entry.DerivedCtor->isInvalidDecl())
8035 return;
8036 Entry.DerivedCtor->setInvalidDecl();
8037
8038 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
8039 SemaRef.Diag(BaseCtor->getLocation(),
8040 diag::note_using_decl_constructor_conflict_current_ctor);
8041 SemaRef.Diag(Entry.BaseCtor->getLocation(),
8042 diag::note_using_decl_constructor_conflict_previous_ctor);
8043 SemaRef.Diag(Entry.DerivedCtor->getLocation(),
8044 diag::note_using_decl_constructor_conflict_previous_using);
8045 } else {
8046 // Core issue (no number): if the same inheriting constructor is
8047 // produced by multiple base class constructors from the same base
8048 // class, the inheriting constructor is defined as deleted.
8049 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc);
8050 }
8051
8052 return;
8053 }
8054
8055 ASTContext &Context = SemaRef.Context;
8056 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
8057 Context.getCanonicalType(Context.getRecordType(Derived)));
8058 DeclarationNameInfo NameInfo(Name, UsingLoc);
8059
8060 TemplateParameterList *TemplateParams = 0;
8061 if (const FunctionTemplateDecl *FTD =
8062 BaseCtor->getDescribedFunctionTemplate()) {
8063 TemplateParams = FTD->getTemplateParameters();
8064 // We're reusing template parameters from a different DeclContext. This
8065 // is questionable at best, but works out because the template depth in
8066 // both places is guaranteed to be 0.
8067 // FIXME: Rebuild the template parameters in the new context, and
8068 // transform the function type to refer to them.
8069 }
8070
8071 // Build type source info pointing at the using-declaration. This is
8072 // required by template instantiation.
8073 TypeSourceInfo *TInfo =
8074 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc);
8075 FunctionProtoTypeLoc ProtoLoc =
8076 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>();
8077
8078 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create(
8079 Context, Derived, UsingLoc, NameInfo, DerivedType,
8080 TInfo, BaseCtor->isExplicit(), /*Inline=*/true,
8081 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr());
8082
8083 // Build an unevaluated exception specification for this constructor.
8084 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>();
8085 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8086 EPI.ExceptionSpecType = EST_Unevaluated;
8087 EPI.ExceptionSpecDecl = DerivedCtor;
8088 DerivedCtor->setType(Context.getFunctionType(FPT->getResultType(),
8089 FPT->getArgTypes(), EPI));
8090
8091 // Build the parameter declarations.
8092 SmallVector<ParmVarDecl *, 16> ParamDecls;
8093 for (unsigned I = 0, N = FPT->getNumArgs(); I != N; ++I) {
8094 TypeSourceInfo *TInfo =
8095 Context.getTrivialTypeSourceInfo(FPT->getArgType(I), UsingLoc);
8096 ParmVarDecl *PD = ParmVarDecl::Create(
8097 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/0,
8098 FPT->getArgType(I), TInfo, SC_None, /*DefaultArg=*/0);
8099 PD->setScopeInfo(0, I);
8100 PD->setImplicit();
8101 ParamDecls.push_back(PD);
8102 ProtoLoc.setArg(I, PD);
8103 }
8104
8105 // Set up the new constructor.
8106 DerivedCtor->setAccess(BaseCtor->getAccess());
8107 DerivedCtor->setParams(ParamDecls);
8108 DerivedCtor->setInheritedConstructor(BaseCtor);
8109 if (BaseCtor->isDeleted())
8110 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc);
8111
8112 // If this is a constructor template, build the template declaration.
8113 if (TemplateParams) {
8114 FunctionTemplateDecl *DerivedTemplate =
8115 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name,
8116 TemplateParams, DerivedCtor);
8117 DerivedTemplate->setAccess(BaseCtor->getAccess());
8118 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate);
8119 Derived->addDecl(DerivedTemplate);
8120 } else {
8121 Derived->addDecl(DerivedCtor);
8122 }
8123
8124 Entry.BaseCtor = BaseCtor;
8125 Entry.DerivedCtor = DerivedCtor;
8126 }
8127
8128 Sema &SemaRef;
8129 CXXRecordDecl *Derived;
8130 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType;
8131 MapType Map;
8132};
8133}
8134
8135void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) {
8136 // Defer declaring the inheriting constructors until the class is
8137 // instantiated.
8138 if (ClassDecl->isDependentContext())
Sebastian Redlf677ea32011-02-05 19:23:19 +00008139 return;
8140
Richard Smith4841ca52013-04-10 05:48:59 +00008141 // Find base classes from which we might inherit constructors.
8142 SmallVector<CXXRecordDecl*, 4> InheritedBases;
8143 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
8144 BaseE = ClassDecl->bases_end();
8145 BaseIt != BaseE; ++BaseIt)
8146 if (BaseIt->getInheritConstructors())
8147 InheritedBases.push_back(BaseIt->getType()->getAsCXXRecordDecl());
Richard Smith07b0fdc2013-03-18 21:12:30 +00008148
Richard Smith4841ca52013-04-10 05:48:59 +00008149 // Go no further if we're not inheriting any constructors.
8150 if (InheritedBases.empty())
8151 return;
Sebastian Redlf677ea32011-02-05 19:23:19 +00008152
Richard Smith4841ca52013-04-10 05:48:59 +00008153 // Declare the inherited constructors.
8154 InheritingConstructorInfo ICI(*this, ClassDecl);
8155 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I)
8156 ICI.inheritAll(InheritedBases[I]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00008157}
8158
Richard Smith07b0fdc2013-03-18 21:12:30 +00008159void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation,
8160 CXXConstructorDecl *Constructor) {
8161 CXXRecordDecl *ClassDecl = Constructor->getParent();
8162 assert(Constructor->getInheritedConstructor() &&
8163 !Constructor->doesThisDeclarationHaveABody() &&
8164 !Constructor->isDeleted());
8165
8166 SynthesizedFunctionScope Scope(*this, Constructor);
8167 DiagnosticErrorTrap Trap(Diags);
8168 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
8169 Trap.hasErrorOccurred()) {
8170 Diag(CurrentLocation, diag::note_inhctor_synthesized_at)
8171 << Context.getTagDeclType(ClassDecl);
8172 Constructor->setInvalidDecl();
8173 return;
8174 }
8175
8176 SourceLocation Loc = Constructor->getLocation();
8177 Constructor->setBody(new (Context) CompoundStmt(Loc));
8178
8179 Constructor->setUsed();
8180 MarkVTableUsed(CurrentLocation, ClassDecl);
8181
8182 if (ASTMutationListener *L = getASTMutationListener()) {
8183 L->CompletedImplicitDefinition(Constructor);
8184 }
8185}
8186
8187
Sean Huntcb45a0f2011-05-12 22:46:25 +00008188Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008189Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
8190 CXXRecordDecl *ClassDecl = MD->getParent();
8191
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008192 // C++ [except.spec]p14:
8193 // An implicitly declared special member function (Clause 12) shall have
8194 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00008195 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008196 if (ClassDecl->isInvalidDecl())
8197 return ExceptSpec;
8198
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008199 // Direct base-class destructors.
8200 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8201 BEnd = ClassDecl->bases_end();
8202 B != BEnd; ++B) {
8203 if (B->isVirtual()) // Handled below.
8204 continue;
8205
8206 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00008207 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00008208 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008209 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00008210
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008211 // Virtual base-class destructors.
8212 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8213 BEnd = ClassDecl->vbases_end();
8214 B != BEnd; ++B) {
8215 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00008216 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00008217 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008218 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00008219
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008220 // Field destructors.
8221 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8222 FEnd = ClassDecl->field_end();
8223 F != FEnd; ++F) {
8224 if (const RecordType *RecordTy
8225 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00008226 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00008227 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008228 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008229
Sean Huntcb45a0f2011-05-12 22:46:25 +00008230 return ExceptSpec;
8231}
8232
8233CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
8234 // C++ [class.dtor]p2:
8235 // If a class has no user-declared destructor, a destructor is
8236 // declared implicitly. An implicitly-declared destructor is an
8237 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00008238 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00008239
Richard Smithafb49182012-11-29 01:34:07 +00008240 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
8241 if (DSM.isAlreadyBeingDeclared())
8242 return 0;
8243
Douglas Gregor4923aa22010-07-02 20:37:36 +00008244 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008245 CanQualType ClassType
8246 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008247 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008248 DeclarationName Name
8249 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008250 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008251 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00008252 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
8253 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00008254 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008255 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00008256 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008257 Destructor->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00008258
8259 // Build an exception specification pointing back at this destructor.
8260 FunctionProtoType::ExtProtoInfo EPI;
8261 EPI.ExceptionSpecType = EST_Unevaluated;
8262 EPI.ExceptionSpecDecl = Destructor;
Dmitri Gribenko55431692013-05-05 00:41:58 +00008263 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00008264
Richard Smithbc2a35d2012-12-08 08:32:28 +00008265 AddOverriddenMethods(ClassDecl, Destructor);
8266
8267 // We don't need to use SpecialMemberIsTrivial here; triviality for
8268 // destructors is easy to compute.
8269 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
8270
8271 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00008272 SetDeclDeleted(Destructor, ClassLoc);
Richard Smithbc2a35d2012-12-08 08:32:28 +00008273
Douglas Gregor4923aa22010-07-02 20:37:36 +00008274 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00008275 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00008276
Douglas Gregor4923aa22010-07-02 20:37:36 +00008277 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00008278 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00008279 PushOnScopeChains(Destructor, S, false);
8280 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00008281
Douglas Gregorfabd43a2010-07-01 19:09:28 +00008282 return Destructor;
8283}
8284
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008285void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00008286 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00008287 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00008288 !Destructor->doesThisDeclarationHaveABody() &&
8289 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008290 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00008291 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008292 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008293
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008294 if (Destructor->isInvalidDecl())
8295 return;
8296
Eli Friedman9a14db32012-10-18 20:14:08 +00008297 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008298
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008299 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00008300 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
8301 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00008302
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008303 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00008304 Diag(CurrentLocation, diag::note_member_synthesized_at)
8305 << CXXDestructor << Context.getTagDeclType(ClassDecl);
8306
8307 Destructor->setInvalidDecl();
8308 return;
8309 }
8310
Douglas Gregor4ada9d32010-09-20 16:48:21 +00008311 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008312 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00008313 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008314 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00008315 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008316
8317 if (ASTMutationListener *L = getASTMutationListener()) {
8318 L->CompletedImplicitDefinition(Destructor);
8319 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008320}
8321
Richard Smitha4156b82012-04-21 18:42:51 +00008322/// \brief Perform any semantic analysis which needs to be delayed until all
8323/// pending class member declarations have been parsed.
8324void Sema::ActOnFinishCXXMemberDecls() {
Douglas Gregor10318842013-02-01 04:49:10 +00008325 // If the context is an invalid C++ class, just suppress these checks.
8326 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) {
8327 if (Record->isInvalidDecl()) {
8328 DelayedDestructorExceptionSpecChecks.clear();
8329 return;
8330 }
8331 }
8332
Richard Smitha4156b82012-04-21 18:42:51 +00008333 // Perform any deferred checking of exception specifications for virtual
8334 // destructors.
8335 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
8336 i != e; ++i) {
8337 const CXXDestructorDecl *Dtor =
8338 DelayedDestructorExceptionSpecChecks[i].first;
8339 assert(!Dtor->getParent()->isDependentType() &&
8340 "Should not ever add destructors of templates into the list.");
8341 CheckOverridingFunctionExceptionSpec(Dtor,
8342 DelayedDestructorExceptionSpecChecks[i].second);
8343 }
8344 DelayedDestructorExceptionSpecChecks.clear();
8345}
8346
Richard Smithb9d0b762012-07-27 04:22:15 +00008347void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
8348 CXXDestructorDecl *Destructor) {
Richard Smith80ad52f2013-01-02 11:42:31 +00008349 assert(getLangOpts().CPlusPlus11 &&
Richard Smithb9d0b762012-07-27 04:22:15 +00008350 "adjusting dtor exception specs was introduced in c++11");
8351
Sebastian Redl0ee33912011-05-19 05:13:44 +00008352 // C++11 [class.dtor]p3:
8353 // A declaration of a destructor that does not have an exception-
8354 // specification is implicitly considered to have the same exception-
8355 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00008356 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00008357 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00008358 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00008359 return;
8360
Chandler Carruth3f224b22011-09-20 04:55:26 +00008361 // Replace the destructor's type, building off the existing one. Fortunately,
8362 // the only thing of interest in the destructor type is its extended info.
8363 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00008364 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
8365 EPI.ExceptionSpecType = EST_Unevaluated;
8366 EPI.ExceptionSpecDecl = Destructor;
Dmitri Gribenko55431692013-05-05 00:41:58 +00008367 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00008368
Sebastian Redl0ee33912011-05-19 05:13:44 +00008369 // FIXME: If the destructor has a body that could throw, and the newly created
8370 // spec doesn't allow exceptions, we should emit a warning, because this
8371 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00008372 // However, we don't have a body or an exception specification yet, so it
8373 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00008374}
8375
Richard Smith8c889532012-11-14 00:50:40 +00008376/// When generating a defaulted copy or move assignment operator, if a field
8377/// should be copied with __builtin_memcpy rather than via explicit assignments,
8378/// do so. This optimization only applies for arrays of scalars, and for arrays
8379/// of class type where the selected copy/move-assignment operator is trivial.
8380static StmtResult
8381buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
8382 Expr *To, Expr *From) {
8383 // Compute the size of the memory buffer to be copied.
8384 QualType SizeType = S.Context.getSizeType();
8385 llvm::APInt Size(S.Context.getTypeSize(SizeType),
8386 S.Context.getTypeSizeInChars(T).getQuantity());
8387
8388 // Take the address of the field references for "from" and "to". We
8389 // directly construct UnaryOperators here because semantic analysis
8390 // does not permit us to take the address of an xvalue.
8391 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
8392 S.Context.getPointerType(From->getType()),
8393 VK_RValue, OK_Ordinary, Loc);
8394 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
8395 S.Context.getPointerType(To->getType()),
8396 VK_RValue, OK_Ordinary, Loc);
8397
8398 const Type *E = T->getBaseElementTypeUnsafe();
8399 bool NeedsCollectableMemCpy =
8400 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
8401
8402 // Create a reference to the __builtin_objc_memmove_collectable function
8403 StringRef MemCpyName = NeedsCollectableMemCpy ?
8404 "__builtin_objc_memmove_collectable" :
8405 "__builtin_memcpy";
8406 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
8407 Sema::LookupOrdinaryName);
8408 S.LookupName(R, S.TUScope, true);
8409
8410 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
8411 if (!MemCpy)
8412 // Something went horribly wrong earlier, and we will have complained
8413 // about it.
8414 return StmtError();
8415
8416 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
8417 VK_RValue, Loc, 0);
8418 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
8419
8420 Expr *CallArgs[] = {
8421 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
8422 };
8423 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
8424 Loc, CallArgs, Loc);
8425
8426 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8427 return S.Owned(Call.takeAs<Stmt>());
8428}
8429
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008430/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00008431/// \c To.
8432///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008433/// This routine is used to copy/move the members of a class with an
8434/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00008435/// copied are arrays, this routine builds for loops to copy them.
8436///
8437/// \param S The Sema object used for type-checking.
8438///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008439/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00008440///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008441/// \param T The type of the expressions being copied/moved. Both expressions
8442/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00008443///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008444/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00008445///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008446/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00008447///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008448/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008449/// Otherwise, it's a non-static member subobject.
8450///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008451/// \param Copying Whether we're copying or moving.
8452///
Douglas Gregor06a9f362010-05-01 20:49:11 +00008453/// \param Depth Internal parameter recording the depth of the recursion.
8454///
Richard Smith8c889532012-11-14 00:50:40 +00008455/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
8456/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00008457static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00008458buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
8459 Expr *To, Expr *From,
8460 bool CopyingBaseSubobject, bool Copying,
8461 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00008462 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00008463 // Each subobject is assigned in the manner appropriate to its type:
8464 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008465 // - if the subobject is of class type, as if by a call to operator= with
8466 // the subobject as the object expression and the corresponding
8467 // subobject of x as a single function argument (as if by explicit
8468 // qualification; that is, ignoring any possible virtual overriding
8469 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00008470 //
8471 // C++03 [class.copy]p13:
8472 // - if the subobject is of class type, the copy assignment operator for
8473 // the class is used (as if by explicit qualification; that is,
8474 // ignoring any possible virtual overriding functions in more derived
8475 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008476 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
8477 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00008478
Douglas Gregor06a9f362010-05-01 20:49:11 +00008479 // Look for operator=.
8480 DeclarationName Name
8481 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8482 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
8483 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008484
Richard Smith044c8aa2012-11-13 00:54:12 +00008485 // Prior to C++11, filter out any result that isn't a copy/move-assignment
8486 // operator.
Richard Smith80ad52f2013-01-02 11:42:31 +00008487 if (!S.getLangOpts().CPlusPlus11) {
Richard Smith044c8aa2012-11-13 00:54:12 +00008488 LookupResult::Filter F = OpLookup.makeFilter();
8489 while (F.hasNext()) {
8490 NamedDecl *D = F.next();
8491 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
8492 if (Method->isCopyAssignmentOperator() ||
8493 (!Copying && Method->isMoveAssignmentOperator()))
8494 continue;
8495
8496 F.erase();
8497 }
8498 F.done();
John McCallb0207482010-03-16 06:11:48 +00008499 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008500
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008501 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00008502 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008503 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00008504 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008505 // ambiguities), we need to cast "this" to that subobject type; to
8506 // ensure that we don't go through the virtual call mechanism, we need
8507 // to qualify the operator= name with the base class (see below). However,
8508 // this means that if the base class has a protected copy assignment
8509 // operator, the protected member access check will fail. So, we
8510 // rewrite "protected" access to "public" access in this case, since we
8511 // know by construction that we're calling from a derived class.
8512 if (CopyingBaseSubobject) {
8513 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
8514 L != LEnd; ++L) {
8515 if (L.getAccess() == AS_protected)
8516 L.setAccess(AS_public);
8517 }
8518 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008519
Douglas Gregor06a9f362010-05-01 20:49:11 +00008520 // Create the nested-name-specifier that will be used to qualify the
8521 // reference to operator=; this is required to suppress the virtual
8522 // call mechanism.
8523 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008524 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00008525 SS.MakeTrivial(S.Context,
8526 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008527 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00008528 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00008529
Douglas Gregor06a9f362010-05-01 20:49:11 +00008530 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00008531 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00008532 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008533 /*TemplateKWLoc=*/SourceLocation(),
8534 /*FirstQualifierInScope=*/0,
8535 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008536 /*TemplateArgs=*/0,
8537 /*SuppressQualifierCheck=*/true);
8538 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008539 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008540
Douglas Gregor06a9f362010-05-01 20:49:11 +00008541 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00008542
Richard Smith044c8aa2012-11-13 00:54:12 +00008543 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00008544 OpEqualRef.takeAs<Expr>(),
Dmitri Gribenko9e00f122013-05-09 21:02:07 +00008545 Loc, From, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008546 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008547 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008548
Richard Smith8c889532012-11-14 00:50:40 +00008549 // If we built a call to a trivial 'operator=' while copying an array,
8550 // bail out. We'll replace the whole shebang with a memcpy.
8551 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
8552 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
8553 return StmtResult((Stmt*)0);
8554
Richard Smith044c8aa2012-11-13 00:54:12 +00008555 // Convert to an expression-statement, and clean up any produced
8556 // temporaries.
Richard Smith41956372013-01-14 22:39:08 +00008557 return S.ActOnExprStmt(Call);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008558 }
John McCallb0207482010-03-16 06:11:48 +00008559
Richard Smith044c8aa2012-11-13 00:54:12 +00008560 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00008561 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00008562 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008563 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00008564 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008565 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008566 return StmtError();
Richard Smith41956372013-01-14 22:39:08 +00008567 return S.ActOnExprStmt(Assignment);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008568 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008569
8570 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00008571 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00008572
Douglas Gregor06a9f362010-05-01 20:49:11 +00008573 // Construct a loop over the array bounds, e.g.,
8574 //
8575 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
8576 //
8577 // that will copy each of the array elements.
8578 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00008579
Douglas Gregor06a9f362010-05-01 20:49:11 +00008580 // Create the iteration variable.
8581 IdentifierInfo *IterationVarName = 0;
8582 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00008583 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008584 llvm::raw_svector_ostream OS(Str);
8585 OS << "__i" << Depth;
8586 IterationVarName = &S.Context.Idents.get(OS.str());
8587 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008588 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008589 IterationVarName, SizeType,
8590 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00008591 SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00008592
Douglas Gregor06a9f362010-05-01 20:49:11 +00008593 // Initialize the iteration variable to zero.
8594 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00008595 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00008596
8597 // Create a reference to the iteration variable; we'll use this several
8598 // times throughout.
8599 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00008600 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008601 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00008602 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
8603 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
8604
Douglas Gregor06a9f362010-05-01 20:49:11 +00008605 // Create the DeclStmt that holds the iteration variable.
8606 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00008607
Douglas Gregor06a9f362010-05-01 20:49:11 +00008608 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00008609 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008610 IterationVarRefRVal,
8611 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00008612 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008613 IterationVarRefRVal,
8614 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008615 if (!Copying) // Cast to rvalue
8616 From = CastForMoving(S, From);
8617
8618 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00008619 StmtResult Copy =
8620 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
8621 To, From, CopyingBaseSubobject,
8622 Copying, Depth + 1);
8623 // Bail out if copying fails or if we determined that we should use memcpy.
8624 if (Copy.isInvalid() || !Copy.get())
8625 return Copy;
8626
8627 // Create the comparison against the array bound.
8628 llvm::APInt Upper
8629 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
8630 Expr *Comparison
8631 = new (S.Context) BinaryOperator(IterationVarRefRVal,
8632 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
8633 BO_NE, S.Context.BoolTy,
8634 VK_RValue, OK_Ordinary, Loc, false);
8635
8636 // Create the pre-increment of the iteration variable.
8637 Expr *Increment
8638 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
8639 VK_LValue, OK_Ordinary, Loc);
8640
Douglas Gregor06a9f362010-05-01 20:49:11 +00008641 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00008642 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008643 S.MakeFullExpr(Comparison),
Richard Smith41956372013-01-14 22:39:08 +00008644 0, S.MakeFullDiscardedValueExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00008645 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008646}
8647
Richard Smith8c889532012-11-14 00:50:40 +00008648static StmtResult
8649buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
8650 Expr *To, Expr *From,
8651 bool CopyingBaseSubobject, bool Copying) {
8652 // Maybe we should use a memcpy?
8653 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
8654 T.isTriviallyCopyableType(S.Context))
8655 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8656
8657 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
8658 CopyingBaseSubobject,
8659 Copying, 0));
8660
8661 // If we ended up picking a trivial assignment operator for an array of a
8662 // non-trivially-copyable class type, just emit a memcpy.
8663 if (!Result.isInvalid() && !Result.get())
8664 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8665
8666 return Result;
8667}
8668
Richard Smithb9d0b762012-07-27 04:22:15 +00008669Sema::ImplicitExceptionSpecification
8670Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
8671 CXXRecordDecl *ClassDecl = MD->getParent();
8672
8673 ImplicitExceptionSpecification ExceptSpec(*this);
8674 if (ClassDecl->isInvalidDecl())
8675 return ExceptSpec;
8676
8677 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8678 assert(T->getNumArgs() == 1 && "not a copy assignment op");
8679 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8680
Douglas Gregorb87786f2010-07-01 17:48:08 +00008681 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00008682 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00008683 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00008684
8685 // It is unspecified whether or not an implicit copy assignment operator
8686 // attempts to deduplicate calls to assignment operators of virtual bases are
8687 // made. As such, this exception specification is effectively unspecified.
8688 // Based on a similar decision made for constness in C++0x, we're erring on
8689 // the side of assuming such calls to be made regardless of whether they
8690 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00008691 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8692 BaseEnd = ClassDecl->bases_end();
8693 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00008694 if (Base->isVirtual())
8695 continue;
8696
Douglas Gregora376d102010-07-02 21:50:04 +00008697 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00008698 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00008699 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8700 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008701 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00008702 }
Sean Hunt661c67a2011-06-21 23:42:56 +00008703
8704 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8705 BaseEnd = ClassDecl->vbases_end();
8706 Base != BaseEnd; ++Base) {
8707 CXXRecordDecl *BaseClassDecl
8708 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8709 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8710 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008711 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00008712 }
8713
Douglas Gregorb87786f2010-07-01 17:48:08 +00008714 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8715 FieldEnd = ClassDecl->field_end();
8716 Field != FieldEnd;
8717 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008718 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00008719 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8720 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008721 LookupCopyingAssignment(FieldClassDecl,
8722 ArgQuals | FieldType.getCVRQualifiers(),
8723 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008724 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008725 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00008726 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008727
Richard Smithb9d0b762012-07-27 04:22:15 +00008728 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00008729}
8730
8731CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
8732 // Note: The following rules are largely analoguous to the copy
8733 // constructor rules. Note that virtual bases are not taken into account
8734 // for determining the argument type of the operator. Note also that
8735 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00008736 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00008737
Richard Smithafb49182012-11-29 01:34:07 +00008738 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
8739 if (DSM.isAlreadyBeingDeclared())
8740 return 0;
8741
Sean Hunt30de05c2011-05-14 05:23:20 +00008742 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8743 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smitha8942d72013-05-07 03:19:20 +00008744 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam();
8745 if (Const)
Sean Hunt30de05c2011-05-14 05:23:20 +00008746 ArgType = ArgType.withConst();
8747 ArgType = Context.getLValueReferenceType(ArgType);
8748
Richard Smitha8942d72013-05-07 03:19:20 +00008749 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8750 CXXCopyAssignment,
8751 Const);
8752
Douglas Gregord3c35902010-07-01 16:36:15 +00008753 // An implicitly-declared copy assignment operator is an inline public
8754 // member of its class.
8755 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008756 SourceLocation ClassLoc = ClassDecl->getLocation();
8757 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smitha8942d72013-05-07 03:19:20 +00008758 CXXMethodDecl *CopyAssignment =
8759 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
8760 /*TInfo=*/ 0, /*StorageClass=*/ SC_None,
8761 /*isInline=*/ true, Constexpr, SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00008762 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00008763 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00008764 CopyAssignment->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00008765
8766 // Build an exception specification pointing back at this member.
8767 FunctionProtoType::ExtProtoInfo EPI;
8768 EPI.ExceptionSpecType = EST_Unevaluated;
8769 EPI.ExceptionSpecDecl = CopyAssignment;
Jordan Rosebea522f2013-03-08 21:51:21 +00008770 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00008771
Douglas Gregord3c35902010-07-01 16:36:15 +00008772 // Add the parameter to the operator.
8773 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008774 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00008775 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008776 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008777 CopyAssignment->setParams(FromParam);
Sean Hunt7f410192011-05-14 05:23:24 +00008778
Richard Smithbc2a35d2012-12-08 08:32:28 +00008779 AddOverriddenMethods(ClassDecl, CopyAssignment);
8780
8781 CopyAssignment->setTrivial(
8782 ClassDecl->needsOverloadResolutionForCopyAssignment()
8783 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
8784 : ClassDecl->hasTrivialCopyAssignment());
8785
Richard Smitha8942d72013-05-07 03:19:20 +00008786 // C++11 [class.copy]p19:
Nico Weberafcc96a2012-01-23 03:19:29 +00008787 // .... If the class definition does not explicitly declare a copy
8788 // assignment operator, there is no user-declared move constructor, and
8789 // there is no user-declared move assignment operator, a copy assignment
8790 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008791 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00008792 SetDeclDeleted(CopyAssignment, ClassLoc);
Richard Smith6c4c36c2012-03-30 20:53:28 +00008793
Richard Smithbc2a35d2012-12-08 08:32:28 +00008794 // Note that we have added this copy-assignment operator.
8795 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
8796
8797 if (Scope *S = getScopeForContext(ClassDecl))
8798 PushOnScopeChains(CopyAssignment, S, false);
8799 ClassDecl->addDecl(CopyAssignment);
8800
Douglas Gregord3c35902010-07-01 16:36:15 +00008801 return CopyAssignment;
8802}
8803
Richard Smith36155c12013-06-13 03:23:42 +00008804/// Diagnose an implicit copy operation for a class which is odr-used, but
8805/// which is deprecated because the class has a user-declared copy constructor,
8806/// copy assignment operator, or destructor.
8807static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp,
8808 SourceLocation UseLoc) {
8809 assert(CopyOp->isImplicit());
8810
8811 CXXRecordDecl *RD = CopyOp->getParent();
8812 CXXMethodDecl *UserDeclaredOperation = 0;
8813
8814 // In Microsoft mode, assignment operations don't affect constructors and
8815 // vice versa.
8816 if (RD->hasUserDeclaredDestructor()) {
8817 UserDeclaredOperation = RD->getDestructor();
8818 } else if (!isa<CXXConstructorDecl>(CopyOp) &&
8819 RD->hasUserDeclaredCopyConstructor() &&
8820 !S.getLangOpts().MicrosoftMode) {
8821 // Find any user-declared copy constructor.
8822 for (CXXRecordDecl::ctor_iterator I = RD->ctor_begin(),
8823 E = RD->ctor_end(); I != E; ++I) {
8824 if (I->isCopyConstructor()) {
8825 UserDeclaredOperation = *I;
8826 break;
8827 }
8828 }
8829 assert(UserDeclaredOperation);
8830 } else if (isa<CXXConstructorDecl>(CopyOp) &&
8831 RD->hasUserDeclaredCopyAssignment() &&
8832 !S.getLangOpts().MicrosoftMode) {
8833 // Find any user-declared move assignment operator.
8834 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
8835 E = RD->method_end(); I != E; ++I) {
8836 if (I->isCopyAssignmentOperator()) {
8837 UserDeclaredOperation = *I;
8838 break;
8839 }
8840 }
8841 assert(UserDeclaredOperation);
8842 }
8843
8844 if (UserDeclaredOperation) {
8845 S.Diag(UserDeclaredOperation->getLocation(),
8846 diag::warn_deprecated_copy_operation)
8847 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp)
8848 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation);
8849 S.Diag(UseLoc, diag::note_member_synthesized_at)
8850 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor
8851 : Sema::CXXCopyAssignment)
8852 << RD;
8853 }
8854}
8855
Douglas Gregor06a9f362010-05-01 20:49:11 +00008856void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
8857 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00008858 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008859 CopyAssignOperator->isOverloadedOperator() &&
8860 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008861 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
8862 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008863 "DefineImplicitCopyAssignment called for wrong function");
8864
8865 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
8866
8867 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
8868 CopyAssignOperator->setInvalidDecl();
8869 return;
8870 }
Richard Smith36155c12013-06-13 03:23:42 +00008871
8872 // C++11 [class.copy]p18:
8873 // The [definition of an implicitly declared copy assignment operator] is
8874 // deprecated if the class has a user-declared copy constructor or a
8875 // user-declared destructor.
8876 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit())
8877 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation);
8878
Douglas Gregor06a9f362010-05-01 20:49:11 +00008879 CopyAssignOperator->setUsed();
8880
Eli Friedman9a14db32012-10-18 20:14:08 +00008881 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008882 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008883
8884 // C++0x [class.copy]p30:
8885 // The implicitly-defined or explicitly-defaulted copy assignment operator
8886 // for a non-union class X performs memberwise copy assignment of its
8887 // subobjects. The direct base classes of X are assigned first, in the
8888 // order of their declaration in the base-specifier-list, and then the
8889 // immediate non-static data members of X are assigned, in the order in
8890 // which they were declared in the class definition.
8891
8892 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008893 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008894
8895 // The parameter for the "other" object, which we are copying from.
8896 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
8897 Qualifiers OtherQuals = Other->getType().getQualifiers();
8898 QualType OtherRefType = Other->getType();
8899 if (const LValueReferenceType *OtherRef
8900 = OtherRefType->getAs<LValueReferenceType>()) {
8901 OtherRefType = OtherRef->getPointeeType();
8902 OtherQuals = OtherRefType.getQualifiers();
8903 }
8904
8905 // Our location for everything implicitly-generated.
8906 SourceLocation Loc = CopyAssignOperator->getLocation();
8907
8908 // Construct a reference to the "other" object. We'll be using this
8909 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00008910 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008911 assert(OtherRef && "Reference to parameter cannot fail!");
8912
8913 // Construct the "this" pointer. We'll be using this throughout the generated
8914 // ASTs.
8915 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8916 assert(This && "Reference to this cannot fail!");
8917
8918 // Assign base classes.
8919 bool Invalid = false;
8920 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8921 E = ClassDecl->bases_end(); Base != E; ++Base) {
8922 // Form the assignment:
8923 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
8924 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00008925 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00008926 Invalid = true;
8927 continue;
8928 }
8929
John McCallf871d0c2010-08-07 06:22:56 +00008930 CXXCastPath BasePath;
8931 BasePath.push_back(Base);
8932
Douglas Gregor06a9f362010-05-01 20:49:11 +00008933 // Construct the "from" expression, which is an implicit cast to the
8934 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00008935 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00008936 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
8937 CK_UncheckedDerivedToBase,
8938 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008939
8940 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00008941 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008942
8943 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00008944 To = ImpCastExprToType(To.take(),
8945 Context.getCVRQualifiedType(BaseType,
8946 CopyAssignOperator->getTypeQualifiers()),
8947 CK_UncheckedDerivedToBase,
8948 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008949
8950 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00008951 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00008952 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008953 /*CopyingBaseSubobject=*/true,
8954 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008955 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008956 Diag(CurrentLocation, diag::note_member_synthesized_at)
8957 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8958 CopyAssignOperator->setInvalidDecl();
8959 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008960 }
8961
8962 // Success! Record the copy.
8963 Statements.push_back(Copy.takeAs<Expr>());
8964 }
8965
Douglas Gregor06a9f362010-05-01 20:49:11 +00008966 // Assign non-static members.
8967 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8968 FieldEnd = ClassDecl->field_end();
8969 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008970 if (Field->isUnnamedBitfield())
8971 continue;
Eli Friedman8150da32013-06-07 01:48:56 +00008972
8973 if (Field->isInvalidDecl()) {
8974 Invalid = true;
8975 continue;
8976 }
8977
Douglas Gregor06a9f362010-05-01 20:49:11 +00008978 // Check for members of reference type; we can't copy those.
8979 if (Field->getType()->isReferenceType()) {
8980 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8981 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8982 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008983 Diag(CurrentLocation, diag::note_member_synthesized_at)
8984 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008985 Invalid = true;
8986 continue;
8987 }
8988
8989 // Check for members of const-qualified, non-class type.
8990 QualType BaseType = Context.getBaseElementType(Field->getType());
8991 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8992 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8993 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8994 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008995 Diag(CurrentLocation, diag::note_member_synthesized_at)
8996 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008997 Invalid = true;
8998 continue;
8999 }
John McCallb77115d2011-06-17 00:18:42 +00009000
9001 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00009002 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
9003 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00009004
9005 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00009006 if (FieldType->isIncompleteArrayType()) {
9007 assert(ClassDecl->hasFlexibleArrayMember() &&
9008 "Incomplete array type is not valid");
9009 continue;
9010 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00009011
9012 // Build references to the field in the object we're copying from and to.
9013 CXXScopeSpec SS; // Intentionally empty
9014 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
9015 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00009016 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009017 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00009018 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00009019 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009020 SS, SourceLocation(), 0,
9021 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00009022 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00009023 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009024 SS, SourceLocation(), 0,
9025 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009026 assert(!From.isInvalid() && "Implicit field reference cannot fail");
9027 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00009028
Douglas Gregor06a9f362010-05-01 20:49:11 +00009029 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00009030 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009031 To.get(), From.get(),
9032 /*CopyingBaseSubobject=*/false,
9033 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009034 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00009035 Diag(CurrentLocation, diag::note_member_synthesized_at)
9036 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
9037 CopyAssignOperator->setInvalidDecl();
9038 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00009039 }
9040
9041 // Success! Record the copy.
9042 Statements.push_back(Copy.takeAs<Stmt>());
9043 }
9044
9045 if (!Invalid) {
9046 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00009047 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00009048
John McCall60d7b3a2010-08-24 06:29:42 +00009049 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00009050 if (Return.isInvalid())
9051 Invalid = true;
9052 else {
9053 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009054
9055 if (Trap.hasErrorOccurred()) {
9056 Diag(CurrentLocation, diag::note_member_synthesized_at)
9057 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
9058 Invalid = true;
9059 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00009060 }
9061 }
9062
9063 if (Invalid) {
9064 CopyAssignOperator->setInvalidDecl();
9065 return;
9066 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009067
9068 StmtResult Body;
9069 {
9070 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009071 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009072 /*isStmtExpr=*/false);
9073 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
9074 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00009075 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00009076
9077 if (ASTMutationListener *L = getASTMutationListener()) {
9078 L->CompletedImplicitDefinition(CopyAssignOperator);
9079 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009080}
9081
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009082Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00009083Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
9084 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009085
Richard Smithb9d0b762012-07-27 04:22:15 +00009086 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009087 if (ClassDecl->isInvalidDecl())
9088 return ExceptSpec;
9089
9090 // C++0x [except.spec]p14:
9091 // An implicitly declared special member function (Clause 12) shall have an
9092 // exception-specification. [...]
9093
9094 // It is unspecified whether or not an implicit move assignment operator
9095 // attempts to deduplicate calls to assignment operators of virtual bases are
9096 // made. As such, this exception specification is effectively unspecified.
9097 // Based on a similar decision made for constness in C++0x, we're erring on
9098 // the side of assuming such calls to be made regardless of whether they
9099 // actually happen.
9100 // Note that a move constructor is not implicitly declared when there are
9101 // virtual bases, but it can still be user-declared and explicitly defaulted.
9102 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
9103 BaseEnd = ClassDecl->bases_end();
9104 Base != BaseEnd; ++Base) {
9105 if (Base->isVirtual())
9106 continue;
9107
9108 CXXRecordDecl *BaseClassDecl
9109 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
9110 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00009111 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00009112 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009113 }
9114
9115 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9116 BaseEnd = ClassDecl->vbases_end();
9117 Base != BaseEnd; ++Base) {
9118 CXXRecordDecl *BaseClassDecl
9119 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
9120 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00009121 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00009122 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009123 }
9124
9125 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9126 FieldEnd = ClassDecl->field_end();
9127 Field != FieldEnd;
9128 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00009129 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009130 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00009131 if (CXXMethodDecl *MoveAssign =
9132 LookupMovingAssignment(FieldClassDecl,
9133 FieldType.getCVRQualifiers(),
9134 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00009135 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009136 }
9137 }
9138
9139 return ExceptSpec;
9140}
9141
Richard Smith1c931be2012-04-02 18:40:40 +00009142/// Determine whether the class type has any direct or indirect virtual base
9143/// classes which have a non-trivial move assignment operator.
9144static bool
9145hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
9146 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9147 BaseEnd = ClassDecl->vbases_end();
9148 Base != BaseEnd; ++Base) {
9149 CXXRecordDecl *BaseClass =
9150 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
9151
9152 // Try to declare the move assignment. If it would be deleted, then the
9153 // class does not have a non-trivial move assignment.
9154 if (BaseClass->needsImplicitMoveAssignment())
9155 S.DeclareImplicitMoveAssignment(BaseClass);
9156
Richard Smith426391c2012-11-16 00:53:38 +00009157 if (BaseClass->hasNonTrivialMoveAssignment())
Richard Smith1c931be2012-04-02 18:40:40 +00009158 return true;
9159 }
9160
9161 return false;
9162}
9163
9164/// Determine whether the given type either has a move constructor or is
9165/// trivially copyable.
9166static bool
9167hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
9168 Type = S.Context.getBaseElementType(Type);
9169
9170 // FIXME: Technically, non-trivially-copyable non-class types, such as
9171 // reference types, are supposed to return false here, but that appears
9172 // to be a standard defect.
9173 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00009174 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00009175 return true;
9176
9177 if (Type.isTriviallyCopyableType(S.Context))
9178 return true;
9179
9180 if (IsConstructor) {
Richard Smithe5411b72012-12-01 02:35:44 +00009181 // FIXME: Need this because otherwise hasMoveConstructor isn't guaranteed to
9182 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00009183 if (ClassDecl->needsImplicitMoveConstructor())
9184 S.DeclareImplicitMoveConstructor(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00009185 return ClassDecl->hasMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00009186 }
9187
Richard Smithe5411b72012-12-01 02:35:44 +00009188 // FIXME: Need this because otherwise hasMoveAssignment isn't guaranteed to
9189 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00009190 if (ClassDecl->needsImplicitMoveAssignment())
9191 S.DeclareImplicitMoveAssignment(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00009192 return ClassDecl->hasMoveAssignment();
Richard Smith1c931be2012-04-02 18:40:40 +00009193}
9194
9195/// Determine whether all non-static data members and direct or virtual bases
9196/// of class \p ClassDecl have either a move operation, or are trivially
9197/// copyable.
9198static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
9199 bool IsConstructor) {
9200 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
9201 BaseEnd = ClassDecl->bases_end();
9202 Base != BaseEnd; ++Base) {
9203 if (Base->isVirtual())
9204 continue;
9205
9206 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
9207 return false;
9208 }
9209
9210 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9211 BaseEnd = ClassDecl->vbases_end();
9212 Base != BaseEnd; ++Base) {
9213 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
9214 return false;
9215 }
9216
9217 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9218 FieldEnd = ClassDecl->field_end();
9219 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00009220 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00009221 return false;
9222 }
9223
9224 return true;
9225}
9226
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009227CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00009228 // C++11 [class.copy]p20:
9229 // If the definition of a class X does not explicitly declare a move
9230 // assignment operator, one will be implicitly declared as defaulted
9231 // if and only if:
9232 //
9233 // - [first 4 bullets]
9234 assert(ClassDecl->needsImplicitMoveAssignment());
9235
Richard Smithafb49182012-11-29 01:34:07 +00009236 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
9237 if (DSM.isAlreadyBeingDeclared())
9238 return 0;
9239
Richard Smith1c931be2012-04-02 18:40:40 +00009240 // [Checked after we build the declaration]
9241 // - the move assignment operator would not be implicitly defined as
9242 // deleted,
9243
9244 // [DR1402]:
9245 // - X has no direct or indirect virtual base class with a non-trivial
9246 // move assignment operator, and
9247 // - each of X's non-static data members and direct or virtual base classes
9248 // has a type that either has a move assignment operator or is trivially
9249 // copyable.
9250 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
9251 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
9252 ClassDecl->setFailedImplicitMoveAssignment();
9253 return 0;
9254 }
9255
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009256 // Note: The following rules are largely analoguous to the move
9257 // constructor rules.
9258
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009259 QualType ArgType = Context.getTypeDeclType(ClassDecl);
9260 QualType RetType = Context.getLValueReferenceType(ArgType);
9261 ArgType = Context.getRValueReferenceType(ArgType);
9262
Richard Smitha8942d72013-05-07 03:19:20 +00009263 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9264 CXXMoveAssignment,
9265 false);
9266
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009267 // An implicitly-declared move assignment operator is an inline public
9268 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009269 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
9270 SourceLocation ClassLoc = ClassDecl->getLocation();
9271 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smitha8942d72013-05-07 03:19:20 +00009272 CXXMethodDecl *MoveAssignment =
9273 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
9274 /*TInfo=*/0, /*StorageClass=*/SC_None,
9275 /*isInline=*/true, Constexpr, SourceLocation());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009276 MoveAssignment->setAccess(AS_public);
9277 MoveAssignment->setDefaulted();
9278 MoveAssignment->setImplicit();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009279
Richard Smithb9d0b762012-07-27 04:22:15 +00009280 // Build an exception specification pointing back at this member.
9281 FunctionProtoType::ExtProtoInfo EPI;
9282 EPI.ExceptionSpecType = EST_Unevaluated;
9283 EPI.ExceptionSpecDecl = MoveAssignment;
Jordan Rosebea522f2013-03-08 21:51:21 +00009284 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00009285
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009286 // Add the parameter to the operator.
9287 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
9288 ClassLoc, ClassLoc, /*Id=*/0,
9289 ArgType, /*TInfo=*/0,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009290 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009291 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009292
Richard Smithbc2a35d2012-12-08 08:32:28 +00009293 AddOverriddenMethods(ClassDecl, MoveAssignment);
9294
9295 MoveAssignment->setTrivial(
9296 ClassDecl->needsOverloadResolutionForMoveAssignment()
9297 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
9298 : ClassDecl->hasTrivialMoveAssignment());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009299
9300 // C++0x [class.copy]p9:
9301 // If the definition of a class X does not explicitly declare a move
9302 // assignment operator, one will be implicitly declared as defaulted if and
9303 // only if:
9304 // [...]
9305 // - the move assignment operator would not be implicitly defined as
9306 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00009307 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009308 // Cache this result so that we don't try to generate this over and over
9309 // on every lookup, leaking memory and wasting time.
9310 ClassDecl->setFailedImplicitMoveAssignment();
9311 return 0;
9312 }
9313
Richard Smithbc2a35d2012-12-08 08:32:28 +00009314 // Note that we have added this copy-assignment operator.
9315 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
9316
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009317 if (Scope *S = getScopeForContext(ClassDecl))
9318 PushOnScopeChains(MoveAssignment, S, false);
9319 ClassDecl->addDecl(MoveAssignment);
9320
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009321 return MoveAssignment;
9322}
9323
9324void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
9325 CXXMethodDecl *MoveAssignOperator) {
9326 assert((MoveAssignOperator->isDefaulted() &&
9327 MoveAssignOperator->isOverloadedOperator() &&
9328 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00009329 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
9330 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009331 "DefineImplicitMoveAssignment called for wrong function");
9332
9333 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
9334
9335 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
9336 MoveAssignOperator->setInvalidDecl();
9337 return;
9338 }
9339
9340 MoveAssignOperator->setUsed();
9341
Eli Friedman9a14db32012-10-18 20:14:08 +00009342 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009343 DiagnosticErrorTrap Trap(Diags);
9344
9345 // C++0x [class.copy]p28:
9346 // The implicitly-defined or move assignment operator for a non-union class
9347 // X performs memberwise move assignment of its subobjects. The direct base
9348 // classes of X are assigned first, in the order of their declaration in the
9349 // base-specifier-list, and then the immediate non-static data members of X
9350 // are assigned, in the order in which they were declared in the class
9351 // definition.
9352
9353 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009354 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009355
9356 // The parameter for the "other" object, which we are move from.
9357 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
9358 QualType OtherRefType = Other->getType()->
9359 getAs<RValueReferenceType>()->getPointeeType();
David Blaikie7247c882013-05-15 07:37:26 +00009360 assert(!OtherRefType.getQualifiers() &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009361 "Bad argument type of defaulted move assignment");
9362
9363 // Our location for everything implicitly-generated.
9364 SourceLocation Loc = MoveAssignOperator->getLocation();
9365
9366 // Construct a reference to the "other" object. We'll be using this
9367 // throughout the generated ASTs.
9368 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
9369 assert(OtherRef && "Reference to parameter cannot fail!");
9370 // Cast to rvalue.
9371 OtherRef = CastForMoving(*this, OtherRef);
9372
9373 // Construct the "this" pointer. We'll be using this throughout the generated
9374 // ASTs.
9375 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
9376 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00009377
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009378 // Assign base classes.
9379 bool Invalid = false;
9380 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
9381 E = ClassDecl->bases_end(); Base != E; ++Base) {
9382 // Form the assignment:
9383 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
9384 QualType BaseType = Base->getType().getUnqualifiedType();
9385 if (!BaseType->isRecordType()) {
9386 Invalid = true;
9387 continue;
9388 }
9389
9390 CXXCastPath BasePath;
9391 BasePath.push_back(Base);
9392
9393 // Construct the "from" expression, which is an implicit cast to the
9394 // appropriately-qualified base type.
9395 Expr *From = OtherRef;
9396 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00009397 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009398
9399 // Dereference "this".
9400 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
9401
9402 // Implicitly cast "this" to the appropriately-qualified base type.
9403 To = ImpCastExprToType(To.take(),
9404 Context.getCVRQualifiedType(BaseType,
9405 MoveAssignOperator->getTypeQualifiers()),
9406 CK_UncheckedDerivedToBase,
9407 VK_LValue, &BasePath);
9408
9409 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00009410 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009411 To.get(), From,
9412 /*CopyingBaseSubobject=*/true,
9413 /*Copying=*/false);
9414 if (Move.isInvalid()) {
9415 Diag(CurrentLocation, diag::note_member_synthesized_at)
9416 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
9417 MoveAssignOperator->setInvalidDecl();
9418 return;
9419 }
9420
9421 // Success! Record the move.
9422 Statements.push_back(Move.takeAs<Expr>());
9423 }
9424
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009425 // Assign non-static members.
9426 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9427 FieldEnd = ClassDecl->field_end();
9428 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00009429 if (Field->isUnnamedBitfield())
9430 continue;
9431
Eli Friedman8150da32013-06-07 01:48:56 +00009432 if (Field->isInvalidDecl()) {
9433 Invalid = true;
9434 continue;
9435 }
9436
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009437 // Check for members of reference type; we can't move those.
9438 if (Field->getType()->isReferenceType()) {
9439 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
9440 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
9441 Diag(Field->getLocation(), diag::note_declared_at);
9442 Diag(CurrentLocation, diag::note_member_synthesized_at)
9443 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
9444 Invalid = true;
9445 continue;
9446 }
9447
9448 // Check for members of const-qualified, non-class type.
9449 QualType BaseType = Context.getBaseElementType(Field->getType());
9450 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
9451 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
9452 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
9453 Diag(Field->getLocation(), diag::note_declared_at);
9454 Diag(CurrentLocation, diag::note_member_synthesized_at)
9455 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
9456 Invalid = true;
9457 continue;
9458 }
9459
9460 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00009461 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
9462 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009463
9464 QualType FieldType = Field->getType().getNonReferenceType();
9465 if (FieldType->isIncompleteArrayType()) {
9466 assert(ClassDecl->hasFlexibleArrayMember() &&
9467 "Incomplete array type is not valid");
9468 continue;
9469 }
9470
9471 // Build references to the field in the object we're copying from and to.
9472 CXXScopeSpec SS; // Intentionally empty
9473 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
9474 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00009475 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009476 MemberLookup.resolveKind();
9477 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
9478 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009479 SS, SourceLocation(), 0,
9480 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009481 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
9482 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009483 SS, SourceLocation(), 0,
9484 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009485 assert(!From.isInvalid() && "Implicit field reference cannot fail");
9486 assert(!To.isInvalid() && "Implicit field reference cannot fail");
9487
9488 assert(!From.get()->isLValue() && // could be xvalue or prvalue
9489 "Member reference with rvalue base must be rvalue except for reference "
9490 "members, which aren't allowed for move assignment.");
9491
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009492 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00009493 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009494 To.get(), From.get(),
9495 /*CopyingBaseSubobject=*/false,
9496 /*Copying=*/false);
9497 if (Move.isInvalid()) {
9498 Diag(CurrentLocation, diag::note_member_synthesized_at)
9499 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
9500 MoveAssignOperator->setInvalidDecl();
9501 return;
9502 }
Richard Smithe7ce7092012-11-12 23:33:00 +00009503
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009504 // Success! Record the copy.
9505 Statements.push_back(Move.takeAs<Stmt>());
9506 }
9507
9508 if (!Invalid) {
9509 // Add a "return *this;"
9510 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
9511
9512 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
9513 if (Return.isInvalid())
9514 Invalid = true;
9515 else {
9516 Statements.push_back(Return.takeAs<Stmt>());
9517
9518 if (Trap.hasErrorOccurred()) {
9519 Diag(CurrentLocation, diag::note_member_synthesized_at)
9520 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
9521 Invalid = true;
9522 }
9523 }
9524 }
9525
9526 if (Invalid) {
9527 MoveAssignOperator->setInvalidDecl();
9528 return;
9529 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009530
9531 StmtResult Body;
9532 {
9533 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009534 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009535 /*isStmtExpr=*/false);
9536 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
9537 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009538 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
9539
9540 if (ASTMutationListener *L = getASTMutationListener()) {
9541 L->CompletedImplicitDefinition(MoveAssignOperator);
9542 }
9543}
9544
Richard Smithb9d0b762012-07-27 04:22:15 +00009545Sema::ImplicitExceptionSpecification
9546Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
9547 CXXRecordDecl *ClassDecl = MD->getParent();
9548
9549 ImplicitExceptionSpecification ExceptSpec(*this);
9550 if (ClassDecl->isInvalidDecl())
9551 return ExceptSpec;
9552
9553 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
9554 assert(T->getNumArgs() >= 1 && "not a copy ctor");
9555 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
9556
Douglas Gregor0d405db2010-07-01 20:59:04 +00009557 // C++ [except.spec]p14:
9558 // An implicitly declared special member function (Clause 12) shall have an
9559 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00009560 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
9561 BaseEnd = ClassDecl->bases_end();
9562 Base != BaseEnd;
9563 ++Base) {
9564 // Virtual bases are handled below.
9565 if (Base->isVirtual())
9566 continue;
9567
Douglas Gregor22584312010-07-02 23:41:54 +00009568 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009569 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009570 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009571 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009572 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009573 }
9574 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9575 BaseEnd = ClassDecl->vbases_end();
9576 Base != BaseEnd;
9577 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00009578 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009579 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009580 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009581 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009582 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009583 }
9584 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9585 FieldEnd = ClassDecl->field_end();
9586 Field != FieldEnd;
9587 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00009588 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00009589 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
9590 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00009591 LookupCopyingConstructor(FieldClassDecl,
9592 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00009593 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009594 }
9595 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00009596
Richard Smithb9d0b762012-07-27 04:22:15 +00009597 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00009598}
9599
9600CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
9601 CXXRecordDecl *ClassDecl) {
9602 // C++ [class.copy]p4:
9603 // If the class definition does not explicitly declare a copy
9604 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +00009605 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +00009606
Richard Smithafb49182012-11-29 01:34:07 +00009607 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
9608 if (DSM.isAlreadyBeingDeclared())
9609 return 0;
9610
Sean Hunt49634cf2011-05-13 06:10:58 +00009611 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9612 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +00009613 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +00009614 if (Const)
9615 ArgType = ArgType.withConst();
9616 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00009617
Richard Smith7756afa2012-06-10 05:43:50 +00009618 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9619 CXXCopyConstructor,
9620 Const);
9621
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009622 DeclarationName Name
9623 = Context.DeclarationNames.getCXXConstructorName(
9624 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009625 SourceLocation ClassLoc = ClassDecl->getLocation();
9626 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00009627
9628 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009629 // member of its class.
9630 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009631 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009632 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009633 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009634 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00009635 CopyConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +00009636
Richard Smithb9d0b762012-07-27 04:22:15 +00009637 // Build an exception specification pointing back at this member.
9638 FunctionProtoType::ExtProtoInfo EPI;
9639 EPI.ExceptionSpecType = EST_Unevaluated;
9640 EPI.ExceptionSpecDecl = CopyConstructor;
9641 CopyConstructor->setType(
Jordan Rosebea522f2013-03-08 21:51:21 +00009642 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00009643
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009644 // Add the parameter to the constructor.
9645 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009646 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009647 /*IdentifierInfo=*/0,
9648 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00009649 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009650 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00009651
Richard Smithbc2a35d2012-12-08 08:32:28 +00009652 CopyConstructor->setTrivial(
9653 ClassDecl->needsOverloadResolutionForCopyConstructor()
9654 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
9655 : ClassDecl->hasTrivialCopyConstructor());
Sean Hunt71a682f2011-05-18 03:41:58 +00009656
Nico Weberafcc96a2012-01-23 03:19:29 +00009657 // C++11 [class.copy]p8:
9658 // ... If the class definition does not explicitly declare a copy
9659 // constructor, there is no user-declared move constructor, and there is no
9660 // user-declared move assignment operator, a copy constructor is implicitly
9661 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00009662 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Richard Smith0ab5b4c2013-04-02 19:38:47 +00009663 SetDeclDeleted(CopyConstructor, ClassLoc);
Richard Smith6c4c36c2012-03-30 20:53:28 +00009664
Richard Smithbc2a35d2012-12-08 08:32:28 +00009665 // Note that we have declared this constructor.
9666 ++ASTContext::NumImplicitCopyConstructorsDeclared;
9667
9668 if (Scope *S = getScopeForContext(ClassDecl))
9669 PushOnScopeChains(CopyConstructor, S, false);
9670 ClassDecl->addDecl(CopyConstructor);
9671
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009672 return CopyConstructor;
9673}
9674
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009675void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00009676 CXXConstructorDecl *CopyConstructor) {
9677 assert((CopyConstructor->isDefaulted() &&
9678 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009679 !CopyConstructor->doesThisDeclarationHaveABody() &&
9680 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009681 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00009682
Anders Carlsson63010a72010-04-23 16:24:12 +00009683 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009684 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009685
Richard Smith36155c12013-06-13 03:23:42 +00009686 // C++11 [class.copy]p7:
9687 // The [definition of an implicitly declared copy constructro] is
9688 // deprecated if the class has a user-declared copy assignment operator
9689 // or a user-declared destructor.
9690 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit())
9691 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation);
9692
Eli Friedman9a14db32012-10-18 20:14:08 +00009693 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00009694 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009695
David Blaikie93c86172013-01-17 05:26:25 +00009696 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009697 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00009698 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009699 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00009700 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009701 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009702 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009703 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
9704 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009705 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009706 /*isStmtExpr=*/false)
9707 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009708 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00009709 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009710
9711 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00009712 if (ASTMutationListener *L = getASTMutationListener()) {
9713 L->CompletedImplicitDefinition(CopyConstructor);
9714 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009715}
9716
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009717Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00009718Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
9719 CXXRecordDecl *ClassDecl = MD->getParent();
9720
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009721 // C++ [except.spec]p14:
9722 // An implicitly declared special member function (Clause 12) shall have an
9723 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00009724 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009725 if (ClassDecl->isInvalidDecl())
9726 return ExceptSpec;
9727
9728 // Direct base-class constructors.
9729 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
9730 BEnd = ClassDecl->bases_end();
9731 B != BEnd; ++B) {
9732 if (B->isVirtual()) // Handled below.
9733 continue;
9734
9735 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9736 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009737 CXXConstructorDecl *Constructor =
9738 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009739 // If this is a deleted function, add it anyway. This might be conformant
9740 // with the standard. This might not. I'm not sure. It might not matter.
9741 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009742 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009743 }
9744 }
9745
9746 // Virtual base-class constructors.
9747 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
9748 BEnd = ClassDecl->vbases_end();
9749 B != BEnd; ++B) {
9750 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9751 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009752 CXXConstructorDecl *Constructor =
9753 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009754 // If this is a deleted function, add it anyway. This might be conformant
9755 // with the standard. This might not. I'm not sure. It might not matter.
9756 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009757 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009758 }
9759 }
9760
9761 // Field constructors.
9762 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
9763 FEnd = ClassDecl->field_end();
9764 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00009765 QualType FieldType = Context.getBaseElementType(F->getType());
9766 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
9767 CXXConstructorDecl *Constructor =
9768 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009769 // If this is a deleted function, add it anyway. This might be conformant
9770 // with the standard. This might not. I'm not sure. It might not matter.
9771 // In particular, the problem is that this function never gets called. It
9772 // might just be ill-formed because this function attempts to refer to
9773 // a deleted function here.
9774 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009775 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009776 }
9777 }
9778
9779 return ExceptSpec;
9780}
9781
9782CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
9783 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00009784 // C++11 [class.copy]p9:
9785 // If the definition of a class X does not explicitly declare a move
9786 // constructor, one will be implicitly declared as defaulted if and only if:
9787 //
9788 // - [first 4 bullets]
9789 assert(ClassDecl->needsImplicitMoveConstructor());
9790
Richard Smithafb49182012-11-29 01:34:07 +00009791 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
9792 if (DSM.isAlreadyBeingDeclared())
9793 return 0;
9794
Richard Smith1c931be2012-04-02 18:40:40 +00009795 // [Checked after we build the declaration]
9796 // - the move assignment operator would not be implicitly defined as
9797 // deleted,
9798
9799 // [DR1402]:
9800 // - each of X's non-static data members and direct or virtual base classes
9801 // has a type that either has a move constructor or is trivially copyable.
9802 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
9803 ClassDecl->setFailedImplicitMoveConstructor();
9804 return 0;
9805 }
9806
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009807 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9808 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009809
Richard Smith7756afa2012-06-10 05:43:50 +00009810 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9811 CXXMoveConstructor,
9812 false);
9813
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009814 DeclarationName Name
9815 = Context.DeclarationNames.getCXXConstructorName(
9816 Context.getCanonicalType(ClassType));
9817 SourceLocation ClassLoc = ClassDecl->getLocation();
9818 DeclarationNameInfo NameInfo(Name, ClassLoc);
9819
Richard Smitha8942d72013-05-07 03:19:20 +00009820 // C++11 [class.copy]p11:
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009821 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009822 // member of its class.
9823 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009824 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009825 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009826 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009827 MoveConstructor->setAccess(AS_public);
9828 MoveConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +00009829
Richard Smithb9d0b762012-07-27 04:22:15 +00009830 // Build an exception specification pointing back at this member.
9831 FunctionProtoType::ExtProtoInfo EPI;
9832 EPI.ExceptionSpecType = EST_Unevaluated;
9833 EPI.ExceptionSpecDecl = MoveConstructor;
9834 MoveConstructor->setType(
Jordan Rosebea522f2013-03-08 21:51:21 +00009835 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithb9d0b762012-07-27 04:22:15 +00009836
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009837 // Add the parameter to the constructor.
9838 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
9839 ClassLoc, ClassLoc,
9840 /*IdentifierInfo=*/0,
9841 ArgType, /*TInfo=*/0,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009842 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009843 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009844
Richard Smithbc2a35d2012-12-08 08:32:28 +00009845 MoveConstructor->setTrivial(
9846 ClassDecl->needsOverloadResolutionForMoveConstructor()
9847 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
9848 : ClassDecl->hasTrivialMoveConstructor());
9849
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009850 // C++0x [class.copy]p9:
9851 // If the definition of a class X does not explicitly declare a move
9852 // constructor, one will be implicitly declared as defaulted if and only if:
9853 // [...]
9854 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00009855 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009856 // Cache this result so that we don't try to generate this over and over
9857 // on every lookup, leaking memory and wasting time.
9858 ClassDecl->setFailedImplicitMoveConstructor();
9859 return 0;
9860 }
9861
9862 // Note that we have declared this constructor.
9863 ++ASTContext::NumImplicitMoveConstructorsDeclared;
9864
9865 if (Scope *S = getScopeForContext(ClassDecl))
9866 PushOnScopeChains(MoveConstructor, S, false);
9867 ClassDecl->addDecl(MoveConstructor);
9868
9869 return MoveConstructor;
9870}
9871
9872void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
9873 CXXConstructorDecl *MoveConstructor) {
9874 assert((MoveConstructor->isDefaulted() &&
9875 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009876 !MoveConstructor->doesThisDeclarationHaveABody() &&
9877 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009878 "DefineImplicitMoveConstructor - call it for implicit move ctor");
9879
9880 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
9881 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
9882
Eli Friedman9a14db32012-10-18 20:14:08 +00009883 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009884 DiagnosticErrorTrap Trap(Diags);
9885
David Blaikie93c86172013-01-17 05:26:25 +00009886 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) ||
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009887 Trap.hasErrorOccurred()) {
9888 Diag(CurrentLocation, diag::note_member_synthesized_at)
9889 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
9890 MoveConstructor->setInvalidDecl();
9891 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009892 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009893 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
9894 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009895 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009896 /*isStmtExpr=*/false)
9897 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009898 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009899 }
9900
9901 MoveConstructor->setUsed();
9902
9903 if (ASTMutationListener *L = getASTMutationListener()) {
9904 L->CompletedImplicitDefinition(MoveConstructor);
9905 }
9906}
9907
Douglas Gregore4e68d42012-02-15 19:33:52 +00009908bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
9909 return FD->isDeleted() &&
9910 (FD->isDefaulted() || FD->isImplicit()) &&
9911 isa<CXXMethodDecl>(FD);
9912}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009913
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009914/// \brief Mark the call operator of the given lambda closure type as "used".
9915static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
9916 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00009917 = cast<CXXMethodDecl>(
David Blaikie3bc93e32012-12-19 00:45:41 +00009918 Lambda->lookup(
9919 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).front());
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009920 CallOperator->setReferenced();
9921 CallOperator->setUsed();
9922}
9923
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009924void Sema::DefineImplicitLambdaToFunctionPointerConversion(
9925 SourceLocation CurrentLocation,
9926 CXXConversionDecl *Conv)
9927{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009928 CXXRecordDecl *Lambda = Conv->getParent();
9929
9930 // Make sure that the lambda call operator is marked used.
9931 markLambdaCallOperatorUsed(*this, Lambda);
9932
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009933 Conv->setUsed();
9934
Eli Friedman9a14db32012-10-18 20:14:08 +00009935 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009936 DiagnosticErrorTrap Trap(Diags);
9937
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009938 // Return the address of the __invoke function.
9939 DeclarationName InvokeName = &Context.Idents.get("__invoke");
9940 CXXMethodDecl *Invoke
David Blaikie3bc93e32012-12-19 00:45:41 +00009941 = cast<CXXMethodDecl>(Lambda->lookup(InvokeName).front());
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009942 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9943 VK_LValue, Conv->getLocation()).take();
9944 assert(FunctionRef && "Can't refer to __invoke function?");
9945 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
Nico Weberd36aa352012-12-29 20:03:39 +00009946 Conv->setBody(new (Context) CompoundStmt(Context, Return,
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009947 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009948 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009949
9950 // Fill in the __invoke function with a dummy implementation. IR generation
9951 // will fill in the actual details.
9952 Invoke->setUsed();
9953 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009954 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009955
9956 if (ASTMutationListener *L = getASTMutationListener()) {
9957 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009958 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009959 }
9960}
9961
9962void Sema::DefineImplicitLambdaToBlockPointerConversion(
9963 SourceLocation CurrentLocation,
9964 CXXConversionDecl *Conv)
9965{
9966 Conv->setUsed();
9967
Eli Friedman9a14db32012-10-18 20:14:08 +00009968 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009969 DiagnosticErrorTrap Trap(Diags);
9970
Douglas Gregorac1303e2012-02-22 05:02:47 +00009971 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009972 Expr *This = ActOnCXXThis(CurrentLocation).take();
9973 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009974
Eli Friedman23f02672012-03-01 04:01:32 +00009975 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9976 Conv->getLocation(),
9977 Conv, DerefThis);
9978
9979 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9980 // behavior. Note that only the general conversion function does this
9981 // (since it's unusable otherwise); in the case where we inline the
9982 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009983 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00009984 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9985 CK_CopyAndAutoreleaseBlockObject,
9986 BuildBlock.get(), 0, VK_RValue);
9987
9988 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009989 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009990 Conv->setInvalidDecl();
9991 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009992 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009993
Douglas Gregorac1303e2012-02-22 05:02:47 +00009994 // Create the return statement that returns the block from the conversion
9995 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009996 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009997 if (Return.isInvalid()) {
9998 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9999 Conv->setInvalidDecl();
10000 return;
10001 }
10002
10003 // Set the body of the conversion function.
10004 Stmt *ReturnS = Return.take();
Nico Weberd36aa352012-12-29 20:03:39 +000010005 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
Douglas Gregorac1303e2012-02-22 05:02:47 +000010006 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +000010007 Conv->getLocation()));
10008
Douglas Gregorac1303e2012-02-22 05:02:47 +000010009 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +000010010 if (ASTMutationListener *L = getASTMutationListener()) {
10011 L->CompletedImplicitDefinition(Conv);
10012 }
10013}
10014
Douglas Gregorf52757d2012-03-10 06:53:13 +000010015/// \brief Determine whether the given list arguments contains exactly one
10016/// "real" (non-default) argument.
10017static bool hasOneRealArgument(MultiExprArg Args) {
10018 switch (Args.size()) {
10019 case 0:
10020 return false;
10021
10022 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010023 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +000010024 return false;
10025
10026 // fall through
10027 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010028 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +000010029 }
10030
10031 return false;
10032}
10033
John McCall60d7b3a2010-08-24 06:29:42 +000010034ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +000010035Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +000010036 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +000010037 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010038 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +000010039 bool IsListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000010040 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +000010041 unsigned ConstructKind,
10042 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000010043 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +000010044
Douglas Gregor2f599792010-04-02 18:24:57 +000010045 // C++0x [class.copy]p34:
10046 // When certain criteria are met, an implementation is allowed to
10047 // omit the copy/move construction of a class object, even if the
10048 // copy/move constructor and/or destructor for the object have
10049 // side effects. [...]
10050 // - when a temporary class object that has not been bound to a
10051 // reference (12.2) would be copied/moved to a class object
10052 // with the same cv-unqualified type, the copy/move operation
10053 // can be omitted by constructing the temporary object
10054 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +000010055 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +000010056 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +000010057 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +000010058 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000010059 }
Mike Stump1eb44332009-09-09 15:08:12 +000010060
10061 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010062 Elidable, ExprArgs, HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +000010063 IsListInitialization, RequiresZeroInit,
10064 ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +000010065}
10066
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +000010067/// BuildCXXConstructExpr - Creates a complete call to a constructor,
10068/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +000010069ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +000010070Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
10071 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +000010072 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010073 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +000010074 bool IsListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000010075 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +000010076 unsigned ConstructKind,
10077 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010078 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +000010079 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +000010080 Constructor, Elidable, ExprArgs,
Richard Smithc83c2302012-12-19 01:39:02 +000010081 HadMultipleCandidates,
10082 IsListInitialization, RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +000010083 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
10084 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +000010085}
10086
John McCall68c6c9a2010-02-02 09:10:11 +000010087void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010088 if (VD->isInvalidDecl()) return;
10089
John McCall68c6c9a2010-02-02 09:10:11 +000010090 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010091 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +000010092 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010093 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +000010094
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010095 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +000010096 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010097 CheckDestructorAccess(VD->getLocation(), Destructor,
10098 PDiag(diag::err_access_dtor_var)
10099 << VD->getDeclName()
10100 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +000010101 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +000010102
Chandler Carruth1d71cbf2011-03-27 21:26:48 +000010103 if (!VD->hasGlobalStorage()) return;
10104
10105 // Emit warning for non-trivial dtor in global scope (a real global,
10106 // class-static, function-static).
10107 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
10108
10109 // TODO: this should be re-enabled for static locals by !CXAAtExit
10110 if (!VD->isStaticLocal())
10111 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +000010112}
10113
Douglas Gregor39da0b82009-09-09 23:08:42 +000010114/// \brief Given a constructor and the set of arguments provided for the
10115/// constructor, convert the arguments and add any required default arguments
10116/// to form a proper call to this constructor.
10117///
10118/// \returns true if an error occurred, false otherwise.
10119bool
10120Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
10121 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +000010122 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +000010123 SmallVectorImpl<Expr*> &ConvertedArgs,
Richard Smitha4dc51b2013-02-05 05:52:24 +000010124 bool AllowExplicit,
10125 bool IsListInitialization) {
Douglas Gregor39da0b82009-09-09 23:08:42 +000010126 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
10127 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +000010128 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +000010129
10130 const FunctionProtoType *Proto
10131 = Constructor->getType()->getAs<FunctionProtoType>();
10132 assert(Proto && "Constructor without a prototype?");
10133 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +000010134
10135 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000010136 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +000010137 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000010138 else
Douglas Gregor39da0b82009-09-09 23:08:42 +000010139 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000010140
10141 VariadicCallType CallType =
10142 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010143 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000010144 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
Dmitri Gribenko9e00f122013-05-09 21:02:07 +000010145 Proto, 0,
10146 llvm::makeArrayRef(Args, NumArgs),
10147 AllArgs,
Richard Smitha4dc51b2013-02-05 05:52:24 +000010148 CallType, AllowExplicit,
10149 IsListInitialization);
Benjamin Kramer14c59822012-02-14 12:06:21 +000010150 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +000010151
Dmitri Gribenko9e00f122013-05-09 21:02:07 +000010152 DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
Eli Friedmane61eb042012-02-18 04:48:30 +000010153
Dmitri Gribenko1c030e92013-01-13 20:46:02 +000010154 CheckConstructorCall(Constructor,
10155 llvm::makeArrayRef<const Expr *>(AllArgs.data(),
10156 AllArgs.size()),
Richard Smith831421f2012-06-25 20:30:08 +000010157 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +000010158
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +000010159 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +000010160}
10161
Anders Carlsson20d45d22009-12-12 00:32:00 +000010162static inline bool
10163CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
10164 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010165 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +000010166 if (isa<NamespaceDecl>(DC)) {
10167 return SemaRef.Diag(FnDecl->getLocation(),
10168 diag::err_operator_new_delete_declared_in_namespace)
10169 << FnDecl->getDeclName();
10170 }
10171
10172 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +000010173 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +000010174 return SemaRef.Diag(FnDecl->getLocation(),
10175 diag::err_operator_new_delete_declared_static)
10176 << FnDecl->getDeclName();
10177 }
10178
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +000010179 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +000010180}
10181
Anders Carlsson156c78e2009-12-13 17:53:43 +000010182static inline bool
10183CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
10184 CanQualType ExpectedResultType,
10185 CanQualType ExpectedFirstParamType,
10186 unsigned DependentParamTypeDiag,
10187 unsigned InvalidParamTypeDiag) {
10188 QualType ResultType =
10189 FnDecl->getType()->getAs<FunctionType>()->getResultType();
10190
10191 // Check that the result type is not dependent.
10192 if (ResultType->isDependentType())
10193 return SemaRef.Diag(FnDecl->getLocation(),
10194 diag::err_operator_new_delete_dependent_result_type)
10195 << FnDecl->getDeclName() << ExpectedResultType;
10196
10197 // Check that the result type is what we expect.
10198 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
10199 return SemaRef.Diag(FnDecl->getLocation(),
10200 diag::err_operator_new_delete_invalid_result_type)
10201 << FnDecl->getDeclName() << ExpectedResultType;
10202
10203 // A function template must have at least 2 parameters.
10204 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
10205 return SemaRef.Diag(FnDecl->getLocation(),
10206 diag::err_operator_new_delete_template_too_few_parameters)
10207 << FnDecl->getDeclName();
10208
10209 // The function decl must have at least 1 parameter.
10210 if (FnDecl->getNumParams() == 0)
10211 return SemaRef.Diag(FnDecl->getLocation(),
10212 diag::err_operator_new_delete_too_few_parameters)
10213 << FnDecl->getDeclName();
10214
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +000010215 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +000010216 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
10217 if (FirstParamType->isDependentType())
10218 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
10219 << FnDecl->getDeclName() << ExpectedFirstParamType;
10220
10221 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +000010222 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +000010223 ExpectedFirstParamType)
10224 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
10225 << FnDecl->getDeclName() << ExpectedFirstParamType;
10226
10227 return false;
10228}
10229
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010230static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +000010231CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +000010232 // C++ [basic.stc.dynamic.allocation]p1:
10233 // A program is ill-formed if an allocation function is declared in a
10234 // namespace scope other than global scope or declared static in global
10235 // scope.
10236 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
10237 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +000010238
10239 CanQualType SizeTy =
10240 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
10241
10242 // C++ [basic.stc.dynamic.allocation]p1:
10243 // The return type shall be void*. The first parameter shall have type
10244 // std::size_t.
10245 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
10246 SizeTy,
10247 diag::err_operator_new_dependent_param_type,
10248 diag::err_operator_new_param_type))
10249 return true;
10250
10251 // C++ [basic.stc.dynamic.allocation]p1:
10252 // The first parameter shall not have an associated default argument.
10253 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +000010254 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +000010255 diag::err_operator_new_default_arg)
10256 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
10257
10258 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +000010259}
10260
10261static bool
Richard Smith444d3842012-10-20 08:26:51 +000010262CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010263 // C++ [basic.stc.dynamic.deallocation]p1:
10264 // A program is ill-formed if deallocation functions are declared in a
10265 // namespace scope other than global scope or declared static in global
10266 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +000010267 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
10268 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010269
10270 // C++ [basic.stc.dynamic.deallocation]p2:
10271 // Each deallocation function shall return void and its first parameter
10272 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +000010273 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
10274 SemaRef.Context.VoidPtrTy,
10275 diag::err_operator_delete_dependent_param_type,
10276 diag::err_operator_delete_param_type))
10277 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010278
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010279 return false;
10280}
10281
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010282/// CheckOverloadedOperatorDeclaration - Check whether the declaration
10283/// of this overloaded operator is well-formed. If so, returns false;
10284/// otherwise, emits appropriate diagnostics and returns true.
10285bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010286 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010287 "Expected an overloaded operator declaration");
10288
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010289 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
10290
Mike Stump1eb44332009-09-09 15:08:12 +000010291 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010292 // The allocation and deallocation functions, operator new,
10293 // operator new[], operator delete and operator delete[], are
10294 // described completely in 3.7.3. The attributes and restrictions
10295 // found in the rest of this subclause do not apply to them unless
10296 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +000010297 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +000010298 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +000010299
Anders Carlssona3ccda52009-12-12 00:26:23 +000010300 if (Op == OO_New || Op == OO_Array_New)
10301 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010302
10303 // C++ [over.oper]p6:
10304 // An operator function shall either be a non-static member
10305 // function or be a non-member function and have at least one
10306 // parameter whose type is a class, a reference to a class, an
10307 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010308 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
10309 if (MethodDecl->isStatic())
10310 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000010311 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010312 } else {
10313 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010314 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
10315 ParamEnd = FnDecl->param_end();
10316 Param != ParamEnd; ++Param) {
10317 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +000010318 if (ParamType->isDependentType() || ParamType->isRecordType() ||
10319 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010320 ClassOrEnumParam = true;
10321 break;
10322 }
10323 }
10324
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010325 if (!ClassOrEnumParam)
10326 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +000010327 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000010328 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010329 }
10330
10331 // C++ [over.oper]p8:
10332 // An operator function cannot have default arguments (8.3.6),
10333 // except where explicitly stated below.
10334 //
Mike Stump1eb44332009-09-09 15:08:12 +000010335 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010336 // (C++ [over.call]p1).
10337 if (Op != OO_Call) {
10338 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
10339 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +000010340 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +000010341 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +000010342 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +000010343 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010344 }
10345 }
10346
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010347 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
10348 { false, false, false }
10349#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
10350 , { Unary, Binary, MemberOnly }
10351#include "clang/Basic/OperatorKinds.def"
10352 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010353
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010354 bool CanBeUnaryOperator = OperatorUses[Op][0];
10355 bool CanBeBinaryOperator = OperatorUses[Op][1];
10356 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010357
10358 // C++ [over.oper]p8:
10359 // [...] Operator functions cannot have more or fewer parameters
10360 // than the number required for the corresponding operator, as
10361 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +000010362 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010363 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010364 if (Op != OO_Call &&
10365 ((NumParams == 1 && !CanBeUnaryOperator) ||
10366 (NumParams == 2 && !CanBeBinaryOperator) ||
10367 (NumParams < 1) || (NumParams > 2))) {
10368 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +000010369 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010370 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +000010371 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010372 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +000010373 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010374 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +000010375 assert(CanBeBinaryOperator &&
10376 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +000010377 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +000010378 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010379
Chris Lattner416e46f2008-11-21 07:57:12 +000010380 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000010381 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010382 }
Sebastian Redl64b45f72009-01-05 20:52:13 +000010383
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010384 // Overloaded operators other than operator() cannot be variadic.
10385 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +000010386 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +000010387 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000010388 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010389 }
10390
10391 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010392 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
10393 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +000010394 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000010395 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010396 }
10397
10398 // C++ [over.inc]p1:
10399 // The user-defined function called operator++ implements the
10400 // prefix and postfix ++ operator. If this function is a member
10401 // function with no parameters, or a non-member function with one
10402 // parameter of class or enumeration type, it defines the prefix
10403 // increment operator ++ for objects of that type. If the function
10404 // is a member function with one parameter (which shall be of type
10405 // int) or a non-member function with two parameters (the second
10406 // of which shall be of type int), it defines the postfix
10407 // increment operator ++ for objects of that type.
10408 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
10409 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
10410 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +000010411 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010412 ParamIsInt = BT->getKind() == BuiltinType::Int;
10413
Chris Lattneraf7ae4e2008-11-21 07:50:02 +000010414 if (!ParamIsInt)
10415 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +000010416 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +000010417 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010418 }
10419
Douglas Gregor43c7bad2008-11-17 16:14:12 +000010420 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +000010421}
Chris Lattner5a003a42008-12-17 07:09:26 +000010422
Sean Hunta6c058d2010-01-13 09:01:02 +000010423/// CheckLiteralOperatorDeclaration - Check whether the declaration
10424/// of this literal operator function is well-formed. If so, returns
10425/// false; otherwise, emits appropriate diagnostics and returns true.
10426bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +000010427 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +000010428 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
10429 << FnDecl->getDeclName();
10430 return true;
10431 }
10432
Richard Smithb4a7b1e2012-03-04 09:41:16 +000010433 if (FnDecl->isExternC()) {
10434 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
10435 return true;
10436 }
10437
Sean Hunta6c058d2010-01-13 09:01:02 +000010438 bool Valid = false;
10439
Richard Smith36f5cfe2012-03-09 08:00:36 +000010440 // This might be the definition of a literal operator template.
10441 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
10442 // This might be a specialization of a literal operator template.
10443 if (!TpDecl)
10444 TpDecl = FnDecl->getPrimaryTemplate();
10445
Sean Hunt216c2782010-04-07 23:11:06 +000010446 // template <char...> type operator "" name() is the only valid template
10447 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +000010448 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +000010449 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +000010450 // Must have only one template parameter
10451 TemplateParameterList *Params = TpDecl->getTemplateParameters();
10452 if (Params->size() == 1) {
10453 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +000010454 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +000010455
Sean Hunt216c2782010-04-07 23:11:06 +000010456 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +000010457 if (PmDecl && PmDecl->isTemplateParameterPack() &&
10458 Context.hasSameType(PmDecl->getType(), Context.CharTy))
10459 Valid = true;
10460 }
10461 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +000010462 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +000010463 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +000010464 FunctionDecl::param_iterator Param = FnDecl->param_begin();
10465
Richard Smithb4a7b1e2012-03-04 09:41:16 +000010466 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +000010467
Sean Hunt30019c02010-04-07 22:57:35 +000010468 // unsigned long long int, long double, and any character type are allowed
10469 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +000010470 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
10471 Context.hasSameType(T, Context.LongDoubleTy) ||
10472 Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg15f92ba2013-05-10 10:08:40 +000010473 Context.hasSameType(T, Context.WideCharTy) ||
Sean Hunta6c058d2010-01-13 09:01:02 +000010474 Context.hasSameType(T, Context.Char16Ty) ||
10475 Context.hasSameType(T, Context.Char32Ty)) {
10476 if (++Param == FnDecl->param_end())
10477 Valid = true;
10478 goto FinishedParams;
10479 }
10480
Sean Hunt30019c02010-04-07 22:57:35 +000010481 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +000010482 const PointerType *PT = T->getAs<PointerType>();
10483 if (!PT)
10484 goto FinishedParams;
10485 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +000010486 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +000010487 goto FinishedParams;
10488 T = T.getUnqualifiedType();
10489
10490 // Move on to the second parameter;
10491 ++Param;
10492
10493 // If there is no second parameter, the first must be a const char *
10494 if (Param == FnDecl->param_end()) {
10495 if (Context.hasSameType(T, Context.CharTy))
10496 Valid = true;
10497 goto FinishedParams;
10498 }
10499
10500 // const char *, const wchar_t*, const char16_t*, and const char32_t*
10501 // are allowed as the first parameter to a two-parameter function
10502 if (!(Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg15f92ba2013-05-10 10:08:40 +000010503 Context.hasSameType(T, Context.WideCharTy) ||
Sean Hunta6c058d2010-01-13 09:01:02 +000010504 Context.hasSameType(T, Context.Char16Ty) ||
10505 Context.hasSameType(T, Context.Char32Ty)))
10506 goto FinishedParams;
10507
10508 // The second and final parameter must be an std::size_t
10509 T = (*Param)->getType().getUnqualifiedType();
10510 if (Context.hasSameType(T, Context.getSizeType()) &&
10511 ++Param == FnDecl->param_end())
10512 Valid = true;
10513 }
10514
10515 // FIXME: This diagnostic is absolutely terrible.
10516FinishedParams:
10517 if (!Valid) {
10518 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
10519 << FnDecl->getDeclName();
10520 return true;
10521 }
10522
Richard Smitha9e88b22012-03-09 08:16:22 +000010523 // A parameter-declaration-clause containing a default argument is not
10524 // equivalent to any of the permitted forms.
10525 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
10526 ParamEnd = FnDecl->param_end();
10527 Param != ParamEnd; ++Param) {
10528 if ((*Param)->hasDefaultArg()) {
10529 Diag((*Param)->getDefaultArgRange().getBegin(),
10530 diag::err_literal_operator_default_argument)
10531 << (*Param)->getDefaultArgRange();
10532 break;
10533 }
10534 }
10535
Richard Smith2fb4ae32012-03-08 02:39:21 +000010536 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +000010537 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
10538 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +000010539 // C++11 [usrlit.suffix]p1:
10540 // Literal suffix identifiers that do not start with an underscore
10541 // are reserved for future standardization.
10542 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +000010543 }
Richard Smith2fb4ae32012-03-08 02:39:21 +000010544
Sean Hunta6c058d2010-01-13 09:01:02 +000010545 return false;
10546}
10547
Douglas Gregor074149e2009-01-05 19:45:36 +000010548/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
10549/// linkage specification, including the language and (if present)
10550/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
10551/// the location of the language string literal, which is provided
10552/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
10553/// the '{' brace. Otherwise, this linkage specification does not
10554/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +000010555Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
10556 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +000010557 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +000010558 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +000010559 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +000010560 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +000010561 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +000010562 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +000010563 Language = LinkageSpecDecl::lang_cxx;
10564 else {
Douglas Gregor074149e2009-01-05 19:45:36 +000010565 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +000010566 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010567 }
Mike Stump1eb44332009-09-09 15:08:12 +000010568
Chris Lattnercc98eac2008-12-17 07:13:27 +000010569 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +000010570
Douglas Gregor074149e2009-01-05 19:45:36 +000010571 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Rafael Espindolae5e575d2013-04-26 01:30:23 +000010572 ExternLoc, LangLoc, Language,
10573 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010574 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +000010575 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +000010576 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010577}
10578
Abramo Bagnara35f9a192010-07-30 16:47:02 +000010579/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +000010580/// the C++ linkage specification LinkageSpec. If RBraceLoc is
10581/// valid, it's the position of the closing '}' brace in a linkage
10582/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +000010583Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010584 Decl *LinkageSpec,
10585 SourceLocation RBraceLoc) {
10586 if (LinkageSpec) {
10587 if (RBraceLoc.isValid()) {
10588 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
10589 LSDecl->setRBraceLoc(RBraceLoc);
10590 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010591 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010592 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010593 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +000010594}
10595
Michael Han684aa732013-02-22 17:15:32 +000010596Decl *Sema::ActOnEmptyDeclaration(Scope *S,
10597 AttributeList *AttrList,
10598 SourceLocation SemiLoc) {
10599 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc);
10600 // Attribute declarations appertain to empty declaration so we handle
10601 // them here.
10602 if (AttrList)
10603 ProcessDeclAttributeList(S, ED, AttrList);
Richard Smith6b3d3e52013-02-20 19:22:51 +000010604
Michael Han684aa732013-02-22 17:15:32 +000010605 CurContext->addDecl(ED);
10606 return ED;
Richard Smith6b3d3e52013-02-20 19:22:51 +000010607}
10608
Douglas Gregord308e622009-05-18 20:51:54 +000010609/// \brief Perform semantic analysis for the variable declaration that
10610/// occurs within a C++ catch clause, returning the newly-created
10611/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010612VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +000010613 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010614 SourceLocation StartLoc,
10615 SourceLocation Loc,
10616 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +000010617 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +000010618 QualType ExDeclType = TInfo->getType();
10619
Sebastian Redl4b07b292008-12-22 19:15:10 +000010620 // Arrays and functions decay.
10621 if (ExDeclType->isArrayType())
10622 ExDeclType = Context.getArrayDecayedType(ExDeclType);
10623 else if (ExDeclType->isFunctionType())
10624 ExDeclType = Context.getPointerType(ExDeclType);
10625
10626 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
10627 // The exception-declaration shall not denote a pointer or reference to an
10628 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010629 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +000010630 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +000010631 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010632 Invalid = true;
10633 }
Douglas Gregord308e622009-05-18 20:51:54 +000010634
Sebastian Redl4b07b292008-12-22 19:15:10 +000010635 QualType BaseType = ExDeclType;
10636 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +000010637 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +000010638 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010639 BaseType = Ptr->getPointeeType();
10640 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010641 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +000010642 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010643 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010644 BaseType = Ref->getPointeeType();
10645 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010646 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010647 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010648 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +000010649 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +000010650 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010651
Mike Stump1eb44332009-09-09 15:08:12 +000010652 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +000010653 RequireNonAbstractType(Loc, ExDeclType,
10654 diag::err_abstract_type_in_decl,
10655 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +000010656 Invalid = true;
10657
John McCall5a180392010-07-24 00:37:23 +000010658 // Only the non-fragile NeXT runtime currently supports C++ catches
10659 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +000010660 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +000010661 QualType T = ExDeclType;
10662 if (const ReferenceType *RT = T->getAs<ReferenceType>())
10663 T = RT->getPointeeType();
10664
10665 if (T->isObjCObjectType()) {
10666 Diag(Loc, diag::err_objc_object_catch);
10667 Invalid = true;
10668 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +000010669 // FIXME: should this be a test for macosx-fragile specifically?
10670 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +000010671 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +000010672 }
10673 }
10674
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010675 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
Rafael Espindolad2615cc2013-04-03 19:27:57 +000010676 ExDeclType, TInfo, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +000010677 ExDecl->setExceptionVariable(true);
10678
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010679 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000010680 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010681 Invalid = true;
10682
Douglas Gregorc41b8782011-07-06 18:14:43 +000010683 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +000010684 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
John McCallb760f112013-03-22 02:10:40 +000010685 // Insulate this from anything else we might currently be parsing.
10686 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
10687
Douglas Gregor6d182892010-03-05 23:38:39 +000010688 // C++ [except.handle]p16:
10689 // The object declared in an exception-declaration or, if the
10690 // exception-declaration does not specify a name, a temporary (12.2) is
10691 // copy-initialized (8.5) from the exception object. [...]
10692 // The object is destroyed when the handler exits, after the destruction
10693 // of any automatic objects initialized within the handler.
10694 //
10695 // We just pretend to initialize the object with itself, then make sure
10696 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +000010697 QualType initType = ExDeclType;
10698
10699 InitializedEntity entity =
10700 InitializedEntity::InitializeVariable(ExDecl);
10701 InitializationKind initKind =
10702 InitializationKind::CreateCopy(Loc, SourceLocation());
10703
10704 Expr *opaqueValue =
10705 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +000010706 InitializationSequence sequence(*this, entity, initKind, opaqueValue);
10707 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue);
John McCalle996ffd2011-02-16 08:02:54 +000010708 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +000010709 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +000010710 else {
10711 // If the constructor used was non-trivial, set this as the
10712 // "initializer".
10713 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
10714 if (!construct->getConstructor()->isTrivial()) {
10715 Expr *init = MaybeCreateExprWithCleanups(construct);
10716 ExDecl->setInit(init);
10717 }
10718
10719 // And make sure it's destructable.
10720 FinalizeVarWithDestructor(ExDecl, recordType);
10721 }
Douglas Gregor6d182892010-03-05 23:38:39 +000010722 }
10723 }
10724
Douglas Gregord308e622009-05-18 20:51:54 +000010725 if (Invalid)
10726 ExDecl->setInvalidDecl();
10727
10728 return ExDecl;
10729}
10730
10731/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
10732/// handler.
John McCalld226f652010-08-21 09:40:31 +000010733Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +000010734 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +000010735 bool Invalid = D.isInvalidType();
10736
10737 // Check for unexpanded parameter packs.
Jordan Rose41f3f3a2013-03-05 01:27:54 +000010738 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
10739 UPPC_ExceptionType)) {
Douglas Gregora669c532010-12-16 17:48:04 +000010740 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
10741 D.getIdentifierLoc());
10742 Invalid = true;
10743 }
10744
Sebastian Redl4b07b292008-12-22 19:15:10 +000010745 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +000010746 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +000010747 LookupOrdinaryName,
10748 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010749 // The scope should be freshly made just for us. There is just no way
10750 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +000010751 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +000010752 if (PrevDecl->isTemplateParameter()) {
10753 // Maybe we will complain about the shadowed template parameter.
10754 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +000010755 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010756 }
10757 }
10758
Chris Lattnereaaebc72009-04-25 08:06:05 +000010759 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010760 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
10761 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +000010762 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010763 }
10764
Douglas Gregor83cb9422010-09-09 17:09:21 +000010765 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +000010766 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010767 D.getIdentifierLoc(),
10768 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +000010769 if (Invalid)
10770 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000010771
Sebastian Redl4b07b292008-12-22 19:15:10 +000010772 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010773 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +000010774 PushOnScopeChains(ExDecl, S);
10775 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010776 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +000010777
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000010778 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +000010779 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010780}
Anders Carlssonfb311762009-03-14 00:25:26 +000010781
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010782Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +000010783 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +000010784 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010785 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +000010786 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +000010787
Richard Smithe3f470a2012-07-11 22:37:56 +000010788 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
10789 return 0;
10790
10791 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
10792 AssertMessage, RParenLoc, false);
10793}
10794
10795Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
10796 Expr *AssertExpr,
10797 StringLiteral *AssertMessage,
10798 SourceLocation RParenLoc,
10799 bool Failed) {
10800 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
10801 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +000010802 // In a static_assert-declaration, the constant-expression shall be a
10803 // constant expression that can be contextually converted to bool.
10804 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
10805 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010806 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +000010807
Richard Smithdaaefc52011-12-14 23:32:26 +000010808 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +000010809 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +000010810 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +000010811 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010812 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +000010813
Richard Smithe3f470a2012-07-11 22:37:56 +000010814 if (!Failed && !Cond) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000010815 SmallString<256> MsgBuffer;
Richard Smith0cc323c2012-03-05 23:20:05 +000010816 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +000010817 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010818 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +000010819 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +000010820 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +000010821 }
Anders Carlssonc3082412009-03-14 00:33:21 +000010822 }
Mike Stump1eb44332009-09-09 15:08:12 +000010823
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010824 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +000010825 AssertExpr, AssertMessage, RParenLoc,
10826 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +000010827
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010828 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +000010829 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +000010830}
Sebastian Redl50de12f2009-03-24 22:27:57 +000010831
Douglas Gregor1d869352010-04-07 16:53:43 +000010832/// \brief Perform semantic analysis of the given friend type declaration.
10833///
10834/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +000010835FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +000010836 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010837 TypeSourceInfo *TSInfo) {
10838 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
10839
10840 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +000010841 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +000010842
Richard Smith6b130222011-10-18 21:39:00 +000010843 // C++03 [class.friend]p2:
10844 // An elaborated-type-specifier shall be used in a friend declaration
10845 // for a class.*
10846 //
10847 // * The class-key of the elaborated-type-specifier is required.
10848 if (!ActiveTemplateInstantiations.empty()) {
10849 // Do not complain about the form of friend template types during
10850 // template instantiation; we will already have complained when the
10851 // template was declared.
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000010852 } else {
10853 if (!T->isElaboratedTypeSpecifier()) {
10854 // If we evaluated the type to a record type, suggest putting
10855 // a tag in front.
10856 if (const RecordType *RT = T->getAs<RecordType>()) {
10857 RecordDecl *RD = RT->getDecl();
Richard Smith6b130222011-10-18 21:39:00 +000010858
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000010859 std::string InsertionText = std::string(" ") + RD->getKindName();
Richard Smith6b130222011-10-18 21:39:00 +000010860
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000010861 Diag(TypeRange.getBegin(),
10862 getLangOpts().CPlusPlus11 ?
10863 diag::warn_cxx98_compat_unelaborated_friend_type :
10864 diag::ext_unelaborated_friend_type)
10865 << (unsigned) RD->getTagKind()
10866 << T
10867 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
10868 InsertionText);
10869 } else {
10870 Diag(FriendLoc,
10871 getLangOpts().CPlusPlus11 ?
10872 diag::warn_cxx98_compat_nonclass_type_friend :
10873 diag::ext_nonclass_type_friend)
10874 << T
10875 << TypeRange;
10876 }
10877 } else if (T->getAs<EnumType>()) {
Richard Smith6b130222011-10-18 21:39:00 +000010878 Diag(FriendLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +000010879 getLangOpts().CPlusPlus11 ?
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000010880 diag::warn_cxx98_compat_enum_friend :
10881 diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +000010882 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000010883 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000010884 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010885
Nick Lewyckyce6a10e2013-02-06 05:59:33 +000010886 // C++11 [class.friend]p3:
10887 // A friend declaration that does not declare a function shall have one
10888 // of the following forms:
10889 // friend elaborated-type-specifier ;
10890 // friend simple-type-specifier ;
10891 // friend typename-specifier ;
10892 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
10893 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
10894 }
Richard Smithd6f80da2012-09-20 01:31:00 +000010895
Douglas Gregor06245bf2010-04-07 17:57:12 +000010896 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +000010897 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +000010898 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +000010899 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +000010900}
10901
John McCall9a34edb2010-10-19 01:40:49 +000010902/// Handle a friend tag declaration where the scope specifier was
10903/// templated.
10904Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
10905 unsigned TagSpec, SourceLocation TagLoc,
10906 CXXScopeSpec &SS,
Enea Zaffanella8c840282013-01-31 09:54:08 +000010907 IdentifierInfo *Name,
10908 SourceLocation NameLoc,
John McCall9a34edb2010-10-19 01:40:49 +000010909 AttributeList *Attr,
10910 MultiTemplateParamsArg TempParamLists) {
10911 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
10912
10913 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +000010914 bool Invalid = false;
10915
10916 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +000010917 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010918 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +000010919 TempParamLists.size(),
10920 /*friend*/ true,
10921 isExplicitSpecialization,
10922 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +000010923 if (TemplateParams->size() > 0) {
10924 // This is a declaration of a class template.
10925 if (Invalid)
10926 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000010927
Eric Christopher4110e132011-07-21 05:34:24 +000010928 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
10929 SS, Name, NameLoc, Attr,
10930 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +000010931 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +000010932 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010933 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +000010934 } else {
10935 // The "template<>" header is extraneous.
10936 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
10937 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
10938 isExplicitSpecialization = true;
10939 }
10940 }
10941
10942 if (Invalid) return 0;
10943
John McCall9a34edb2010-10-19 01:40:49 +000010944 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010945 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010946 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000010947 isAllExplicitSpecializations = false;
10948 break;
10949 }
10950 }
10951
10952 // FIXME: don't ignore attributes.
10953
10954 // If it's explicit specializations all the way down, just forget
10955 // about the template header and build an appropriate non-templated
10956 // friend. TODO: for source fidelity, remember the headers.
10957 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010958 if (SS.isEmpty()) {
10959 bool Owned = false;
10960 bool IsDependent = false;
10961 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10962 Attr, AS_public,
10963 /*ModulePrivateLoc=*/SourceLocation(),
10964 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010965 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010966 /*ScopedEnumUsesClassTag=*/false,
10967 /*UnderlyingType=*/TypeResult());
10968 }
10969
Douglas Gregor2494dd02011-03-01 01:34:45 +000010970 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000010971 ElaboratedTypeKeyword Keyword
10972 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010973 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000010974 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010975 if (T.isNull())
10976 return 0;
10977
10978 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10979 if (isa<DependentNameType>(T)) {
David Blaikie39e6ab42013-02-18 22:06:02 +000010980 DependentNameTypeLoc TL =
10981 TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000010982 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010983 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010984 TL.setNameLoc(NameLoc);
10985 } else {
David Blaikie39e6ab42013-02-18 22:06:02 +000010986 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000010987 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000010988 TL.setQualifierLoc(QualifierLoc);
David Blaikie39e6ab42013-02-18 22:06:02 +000010989 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010990 }
10991
10992 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanella8c840282013-01-31 09:54:08 +000010993 TSI, FriendLoc, TempParamLists);
John McCall9a34edb2010-10-19 01:40:49 +000010994 Friend->setAccess(AS_public);
10995 CurContext->addDecl(Friend);
10996 return Friend;
10997 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010998
10999 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
11000
11001
John McCall9a34edb2010-10-19 01:40:49 +000011002
11003 // Handle the case of a templated-scope friend class. e.g.
11004 // template <class T> class A<T>::B;
11005 // FIXME: we don't support these right now.
11006 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
11007 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
11008 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
David Blaikie39e6ab42013-02-18 22:06:02 +000011009 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara38a42912012-02-06 19:09:27 +000011010 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000011011 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000011012 TL.setNameLoc(NameLoc);
11013
11014 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanella8c840282013-01-31 09:54:08 +000011015 TSI, FriendLoc, TempParamLists);
John McCall9a34edb2010-10-19 01:40:49 +000011016 Friend->setAccess(AS_public);
11017 Friend->setUnsupportedFriend(true);
11018 CurContext->addDecl(Friend);
11019 return Friend;
11020}
11021
11022
John McCalldd4a3b02009-09-16 22:47:08 +000011023/// Handle a friend type declaration. This works in tandem with
11024/// ActOnTag.
11025///
11026/// Notes on friend class templates:
11027///
11028/// We generally treat friend class declarations as if they were
11029/// declaring a class. So, for example, the elaborated type specifier
11030/// in a friend declaration is required to obey the restrictions of a
11031/// class-head (i.e. no typedefs in the scope chain), template
11032/// parameters are required to match up with simple template-ids, &c.
11033/// However, unlike when declaring a template specialization, it's
11034/// okay to refer to a template specialization without an empty
11035/// template parameter declaration, e.g.
11036/// friend class A<T>::B<unsigned>;
11037/// We permit this as a special case; if there are any template
11038/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000011039/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000011040Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000011041 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000011042 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000011043
11044 assert(DS.isFriendSpecified());
11045 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
11046
John McCalldd4a3b02009-09-16 22:47:08 +000011047 // Try to convert the decl specifier to a type. This works for
11048 // friend templates because ActOnTag never produces a ClassTemplateDecl
11049 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000011050 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000011051 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
11052 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000011053 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000011054 return 0;
John McCall67d1a672009-08-06 02:15:43 +000011055
Douglas Gregor6ccab972010-12-16 01:14:37 +000011056 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
11057 return 0;
11058
John McCalldd4a3b02009-09-16 22:47:08 +000011059 // This is definitely an error in C++98. It's probably meant to
11060 // be forbidden in C++0x, too, but the specification is just
11061 // poorly written.
11062 //
11063 // The problem is with declarations like the following:
11064 // template <T> friend A<T>::foo;
11065 // where deciding whether a class C is a friend or not now hinges
11066 // on whether there exists an instantiation of A that causes
11067 // 'foo' to equal C. There are restrictions on class-heads
11068 // (which we declare (by fiat) elaborated friend declarations to
11069 // be) that makes this tractable.
11070 //
11071 // FIXME: handle "template <> friend class A<T>;", which
11072 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000011073 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000011074 Diag(Loc, diag::err_tagless_friend_type_template)
11075 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000011076 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000011077 }
Douglas Gregor1d869352010-04-07 16:53:43 +000011078
John McCall02cace72009-08-28 07:59:38 +000011079 // C++98 [class.friend]p1: A friend of a class is a function
11080 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000011081 // This is fixed in DR77, which just barely didn't make the C++03
11082 // deadline. It's also a very silly restriction that seriously
11083 // affects inner classes and which nobody else seems to implement;
11084 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000011085 //
11086 // But note that we could warn about it: it's always useless to
11087 // friend one of your own members (it's not, however, worthless to
11088 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000011089
John McCalldd4a3b02009-09-16 22:47:08 +000011090 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000011091 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000011092 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000011093 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000011094 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000011095 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000011096 DS.getFriendSpecLoc());
11097 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000011098 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000011099
11100 if (!D)
John McCalld226f652010-08-21 09:40:31 +000011101 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000011102
John McCalldd4a3b02009-09-16 22:47:08 +000011103 D->setAccess(AS_public);
11104 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000011105
John McCalld226f652010-08-21 09:40:31 +000011106 return D;
John McCall02cace72009-08-28 07:59:38 +000011107}
11108
Rafael Espindolafc35cbc2013-01-08 20:44:06 +000011109NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
11110 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000011111 const DeclSpec &DS = D.getDeclSpec();
11112
11113 assert(DS.isFriendSpecified());
11114 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
11115
11116 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000011117 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000011118
11119 // C++ [class.friend]p1
11120 // A friend of a class is a function or class....
11121 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000011122 // It *doesn't* see through dependent types, which is correct
11123 // according to [temp.arg.type]p3:
11124 // If a declaration acquires a function type through a
11125 // type dependent on a template-parameter and this causes
11126 // a declaration that does not use the syntactic form of a
11127 // function declarator to have a function type, the program
11128 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011129 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000011130 Diag(Loc, diag::err_unexpected_friend);
11131
11132 // It might be worthwhile to try to recover by creating an
11133 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000011134 return 0;
John McCall67d1a672009-08-06 02:15:43 +000011135 }
11136
11137 // C++ [namespace.memdef]p3
11138 // - If a friend declaration in a non-local class first declares a
11139 // class or function, the friend class or function is a member
11140 // of the innermost enclosing namespace.
11141 // - The name of the friend is not found by simple name lookup
11142 // until a matching declaration is provided in that namespace
11143 // scope (either before or after the class declaration granting
11144 // friendship).
11145 // - If a friend function is called, its name may be found by the
11146 // name lookup that considers functions from namespaces and
11147 // classes associated with the types of the function arguments.
11148 // - When looking for a prior declaration of a class or a function
11149 // declared as a friend, scopes outside the innermost enclosing
11150 // namespace scope are not considered.
11151
John McCall337ec3d2010-10-12 23:13:28 +000011152 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000011153 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
11154 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000011155 assert(Name);
11156
Douglas Gregor6ccab972010-12-16 01:14:37 +000011157 // Check for unexpanded parameter packs.
11158 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
11159 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
11160 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
11161 return 0;
11162
John McCall67d1a672009-08-06 02:15:43 +000011163 // The context we found the declaration in, or in which we should
11164 // create the declaration.
11165 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000011166 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000011167 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000011168 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000011169
John McCall337ec3d2010-10-12 23:13:28 +000011170 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000011171
John McCall337ec3d2010-10-12 23:13:28 +000011172 // There are four cases here.
11173 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000011174 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000011175 // there as appropriate.
11176 // Recover from invalid scope qualifiers as if they just weren't there.
11177 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000011178 // C++0x [namespace.memdef]p3:
11179 // If the name in a friend declaration is neither qualified nor
11180 // a template-id and the declaration is a function or an
11181 // elaborated-type-specifier, the lookup to determine whether
11182 // the entity has been previously declared shall not consider
11183 // any scopes outside the innermost enclosing namespace.
11184 // C++0x [class.friend]p11:
11185 // If a friend declaration appears in a local class and the name
11186 // specified is an unqualified name, a prior declaration is
11187 // looked up without considering scopes that are outside the
11188 // innermost enclosing non-class scope. For a friend function
11189 // declaration, if there is no prior declaration, the program is
11190 // ill-formed.
11191 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000011192 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000011193
John McCall29ae6e52010-10-13 05:45:15 +000011194 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000011195 DC = CurContext;
John McCall67d1a672009-08-06 02:15:43 +000011196
Rafael Espindola11dc6342013-04-25 20:12:36 +000011197 // Skip class contexts. If someone can cite chapter and verse
11198 // for this behavior, that would be nice --- it's what GCC and
11199 // EDG do, and it seems like a reasonable intent, but the spec
11200 // really only says that checks for unqualified existing
11201 // declarations should stop at the nearest enclosing namespace,
11202 // not that they should only consider the nearest enclosing
11203 // namespace.
11204 while (DC->isRecord())
11205 DC = DC->getParent();
11206
11207 DeclContext *LookupDC = DC;
11208 while (LookupDC->isTransparentContext())
11209 LookupDC = LookupDC->getParent();
11210
11211 while (true) {
11212 LookupQualifiedName(Previous, LookupDC);
John McCall67d1a672009-08-06 02:15:43 +000011213
11214 // TODO: decide what we think about using declarations.
Rafael Espindola11dc6342013-04-25 20:12:36 +000011215 if (isLocal)
John McCall67d1a672009-08-06 02:15:43 +000011216 break;
John McCall29ae6e52010-10-13 05:45:15 +000011217
Rafael Espindola11dc6342013-04-25 20:12:36 +000011218 if (!Previous.empty()) {
11219 DC = LookupDC;
11220 break;
John McCall8a407372010-10-14 22:22:28 +000011221 }
Rafael Espindola11dc6342013-04-25 20:12:36 +000011222
11223 if (isTemplateId) {
11224 if (isa<TranslationUnitDecl>(LookupDC)) break;
11225 } else {
11226 if (LookupDC->isFileContext()) break;
11227 }
11228 LookupDC = LookupDC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000011229 }
11230
John McCall380aaa42010-10-13 06:22:15 +000011231 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000011232
Douglas Gregor883af832011-10-10 01:11:59 +000011233 // C++ [class.friend]p6:
11234 // A function can be defined in a friend declaration of a class if and
11235 // only if the class is a non-local class (9.8), the function name is
11236 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011237 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000011238 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
11239 }
11240
John McCall337ec3d2010-10-12 23:13:28 +000011241 // - There's a non-dependent scope specifier, in which case we
11242 // compute it and do a previous lookup there for a function
11243 // or function template.
11244 } else if (!SS.getScopeRep()->isDependent()) {
11245 DC = computeDeclContext(SS);
11246 if (!DC) return 0;
11247
11248 if (RequireCompleteDeclContext(SS, DC)) return 0;
11249
11250 LookupQualifiedName(Previous, DC);
11251
11252 // Ignore things found implicitly in the wrong scope.
11253 // TODO: better diagnostics for this case. Suggesting the right
11254 // qualified scope would be nice...
11255 LookupResult::Filter F = Previous.makeFilter();
11256 while (F.hasNext()) {
11257 NamedDecl *D = F.next();
11258 if (!DC->InEnclosingNamespaceSetOf(
11259 D->getDeclContext()->getRedeclContext()))
11260 F.erase();
11261 }
11262 F.done();
11263
11264 if (Previous.empty()) {
11265 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011266 Diag(Loc, diag::err_qualified_friend_not_found)
11267 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000011268 return 0;
11269 }
11270
11271 // C++ [class.friend]p1: A friend of a class is a function or
11272 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000011273 if (DC->Equals(CurContext))
11274 Diag(DS.getFriendSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +000011275 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +000011276 diag::warn_cxx98_compat_friend_is_member :
11277 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000011278
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011279 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000011280 // C++ [class.friend]p6:
11281 // A function can be defined in a friend declaration of a class if and
11282 // only if the class is a non-local class (9.8), the function name is
11283 // unqualified, and the function has namespace scope.
11284 SemaDiagnosticBuilder DB
11285 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
11286
11287 DB << SS.getScopeRep();
11288 if (DC->isFileContext())
11289 DB << FixItHint::CreateRemoval(SS.getRange());
11290 SS.clear();
11291 }
John McCall337ec3d2010-10-12 23:13:28 +000011292
11293 // - There's a scope specifier that does not match any template
11294 // parameter lists, in which case we use some arbitrary context,
11295 // create a method or method template, and wait for instantiation.
11296 // - There's a scope specifier that does match some template
11297 // parameter lists, which we don't handle right now.
11298 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011299 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000011300 // C++ [class.friend]p6:
11301 // A function can be defined in a friend declaration of a class if and
11302 // only if the class is a non-local class (9.8), the function name is
11303 // unqualified, and the function has namespace scope.
11304 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
11305 << SS.getScopeRep();
11306 }
11307
John McCall337ec3d2010-10-12 23:13:28 +000011308 DC = CurContext;
11309 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000011310 }
Douglas Gregor883af832011-10-10 01:11:59 +000011311
John McCall29ae6e52010-10-13 05:45:15 +000011312 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000011313 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000011314 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
11315 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
11316 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000011317 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000011318 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
11319 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000011320 return 0;
John McCall67d1a672009-08-06 02:15:43 +000011321 }
John McCall67d1a672009-08-06 02:15:43 +000011322 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011323
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000011324 // FIXME: This is an egregious hack to cope with cases where the scope stack
11325 // does not contain the declaration context, i.e., in an out-of-line
11326 // definition of a class.
11327 Scope FakeDCScope(S, Scope::DeclScope, Diags);
11328 if (!DCScope) {
11329 FakeDCScope.setEntity(DC);
11330 DCScope = &FakeDCScope;
11331 }
11332
Francois Pichetaf0f4d02011-08-14 03:52:19 +000011333 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000011334 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000011335 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000011336 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000011337
Douglas Gregor182ddf02009-09-28 00:08:27 +000011338 assert(ND->getDeclContext() == DC);
11339 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000011340
John McCallab88d972009-08-31 22:39:49 +000011341 // Add the function declaration to the appropriate lookup tables,
11342 // adjusting the redeclarations list as necessary. We don't
11343 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000011344 //
John McCallab88d972009-08-31 22:39:49 +000011345 // Also update the scope-based lookup if the target context's
11346 // lookup context is in lexical scope.
11347 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000011348 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000011349 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000011350 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000011351 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000011352 }
John McCall02cace72009-08-28 07:59:38 +000011353
11354 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000011355 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000011356 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000011357 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000011358 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000011359
John McCall1f2e1a92012-08-10 03:15:35 +000011360 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000011361 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000011362 } else {
11363 if (DC->isRecord()) CheckFriendAccess(ND);
11364
John McCall6102ca12010-10-16 06:59:13 +000011365 FunctionDecl *FD;
11366 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
11367 FD = FTD->getTemplatedDecl();
11368 else
11369 FD = cast<FunctionDecl>(ND);
11370
11371 // Mark templated-scope function declarations as unsupported.
11372 if (FD->getNumTemplateParameterLists())
11373 FrD->setUnsupportedFriend(true);
11374 }
John McCall337ec3d2010-10-12 23:13:28 +000011375
John McCalld226f652010-08-21 09:40:31 +000011376 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000011377}
11378
John McCalld226f652010-08-21 09:40:31 +000011379void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
11380 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000011381
Aaron Ballmanafb7ce32013-01-16 23:39:10 +000011382 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl);
Sebastian Redl50de12f2009-03-24 22:27:57 +000011383 if (!Fn) {
11384 Diag(DelLoc, diag::err_deleted_non_function);
11385 return;
11386 }
Richard Smith0ab5b4c2013-04-02 19:38:47 +000011387
Douglas Gregoref96ee02012-01-14 16:38:05 +000011388 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000011389 // Don't consider the implicit declaration we generate for explicit
11390 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000011391 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
11392 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000011393 Diag(DelLoc, diag::err_deleted_decl_not_first);
11394 Diag(Prev->getLocation(), diag::note_previous_declaration);
11395 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000011396 // If the declaration wasn't the first, we delete the function anyway for
11397 // recovery.
Richard Smith0ab5b4c2013-04-02 19:38:47 +000011398 Fn = Fn->getCanonicalDecl();
Sebastian Redl50de12f2009-03-24 22:27:57 +000011399 }
Richard Smith0ab5b4c2013-04-02 19:38:47 +000011400
11401 if (Fn->isDeleted())
11402 return;
11403
11404 // See if we're deleting a function which is already known to override a
11405 // non-deleted virtual function.
11406 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) {
11407 bool IssuedDiagnostic = false;
11408 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
11409 E = MD->end_overridden_methods();
11410 I != E; ++I) {
11411 if (!(*MD->begin_overridden_methods())->isDeleted()) {
11412 if (!IssuedDiagnostic) {
11413 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
11414 IssuedDiagnostic = true;
11415 }
11416 Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
11417 }
11418 }
11419 }
11420
Sean Hunt10620eb2011-05-06 20:44:56 +000011421 Fn->setDeletedAsWritten();
Sebastian Redl50de12f2009-03-24 22:27:57 +000011422}
Sebastian Redl13e88542009-04-27 21:33:24 +000011423
Sean Hunte4246a62011-05-12 06:15:49 +000011424void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
Aaron Ballmanafb7ce32013-01-16 23:39:10 +000011425 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl);
Sean Hunte4246a62011-05-12 06:15:49 +000011426
11427 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000011428 if (MD->getParent()->isDependentType()) {
11429 MD->setDefaulted();
11430 MD->setExplicitlyDefaulted();
11431 return;
11432 }
11433
Sean Hunte4246a62011-05-12 06:15:49 +000011434 CXXSpecialMember Member = getSpecialMember(MD);
11435 if (Member == CXXInvalid) {
11436 Diag(DefaultLoc, diag::err_default_special_members);
11437 return;
11438 }
11439
11440 MD->setDefaulted();
11441 MD->setExplicitlyDefaulted();
11442
Sean Huntcd10dec2011-05-23 23:14:04 +000011443 // If this definition appears within the record, do the checking when
11444 // the record is complete.
11445 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000011446 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000011447 // Find the uninstantiated declaration that actually had the '= default'
11448 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000011449 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000011450
Richard Smith12fef492013-03-27 00:22:47 +000011451 // If the method was defaulted on its first declaration, we will have
11452 // already performed the checking in CheckCompletedCXXClass. Such a
11453 // declaration doesn't trigger an implicit definition.
Sean Huntcd10dec2011-05-23 23:14:04 +000011454 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000011455 return;
11456
Richard Smithb9d0b762012-07-27 04:22:15 +000011457 CheckExplicitlyDefaultedSpecialMember(MD);
11458
Richard Smith1d28caf2012-12-11 01:14:52 +000011459 // The exception specification is needed because we are defining the
11460 // function.
11461 ResolveExceptionSpec(DefaultLoc,
11462 MD->getType()->castAs<FunctionProtoType>());
11463
Sean Hunte4246a62011-05-12 06:15:49 +000011464 switch (Member) {
11465 case CXXDefaultConstructor: {
11466 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000011467 if (!CD->isInvalidDecl())
11468 DefineImplicitDefaultConstructor(DefaultLoc, CD);
11469 break;
11470 }
11471
11472 case CXXCopyConstructor: {
11473 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000011474 if (!CD->isInvalidDecl())
11475 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000011476 break;
11477 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000011478
Sean Hunt2b188082011-05-14 05:23:28 +000011479 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000011480 if (!MD->isInvalidDecl())
11481 DefineImplicitCopyAssignment(DefaultLoc, MD);
11482 break;
11483 }
11484
Sean Huntcb45a0f2011-05-12 22:46:25 +000011485 case CXXDestructor: {
11486 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000011487 if (!DD->isInvalidDecl())
11488 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000011489 break;
11490 }
11491
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011492 case CXXMoveConstructor: {
11493 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011494 if (!CD->isInvalidDecl())
11495 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000011496 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011497 }
Sean Hunt82713172011-05-25 23:16:36 +000011498
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011499 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000011500 if (!MD->isInvalidDecl())
11501 DefineImplicitMoveAssignment(DefaultLoc, MD);
11502 break;
11503 }
11504
11505 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000011506 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000011507 }
11508 } else {
11509 Diag(DefaultLoc, diag::err_default_special_members);
11510 }
11511}
11512
Sebastian Redl13e88542009-04-27 21:33:24 +000011513static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000011514 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000011515 Stmt *SubStmt = *CI;
11516 if (!SubStmt)
11517 continue;
11518 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000011519 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000011520 diag::err_return_in_constructor_handler);
11521 if (!isa<Expr>(SubStmt))
11522 SearchForReturnInStmt(Self, SubStmt);
11523 }
11524}
11525
11526void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
11527 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
11528 CXXCatchStmt *Handler = TryBlock->getHandler(I);
11529 SearchForReturnInStmt(*this, Handler);
11530 }
11531}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011532
David Blaikie299adab2013-01-18 23:03:15 +000011533bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
Aaron Ballmanfff32482012-12-09 17:45:41 +000011534 const CXXMethodDecl *Old) {
11535 const FunctionType *NewFT = New->getType()->getAs<FunctionType>();
11536 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>();
11537
11538 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
11539
11540 // If the calling conventions match, everything is fine
11541 if (NewCC == OldCC)
11542 return false;
11543
11544 // If either of the calling conventions are set to "default", we need to pick
11545 // something more sensible based on the target. This supports code where the
11546 // one method explicitly sets thiscall, and another has no explicit calling
11547 // convention.
11548 CallingConv Default =
11549 Context.getTargetInfo().getDefaultCallingConv(TargetInfo::CCMT_Member);
11550 if (NewCC == CC_Default)
11551 NewCC = Default;
11552 if (OldCC == CC_Default)
11553 OldCC = Default;
11554
11555 // If the calling conventions still don't match, then report the error
11556 if (NewCC != OldCC) {
David Blaikie299adab2013-01-18 23:03:15 +000011557 Diag(New->getLocation(),
11558 diag::err_conflicting_overriding_cc_attributes)
11559 << New->getDeclName() << New->getType() << Old->getType();
11560 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11561 return true;
Aaron Ballmanfff32482012-12-09 17:45:41 +000011562 }
11563
11564 return false;
11565}
11566
Mike Stump1eb44332009-09-09 15:08:12 +000011567bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011568 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000011569 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
11570 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011571
Chandler Carruth73857792010-02-15 11:53:20 +000011572 if (Context.hasSameType(NewTy, OldTy) ||
11573 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011574 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000011575
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011576 // Check if the return types are covariant
11577 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000011578
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011579 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000011580 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
11581 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011582 NewClassTy = NewPT->getPointeeType();
11583 OldClassTy = OldPT->getPointeeType();
11584 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000011585 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
11586 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
11587 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
11588 NewClassTy = NewRT->getPointeeType();
11589 OldClassTy = OldRT->getPointeeType();
11590 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011591 }
11592 }
Mike Stump1eb44332009-09-09 15:08:12 +000011593
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011594 // The return types aren't either both pointers or references to a class type.
11595 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000011596 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011597 diag::err_different_return_type_for_overriding_virtual_function)
11598 << New->getDeclName() << NewTy << OldTy;
11599 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000011600
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011601 return true;
11602 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011603
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011604 // C++ [class.virtual]p6:
11605 // If the return type of D::f differs from the return type of B::f, the
11606 // class type in the return type of D::f shall be complete at the point of
11607 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000011608 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
11609 if (!RT->isBeingDefined() &&
11610 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000011611 diag::err_covariant_return_incomplete,
11612 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011613 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000011614 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011615
Douglas Gregora4923eb2009-11-16 21:35:15 +000011616 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011617 // Check if the new class derives from the old class.
11618 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
11619 Diag(New->getLocation(),
11620 diag::err_covariant_return_not_derived)
11621 << New->getDeclName() << NewTy << OldTy;
11622 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11623 return true;
11624 }
Mike Stump1eb44332009-09-09 15:08:12 +000011625
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011626 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000011627 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000011628 diag::err_covariant_return_inaccessible_base,
11629 diag::err_covariant_return_ambiguous_derived_to_base_conv,
11630 // FIXME: Should this point to the return type?
11631 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000011632 // FIXME: this note won't trigger for delayed access control
11633 // diagnostics, and it's impossible to get an undelayed error
11634 // here from access control during the original parse because
11635 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011636 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11637 return true;
11638 }
11639 }
Mike Stump1eb44332009-09-09 15:08:12 +000011640
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011641 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000011642 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011643 Diag(New->getLocation(),
11644 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011645 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011646 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11647 return true;
11648 };
Mike Stump1eb44332009-09-09 15:08:12 +000011649
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011650
11651 // The new class type must have the same or less qualifiers as the old type.
11652 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
11653 Diag(New->getLocation(),
11654 diag::err_covariant_return_type_class_type_more_qualified)
11655 << New->getDeclName() << NewTy << OldTy;
11656 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11657 return true;
11658 };
Mike Stump1eb44332009-09-09 15:08:12 +000011659
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011660 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011661}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011662
Douglas Gregor4ba31362009-12-01 17:24:26 +000011663/// \brief Mark the given method pure.
11664///
11665/// \param Method the method to be marked pure.
11666///
11667/// \param InitRange the source range that covers the "0" initializer.
11668bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000011669 SourceLocation EndLoc = InitRange.getEnd();
11670 if (EndLoc.isValid())
11671 Method->setRangeEnd(EndLoc);
11672
Douglas Gregor4ba31362009-12-01 17:24:26 +000011673 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
11674 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000011675 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000011676 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000011677
11678 if (!Method->isInvalidDecl())
11679 Diag(Method->getLocation(), diag::err_non_virtual_pure)
11680 << Method->getDeclName() << InitRange;
11681 return true;
11682}
11683
Douglas Gregor552e2992012-02-21 02:22:07 +000011684/// \brief Determine whether the given declaration is a static data member.
11685static bool isStaticDataMember(Decl *D) {
11686 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
11687 if (!Var)
11688 return false;
11689
11690 return Var->isStaticDataMember();
11691}
John McCall731ad842009-12-19 09:28:58 +000011692/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
11693/// an initializer for the out-of-line declaration 'Dcl'. The scope
11694/// is a fresh scope pushed for just this purpose.
11695///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011696/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
11697/// static data member of class X, names should be looked up in the scope of
11698/// class X.
John McCalld226f652010-08-21 09:40:31 +000011699void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011700 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011701 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011702
John McCall731ad842009-12-19 09:28:58 +000011703 // We should only get called for declarations with scope specifiers, like:
11704 // int foo::bar;
11705 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011706 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000011707
11708 // If we are parsing the initializer for a static data member, push a
11709 // new expression evaluation context that is associated with this static
11710 // data member.
11711 if (isStaticDataMember(D))
11712 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011713}
11714
11715/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000011716/// initializer for the out-of-line declaration 'D'.
11717void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011718 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011719 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011720
Douglas Gregor552e2992012-02-21 02:22:07 +000011721 if (isStaticDataMember(D))
11722 PopExpressionEvaluationContext();
11723
John McCall731ad842009-12-19 09:28:58 +000011724 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011725 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011726}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011727
11728/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
11729/// C++ if/switch/while/for statement.
11730/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000011731DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011732 // C++ 6.4p2:
11733 // The declarator shall not specify a function or an array.
11734 // The type-specifier-seq shall not contain typedef and shall not declare a
11735 // new class or enumeration.
11736 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
11737 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011738
11739 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000011740 if (!Dcl)
11741 return true;
11742
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011743 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
11744 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011745 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000011746 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011747 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011748
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011749 return Dcl;
11750}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011751
Douglas Gregordfe65432011-07-28 19:11:31 +000011752void Sema::LoadExternalVTableUses() {
11753 if (!ExternalSource)
11754 return;
11755
11756 SmallVector<ExternalVTableUse, 4> VTables;
11757 ExternalSource->ReadUsedVTables(VTables);
11758 SmallVector<VTableUse, 4> NewUses;
11759 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
11760 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
11761 = VTablesUsed.find(VTables[I].Record);
11762 // Even if a definition wasn't required before, it may be required now.
11763 if (Pos != VTablesUsed.end()) {
11764 if (!Pos->second && VTables[I].DefinitionRequired)
11765 Pos->second = true;
11766 continue;
11767 }
11768
11769 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
11770 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
11771 }
11772
11773 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
11774}
11775
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011776void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
11777 bool DefinitionRequired) {
11778 // Ignore any vtable uses in unevaluated operands or for classes that do
11779 // not have a vtable.
11780 if (!Class->isDynamicClass() || Class->isDependentContext() ||
John McCallaeeacf72013-05-03 00:10:13 +000011781 CurContext->isDependentContext() || isUnevaluatedContext())
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000011782 return;
11783
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011784 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000011785 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011786 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11787 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
11788 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
11789 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000011790 // If we already had an entry, check to see if we are promoting this vtable
11791 // to required a definition. If so, we need to reappend to the VTableUses
11792 // list, since we may have already processed the first entry.
11793 if (DefinitionRequired && !Pos.first->second) {
11794 Pos.first->second = true;
11795 } else {
11796 // Otherwise, we can early exit.
11797 return;
11798 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011799 }
11800
11801 // Local classes need to have their virtual members marked
11802 // immediately. For all other classes, we mark their virtual members
11803 // at the end of the translation unit.
11804 if (Class->isLocalClass())
11805 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000011806 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011807 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000011808}
11809
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011810bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000011811 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011812 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000011813 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000011814
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011815 // Note: The VTableUses vector could grow as a result of marking
11816 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000011817 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011818 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000011819 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011820 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000011821 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011822 if (!Class)
11823 continue;
11824
11825 SourceLocation Loc = VTableUses[I].second;
11826
Richard Smithb9d0b762012-07-27 04:22:15 +000011827 bool DefineVTable = true;
11828
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011829 // If this class has a key function, but that key function is
11830 // defined in another translation unit, we don't need to emit the
11831 // vtable even though we're using it.
John McCalld5617ee2013-01-25 22:31:03 +000011832 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000011833 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011834 switch (KeyFunction->getTemplateSpecializationKind()) {
11835 case TSK_Undeclared:
11836 case TSK_ExplicitSpecialization:
11837 case TSK_ExplicitInstantiationDeclaration:
11838 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000011839 DefineVTable = false;
11840 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011841
11842 case TSK_ExplicitInstantiationDefinition:
11843 case TSK_ImplicitInstantiation:
11844 // We will be instantiating the key function.
11845 break;
11846 }
11847 } else if (!KeyFunction) {
11848 // If we have a class with no key function that is the subject
11849 // of an explicit instantiation declaration, suppress the
11850 // vtable; it will live with the explicit instantiation
11851 // definition.
11852 bool IsExplicitInstantiationDeclaration
11853 = Class->getTemplateSpecializationKind()
11854 == TSK_ExplicitInstantiationDeclaration;
11855 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
11856 REnd = Class->redecls_end();
11857 R != REnd; ++R) {
11858 TemplateSpecializationKind TSK
11859 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
11860 if (TSK == TSK_ExplicitInstantiationDeclaration)
11861 IsExplicitInstantiationDeclaration = true;
11862 else if (TSK == TSK_ExplicitInstantiationDefinition) {
11863 IsExplicitInstantiationDeclaration = false;
11864 break;
11865 }
11866 }
11867
11868 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000011869 DefineVTable = false;
11870 }
11871
11872 // The exception specifications for all virtual members may be needed even
11873 // if we are not providing an authoritative form of the vtable in this TU.
11874 // We may choose to emit it available_externally anyway.
11875 if (!DefineVTable) {
11876 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
11877 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011878 }
11879
11880 // Mark all of the virtual members of this class as referenced, so
11881 // that we can build a vtable. Then, tell the AST consumer that a
11882 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000011883 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011884 MarkVirtualMembersReferenced(Loc, Class);
11885 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11886 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
11887
11888 // Optionally warn if we're emitting a weak vtable.
Rafael Espindola181e3ec2013-05-13 00:12:11 +000011889 if (Class->isExternallyVisible() &&
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011890 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000011891 const FunctionDecl *KeyFunctionDef = 0;
11892 if (!KeyFunction ||
11893 (KeyFunction->hasBody(KeyFunctionDef) &&
11894 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000011895 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
11896 TSK_ExplicitInstantiationDefinition
11897 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
11898 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011899 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011900 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011901 VTableUses.clear();
11902
Douglas Gregor78844032011-04-22 22:25:37 +000011903 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011904}
Anders Carlssond6a637f2009-12-07 08:24:59 +000011905
Richard Smithb9d0b762012-07-27 04:22:15 +000011906void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
11907 const CXXRecordDecl *RD) {
11908 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
11909 E = RD->method_end(); I != E; ++I)
11910 if ((*I)->isVirtual() && !(*I)->isPure())
11911 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
11912}
11913
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011914void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
11915 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000011916 // Mark all functions which will appear in RD's vtable as used.
11917 CXXFinalOverriderMap FinalOverriders;
11918 RD->getFinalOverriders(FinalOverriders);
11919 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
11920 E = FinalOverriders.end();
11921 I != E; ++I) {
11922 for (OverridingMethods::const_iterator OI = I->second.begin(),
11923 OE = I->second.end();
11924 OI != OE; ++OI) {
11925 assert(OI->second.size() > 0 && "no final overrider");
11926 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000011927
Richard Smithff817f72012-07-07 06:59:51 +000011928 // C++ [basic.def.odr]p2:
11929 // [...] A virtual member function is used if it is not pure. [...]
11930 if (!Overrider->isPure())
11931 MarkFunctionReferenced(Loc, Overrider);
11932 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011933 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011934
11935 // Only classes that have virtual bases need a VTT.
11936 if (RD->getNumVBases() == 0)
11937 return;
11938
11939 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
11940 e = RD->bases_end(); i != e; ++i) {
11941 const CXXRecordDecl *Base =
11942 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011943 if (Base->getNumVBases() == 0)
11944 continue;
11945 MarkVirtualMembersReferenced(Loc, Base);
11946 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011947}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011948
11949/// SetIvarInitializers - This routine builds initialization ASTs for the
11950/// Objective-C implementation whose ivars need be initialized.
11951void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000011952 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011953 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000011954 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000011955 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011956 CollectIvarsToConstructOrDestruct(OID, ivars);
11957 if (ivars.empty())
11958 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000011959 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011960 for (unsigned i = 0; i < ivars.size(); i++) {
11961 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011962 if (Field->isInvalidDecl())
11963 continue;
11964
Sean Huntcbb67482011-01-08 20:30:50 +000011965 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011966 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
11967 InitializationKind InitKind =
11968 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
Dmitri Gribenko62ed8892013-05-05 20:40:26 +000011969
11970 InitializationSequence InitSeq(*this, InitEntity, InitKind, None);
11971 ExprResult MemberInit =
11972 InitSeq.Perform(*this, InitEntity, InitKind, None);
Douglas Gregor53c374f2010-12-07 00:41:46 +000011973 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011974 // Note, MemberInit could actually come back empty if no initialization
11975 // is required (e.g., because it would call a trivial default constructor)
11976 if (!MemberInit.get() || MemberInit.isInvalid())
11977 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000011978
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011979 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000011980 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
11981 SourceLocation(),
11982 MemberInit.takeAs<Expr>(),
11983 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011984 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011985
11986 // Be sure that the destructor is accessible and is marked as referenced.
11987 if (const RecordType *RecordTy
11988 = Context.getBaseElementType(Field->getType())
11989 ->getAs<RecordType>()) {
11990 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000011991 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011992 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011993 CheckDestructorAccess(Field->getLocation(), Destructor,
11994 PDiag(diag::err_access_dtor_ivar)
11995 << Context.getBaseElementType(Field->getType()));
11996 }
11997 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011998 }
11999 ObjCImplementation->setIvarInitializers(Context,
12000 AllToInit.data(), AllToInit.size());
12001 }
12002}
Sean Huntfe57eef2011-05-04 05:57:24 +000012003
Sean Huntebcbe1d2011-05-04 23:29:54 +000012004static
12005void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
12006 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
12007 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
12008 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
12009 Sema &S) {
12010 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
12011 CE = Current.end();
12012 if (Ctor->isInvalidDecl())
12013 return;
12014
Richard Smitha8eaf002012-08-23 06:16:52 +000012015 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
12016
12017 // Target may not be determinable yet, for instance if this is a dependent
12018 // call in an uninstantiated template.
12019 if (Target) {
12020 const FunctionDecl *FNTarget = 0;
12021 (void)Target->hasBody(FNTarget);
12022 Target = const_cast<CXXConstructorDecl*>(
12023 cast_or_null<CXXConstructorDecl>(FNTarget));
12024 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000012025
12026 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
12027 // Avoid dereferencing a null pointer here.
12028 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
12029
12030 if (!Current.insert(Canonical))
12031 return;
12032
12033 // We know that beyond here, we aren't chaining into a cycle.
12034 if (!Target || !Target->isDelegatingConstructor() ||
12035 Target->isInvalidDecl() || Valid.count(TCanonical)) {
12036 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
12037 Valid.insert(*CI);
12038 Current.clear();
12039 // We've hit a cycle.
12040 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
12041 Current.count(TCanonical)) {
12042 // If we haven't diagnosed this cycle yet, do so now.
12043 if (!Invalid.count(TCanonical)) {
12044 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000012045 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000012046 << Ctor;
12047
Richard Smitha8eaf002012-08-23 06:16:52 +000012048 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000012049 if (TCanonical != Canonical)
12050 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
12051
12052 CXXConstructorDecl *C = Target;
12053 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000012054 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000012055 (void)C->getTargetConstructor()->hasBody(FNTarget);
12056 assert(FNTarget && "Ctor cycle through bodiless function");
12057
Richard Smitha8eaf002012-08-23 06:16:52 +000012058 C = const_cast<CXXConstructorDecl*>(
12059 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000012060 S.Diag(C->getLocation(), diag::note_which_delegates_to);
12061 }
12062 }
12063
12064 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
12065 Invalid.insert(*CI);
12066 Current.clear();
12067 } else {
12068 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
12069 }
12070}
12071
12072
Sean Huntfe57eef2011-05-04 05:57:24 +000012073void Sema::CheckDelegatingCtorCycles() {
12074 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
12075
Sean Huntebcbe1d2011-05-04 23:29:54 +000012076 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
12077 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000012078
Douglas Gregor0129b562011-07-27 21:57:17 +000012079 for (DelegatingCtorDeclsType::iterator
12080 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000012081 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000012082 I != E; ++I)
12083 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000012084
12085 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
12086 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000012087}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000012088
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012089namespace {
12090 /// \brief AST visitor that finds references to the 'this' expression.
12091 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
12092 Sema &S;
12093
12094 public:
12095 explicit FindCXXThisExpr(Sema &S) : S(S) { }
12096
12097 bool VisitCXXThisExpr(CXXThisExpr *E) {
12098 S.Diag(E->getLocation(), diag::err_this_static_member_func)
12099 << E->isImplicit();
12100 return false;
12101 }
12102 };
12103}
12104
12105bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
12106 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
12107 if (!TSInfo)
12108 return false;
12109
12110 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +000012111 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012112 if (!ProtoTL)
12113 return false;
12114
12115 // C++11 [expr.prim.general]p3:
12116 // [The expression this] shall not appear before the optional
12117 // cv-qualifier-seq and it shall not appear within the declaration of a
12118 // static member function (although its type and value category are defined
12119 // within a static member function as they are within a non-static member
12120 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000012121 // until the complete declarator is known. - end note ]
David Blaikie39e6ab42013-02-18 22:06:02 +000012122 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012123 FindCXXThisExpr Finder(*this);
12124
12125 // If the return type came after the cv-qualifier-seq, check it now.
12126 if (Proto->hasTrailingReturn() &&
David Blaikie39e6ab42013-02-18 22:06:02 +000012127 !Finder.TraverseTypeLoc(ProtoTL.getResultLoc()))
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012128 return true;
12129
12130 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012131 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
12132 return true;
12133
12134 return checkThisInStaticMemberFunctionAttributes(Method);
12135}
12136
12137bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
12138 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
12139 if (!TSInfo)
12140 return false;
12141
12142 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +000012143 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012144 if (!ProtoTL)
12145 return false;
12146
David Blaikie39e6ab42013-02-18 22:06:02 +000012147 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012148 FindCXXThisExpr Finder(*this);
12149
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012150 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000012151 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000012152 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012153 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012154 case EST_DynamicNone:
12155 case EST_MSAny:
12156 case EST_None:
12157 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012158
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012159 case EST_ComputedNoexcept:
12160 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
12161 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012162
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012163 case EST_Dynamic:
12164 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012165 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012166 E != EEnd; ++E) {
12167 if (!Finder.TraverseType(*E))
12168 return true;
12169 }
12170 break;
12171 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012172
12173 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000012174}
12175
12176bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
12177 FindCXXThisExpr Finder(*this);
12178
12179 // Check attributes.
12180 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
12181 A != AEnd; ++A) {
12182 // FIXME: This should be emitted by tblgen.
12183 Expr *Arg = 0;
12184 ArrayRef<Expr *> Args;
12185 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
12186 Arg = G->getArg();
12187 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
12188 Arg = G->getArg();
12189 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
12190 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
12191 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
12192 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
12193 else if (ExclusiveLockFunctionAttr *ELF
12194 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
12195 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
12196 else if (SharedLockFunctionAttr *SLF
12197 = dyn_cast<SharedLockFunctionAttr>(*A))
12198 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
12199 else if (ExclusiveTrylockFunctionAttr *ETLF
12200 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
12201 Arg = ETLF->getSuccessValue();
12202 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
12203 } else if (SharedTrylockFunctionAttr *STLF
12204 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
12205 Arg = STLF->getSuccessValue();
12206 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
12207 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
12208 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
12209 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
12210 Arg = LR->getArg();
12211 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
12212 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
12213 else if (ExclusiveLocksRequiredAttr *ELR
12214 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
12215 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
12216 else if (SharedLocksRequiredAttr *SLR
12217 = dyn_cast<SharedLocksRequiredAttr>(*A))
12218 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
12219
12220 if (Arg && !Finder.TraverseStmt(Arg))
12221 return true;
12222
12223 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
12224 if (!Finder.TraverseStmt(Args[I]))
12225 return true;
12226 }
12227 }
12228
12229 return false;
12230}
12231
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012232void
12233Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
12234 ArrayRef<ParsedType> DynamicExceptions,
12235 ArrayRef<SourceRange> DynamicExceptionRanges,
12236 Expr *NoexceptExpr,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000012237 SmallVectorImpl<QualType> &Exceptions,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012238 FunctionProtoType::ExtProtoInfo &EPI) {
12239 Exceptions.clear();
12240 EPI.ExceptionSpecType = EST;
12241 if (EST == EST_Dynamic) {
12242 Exceptions.reserve(DynamicExceptions.size());
12243 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
12244 // FIXME: Preserve type source info.
12245 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
12246
12247 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
12248 collectUnexpandedParameterPacks(ET, Unexpanded);
12249 if (!Unexpanded.empty()) {
12250 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
12251 UPPC_ExceptionType,
12252 Unexpanded);
12253 continue;
12254 }
12255
12256 // Check that the type is valid for an exception spec, and
12257 // drop it if not.
12258 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
12259 Exceptions.push_back(ET);
12260 }
12261 EPI.NumExceptions = Exceptions.size();
12262 EPI.Exceptions = Exceptions.data();
12263 return;
12264 }
12265
12266 if (EST == EST_ComputedNoexcept) {
12267 // If an error occurred, there's no expression here.
12268 if (NoexceptExpr) {
12269 assert((NoexceptExpr->isTypeDependent() ||
12270 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
12271 Context.BoolTy) &&
12272 "Parser should have made sure that the expression is boolean");
12273 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
12274 EPI.ExceptionSpecType = EST_BasicNoexcept;
12275 return;
12276 }
12277
12278 if (!NoexceptExpr->isValueDependent())
12279 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000012280 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000012281 /*AllowFold*/ false).take();
12282 EPI.NoexceptExpr = NoexceptExpr;
12283 }
12284 return;
12285 }
12286}
12287
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000012288/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
12289Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
12290 // Implicitly declared functions (e.g. copy constructors) are
12291 // __host__ __device__
12292 if (D->isImplicit())
12293 return CFT_HostDevice;
12294
12295 if (D->hasAttr<CUDAGlobalAttr>())
12296 return CFT_Global;
12297
12298 if (D->hasAttr<CUDADeviceAttr>()) {
12299 if (D->hasAttr<CUDAHostAttr>())
12300 return CFT_HostDevice;
12301 else
12302 return CFT_Device;
12303 }
12304
12305 return CFT_Host;
12306}
12307
12308bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
12309 CUDAFunctionTarget CalleeTarget) {
12310 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
12311 // Callable from the device only."
12312 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
12313 return true;
12314
12315 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
12316 // Callable from the host only."
12317 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
12318 // Callable from the host only."
12319 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
12320 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
12321 return true;
12322
12323 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
12324 return true;
12325
12326 return false;
12327}
John McCall76da55d2013-04-16 07:28:30 +000012328
12329/// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class.
12330///
12331MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record,
12332 SourceLocation DeclStart,
12333 Declarator &D, Expr *BitWidth,
12334 InClassInitStyle InitStyle,
12335 AccessSpecifier AS,
12336 AttributeList *MSPropertyAttr) {
12337 IdentifierInfo *II = D.getIdentifier();
12338 if (!II) {
12339 Diag(DeclStart, diag::err_anonymous_property);
12340 return NULL;
12341 }
12342 SourceLocation Loc = D.getIdentifierLoc();
12343
12344 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
12345 QualType T = TInfo->getType();
12346 if (getLangOpts().CPlusPlus) {
12347 CheckExtraCXXDefaultArguments(D);
12348
12349 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
12350 UPPC_DataMemberType)) {
12351 D.setInvalidType();
12352 T = Context.IntTy;
12353 TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
12354 }
12355 }
12356
12357 DiagnoseFunctionSpecifiers(D.getDeclSpec());
12358
12359 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
12360 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
12361 diag::err_invalid_thread)
12362 << DeclSpec::getSpecifierName(TSCS);
12363
12364 // Check to see if this name was declared as a member previously
12365 NamedDecl *PrevDecl = 0;
12366 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
12367 LookupName(Previous, S);
12368 switch (Previous.getResultKind()) {
12369 case LookupResult::Found:
12370 case LookupResult::FoundUnresolvedValue:
12371 PrevDecl = Previous.getAsSingle<NamedDecl>();
12372 break;
12373
12374 case LookupResult::FoundOverloaded:
12375 PrevDecl = Previous.getRepresentativeDecl();
12376 break;
12377
12378 case LookupResult::NotFound:
12379 case LookupResult::NotFoundInCurrentInstantiation:
12380 case LookupResult::Ambiguous:
12381 break;
12382 }
12383
12384 if (PrevDecl && PrevDecl->isTemplateParameter()) {
12385 // Maybe we will complain about the shadowed template parameter.
12386 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
12387 // Just pretend that we didn't see the previous declaration.
12388 PrevDecl = 0;
12389 }
12390
12391 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
12392 PrevDecl = 0;
12393
12394 SourceLocation TSSL = D.getLocStart();
12395 MSPropertyDecl *NewPD;
12396 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData();
12397 NewPD = new (Context) MSPropertyDecl(Record, Loc,
12398 II, T, TInfo, TSSL,
12399 Data.GetterId, Data.SetterId);
12400 ProcessDeclAttributes(TUScope, NewPD, D);
12401 NewPD->setAccess(AS);
12402
12403 if (NewPD->isInvalidDecl())
12404 Record->setInvalidDecl();
12405
12406 if (D.getDeclSpec().isModulePrivateSpecified())
12407 NewPD->setModulePrivate();
12408
12409 if (NewPD->isInvalidDecl() && PrevDecl) {
12410 // Don't introduce NewFD into scope; there's already something
12411 // with the same name in the same scope.
12412 } else if (II) {
12413 PushOnScopeChains(NewPD, S);
12414 } else
12415 Record->addDecl(NewPD);
12416
12417 return NewPD;
12418}