blob: 676063ac0840cc07f085dc4cbc3c821e9043d26e [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"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000026#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000027#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000028#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000029#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000030#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000031#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000032#include "clang/Sema/DeclSpec.h"
33#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000034#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000035#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000036#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000037#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000038#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000039#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000040
41using namespace clang;
42
Chris Lattner8123a952008-04-10 02:22:51 +000043//===----------------------------------------------------------------------===//
44// CheckDefaultArgumentVisitor
45//===----------------------------------------------------------------------===//
46
Chris Lattner9e979552008-04-12 23:52:44 +000047namespace {
48 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
49 /// the default argument of a parameter to determine whether it
50 /// contains any ill-formed subexpressions. For example, this will
51 /// diagnose the use of local variables or parameters within the
52 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000053 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000054 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000055 Expr *DefaultArg;
56 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000057
Chris Lattner9e979552008-04-12 23:52:44 +000058 public:
Mike Stump1eb44332009-09-09 15:08:12 +000059 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000060 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000061
Chris Lattner9e979552008-04-12 23:52:44 +000062 bool VisitExpr(Expr *Node);
63 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000064 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000065 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000066 };
Chris Lattner8123a952008-04-10 02:22:51 +000067
Chris Lattner9e979552008-04-12 23:52:44 +000068 /// VisitExpr - Visit all of the children of this expression.
69 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
70 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000071 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000072 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000073 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000074 }
75
Chris Lattner9e979552008-04-12 23:52:44 +000076 /// VisitDeclRefExpr - Visit a reference to a declaration, to
77 /// determine whether this declaration can be used in the default
78 /// argument expression.
79 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000080 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000081 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
82 // C++ [dcl.fct.default]p9
83 // Default arguments are evaluated each time the function is
84 // called. The order of evaluation of function arguments is
85 // unspecified. Consequently, parameters of a function shall not
86 // be used in default argument expressions, even if they are not
87 // evaluated. Parameters of a function declared before a default
88 // argument expression are in scope and can hide namespace and
89 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000090 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000091 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000092 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000093 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000094 // C++ [dcl.fct.default]p7
95 // Local variables shall not be used in default argument
96 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000097 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000098 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000099 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000100 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000101 }
Chris Lattner8123a952008-04-10 02:22:51 +0000102
Douglas Gregor3996f232008-11-04 13:41:56 +0000103 return false;
104 }
Chris Lattner9e979552008-04-12 23:52:44 +0000105
Douglas Gregor796da182008-11-04 14:32:21 +0000106 /// VisitCXXThisExpr - Visit a C++ "this" expression.
107 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
108 // C++ [dcl.fct.default]p8:
109 // The keyword this shall not be used in a default argument of a
110 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000111 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000112 diag::err_param_default_argument_references_this)
113 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000114 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000115
116 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
117 // C++11 [expr.lambda.prim]p13:
118 // A lambda-expression appearing in a default argument shall not
119 // implicitly or explicitly capture any entity.
120 if (Lambda->capture_begin() == Lambda->capture_end())
121 return false;
122
123 return S->Diag(Lambda->getLocStart(),
124 diag::err_lambda_capture_default_arg);
125 }
Chris Lattner8123a952008-04-10 02:22:51 +0000126}
127
Richard Smithe6975e92012-04-17 00:58:00 +0000128void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
129 CXXMethodDecl *Method) {
Richard Smith7a614d82011-06-11 17:19:42 +0000130 // If we have an MSAny or unknown spec already, don't bother.
131 if (!Method || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
Sean Hunt001cad92011-05-10 00:49:42 +0000132 return;
133
134 const FunctionProtoType *Proto
135 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000136 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
137 if (!Proto)
138 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000139
140 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
141
142 // If this function can throw any exceptions, make a note of that.
Richard Smith7a614d82011-06-11 17:19:42 +0000143 if (EST == EST_Delayed || EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000144 ClearExceptions();
145 ComputedEST = EST;
146 return;
147 }
148
Richard Smith7a614d82011-06-11 17:19:42 +0000149 // FIXME: If the call to this decl is using any of its default arguments, we
150 // need to search them for potentially-throwing calls.
151
Sean Hunt001cad92011-05-10 00:49:42 +0000152 // If this function has a basic noexcept, it doesn't affect the outcome.
153 if (EST == EST_BasicNoexcept)
154 return;
155
156 // If we have a throw-all spec at this point, ignore the function.
157 if (ComputedEST == EST_None)
158 return;
159
160 // If we're still at noexcept(true) and there's a nothrow() callee,
161 // change to that specification.
162 if (EST == EST_DynamicNone) {
163 if (ComputedEST == EST_BasicNoexcept)
164 ComputedEST = EST_DynamicNone;
165 return;
166 }
167
168 // Check out noexcept specs.
169 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000170 FunctionProtoType::NoexceptResult NR =
171 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000172 assert(NR != FunctionProtoType::NR_NoNoexcept &&
173 "Must have noexcept result for EST_ComputedNoexcept.");
174 assert(NR != FunctionProtoType::NR_Dependent &&
175 "Should not generate implicit declarations for dependent cases, "
176 "and don't know how to handle them anyway.");
177
178 // noexcept(false) -> no spec on the new function
179 if (NR == FunctionProtoType::NR_Throw) {
180 ClearExceptions();
181 ComputedEST = EST_None;
182 }
183 // noexcept(true) won't change anything either.
184 return;
185 }
186
187 assert(EST == EST_Dynamic && "EST case not considered earlier.");
188 assert(ComputedEST != EST_None &&
189 "Shouldn't collect exceptions when throw-all is guaranteed.");
190 ComputedEST = EST_Dynamic;
191 // Record the exceptions in this function's exception specification.
192 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
193 EEnd = Proto->exception_end();
194 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000195 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000196 Exceptions.push_back(*E);
197}
198
Richard Smith7a614d82011-06-11 17:19:42 +0000199void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
200 if (!E || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
201 return;
202
203 // FIXME:
204 //
205 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000206 // [An] implicit exception-specification specifies the type-id T if and
207 // only if T is allowed by the exception-specification of a function directly
208 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000209 // function it directly invokes allows all exceptions, and f shall allow no
210 // exceptions if every function it directly invokes allows no exceptions.
211 //
212 // Note in particular that if an implicit exception-specification is generated
213 // for a function containing a throw-expression, that specification can still
214 // be noexcept(true).
215 //
216 // Note also that 'directly invoked' is not defined in the standard, and there
217 // is no indication that we should only consider potentially-evaluated calls.
218 //
219 // Ultimately we should implement the intent of the standard: the exception
220 // specification should be the set of exceptions which can be thrown by the
221 // implicit definition. For now, we assume that any non-nothrow expression can
222 // throw any exception.
223
Richard Smithe6975e92012-04-17 00:58:00 +0000224 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000225 ComputedEST = EST_None;
226}
227
Anders Carlssoned961f92009-08-25 02:29:20 +0000228bool
John McCall9ae2f072010-08-23 23:25:46 +0000229Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000230 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000231 if (RequireCompleteType(Param->getLocation(), Param->getType(),
232 diag::err_typecheck_decl_incomplete_type)) {
233 Param->setInvalidDecl();
234 return true;
235 }
236
Anders Carlssoned961f92009-08-25 02:29:20 +0000237 // C++ [dcl.fct.default]p5
238 // A default argument expression is implicitly converted (clause
239 // 4) to the parameter type. The default argument expression has
240 // the same semantic constraints as the initializer expression in
241 // a declaration of a variable of the parameter type, using the
242 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000243 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
244 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000245 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
246 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000247 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCall60d7b3a2010-08-24 06:29:42 +0000248 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000249 MultiExprArg(*this, &Arg, 1));
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Chris Lattner3d1cee32008-04-08 05:04:30 +0000376// MergeCXXFunctionDecl - Merge two declarations of the same C++
377// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000378// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
Sean Hunt9ae60d52011-05-26 01:26:05 +0000520 } else if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(New)) {
521 CXXSpecialMember NewSM = getSpecialMember(Ctor),
522 OldSM = getSpecialMember(cast<CXXConstructorDecl>(Old));
523 if (NewSM != OldSM) {
524 Diag(NewParam->getLocation(),diag::warn_default_arg_makes_ctor_special)
525 << NewParam->getDefaultArgRange() << NewSM;
526 Diag(Old->getLocation(), diag::note_previous_declaration_special)
527 << OldSM;
528 }
Douglas Gregor6cc15182009-09-11 18:44:32 +0000529 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000530 }
531 }
532
Richard Smithff234882012-02-20 23:28:05 +0000533 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000534 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000535 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000536 if (New->isConstexpr() != Old->isConstexpr()) {
537 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
538 << New << New->isConstexpr();
539 Diag(Old->getLocation(), diag::note_previous_declaration);
540 Invalid = true;
541 }
542
Douglas Gregore13ad832010-02-12 07:32:17 +0000543 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000544 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000545
Douglas Gregorcda9c672009-02-16 17:45:42 +0000546 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000547}
548
Sebastian Redl60618fa2011-03-12 11:50:43 +0000549/// \brief Merge the exception specifications of two variable declarations.
550///
551/// This is called when there's a redeclaration of a VarDecl. The function
552/// checks if the redeclaration might have an exception specification and
553/// validates compatibility and merges the specs if necessary.
554void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
555 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000556 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000557 return;
558
559 assert(Context.hasSameType(New->getType(), Old->getType()) &&
560 "Should only be called if types are otherwise the same.");
561
562 QualType NewType = New->getType();
563 QualType OldType = Old->getType();
564
565 // We're only interested in pointers and references to functions, as well
566 // as pointers to member functions.
567 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
568 NewType = R->getPointeeType();
569 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
570 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
571 NewType = P->getPointeeType();
572 OldType = OldType->getAs<PointerType>()->getPointeeType();
573 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
574 NewType = M->getPointeeType();
575 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
576 }
577
578 if (!NewType->isFunctionProtoType())
579 return;
580
581 // There's lots of special cases for functions. For function pointers, system
582 // libraries are hopefully not as broken so that we don't need these
583 // workarounds.
584 if (CheckEquivalentExceptionSpec(
585 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
586 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
587 New->setInvalidDecl();
588 }
589}
590
Chris Lattner3d1cee32008-04-08 05:04:30 +0000591/// CheckCXXDefaultArguments - Verify that the default arguments for a
592/// function declaration are well-formed according to C++
593/// [dcl.fct.default].
594void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
595 unsigned NumParams = FD->getNumParams();
596 unsigned p;
597
Douglas Gregorc6889e72012-02-14 22:28:59 +0000598 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
599 isa<CXXMethodDecl>(FD) &&
600 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
601
Chris Lattner3d1cee32008-04-08 05:04:30 +0000602 // Find first parameter with a default argument
603 for (p = 0; p < NumParams; ++p) {
604 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000605 if (Param->hasDefaultArg()) {
606 // C++11 [expr.prim.lambda]p5:
607 // [...] Default arguments (8.3.6) shall not be specified in the
608 // parameter-declaration-clause of a lambda-declarator.
609 //
610 // FIXME: Core issue 974 strikes this sentence, we only provide an
611 // extension warning.
612 if (IsLambda)
613 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
614 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000615 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000616 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000617 }
618
619 // C++ [dcl.fct.default]p4:
620 // In a given function declaration, all parameters
621 // subsequent to a parameter with a default argument shall
622 // have default arguments supplied in this or previous
623 // declarations. A default argument shall not be redefined
624 // by a later declaration (not even to the same value).
625 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000626 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000627 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000628 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000629 if (Param->isInvalidDecl())
630 /* We already complained about this parameter. */;
631 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000632 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000633 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000634 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000635 else
Mike Stump1eb44332009-09-09 15:08:12 +0000636 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000637 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattner3d1cee32008-04-08 05:04:30 +0000639 LastMissingDefaultArg = p;
640 }
641 }
642
643 if (LastMissingDefaultArg > 0) {
644 // Some default arguments were missing. Clear out all of the
645 // default arguments up to (and including) the last missing
646 // default argument, so that we leave the function parameters
647 // in a semantically valid state.
648 for (p = 0; p <= LastMissingDefaultArg; ++p) {
649 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000650 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000651 Param->setDefaultArg(0);
652 }
653 }
654 }
655}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000656
Richard Smith9f569cc2011-10-01 02:31:28 +0000657// CheckConstexprParameterTypes - Check whether a function's parameter types
658// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000659// diagnostic and return false.
660static bool CheckConstexprParameterTypes(Sema &SemaRef,
661 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000662 unsigned ArgIndex = 0;
663 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
664 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
665 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
666 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
667 SourceLocation ParamLoc = PD->getLocation();
668 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000669 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000670 diag::err_constexpr_non_literal_param,
671 ArgIndex+1, PD->getSourceRange(),
672 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000673 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000674 }
675 return true;
676}
677
678// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
Richard Smith86c3ae42012-02-13 03:54:03 +0000679// the requirements of a constexpr function definition or a constexpr
680// constructor definition. If so, return true. If not, produce appropriate
681// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000682//
Richard Smith86c3ae42012-02-13 03:54:03 +0000683// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
684bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000685 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
686 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000687 // C++11 [dcl.constexpr]p4:
688 // The definition of a constexpr constructor shall satisfy the following
689 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000690 // - the class shall not have any virtual base classes;
Richard Smith35340502012-01-13 04:54:00 +0000691 const CXXRecordDecl *RD = MD->getParent();
Richard Smith9f569cc2011-10-01 02:31:28 +0000692 if (RD->getNumVBases()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000693 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
694 << isa<CXXConstructorDecl>(NewFD) << RD->isStruct()
695 << RD->getNumVBases();
696 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
697 E = RD->vbases_end(); I != E; ++I)
Daniel Dunbar96a00142012-03-09 18:35:03 +0000698 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000699 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000700 return false;
701 }
Richard Smith35340502012-01-13 04:54:00 +0000702 }
703
704 if (!isa<CXXConstructorDecl>(NewFD)) {
705 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000706 // The definition of a constexpr function shall satisfy the following
707 // constraints:
708 // - it shall not be virtual;
709 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
710 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000711 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000712
Richard Smith86c3ae42012-02-13 03:54:03 +0000713 // If it's not obvious why this function is virtual, find an overridden
714 // function which uses the 'virtual' keyword.
715 const CXXMethodDecl *WrittenVirtual = Method;
716 while (!WrittenVirtual->isVirtualAsWritten())
717 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
718 if (WrittenVirtual != Method)
719 Diag(WrittenVirtual->getLocation(),
720 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000721 return false;
722 }
723
724 // - its return type shall be a literal type;
725 QualType RT = NewFD->getResultType();
726 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000727 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000728 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000729 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000730 }
731
Richard Smith35340502012-01-13 04:54:00 +0000732 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000733 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000734 return false;
735
Richard Smith9f569cc2011-10-01 02:31:28 +0000736 return true;
737}
738
739/// Check the given declaration statement is legal within a constexpr function
740/// body. C++0x [dcl.constexpr]p3,p4.
741///
742/// \return true if the body is OK, false if we have diagnosed a problem.
743static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
744 DeclStmt *DS) {
745 // C++0x [dcl.constexpr]p3 and p4:
746 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
747 // contain only
748 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
749 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
750 switch ((*DclIt)->getKind()) {
751 case Decl::StaticAssert:
752 case Decl::Using:
753 case Decl::UsingShadow:
754 case Decl::UsingDirective:
755 case Decl::UnresolvedUsingTypename:
756 // - static_assert-declarations
757 // - using-declarations,
758 // - using-directives,
759 continue;
760
761 case Decl::Typedef:
762 case Decl::TypeAlias: {
763 // - typedef declarations and alias-declarations that do not define
764 // classes or enumerations,
765 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
766 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
767 // Don't allow variably-modified types in constexpr functions.
768 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
769 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
770 << TL.getSourceRange() << TL.getType()
771 << isa<CXXConstructorDecl>(Dcl);
772 return false;
773 }
774 continue;
775 }
776
777 case Decl::Enum:
778 case Decl::CXXRecord:
779 // As an extension, we allow the declaration (but not the definition) of
780 // classes and enumerations in all declarations, not just in typedef and
781 // alias declarations.
782 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
783 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
784 << isa<CXXConstructorDecl>(Dcl);
785 return false;
786 }
787 continue;
788
789 case Decl::Var:
790 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
791 << isa<CXXConstructorDecl>(Dcl);
792 return false;
793
794 default:
795 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
796 << isa<CXXConstructorDecl>(Dcl);
797 return false;
798 }
799 }
800
801 return true;
802}
803
804/// Check that the given field is initialized within a constexpr constructor.
805///
806/// \param Dcl The constexpr constructor being checked.
807/// \param Field The field being checked. This may be a member of an anonymous
808/// struct or union nested within the class being checked.
809/// \param Inits All declarations, including anonymous struct/union members and
810/// indirect members, for which any initialization was provided.
811/// \param Diagnosed Set to true if an error is produced.
812static void CheckConstexprCtorInitializer(Sema &SemaRef,
813 const FunctionDecl *Dcl,
814 FieldDecl *Field,
815 llvm::SmallSet<Decl*, 16> &Inits,
816 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000817 if (Field->isUnnamedBitfield())
818 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000819
820 if (Field->isAnonymousStructOrUnion() &&
821 Field->getType()->getAsCXXRecordDecl()->isEmpty())
822 return;
823
Richard Smith9f569cc2011-10-01 02:31:28 +0000824 if (!Inits.count(Field)) {
825 if (!Diagnosed) {
826 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
827 Diagnosed = true;
828 }
829 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
830 } else if (Field->isAnonymousStructOrUnion()) {
831 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
832 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
833 I != E; ++I)
834 // If an anonymous union contains an anonymous struct of which any member
835 // is initialized, all members must be initialized.
David Blaikie262bc182012-04-30 02:36:29 +0000836 if (!RD->isUnion() || Inits.count(&*I))
837 CheckConstexprCtorInitializer(SemaRef, Dcl, &*I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000838 }
839}
840
841/// Check the body for the given constexpr function declaration only contains
842/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
843///
844/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000845bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000846 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000847 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000848 // The definition of a constexpr function shall satisfy the following
849 // constraints: [...]
850 // - its function-body shall be = delete, = default, or a
851 // compound-statement
852 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000853 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000854 // In the definition of a constexpr constructor, [...]
855 // - its function-body shall not be a function-try-block;
856 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
857 << isa<CXXConstructorDecl>(Dcl);
858 return false;
859 }
860
861 // - its function-body shall be [...] a compound-statement that contains only
862 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
863
864 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
865 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
866 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
867 switch ((*BodyIt)->getStmtClass()) {
868 case Stmt::NullStmtClass:
869 // - null statements,
870 continue;
871
872 case Stmt::DeclStmtClass:
873 // - static_assert-declarations
874 // - using-declarations,
875 // - using-directives,
876 // - typedef declarations and alias-declarations that do not define
877 // classes or enumerations,
878 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
879 return false;
880 continue;
881
882 case Stmt::ReturnStmtClass:
883 // - and exactly one return statement;
884 if (isa<CXXConstructorDecl>(Dcl))
885 break;
886
887 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000888 continue;
889
890 default:
891 break;
892 }
893
894 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
895 << isa<CXXConstructorDecl>(Dcl);
896 return false;
897 }
898
899 if (const CXXConstructorDecl *Constructor
900 = dyn_cast<CXXConstructorDecl>(Dcl)) {
901 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000902 // DR1359:
903 // - every non-variant non-static data member and base class sub-object
904 // shall be initialized;
905 // - if the class is a non-empty union, or for each non-empty anonymous
906 // union member of a non-union class, exactly one non-static data member
907 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000908 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000909 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000910 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
911 return false;
912 }
Richard Smith6e433752011-10-10 16:38:04 +0000913 } else if (!Constructor->isDependentContext() &&
914 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000915 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
916
917 // Skip detailed checking if we have enough initializers, and we would
918 // allow at most one initializer per member.
919 bool AnyAnonStructUnionMembers = false;
920 unsigned Fields = 0;
921 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
922 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000923 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000924 AnyAnonStructUnionMembers = true;
925 break;
926 }
927 }
928 if (AnyAnonStructUnionMembers ||
929 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
930 // Check initialization of non-static data members. Base classes are
931 // always initialized so do not need to be checked. Dependent bases
932 // might not have initializers in the member initializer list.
933 llvm::SmallSet<Decl*, 16> Inits;
934 for (CXXConstructorDecl::init_const_iterator
935 I = Constructor->init_begin(), E = Constructor->init_end();
936 I != E; ++I) {
937 if (FieldDecl *FD = (*I)->getMember())
938 Inits.insert(FD);
939 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
940 Inits.insert(ID->chain_begin(), ID->chain_end());
941 }
942
943 bool Diagnosed = false;
944 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
945 E = RD->field_end(); I != E; ++I)
David Blaikie262bc182012-04-30 02:36:29 +0000946 CheckConstexprCtorInitializer(*this, Dcl, &*I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000947 if (Diagnosed)
948 return false;
949 }
950 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000951 } else {
952 if (ReturnStmts.empty()) {
953 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
954 return false;
955 }
956 if (ReturnStmts.size() > 1) {
957 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
958 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
959 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
960 return false;
961 }
962 }
963
Richard Smith5ba73e12012-02-04 00:33:54 +0000964 // C++11 [dcl.constexpr]p5:
965 // if no function argument values exist such that the function invocation
966 // substitution would produce a constant expression, the program is
967 // ill-formed; no diagnostic required.
968 // C++11 [dcl.constexpr]p3:
969 // - every constructor call and implicit conversion used in initializing the
970 // return value shall be one of those allowed in a constant expression.
971 // C++11 [dcl.constexpr]p4:
972 // - every constructor involved in initializing non-static data members and
973 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000974 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000975 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000976 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
977 << isa<CXXConstructorDecl>(Dcl);
978 for (size_t I = 0, N = Diags.size(); I != N; ++I)
979 Diag(Diags[I].first, Diags[I].second);
980 return false;
981 }
982
Richard Smith9f569cc2011-10-01 02:31:28 +0000983 return true;
984}
985
Douglas Gregorb48fe382008-10-31 09:07:45 +0000986/// isCurrentClassName - Determine whether the identifier II is the
987/// name of the class type currently being defined. In the case of
988/// nested classes, this will only return true if II is the name of
989/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000990bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
991 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000992 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000993
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000994 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000995 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000996 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000997 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
998 } else
999 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1000
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001001 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001002 return &II == CurDecl->getIdentifier();
1003 else
1004 return false;
1005}
1006
Mike Stump1eb44332009-09-09 15:08:12 +00001007/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001008///
1009/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1010/// and returns NULL otherwise.
1011CXXBaseSpecifier *
1012Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1013 SourceRange SpecifierRange,
1014 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001015 TypeSourceInfo *TInfo,
1016 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001017 QualType BaseType = TInfo->getType();
1018
Douglas Gregor2943aed2009-03-03 04:44:36 +00001019 // C++ [class.union]p1:
1020 // A union shall not have base classes.
1021 if (Class->isUnion()) {
1022 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1023 << SpecifierRange;
1024 return 0;
1025 }
1026
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001027 if (EllipsisLoc.isValid() &&
1028 !TInfo->getType()->containsUnexpandedParameterPack()) {
1029 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1030 << TInfo->getTypeLoc().getSourceRange();
1031 EllipsisLoc = SourceLocation();
1032 }
1033
Douglas Gregor2943aed2009-03-03 04:44:36 +00001034 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +00001035 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001036 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001037 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +00001038
1039 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001040
1041 // Base specifiers must be record types.
1042 if (!BaseType->isRecordType()) {
1043 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1044 return 0;
1045 }
1046
1047 // C++ [class.union]p1:
1048 // A union shall not be used as a base class.
1049 if (BaseType->isUnionType()) {
1050 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1051 return 0;
1052 }
1053
1054 // C++ [class.derived]p2:
1055 // The class-name in a base-specifier shall not be an incompletely
1056 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001057 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001058 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001059 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001060 return 0;
John McCall572fc622010-08-17 07:23:57 +00001061 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001062
Eli Friedman1d954f62009-08-15 21:55:26 +00001063 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001064 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001065 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001066 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001067 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001068 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1069 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001070
Anders Carlsson1d209272011-03-25 14:55:14 +00001071 // C++ [class]p3:
1072 // If a class is marked final and it appears as a base-type-specifier in
1073 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001074 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001075 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1076 << CXXBaseDecl->getDeclName();
1077 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1078 << CXXBaseDecl->getDeclName();
1079 return 0;
1080 }
1081
John McCall572fc622010-08-17 07:23:57 +00001082 if (BaseDecl->isInvalidDecl())
1083 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001084
1085 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001086 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001087 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001088 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001089}
1090
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001091/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1092/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001093/// example:
1094/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001095/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001096BaseResult
John McCalld226f652010-08-21 09:40:31 +00001097Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001098 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001099 ParsedType basetype, SourceLocation BaseLoc,
1100 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001101 if (!classdecl)
1102 return true;
1103
Douglas Gregor40808ce2009-03-09 23:48:35 +00001104 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001105 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001106 if (!Class)
1107 return true;
1108
Nick Lewycky56062202010-07-26 16:56:01 +00001109 TypeSourceInfo *TInfo = 0;
1110 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001111
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001112 if (EllipsisLoc.isInvalid() &&
1113 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001114 UPPC_BaseType))
1115 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001116
Douglas Gregor2943aed2009-03-03 04:44:36 +00001117 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001118 Virtual, Access, TInfo,
1119 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001120 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00001121
Douglas Gregor2943aed2009-03-03 04:44:36 +00001122 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001123}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001124
Douglas Gregor2943aed2009-03-03 04:44:36 +00001125/// \brief Performs the actual work of attaching the given base class
1126/// specifiers to a C++ class.
1127bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1128 unsigned NumBases) {
1129 if (NumBases == 0)
1130 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001131
1132 // Used to keep track of which base types we have already seen, so
1133 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001134 // that the key is always the unqualified canonical type of the base
1135 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001136 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1137
1138 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001139 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001140 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001141 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001142 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001143 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001144 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001145
1146 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1147 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001148 // C++ [class.mi]p3:
1149 // A class shall not be specified as a direct base class of a
1150 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001151 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001152 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001153 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001154 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001155
1156 // Delete the duplicate base class specifier; we're going to
1157 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001158 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001159
1160 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001161 } else {
1162 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001163 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001164 Bases[NumGoodBases++] = Bases[idx];
Fariborz Jahanian91589022011-10-24 17:30:45 +00001165 if (const RecordType *Record = NewBaseType->getAs<RecordType>())
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001166 if (const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()))
1167 if (RD->hasAttr<WeakAttr>())
1168 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001169 }
1170 }
1171
1172 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001173 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001174
1175 // Delete the remaining (good) base class specifiers, since their
1176 // data has been copied into the CXXRecordDecl.
1177 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001178 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001179
1180 return Invalid;
1181}
1182
1183/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1184/// class, after checking whether there are any duplicate base
1185/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001186void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001187 unsigned NumBases) {
1188 if (!ClassDecl || !Bases || !NumBases)
1189 return;
1190
1191 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001192 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001193 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001194}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001195
John McCall3cb0ebd2010-03-10 03:28:59 +00001196static CXXRecordDecl *GetClassForType(QualType T) {
1197 if (const RecordType *RT = T->getAs<RecordType>())
1198 return cast<CXXRecordDecl>(RT->getDecl());
1199 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1200 return ICT->getDecl();
1201 else
1202 return 0;
1203}
1204
Douglas Gregora8f32e02009-10-06 17:59:45 +00001205/// \brief Determine whether the type \p Derived is a C++ class that is
1206/// derived from the type \p Base.
1207bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001208 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001209 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001210
1211 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1212 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001213 return false;
1214
John McCall3cb0ebd2010-03-10 03:28:59 +00001215 CXXRecordDecl *BaseRD = GetClassForType(Base);
1216 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001217 return false;
1218
John McCall86ff3082010-02-04 22:26:26 +00001219 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1220 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001221}
1222
1223/// \brief Determine whether the type \p Derived is a C++ class that is
1224/// derived from the type \p Base.
1225bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001226 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001227 return false;
1228
John McCall3cb0ebd2010-03-10 03:28:59 +00001229 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1230 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001231 return false;
1232
John McCall3cb0ebd2010-03-10 03:28:59 +00001233 CXXRecordDecl *BaseRD = GetClassForType(Base);
1234 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001235 return false;
1236
Douglas Gregora8f32e02009-10-06 17:59:45 +00001237 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1238}
1239
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001240void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001241 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001242 assert(BasePathArray.empty() && "Base path array must be empty!");
1243 assert(Paths.isRecordingPaths() && "Must record paths!");
1244
1245 const CXXBasePath &Path = Paths.front();
1246
1247 // We first go backward and check if we have a virtual base.
1248 // FIXME: It would be better if CXXBasePath had the base specifier for
1249 // the nearest virtual base.
1250 unsigned Start = 0;
1251 for (unsigned I = Path.size(); I != 0; --I) {
1252 if (Path[I - 1].Base->isVirtual()) {
1253 Start = I - 1;
1254 break;
1255 }
1256 }
1257
1258 // Now add all bases.
1259 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001260 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001261}
1262
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001263/// \brief Determine whether the given base path includes a virtual
1264/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001265bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1266 for (CXXCastPath::const_iterator B = BasePath.begin(),
1267 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001268 B != BEnd; ++B)
1269 if ((*B)->isVirtual())
1270 return true;
1271
1272 return false;
1273}
1274
Douglas Gregora8f32e02009-10-06 17:59:45 +00001275/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1276/// conversion (where Derived and Base are class types) is
1277/// well-formed, meaning that the conversion is unambiguous (and
1278/// that all of the base classes are accessible). Returns true
1279/// and emits a diagnostic if the code is ill-formed, returns false
1280/// otherwise. Loc is the location where this routine should point to
1281/// if there is an error, and Range is the source range to highlight
1282/// if there is an error.
1283bool
1284Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001285 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001286 unsigned AmbigiousBaseConvID,
1287 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001288 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001289 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001290 // First, determine whether the path from Derived to Base is
1291 // ambiguous. This is slightly more expensive than checking whether
1292 // the Derived to Base conversion exists, because here we need to
1293 // explore multiple paths to determine if there is an ambiguity.
1294 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1295 /*DetectVirtual=*/false);
1296 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1297 assert(DerivationOkay &&
1298 "Can only be used with a derived-to-base conversion");
1299 (void)DerivationOkay;
1300
1301 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001302 if (InaccessibleBaseID) {
1303 // Check that the base class can be accessed.
1304 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1305 InaccessibleBaseID)) {
1306 case AR_inaccessible:
1307 return true;
1308 case AR_accessible:
1309 case AR_dependent:
1310 case AR_delayed:
1311 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001312 }
John McCall6b2accb2010-02-10 09:31:12 +00001313 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001314
1315 // Build a base path if necessary.
1316 if (BasePath)
1317 BuildBasePathArray(Paths, *BasePath);
1318 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001319 }
1320
1321 // We know that the derived-to-base conversion is ambiguous, and
1322 // we're going to produce a diagnostic. Perform the derived-to-base
1323 // search just one more time to compute all of the possible paths so
1324 // that we can print them out. This is more expensive than any of
1325 // the previous derived-to-base checks we've done, but at this point
1326 // performance isn't as much of an issue.
1327 Paths.clear();
1328 Paths.setRecordingPaths(true);
1329 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1330 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1331 (void)StillOkay;
1332
1333 // Build up a textual representation of the ambiguous paths, e.g.,
1334 // D -> B -> A, that will be used to illustrate the ambiguous
1335 // conversions in the diagnostic. We only print one of the paths
1336 // to each base class subobject.
1337 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1338
1339 Diag(Loc, AmbigiousBaseConvID)
1340 << Derived << Base << PathDisplayStr << Range << Name;
1341 return true;
1342}
1343
1344bool
1345Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001346 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001347 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001348 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001349 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001350 IgnoreAccess ? 0
1351 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001352 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001353 Loc, Range, DeclarationName(),
1354 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001355}
1356
1357
1358/// @brief Builds a string representing ambiguous paths from a
1359/// specific derived class to different subobjects of the same base
1360/// class.
1361///
1362/// This function builds a string that can be used in error messages
1363/// to show the different paths that one can take through the
1364/// inheritance hierarchy to go from the derived class to different
1365/// subobjects of a base class. The result looks something like this:
1366/// @code
1367/// struct D -> struct B -> struct A
1368/// struct D -> struct C -> struct A
1369/// @endcode
1370std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1371 std::string PathDisplayStr;
1372 std::set<unsigned> DisplayedPaths;
1373 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1374 Path != Paths.end(); ++Path) {
1375 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1376 // We haven't displayed a path to this particular base
1377 // class subobject yet.
1378 PathDisplayStr += "\n ";
1379 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1380 for (CXXBasePath::const_iterator Element = Path->begin();
1381 Element != Path->end(); ++Element)
1382 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1383 }
1384 }
1385
1386 return PathDisplayStr;
1387}
1388
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001389//===----------------------------------------------------------------------===//
1390// C++ class member Handling
1391//===----------------------------------------------------------------------===//
1392
Abramo Bagnara6206d532010-06-05 05:09:32 +00001393/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001394bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1395 SourceLocation ASLoc,
1396 SourceLocation ColonLoc,
1397 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001398 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001399 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001400 ASLoc, ColonLoc);
1401 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001402 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001403}
1404
Anders Carlsson9e682d92011-01-20 05:57:14 +00001405/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001406void Sema::CheckOverrideControl(const Decl *D) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001407 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001408 if (!MD || !MD->isVirtual())
1409 return;
1410
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001411 if (MD->isDependentContext())
1412 return;
1413
Anders Carlsson9e682d92011-01-20 05:57:14 +00001414 // C++0x [class.virtual]p3:
1415 // If a virtual function is marked with the virt-specifier override and does
1416 // not override a member function of a base class,
1417 // the program is ill-formed.
1418 bool HasOverriddenMethods =
1419 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001420 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001421 Diag(MD->getLocation(),
Anders Carlsson9e682d92011-01-20 05:57:14 +00001422 diag::err_function_marked_override_not_overriding)
1423 << MD->getDeclName();
1424 return;
1425 }
1426}
1427
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001428/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
1429/// function overrides a virtual member function marked 'final', according to
1430/// C++0x [class.virtual]p3.
1431bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1432 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001433 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001434 return false;
1435
1436 Diag(New->getLocation(), diag::err_final_function_overridden)
1437 << New->getDeclName();
1438 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1439 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001440}
1441
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001442/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1443/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001444/// bitfield width if there is one, 'InitExpr' specifies the initializer if
1445/// one has been parsed, and 'HasDeferredInit' is true if an initializer is
1446/// present but parsing it has been deferred.
John McCalld226f652010-08-21 09:40:31 +00001447Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001448Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001449 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001450 Expr *BW, const VirtSpecifiers &VS,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001451 bool HasDeferredInit) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001452 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001453 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1454 DeclarationName Name = NameInfo.getName();
1455 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001456
1457 // For anonymous bitfields, the location should point to the type.
1458 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001459 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001460
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001461 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001462
John McCall4bde1e12010-06-04 08:34:12 +00001463 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001464 assert(!DS.isFriendSpecified());
1465
Richard Smith1ab0d902011-06-25 02:28:38 +00001466 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001467
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001468 // C++ 9.2p6: A member shall not be declared to have automatic storage
1469 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001470 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1471 // data members and cannot be applied to names declared const or static,
1472 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001473 switch (DS.getStorageClassSpec()) {
1474 case DeclSpec::SCS_unspecified:
1475 case DeclSpec::SCS_typedef:
1476 case DeclSpec::SCS_static:
1477 // FALL THROUGH.
1478 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001479 case DeclSpec::SCS_mutable:
1480 if (isFunc) {
1481 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001482 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001483 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001484 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Sebastian Redla11f42f2008-11-17 23:24:37 +00001486 // FIXME: It would be nicer if the keyword was ignored only for this
1487 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001488 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001489 }
1490 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001491 default:
1492 if (DS.getStorageClassSpecLoc().isValid())
1493 Diag(DS.getStorageClassSpecLoc(),
1494 diag::err_storageclass_invalid_for_member);
1495 else
1496 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1497 D.getMutableDeclSpec().ClearStorageClassSpecs();
1498 }
1499
Sebastian Redl669d5d72008-11-14 23:42:31 +00001500 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1501 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001502 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001503
1504 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001505 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001506 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001507
1508 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001509 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001510 Diag(Loc, diag::err_bad_variable_name)
1511 << Name;
1512 return 0;
1513 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001514
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001515 IdentifierInfo *II = Name.getAsIdentifierInfo();
1516
Douglas Gregorf2503652011-09-21 14:40:46 +00001517 // Member field could not be with "template" keyword.
1518 // So TemplateParameterLists should be empty in this case.
1519 if (TemplateParameterLists.size()) {
1520 TemplateParameterList* TemplateParams = TemplateParameterLists.get()[0];
1521 if (TemplateParams->size()) {
1522 // There is no such thing as a member field template.
1523 Diag(D.getIdentifierLoc(), diag::err_template_member)
1524 << II
1525 << SourceRange(TemplateParams->getTemplateLoc(),
1526 TemplateParams->getRAngleLoc());
1527 } else {
1528 // There is an extraneous 'template<>' for this member.
1529 Diag(TemplateParams->getTemplateLoc(),
1530 diag::err_template_member_noparams)
1531 << II
1532 << SourceRange(TemplateParams->getTemplateLoc(),
1533 TemplateParams->getRAngleLoc());
1534 }
1535 return 0;
1536 }
1537
Douglas Gregor922fff22010-10-13 22:19:53 +00001538 if (SS.isSet() && !SS.isInvalid()) {
1539 // The user provided a superfluous scope specifier inside a class
1540 // definition:
1541 //
1542 // class X {
1543 // int X::member;
1544 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001545 if (DeclContext *DC = computeDeclContext(SS, false))
1546 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001547 else
1548 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1549 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001550
Douglas Gregor922fff22010-10-13 22:19:53 +00001551 SS.clear();
1552 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001553
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001554 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +00001555 HasDeferredInit, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001556 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001557 } else {
Richard Smith7a614d82011-06-11 17:19:42 +00001558 assert(!HasDeferredInit);
1559
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001560 Member = HandleDeclarator(S, D, move(TemplateParameterLists));
Chris Lattner6f8ce142009-03-05 23:03:49 +00001561 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001562 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001563 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001564
1565 // Non-instance-fields can't have a bitfield.
1566 if (BitWidth) {
1567 if (Member->isInvalidDecl()) {
1568 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001569 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001570 // C++ 9.6p3: A bit-field shall not be a static member.
1571 // "static member 'A' cannot be a bit-field"
1572 Diag(Loc, diag::err_static_not_bitfield)
1573 << Name << BitWidth->getSourceRange();
1574 } else if (isa<TypedefDecl>(Member)) {
1575 // "typedef member 'x' cannot be a bit-field"
1576 Diag(Loc, diag::err_typedef_not_bitfield)
1577 << Name << BitWidth->getSourceRange();
1578 } else {
1579 // A function typedef ("typedef int f(); f a;").
1580 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1581 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001582 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001583 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001584 }
Mike Stump1eb44332009-09-09 15:08:12 +00001585
Chris Lattner8b963ef2009-03-05 23:01:03 +00001586 BitWidth = 0;
1587 Member->setInvalidDecl();
1588 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001589
1590 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001591
Douglas Gregor37b372b2009-08-20 22:52:58 +00001592 // If we have declared a member function template, set the access of the
1593 // templated declaration as well.
1594 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1595 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001596 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001597
Anders Carlssonaae5af22011-01-20 04:34:22 +00001598 if (VS.isOverrideSpecified()) {
1599 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1600 if (!MD || !MD->isVirtual()) {
1601 Diag(Member->getLocStart(),
1602 diag::override_keyword_only_allowed_on_virtual_member_functions)
1603 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001604 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001605 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001606 }
1607 if (VS.isFinalSpecified()) {
1608 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1609 if (!MD || !MD->isVirtual()) {
1610 Diag(Member->getLocStart(),
1611 diag::override_keyword_only_allowed_on_virtual_member_functions)
1612 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001613 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001614 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001615 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001616
Douglas Gregorf5251602011-03-08 17:10:18 +00001617 if (VS.getLastLocation().isValid()) {
1618 // Update the end location of a method that has a virt-specifiers.
1619 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1620 MD->setRangeEnd(VS.getLastLocation());
1621 }
1622
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001623 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001624
Douglas Gregor10bd3682008-11-17 22:58:34 +00001625 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001626
John McCallb25b2952011-02-15 07:12:36 +00001627 if (isInstField)
Douglas Gregor44b43212008-12-11 16:49:14 +00001628 FieldCollector->Add(cast<FieldDecl>(Member));
John McCalld226f652010-08-21 09:40:31 +00001629 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001630}
1631
Richard Smith7a614d82011-06-11 17:19:42 +00001632/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001633/// in-class initializer for a non-static C++ class member, and after
1634/// instantiating an in-class initializer in a class template. Such actions
1635/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001636void
1637Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation EqualLoc,
1638 Expr *InitExpr) {
1639 FieldDecl *FD = cast<FieldDecl>(D);
1640
1641 if (!InitExpr) {
1642 FD->setInvalidDecl();
1643 FD->removeInClassInitializer();
1644 return;
1645 }
1646
Peter Collingbournefef21892011-10-23 18:59:44 +00001647 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1648 FD->setInvalidDecl();
1649 FD->removeInClassInitializer();
1650 return;
1651 }
1652
Richard Smith7a614d82011-06-11 17:19:42 +00001653 ExprResult Init = InitExpr;
1654 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001655 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001656 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001657 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1658 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001659 Expr **Inits = &InitExpr;
1660 unsigned NumInits = 1;
1661 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
1662 InitializationKind Kind = EqualLoc.isInvalid()
1663 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
1664 : InitializationKind::CreateCopy(InitExpr->getLocStart(), EqualLoc);
1665 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1666 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001667 if (Init.isInvalid()) {
1668 FD->setInvalidDecl();
1669 return;
1670 }
1671
1672 CheckImplicitConversions(Init.get(), EqualLoc);
1673 }
1674
1675 // C++0x [class.base.init]p7:
1676 // The initialization of each base and member constitutes a
1677 // full-expression.
1678 Init = MaybeCreateExprWithCleanups(Init);
1679 if (Init.isInvalid()) {
1680 FD->setInvalidDecl();
1681 return;
1682 }
1683
1684 InitExpr = Init.release();
1685
1686 FD->setInClassInitializer(InitExpr);
1687}
1688
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001689/// \brief Find the direct and/or virtual base specifiers that
1690/// correspond to the given base type, for use in base initialization
1691/// within a constructor.
1692static bool FindBaseInitializer(Sema &SemaRef,
1693 CXXRecordDecl *ClassDecl,
1694 QualType BaseType,
1695 const CXXBaseSpecifier *&DirectBaseSpec,
1696 const CXXBaseSpecifier *&VirtualBaseSpec) {
1697 // First, check for a direct base class.
1698 DirectBaseSpec = 0;
1699 for (CXXRecordDecl::base_class_const_iterator Base
1700 = ClassDecl->bases_begin();
1701 Base != ClassDecl->bases_end(); ++Base) {
1702 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1703 // We found a direct base of this type. That's what we're
1704 // initializing.
1705 DirectBaseSpec = &*Base;
1706 break;
1707 }
1708 }
1709
1710 // Check for a virtual base class.
1711 // FIXME: We might be able to short-circuit this if we know in advance that
1712 // there are no virtual bases.
1713 VirtualBaseSpec = 0;
1714 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1715 // We haven't found a base yet; search the class hierarchy for a
1716 // virtual base class.
1717 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1718 /*DetectVirtual=*/false);
1719 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1720 BaseType, Paths)) {
1721 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1722 Path != Paths.end(); ++Path) {
1723 if (Path->back().Base->isVirtual()) {
1724 VirtualBaseSpec = Path->back().Base;
1725 break;
1726 }
1727 }
1728 }
1729 }
1730
1731 return DirectBaseSpec || VirtualBaseSpec;
1732}
1733
Sebastian Redl6df65482011-09-24 17:48:25 +00001734/// \brief Handle a C++ member initializer using braced-init-list syntax.
1735MemInitResult
1736Sema::ActOnMemInitializer(Decl *ConstructorD,
1737 Scope *S,
1738 CXXScopeSpec &SS,
1739 IdentifierInfo *MemberOrBase,
1740 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001741 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001742 SourceLocation IdLoc,
1743 Expr *InitList,
1744 SourceLocation EllipsisLoc) {
1745 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001746 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001747 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001748}
1749
1750/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001751MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001752Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001753 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001754 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001755 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001756 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001757 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001758 SourceLocation IdLoc,
1759 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001760 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001761 SourceLocation RParenLoc,
1762 SourceLocation EllipsisLoc) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001763 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1764 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001765 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001766 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001767}
1768
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001769namespace {
1770
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001771// Callback to only accept typo corrections that can be a valid C++ member
1772// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001773class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1774 public:
1775 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1776 : ClassDecl(ClassDecl) {}
1777
1778 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1779 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1780 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1781 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1782 else
1783 return isa<TypeDecl>(ND);
1784 }
1785 return false;
1786 }
1787
1788 private:
1789 CXXRecordDecl *ClassDecl;
1790};
1791
1792}
1793
Sebastian Redl6df65482011-09-24 17:48:25 +00001794/// \brief Handle a C++ member initializer.
1795MemInitResult
1796Sema::BuildMemInitializer(Decl *ConstructorD,
1797 Scope *S,
1798 CXXScopeSpec &SS,
1799 IdentifierInfo *MemberOrBase,
1800 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001801 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001802 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001803 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001804 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001805 if (!ConstructorD)
1806 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001808 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001809
1810 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001811 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001812 if (!Constructor) {
1813 // The user wrote a constructor initializer on a function that is
1814 // not a C++ constructor. Ignore the error for now, because we may
1815 // have more member initializers coming; we'll diagnose it just
1816 // once in ActOnMemInitializers.
1817 return true;
1818 }
1819
1820 CXXRecordDecl *ClassDecl = Constructor->getParent();
1821
1822 // C++ [class.base.init]p2:
1823 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001824 // constructor's class and, if not found in that scope, are looked
1825 // up in the scope containing the constructor's definition.
1826 // [Note: if the constructor's class contains a member with the
1827 // same name as a direct or virtual base class of the class, a
1828 // mem-initializer-id naming the member or base class and composed
1829 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001830 // mem-initializer-id for the hidden base class may be specified
1831 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001832 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001833 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001834 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001835 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001836 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001837 ValueDecl *Member;
1838 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1839 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001840 if (EllipsisLoc.isValid())
1841 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001842 << MemberOrBase
1843 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001844
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001845 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001846 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001847 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001848 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001849 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001850 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001851 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001852
1853 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001854 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001855 } else if (DS.getTypeSpecType() == TST_decltype) {
1856 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001857 } else {
1858 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1859 LookupParsedName(R, S, &SS);
1860
1861 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1862 if (!TyD) {
1863 if (R.isAmbiguous()) return true;
1864
John McCallfd225442010-04-09 19:01:14 +00001865 // We don't want access-control diagnostics here.
1866 R.suppressDiagnostics();
1867
Douglas Gregor7a886e12010-01-19 06:46:48 +00001868 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1869 bool NotUnknownSpecialization = false;
1870 DeclContext *DC = computeDeclContext(SS, false);
1871 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1872 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1873
1874 if (!NotUnknownSpecialization) {
1875 // When the scope specifier can refer to a member of an unknown
1876 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001877 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1878 SS.getWithLocInContext(Context),
1879 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001880 if (BaseType.isNull())
1881 return true;
1882
Douglas Gregor7a886e12010-01-19 06:46:48 +00001883 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001884 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001885 }
1886 }
1887
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001888 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001889 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001890 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001891 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001892 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001893 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001894 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1895 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001896 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001897 // We have found a non-static data member with a similar
1898 // name to what was typed; complain and initialize that
1899 // member.
1900 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1901 << MemberOrBase << true << CorrectedQuotedStr
1902 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1903 Diag(Member->getLocation(), diag::note_previous_decl)
1904 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001905
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001906 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001907 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001908 const CXXBaseSpecifier *DirectBaseSpec;
1909 const CXXBaseSpecifier *VirtualBaseSpec;
1910 if (FindBaseInitializer(*this, ClassDecl,
1911 Context.getTypeDeclType(Type),
1912 DirectBaseSpec, VirtualBaseSpec)) {
1913 // We have found a direct or virtual base class with a
1914 // similar name to what was typed; complain and initialize
1915 // that base class.
1916 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001917 << MemberOrBase << false << CorrectedQuotedStr
1918 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001919
1920 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1921 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001922 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001923 diag::note_base_class_specified_here)
1924 << BaseSpec->getType()
1925 << BaseSpec->getSourceRange();
1926
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001927 TyD = Type;
1928 }
1929 }
1930 }
1931
Douglas Gregor7a886e12010-01-19 06:46:48 +00001932 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001933 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001934 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001935 return true;
1936 }
John McCall2b194412009-12-21 10:41:20 +00001937 }
1938
Douglas Gregor7a886e12010-01-19 06:46:48 +00001939 if (BaseType.isNull()) {
1940 BaseType = Context.getTypeDeclType(TyD);
1941 if (SS.isSet()) {
1942 NestedNameSpecifier *Qualifier =
1943 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001944
Douglas Gregor7a886e12010-01-19 06:46:48 +00001945 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001946 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001947 }
John McCall2b194412009-12-21 10:41:20 +00001948 }
1949 }
Mike Stump1eb44332009-09-09 15:08:12 +00001950
John McCalla93c9342009-12-07 02:54:59 +00001951 if (!TInfo)
1952 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001953
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001954 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001955}
1956
Chandler Carruth81c64772011-09-03 01:14:15 +00001957/// Checks a member initializer expression for cases where reference (or
1958/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00001959static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
1960 Expr *Init,
1961 SourceLocation IdLoc) {
1962 QualType MemberTy = Member->getType();
1963
1964 // We only handle pointers and references currently.
1965 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
1966 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
1967 return;
1968
1969 const bool IsPointer = MemberTy->isPointerType();
1970 if (IsPointer) {
1971 if (const UnaryOperator *Op
1972 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
1973 // The only case we're worried about with pointers requires taking the
1974 // address.
1975 if (Op->getOpcode() != UO_AddrOf)
1976 return;
1977
1978 Init = Op->getSubExpr();
1979 } else {
1980 // We only handle address-of expression initializers for pointers.
1981 return;
1982 }
1983 }
1984
Chandler Carruthbf3380a2011-09-03 02:21:57 +00001985 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
1986 // Taking the address of a temporary will be diagnosed as a hard error.
1987 if (IsPointer)
1988 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00001989
Chandler Carruthbf3380a2011-09-03 02:21:57 +00001990 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
1991 << Member << Init->getSourceRange();
1992 } else if (const DeclRefExpr *DRE
1993 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
1994 // We only warn when referring to a non-reference parameter declaration.
1995 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
1996 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00001997 return;
1998
1999 S.Diag(Init->getExprLoc(),
2000 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2001 : diag::warn_bind_ref_member_to_parameter)
2002 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002003 } else {
2004 // Other initializers are fine.
2005 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002006 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002007
2008 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2009 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002010}
2011
John McCallb4190042009-11-04 23:02:40 +00002012/// Checks an initializer expression for use of uninitialized fields, such as
2013/// containing the field that is being initialized. Returns true if there is an
2014/// uninitialized field was used an updates the SourceLocation parameter; false
2015/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00002016static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichet00eb3f92010-12-04 09:14:42 +00002017 const ValueDecl *LhsField,
Nick Lewycky43ad1822010-06-15 07:32:55 +00002018 SourceLocation *L) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002019 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
2020
Nick Lewycky43ad1822010-06-15 07:32:55 +00002021 if (isa<CallExpr>(S)) {
2022 // Do not descend into function calls or constructors, as the use
2023 // of an uninitialized field may be valid. One would have to inspect
2024 // the contents of the function/ctor to determine if it is safe or not.
2025 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
2026 // may be safe, depending on what the function/ctor does.
2027 return false;
2028 }
2029 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
2030 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002031
2032 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
2033 // The member expression points to a static data member.
2034 assert(VD->isStaticDataMember() &&
2035 "Member points to non-static data member!");
Nick Lewyckyedd59112010-10-06 18:37:39 +00002036 (void)VD;
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002037 return false;
2038 }
2039
2040 if (isa<EnumConstantDecl>(RhsField)) {
2041 // The member expression points to an enum.
2042 return false;
2043 }
2044
John McCallb4190042009-11-04 23:02:40 +00002045 if (RhsField == LhsField) {
2046 // Initializing a field with itself. Throw a warning.
2047 // But wait; there are exceptions!
2048 // Exception #1: The field may not belong to this record.
2049 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00002050 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00002051 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
2052 // Even though the field matches, it does not belong to this record.
2053 return false;
2054 }
2055 // None of the exceptions triggered; return true to indicate an
2056 // uninitialized field was used.
2057 *L = ME->getMemberLoc();
2058 return true;
2059 }
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002060 } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
Argyrios Kyrtzidisff8819b2010-09-21 10:47:20 +00002061 // sizeof/alignof doesn't reference contents, do not warn.
2062 return false;
2063 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
2064 // address-of doesn't reference contents (the pointer may be dereferenced
2065 // in the same expression but it would be rare; and weird).
2066 if (UOE->getOpcode() == UO_AddrOf)
2067 return false;
John McCallb4190042009-11-04 23:02:40 +00002068 }
John McCall7502c1d2011-02-13 04:07:26 +00002069 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewycky43ad1822010-06-15 07:32:55 +00002070 if (!*it) {
2071 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00002072 continue;
2073 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002074 if (InitExprContainsUninitializedFields(*it, LhsField, L))
2075 return true;
John McCallb4190042009-11-04 23:02:40 +00002076 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002077 return false;
John McCallb4190042009-11-04 23:02:40 +00002078}
2079
John McCallf312b1e2010-08-26 23:41:50 +00002080MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002081Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002082 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002083 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2084 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2085 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002086 "Member must be a FieldDecl or IndirectFieldDecl");
2087
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002088 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002089 return true;
2090
Douglas Gregor464b2f02010-11-05 22:21:31 +00002091 if (Member->isInvalidDecl())
2092 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002093
John McCallb4190042009-11-04 23:02:40 +00002094 // Diagnose value-uses of fields to initialize themselves, e.g.
2095 // foo(foo)
2096 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002097 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002098 Expr **Args;
2099 unsigned NumArgs;
2100 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2101 Args = ParenList->getExprs();
2102 NumArgs = ParenList->getNumExprs();
2103 } else {
2104 InitListExpr *InitList = cast<InitListExpr>(Init);
2105 Args = InitList->getInits();
2106 NumArgs = InitList->getNumInits();
2107 }
2108 for (unsigned i = 0; i < NumArgs; ++i) {
John McCallb4190042009-11-04 23:02:40 +00002109 SourceLocation L;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002110 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
John McCallb4190042009-11-04 23:02:40 +00002111 // FIXME: Return true in the case when other fields are used before being
2112 // uninitialized. For example, let this field be the i'th field. When
2113 // initializing the i'th field, throw a warning if any of the >= i'th
2114 // fields are used, as they are not yet initialized.
2115 // Right now we are only handling the case where the i'th field uses
2116 // itself in its initializer.
2117 Diag(L, diag::warn_field_is_uninit);
2118 }
2119 }
2120
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002121 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002122
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002123 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002124 // Can't check initialization for a member of dependent type or when
2125 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002126 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002127 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002128 bool InitList = false;
2129 if (isa<InitListExpr>(Init)) {
2130 InitList = true;
2131 Args = &Init;
2132 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002133
2134 if (isStdInitializerList(Member->getType(), 0)) {
2135 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2136 << /*at end of ctor*/1 << InitRange;
2137 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002138 }
2139
Chandler Carruth894aed92010-12-06 09:23:57 +00002140 // Initialize the member.
2141 InitializedEntity MemberEntity =
2142 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2143 : InitializedEntity::InitializeMember(IndirectMember, 0);
2144 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002145 InitList ? InitializationKind::CreateDirectList(IdLoc)
2146 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2147 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002148
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002149 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2150 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
2151 MultiExprArg(*this, Args, NumArgs),
2152 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002153 if (MemberInit.isInvalid())
2154 return true;
2155
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002156 CheckImplicitConversions(MemberInit.get(),
2157 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002158
2159 // C++0x [class.base.init]p7:
2160 // The initialization of each base and member constitutes a
2161 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002162 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002163 if (MemberInit.isInvalid())
2164 return true;
2165
2166 // If we are in a dependent context, template instantiation will
2167 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002168 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002169 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2170 // of the information that we have about the member
2171 // initializer. However, deconstructing the ASTs is a dicey process,
2172 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002173 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002174 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002175 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002176 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002177 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2178 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002179 }
2180
Chandler Carruth894aed92010-12-06 09:23:57 +00002181 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002182 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2183 InitRange.getBegin(), Init,
2184 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002185 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002186 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2187 InitRange.getBegin(), Init,
2188 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002189 }
Eli Friedman59c04372009-07-29 19:44:27 +00002190}
2191
John McCallf312b1e2010-08-26 23:41:50 +00002192MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002193Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002194 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002195 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002196 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002197 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002198 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002199 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002200
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002201 bool InitList = true;
2202 Expr **Args = &Init;
2203 unsigned NumArgs = 1;
2204 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2205 InitList = false;
2206 Args = ParenList->getExprs();
2207 NumArgs = ParenList->getNumExprs();
2208 }
2209
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002210 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002211 // Initialize the object.
2212 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2213 QualType(ClassDecl->getTypeForDecl(), 0));
2214 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002215 InitList ? InitializationKind::CreateDirectList(NameLoc)
2216 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2217 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002218 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2219 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
2220 MultiExprArg(*this, Args,NumArgs),
2221 0);
Sean Hunt41717662011-02-26 19:13:13 +00002222 if (DelegationInit.isInvalid())
2223 return true;
2224
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002225 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2226 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002227
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002228 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002229
2230 // C++0x [class.base.init]p7:
2231 // The initialization of each base and member constitutes a
2232 // full-expression.
2233 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2234 if (DelegationInit.isInvalid())
2235 return true;
2236
Eli Friedmand21016f2012-05-19 23:35:23 +00002237 // If we are in a dependent context, template instantiation will
2238 // perform this type-checking again. Just save the arguments that we
2239 // received in a ParenListExpr.
2240 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2241 // of the information that we have about the base
2242 // initializer. However, deconstructing the ASTs is a dicey process,
2243 // and this approach is far more likely to get the corner cases right.
2244 if (CurContext->isDependentContext())
2245 DelegationInit = Owned(Init);
2246
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002247 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002248 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002249 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002250}
2251
2252MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002253Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002254 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002255 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002256 SourceLocation BaseLoc
2257 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002258
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002259 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2260 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2261 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2262
2263 // C++ [class.base.init]p2:
2264 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002265 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002266 // of that class, the mem-initializer is ill-formed. A
2267 // mem-initializer-list can initialize a base class using any
2268 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002269 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002270
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002271 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002272 if (EllipsisLoc.isValid()) {
2273 // This is a pack expansion.
2274 if (!BaseType->containsUnexpandedParameterPack()) {
2275 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002276 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002277
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002278 EllipsisLoc = SourceLocation();
2279 }
2280 } else {
2281 // Check for any unexpanded parameter packs.
2282 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2283 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002284
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002285 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002286 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002287 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002288
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002289 // Check for direct and virtual base classes.
2290 const CXXBaseSpecifier *DirectBaseSpec = 0;
2291 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2292 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002293 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2294 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002295 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002296
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002297 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2298 VirtualBaseSpec);
2299
2300 // C++ [base.class.init]p2:
2301 // Unless the mem-initializer-id names a nonstatic data member of the
2302 // constructor's class or a direct or virtual base of that class, the
2303 // mem-initializer is ill-formed.
2304 if (!DirectBaseSpec && !VirtualBaseSpec) {
2305 // If the class has any dependent bases, then it's possible that
2306 // one of those types will resolve to the same type as
2307 // BaseType. Therefore, just treat this as a dependent base
2308 // class initialization. FIXME: Should we try to check the
2309 // initialization anyway? It seems odd.
2310 if (ClassDecl->hasAnyDependentBases())
2311 Dependent = true;
2312 else
2313 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2314 << BaseType << Context.getTypeDeclType(ClassDecl)
2315 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2316 }
2317 }
2318
2319 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002320 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002321
Sebastian Redl6df65482011-09-24 17:48:25 +00002322 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2323 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002324 InitRange.getBegin(), Init,
2325 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002326 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002327
2328 // C++ [base.class.init]p2:
2329 // If a mem-initializer-id is ambiguous because it designates both
2330 // a direct non-virtual base class and an inherited virtual base
2331 // class, the mem-initializer is ill-formed.
2332 if (DirectBaseSpec && VirtualBaseSpec)
2333 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002334 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002335
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002336 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002337 if (!BaseSpec)
2338 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2339
2340 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002341 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002342 Expr **Args = &Init;
2343 unsigned NumArgs = 1;
2344 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002345 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002346 Args = ParenList->getExprs();
2347 NumArgs = ParenList->getNumExprs();
2348 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002349
2350 InitializedEntity BaseEntity =
2351 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2352 InitializationKind Kind =
2353 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2354 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2355 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002356 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2357 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
2358 MultiExprArg(*this, Args, NumArgs),
2359 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002360 if (BaseInit.isInvalid())
2361 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002362
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002363 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002364
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002365 // C++0x [class.base.init]p7:
2366 // The initialization of each base and member constitutes a
2367 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002368 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002369 if (BaseInit.isInvalid())
2370 return true;
2371
2372 // If we are in a dependent context, template instantiation will
2373 // perform this type-checking again. Just save the arguments that we
2374 // received in a ParenListExpr.
2375 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2376 // of the information that we have about the base
2377 // initializer. However, deconstructing the ASTs is a dicey process,
2378 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002379 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002380 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002381
Sean Huntcbb67482011-01-08 20:30:50 +00002382 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002383 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002384 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002385 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002386 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002387}
2388
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002389// Create a static_cast\<T&&>(expr).
2390static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2391 QualType ExprType = E->getType();
2392 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2393 SourceLocation ExprLoc = E->getLocStart();
2394 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2395 TargetType, ExprLoc);
2396
2397 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2398 SourceRange(ExprLoc, ExprLoc),
2399 E->getSourceRange()).take();
2400}
2401
Anders Carlssone5ef7402010-04-23 03:10:23 +00002402/// ImplicitInitializerKind - How an implicit base or member initializer should
2403/// initialize its base or member.
2404enum ImplicitInitializerKind {
2405 IIK_Default,
2406 IIK_Copy,
2407 IIK_Move
2408};
2409
Anders Carlssondefefd22010-04-23 02:00:02 +00002410static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002411BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002412 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002413 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002414 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002415 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002416 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002417 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2418 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002419
John McCall60d7b3a2010-08-24 06:29:42 +00002420 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002421
2422 switch (ImplicitInitKind) {
2423 case IIK_Default: {
2424 InitializationKind InitKind
2425 = InitializationKind::CreateDefault(Constructor->getLocation());
2426 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2427 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002428 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002429 break;
2430 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002431
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002432 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002433 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002434 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002435 ParmVarDecl *Param = Constructor->getParamDecl(0);
2436 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002437
Anders Carlssone5ef7402010-04-23 03:10:23 +00002438 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002439 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002440 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002441 Constructor->getLocation(), ParamType,
2442 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002443
Eli Friedman5f2987c2012-02-02 03:46:19 +00002444 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2445
Anders Carlssonc7957502010-04-24 22:02:54 +00002446 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002447 QualType ArgTy =
2448 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2449 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002450
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002451 if (Moving) {
2452 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2453 }
2454
John McCallf871d0c2010-08-07 06:22:56 +00002455 CXXCastPath BasePath;
2456 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002457 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2458 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002459 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002460 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002461
Anders Carlssone5ef7402010-04-23 03:10:23 +00002462 InitializationKind InitKind
2463 = InitializationKind::CreateDirect(Constructor->getLocation(),
2464 SourceLocation(), SourceLocation());
2465 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2466 &CopyCtorArg, 1);
2467 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002468 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002469 break;
2470 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002471 }
John McCall9ae2f072010-08-23 23:25:46 +00002472
Douglas Gregor53c374f2010-12-07 00:41:46 +00002473 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002474 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002475 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002476
Anders Carlssondefefd22010-04-23 02:00:02 +00002477 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002478 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002479 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2480 SourceLocation()),
2481 BaseSpec->isVirtual(),
2482 SourceLocation(),
2483 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002484 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002485 SourceLocation());
2486
Anders Carlssondefefd22010-04-23 02:00:02 +00002487 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002488}
2489
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002490static bool RefersToRValueRef(Expr *MemRef) {
2491 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2492 return Referenced->getType()->isRValueReferenceType();
2493}
2494
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002495static bool
2496BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002497 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002498 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002499 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002500 if (Field->isInvalidDecl())
2501 return true;
2502
Chandler Carruthf186b542010-06-29 23:50:44 +00002503 SourceLocation Loc = Constructor->getLocation();
2504
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002505 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2506 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002507 ParmVarDecl *Param = Constructor->getParamDecl(0);
2508 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002509
2510 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002511 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2512 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002513
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002514 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002515 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002516 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002517 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002518
Eli Friedman5f2987c2012-02-02 03:46:19 +00002519 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2520
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002521 if (Moving) {
2522 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2523 }
2524
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002525 // Build a reference to this field within the parameter.
2526 CXXScopeSpec SS;
2527 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2528 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002529 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2530 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002531 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002532 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002533 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002534 ParamType, Loc,
2535 /*IsArrow=*/false,
2536 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002537 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002538 /*FirstQualifierInScope=*/0,
2539 MemberLookup,
2540 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002541 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002542 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002543
2544 // C++11 [class.copy]p15:
2545 // - if a member m has rvalue reference type T&&, it is direct-initialized
2546 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002547 if (RefersToRValueRef(CtorArg.get())) {
2548 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002549 }
2550
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002551 // When the field we are copying is an array, create index variables for
2552 // each dimension of the array. We use these index variables to subscript
2553 // the source array, and other clients (e.g., CodeGen) will perform the
2554 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002555 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002556 QualType BaseType = Field->getType();
2557 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002558 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002559 while (const ConstantArrayType *Array
2560 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002561 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002562 // Create the iteration variable for this array index.
2563 IdentifierInfo *IterationVarName = 0;
2564 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002565 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002566 llvm::raw_svector_ostream OS(Str);
2567 OS << "__i" << IndexVariables.size();
2568 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2569 }
2570 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002571 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002572 IterationVarName, SizeType,
2573 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002574 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002575 IndexVariables.push_back(IterationVar);
2576
2577 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002578 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002579 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002580 assert(!IterationVarRef.isInvalid() &&
2581 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002582 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2583 assert(!IterationVarRef.isInvalid() &&
2584 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002585
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002586 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002587 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002588 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002589 Loc);
2590 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002591 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002592
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002593 BaseType = Array->getElementType();
2594 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002595
2596 // The array subscript expression is an lvalue, which is wrong for moving.
2597 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002598 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002599
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002600 // Construct the entity that we will be initializing. For an array, this
2601 // will be first element in the array, which may require several levels
2602 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002603 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002604 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002605 if (Indirect)
2606 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2607 else
2608 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002609 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2610 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2611 0,
2612 Entities.back()));
2613
2614 // Direct-initialize to use the copy constructor.
2615 InitializationKind InitKind =
2616 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2617
Sebastian Redl74e611a2011-09-04 18:14:28 +00002618 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002619 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002620 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002621
John McCall60d7b3a2010-08-24 06:29:42 +00002622 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002623 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002624 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002625 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002626 if (MemberInit.isInvalid())
2627 return true;
2628
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002629 if (Indirect) {
2630 assert(IndexVariables.size() == 0 &&
2631 "Indirect field improperly initialized");
2632 CXXMemberInit
2633 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2634 Loc, Loc,
2635 MemberInit.takeAs<Expr>(),
2636 Loc);
2637 } else
2638 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2639 Loc, MemberInit.takeAs<Expr>(),
2640 Loc,
2641 IndexVariables.data(),
2642 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002643 return false;
2644 }
2645
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002646 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2647
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002648 QualType FieldBaseElementType =
2649 SemaRef.Context.getBaseElementType(Field->getType());
2650
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002651 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002652 InitializedEntity InitEntity
2653 = Indirect? InitializedEntity::InitializeMember(Indirect)
2654 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002655 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002656 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002657
2658 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002659 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002660 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002661
Douglas Gregor53c374f2010-12-07 00:41:46 +00002662 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002663 if (MemberInit.isInvalid())
2664 return true;
2665
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002666 if (Indirect)
2667 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2668 Indirect, Loc,
2669 Loc,
2670 MemberInit.get(),
2671 Loc);
2672 else
2673 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2674 Field, Loc, Loc,
2675 MemberInit.get(),
2676 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002677 return false;
2678 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002679
Sean Hunt1f2f3842011-05-17 00:19:05 +00002680 if (!Field->getParent()->isUnion()) {
2681 if (FieldBaseElementType->isReferenceType()) {
2682 SemaRef.Diag(Constructor->getLocation(),
2683 diag::err_uninitialized_member_in_ctor)
2684 << (int)Constructor->isImplicit()
2685 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2686 << 0 << Field->getDeclName();
2687 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2688 return true;
2689 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002690
Sean Hunt1f2f3842011-05-17 00:19:05 +00002691 if (FieldBaseElementType.isConstQualified()) {
2692 SemaRef.Diag(Constructor->getLocation(),
2693 diag::err_uninitialized_member_in_ctor)
2694 << (int)Constructor->isImplicit()
2695 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2696 << 1 << Field->getDeclName();
2697 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2698 return true;
2699 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002700 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002701
David Blaikie4e4d0842012-03-11 07:00:24 +00002702 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002703 FieldBaseElementType->isObjCRetainableType() &&
2704 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2705 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
2706 // Instant objects:
2707 // Default-initialize Objective-C pointers to NULL.
2708 CXXMemberInit
2709 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2710 Loc, Loc,
2711 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2712 Loc);
2713 return false;
2714 }
2715
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002716 // Nothing to initialize.
2717 CXXMemberInit = 0;
2718 return false;
2719}
John McCallf1860e52010-05-20 23:23:51 +00002720
2721namespace {
2722struct BaseAndFieldInfo {
2723 Sema &S;
2724 CXXConstructorDecl *Ctor;
2725 bool AnyErrorsInInits;
2726 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002727 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002728 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002729
2730 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2731 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002732 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2733 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002734 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002735 else if (Generated && Ctor->isMoveConstructor())
2736 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002737 else
2738 IIK = IIK_Default;
2739 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002740
2741 bool isImplicitCopyOrMove() const {
2742 switch (IIK) {
2743 case IIK_Copy:
2744 case IIK_Move:
2745 return true;
2746
2747 case IIK_Default:
2748 return false;
2749 }
David Blaikie30263482012-01-20 21:50:17 +00002750
2751 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002752 }
John McCallf1860e52010-05-20 23:23:51 +00002753};
2754}
2755
Richard Smitha4950662011-09-19 13:34:43 +00002756/// \brief Determine whether the given indirect field declaration is somewhere
2757/// within an anonymous union.
2758static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2759 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2760 CEnd = F->chain_end();
2761 C != CEnd; ++C)
2762 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2763 if (Record->isUnion())
2764 return true;
2765
2766 return false;
2767}
2768
Douglas Gregorddb21472011-11-02 23:04:16 +00002769/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2770/// array type.
2771static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2772 if (T->isIncompleteArrayType())
2773 return true;
2774
2775 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2776 if (!ArrayT->getSize())
2777 return true;
2778
2779 T = ArrayT->getElementType();
2780 }
2781
2782 return false;
2783}
2784
Richard Smith7a614d82011-06-11 17:19:42 +00002785static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002786 FieldDecl *Field,
2787 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002788
Chandler Carruthe861c602010-06-30 02:59:29 +00002789 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00002790 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002791 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00002792 return false;
2793 }
2794
Richard Smith7a614d82011-06-11 17:19:42 +00002795 // C++0x [class.base.init]p8: if the entity is a non-static data member that
2796 // has a brace-or-equal-initializer, the entity is initialized as specified
2797 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002798 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002799 CXXCtorInitializer *Init;
2800 if (Indirect)
2801 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2802 SourceLocation(),
2803 SourceLocation(), 0,
2804 SourceLocation());
2805 else
2806 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2807 SourceLocation(),
2808 SourceLocation(), 0,
2809 SourceLocation());
2810 Info.AllToInit.push_back(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00002811 return false;
2812 }
2813
Richard Smithc115f632011-09-18 11:14:50 +00002814 // Don't build an implicit initializer for union members if none was
2815 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00002816 if (Field->getParent()->isUnion() ||
2817 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00002818 return false;
2819
Douglas Gregorddb21472011-11-02 23:04:16 +00002820 // Don't initialize incomplete or zero-length arrays.
2821 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2822 return false;
2823
John McCallf1860e52010-05-20 23:23:51 +00002824 // Don't try to build an implicit initializer if there were semantic
2825 // errors in any of the initializers (and therefore we might be
2826 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00002827 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00002828 return false;
2829
Sean Huntcbb67482011-01-08 20:30:50 +00002830 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002831 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2832 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00002833 return true;
John McCallf1860e52010-05-20 23:23:51 +00002834
Francois Pichet00eb3f92010-12-04 09:14:42 +00002835 if (Init)
2836 Info.AllToInit.push_back(Init);
2837
John McCallf1860e52010-05-20 23:23:51 +00002838 return false;
2839}
Sean Hunt059ce0d2011-05-01 07:04:31 +00002840
2841bool
2842Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2843 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00002844 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00002845 Constructor->setNumCtorInitializers(1);
2846 CXXCtorInitializer **initializer =
2847 new (Context) CXXCtorInitializer*[1];
2848 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2849 Constructor->setCtorInitializers(initializer);
2850
Sean Huntb76af9c2011-05-03 23:05:34 +00002851 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002852 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00002853 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2854 }
2855
Sean Huntc1598702011-05-05 00:05:47 +00002856 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00002857
Sean Hunt059ce0d2011-05-01 07:04:31 +00002858 return false;
2859}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002860
John McCallb77115d2011-06-17 00:18:42 +00002861bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2862 CXXCtorInitializer **Initializers,
2863 unsigned NumInitializers,
2864 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00002865 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002866 // Just store the initializers as written, they will be checked during
2867 // instantiation.
2868 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002869 Constructor->setNumCtorInitializers(NumInitializers);
2870 CXXCtorInitializer **baseOrMemberInitializers =
2871 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002872 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002873 NumInitializers * sizeof(CXXCtorInitializer*));
2874 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002875 }
2876
2877 return false;
2878 }
2879
John McCallf1860e52010-05-20 23:23:51 +00002880 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002881
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002882 // We need to build the initializer AST according to order of construction
2883 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002884 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002885 if (!ClassDecl)
2886 return true;
2887
Eli Friedman80c30da2009-11-09 19:20:36 +00002888 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002889
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002890 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002891 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002892
2893 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002894 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002895 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002896 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002897 }
2898
Anders Carlsson711f34a2010-04-21 19:52:01 +00002899 // Keep track of the direct virtual bases.
2900 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2901 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2902 E = ClassDecl->bases_end(); I != E; ++I) {
2903 if (I->isVirtual())
2904 DirectVBases.insert(I);
2905 }
2906
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002907 // Push virtual bases before others.
2908 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2909 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2910
Sean Huntcbb67482011-01-08 20:30:50 +00002911 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002912 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2913 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002914 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002915 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002916 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002917 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002918 VBase, IsInheritedVirtualBase,
2919 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002920 HadError = true;
2921 continue;
2922 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002923
John McCallf1860e52010-05-20 23:23:51 +00002924 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002925 }
2926 }
Mike Stump1eb44332009-09-09 15:08:12 +00002927
John McCallf1860e52010-05-20 23:23:51 +00002928 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002929 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2930 E = ClassDecl->bases_end(); Base != E; ++Base) {
2931 // Virtuals are in the virtual base list and already constructed.
2932 if (Base->isVirtual())
2933 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002934
Sean Huntcbb67482011-01-08 20:30:50 +00002935 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002936 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2937 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002938 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00002939 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002940 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002941 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00002942 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002943 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002944 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002945 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00002946
John McCallf1860e52010-05-20 23:23:51 +00002947 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002948 }
2949 }
Mike Stump1eb44332009-09-09 15:08:12 +00002950
John McCallf1860e52010-05-20 23:23:51 +00002951 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002952 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
2953 MemEnd = ClassDecl->decls_end();
2954 Mem != MemEnd; ++Mem) {
2955 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00002956 // C++ [class.bit]p2:
2957 // A declaration for a bit-field that omits the identifier declares an
2958 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
2959 // initialized.
2960 if (F->isUnnamedBitfield())
2961 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00002962
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002963 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002964 // handle anonymous struct/union fields based on their individual
2965 // indirect fields.
2966 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
2967 continue;
2968
2969 if (CollectFieldInitializer(*this, Info, F))
2970 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002971 continue;
2972 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002973
2974 // Beyond this point, we only consider default initialization.
2975 if (Info.IIK != IIK_Default)
2976 continue;
2977
2978 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
2979 if (F->getType()->isIncompleteArrayType()) {
2980 assert(ClassDecl->hasFlexibleArrayMember() &&
2981 "Incomplete array type is not valid");
2982 continue;
2983 }
2984
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002985 // Initialize each field of an anonymous struct individually.
2986 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
2987 HadError = true;
2988
2989 continue;
2990 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002991 }
Mike Stump1eb44332009-09-09 15:08:12 +00002992
John McCallf1860e52010-05-20 23:23:51 +00002993 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002994 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002995 Constructor->setNumCtorInitializers(NumInitializers);
2996 CXXCtorInitializer **baseOrMemberInitializers =
2997 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00002998 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00002999 NumInitializers * sizeof(CXXCtorInitializer*));
3000 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003001
John McCallef027fe2010-03-16 21:39:52 +00003002 // Constructors implicitly reference the base and member
3003 // destructors.
3004 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3005 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003006 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003007
3008 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003009}
3010
Eli Friedman6347f422009-07-21 19:28:10 +00003011static void *GetKeyForTopLevelField(FieldDecl *Field) {
3012 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003013 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003014 if (RT->getDecl()->isAnonymousStructOrUnion())
3015 return static_cast<void *>(RT->getDecl());
3016 }
3017 return static_cast<void *>(Field);
3018}
3019
Anders Carlssonea356fb2010-04-02 05:42:15 +00003020static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003021 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003022}
3023
Anders Carlssonea356fb2010-04-02 05:42:15 +00003024static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003025 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003026 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003027 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003028
Eli Friedman6347f422009-07-21 19:28:10 +00003029 // For fields injected into the class via declaration of an anonymous union,
3030 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003031 FieldDecl *Field = Member->getAnyMember();
3032
John McCall3c3ccdb2010-04-10 09:28:51 +00003033 // If the field is a member of an anonymous struct or union, our key
3034 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003035 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003036 if (RD->isAnonymousStructOrUnion()) {
3037 while (true) {
3038 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3039 if (Parent->isAnonymousStructOrUnion())
3040 RD = Parent;
3041 else
3042 break;
3043 }
3044
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003045 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003046 }
Mike Stump1eb44332009-09-09 15:08:12 +00003047
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003048 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003049}
3050
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003051static void
3052DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003053 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003054 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003055 unsigned NumInits) {
3056 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003057 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003058
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003059 // Don't check initializers order unless the warning is enabled at the
3060 // location of at least one initializer.
3061 bool ShouldCheckOrder = false;
3062 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003063 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003064 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3065 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003066 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003067 ShouldCheckOrder = true;
3068 break;
3069 }
3070 }
3071 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003072 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003073
John McCalld6ca8da2010-04-10 07:37:23 +00003074 // Build the list of bases and members in the order that they'll
3075 // actually be initialized. The explicit initializers should be in
3076 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003077 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003078
Anders Carlsson071d6102010-04-02 03:38:04 +00003079 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3080
John McCalld6ca8da2010-04-10 07:37:23 +00003081 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003082 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003083 ClassDecl->vbases_begin(),
3084 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003085 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003086
John McCalld6ca8da2010-04-10 07:37:23 +00003087 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003088 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003089 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003090 if (Base->isVirtual())
3091 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003092 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003093 }
Mike Stump1eb44332009-09-09 15:08:12 +00003094
John McCalld6ca8da2010-04-10 07:37:23 +00003095 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003096 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003097 E = ClassDecl->field_end(); Field != E; ++Field) {
3098 if (Field->isUnnamedBitfield())
3099 continue;
3100
David Blaikie262bc182012-04-30 02:36:29 +00003101 IdealInitKeys.push_back(GetKeyForTopLevelField(&*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003102 }
3103
John McCalld6ca8da2010-04-10 07:37:23 +00003104 unsigned NumIdealInits = IdealInitKeys.size();
3105 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003106
Sean Huntcbb67482011-01-08 20:30:50 +00003107 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003108 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003109 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003110 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003111
3112 // Scan forward to try to find this initializer in the idealized
3113 // initializers list.
3114 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3115 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003116 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003117
3118 // If we didn't find this initializer, it must be because we
3119 // scanned past it on a previous iteration. That can only
3120 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003121 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003122 Sema::SemaDiagnosticBuilder D =
3123 SemaRef.Diag(PrevInit->getSourceLocation(),
3124 diag::warn_initializer_out_of_order);
3125
Francois Pichet00eb3f92010-12-04 09:14:42 +00003126 if (PrevInit->isAnyMemberInitializer())
3127 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003128 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003129 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003130
Francois Pichet00eb3f92010-12-04 09:14:42 +00003131 if (Init->isAnyMemberInitializer())
3132 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003133 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003134 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003135
3136 // Move back to the initializer's location in the ideal list.
3137 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3138 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003139 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003140
3141 assert(IdealIndex != NumIdealInits &&
3142 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003143 }
John McCalld6ca8da2010-04-10 07:37:23 +00003144
3145 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003146 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003147}
3148
John McCall3c3ccdb2010-04-10 09:28:51 +00003149namespace {
3150bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003151 CXXCtorInitializer *Init,
3152 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003153 if (!PrevInit) {
3154 PrevInit = Init;
3155 return false;
3156 }
3157
3158 if (FieldDecl *Field = Init->getMember())
3159 S.Diag(Init->getSourceLocation(),
3160 diag::err_multiple_mem_initialization)
3161 << Field->getDeclName()
3162 << Init->getSourceRange();
3163 else {
John McCallf4c73712011-01-19 06:33:43 +00003164 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003165 assert(BaseClass && "neither field nor base");
3166 S.Diag(Init->getSourceLocation(),
3167 diag::err_multiple_base_initialization)
3168 << QualType(BaseClass, 0)
3169 << Init->getSourceRange();
3170 }
3171 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3172 << 0 << PrevInit->getSourceRange();
3173
3174 return true;
3175}
3176
Sean Huntcbb67482011-01-08 20:30:50 +00003177typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003178typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3179
3180bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003181 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003182 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003183 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003184 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003185 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003186
3187 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003188 if (Parent->isUnion()) {
3189 UnionEntry &En = Unions[Parent];
3190 if (En.first && En.first != Child) {
3191 S.Diag(Init->getSourceLocation(),
3192 diag::err_multiple_mem_union_initialization)
3193 << Field->getDeclName()
3194 << Init->getSourceRange();
3195 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3196 << 0 << En.second->getSourceRange();
3197 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003198 }
3199 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003200 En.first = Child;
3201 En.second = Init;
3202 }
David Blaikie6fe29652011-11-17 06:01:57 +00003203 if (!Parent->isAnonymousStructOrUnion())
3204 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003205 }
3206
3207 Child = Parent;
3208 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003209 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003210
3211 return false;
3212}
3213}
3214
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003215/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003216void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003217 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003218 CXXCtorInitializer **meminits,
3219 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003220 bool AnyErrors) {
3221 if (!ConstructorDecl)
3222 return;
3223
3224 AdjustDeclIfTemplate(ConstructorDecl);
3225
3226 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003227 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003228
3229 if (!Constructor) {
3230 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3231 return;
3232 }
3233
Sean Huntcbb67482011-01-08 20:30:50 +00003234 CXXCtorInitializer **MemInits =
3235 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003236
3237 // Mapping for the duplicate initializers check.
3238 // For member initializers, this is keyed with a FieldDecl*.
3239 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003240 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003241
3242 // Mapping for the inconsistent anonymous-union initializers check.
3243 RedundantUnionMap MemberUnions;
3244
Anders Carlssonea356fb2010-04-02 05:42:15 +00003245 bool HadError = false;
3246 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003247 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003248
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003249 // Set the source order index.
3250 Init->setSourceOrder(i);
3251
Francois Pichet00eb3f92010-12-04 09:14:42 +00003252 if (Init->isAnyMemberInitializer()) {
3253 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003254 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3255 CheckRedundantUnionInit(*this, Init, MemberUnions))
3256 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003257 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003258 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3259 if (CheckRedundantInit(*this, Init, Members[Key]))
3260 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003261 } else {
3262 assert(Init->isDelegatingInitializer());
3263 // This must be the only initializer
3264 if (i != 0 || NumMemInits > 1) {
3265 Diag(MemInits[0]->getSourceLocation(),
3266 diag::err_delegating_initializer_alone)
3267 << MemInits[0]->getSourceRange();
3268 HadError = true;
Sean Hunt059ce0d2011-05-01 07:04:31 +00003269 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003270 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003271 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003272 // Return immediately as the initializer is set.
3273 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003274 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003275 }
3276
Anders Carlssonea356fb2010-04-02 05:42:15 +00003277 if (HadError)
3278 return;
3279
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003280 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003281
Sean Huntcbb67482011-01-08 20:30:50 +00003282 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003283}
3284
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003285void
John McCallef027fe2010-03-16 21:39:52 +00003286Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3287 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003288 // Ignore dependent contexts. Also ignore unions, since their members never
3289 // have destructors implicitly called.
3290 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003291 return;
John McCall58e6f342010-03-16 05:22:47 +00003292
3293 // FIXME: all the access-control diagnostics are positioned on the
3294 // field/base declaration. That's probably good; that said, the
3295 // user might reasonably want to know why the destructor is being
3296 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003297
Anders Carlsson9f853df2009-11-17 04:44:12 +00003298 // Non-static data members.
3299 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3300 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie262bc182012-04-30 02:36:29 +00003301 FieldDecl *Field = &*I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003302 if (Field->isInvalidDecl())
3303 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003304
3305 // Don't destroy incomplete or zero-length arrays.
3306 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3307 continue;
3308
Anders Carlsson9f853df2009-11-17 04:44:12 +00003309 QualType FieldType = Context.getBaseElementType(Field->getType());
3310
3311 const RecordType* RT = FieldType->getAs<RecordType>();
3312 if (!RT)
3313 continue;
3314
3315 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003316 if (FieldClassDecl->isInvalidDecl())
3317 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003318 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003319 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003320 // The destructor for an implicit anonymous union member is never invoked.
3321 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3322 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003323
Douglas Gregordb89f282010-07-01 22:47:18 +00003324 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003325 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003326 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003327 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003328 << Field->getDeclName()
3329 << FieldType);
3330
Eli Friedman5f2987c2012-02-02 03:46:19 +00003331 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003332 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003333 }
3334
John McCall58e6f342010-03-16 05:22:47 +00003335 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3336
Anders Carlsson9f853df2009-11-17 04:44:12 +00003337 // Bases.
3338 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3339 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003340 // Bases are always records in a well-formed non-dependent class.
3341 const RecordType *RT = Base->getType()->getAs<RecordType>();
3342
3343 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003344 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003345 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003346
John McCall58e6f342010-03-16 05:22:47 +00003347 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003348 // If our base class is invalid, we probably can't get its dtor anyway.
3349 if (BaseClassDecl->isInvalidDecl())
3350 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003351 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003352 continue;
John McCall58e6f342010-03-16 05:22:47 +00003353
Douglas Gregordb89f282010-07-01 22:47:18 +00003354 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003355 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003356
3357 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003358 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003359 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003360 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003361 << Base->getSourceRange(),
3362 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003363
Eli Friedman5f2987c2012-02-02 03:46:19 +00003364 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003365 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003366 }
3367
3368 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003369 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3370 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003371
3372 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003373 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003374
3375 // Ignore direct virtual bases.
3376 if (DirectVirtualBases.count(RT))
3377 continue;
3378
John McCall58e6f342010-03-16 05:22:47 +00003379 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003380 // If our base class is invalid, we probably can't get its dtor anyway.
3381 if (BaseClassDecl->isInvalidDecl())
3382 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003383 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003384 continue;
John McCall58e6f342010-03-16 05:22:47 +00003385
Douglas Gregordb89f282010-07-01 22:47:18 +00003386 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003387 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003388 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003389 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003390 << VBase->getType(),
3391 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003392
Eli Friedman5f2987c2012-02-02 03:46:19 +00003393 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003394 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003395 }
3396}
3397
John McCalld226f652010-08-21 09:40:31 +00003398void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003399 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003400 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003401
Mike Stump1eb44332009-09-09 15:08:12 +00003402 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003403 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003404 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003405}
3406
Mike Stump1eb44332009-09-09 15:08:12 +00003407bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003408 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003409 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3410 unsigned DiagID;
3411 AbstractDiagSelID SelID;
3412
3413 public:
3414 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3415 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3416
3417 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
3418 if (SelID == -1)
3419 S.Diag(Loc, DiagID) << T;
3420 else
3421 S.Diag(Loc, DiagID) << SelID << T;
3422 }
3423 } Diagnoser(DiagID, SelID);
3424
3425 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003426}
3427
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003428bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003429 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003430 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003431 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003432
Anders Carlsson11f21a02009-03-23 19:10:31 +00003433 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003434 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003435
Ted Kremenek6217b802009-07-29 21:53:49 +00003436 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003437 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003438 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003439 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003440
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003441 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003442 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003443 }
Mike Stump1eb44332009-09-09 15:08:12 +00003444
Ted Kremenek6217b802009-07-29 21:53:49 +00003445 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003446 if (!RT)
3447 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003448
John McCall86ff3082010-02-04 22:26:26 +00003449 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003450
John McCall94c3b562010-08-18 09:41:07 +00003451 // We can't answer whether something is abstract until it has a
3452 // definition. If it's currently being defined, we'll walk back
3453 // over all the declarations when we have a full definition.
3454 const CXXRecordDecl *Def = RD->getDefinition();
3455 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003456 return false;
3457
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003458 if (!RD->isAbstract())
3459 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003460
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003461 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003462 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003463
John McCall94c3b562010-08-18 09:41:07 +00003464 return true;
3465}
3466
3467void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3468 // Check if we've already emitted the list of pure virtual functions
3469 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003470 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003471 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003472
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003473 CXXFinalOverriderMap FinalOverriders;
3474 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003475
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003476 // Keep a set of seen pure methods so we won't diagnose the same method
3477 // more than once.
3478 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3479
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003480 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3481 MEnd = FinalOverriders.end();
3482 M != MEnd;
3483 ++M) {
3484 for (OverridingMethods::iterator SO = M->second.begin(),
3485 SOEnd = M->second.end();
3486 SO != SOEnd; ++SO) {
3487 // C++ [class.abstract]p4:
3488 // A class is abstract if it contains or inherits at least one
3489 // pure virtual function for which the final overrider is pure
3490 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003491
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003492 //
3493 if (SO->second.size() != 1)
3494 continue;
3495
3496 if (!SO->second.front().Method->isPure())
3497 continue;
3498
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003499 if (!SeenPureMethods.insert(SO->second.front().Method))
3500 continue;
3501
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003502 Diag(SO->second.front().Method->getLocation(),
3503 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003504 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003505 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003506 }
3507
3508 if (!PureVirtualClassDiagSet)
3509 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3510 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003511}
3512
Anders Carlsson8211eff2009-03-24 01:19:16 +00003513namespace {
John McCall94c3b562010-08-18 09:41:07 +00003514struct AbstractUsageInfo {
3515 Sema &S;
3516 CXXRecordDecl *Record;
3517 CanQualType AbstractType;
3518 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003519
John McCall94c3b562010-08-18 09:41:07 +00003520 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3521 : S(S), Record(Record),
3522 AbstractType(S.Context.getCanonicalType(
3523 S.Context.getTypeDeclType(Record))),
3524 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003525
John McCall94c3b562010-08-18 09:41:07 +00003526 void DiagnoseAbstractType() {
3527 if (Invalid) return;
3528 S.DiagnoseAbstractType(Record);
3529 Invalid = true;
3530 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003531
John McCall94c3b562010-08-18 09:41:07 +00003532 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3533};
3534
3535struct CheckAbstractUsage {
3536 AbstractUsageInfo &Info;
3537 const NamedDecl *Ctx;
3538
3539 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3540 : Info(Info), Ctx(Ctx) {}
3541
3542 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3543 switch (TL.getTypeLocClass()) {
3544#define ABSTRACT_TYPELOC(CLASS, PARENT)
3545#define TYPELOC(CLASS, PARENT) \
3546 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3547#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003548 }
John McCall94c3b562010-08-18 09:41:07 +00003549 }
Mike Stump1eb44332009-09-09 15:08:12 +00003550
John McCall94c3b562010-08-18 09:41:07 +00003551 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3552 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3553 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003554 if (!TL.getArg(I))
3555 continue;
3556
John McCall94c3b562010-08-18 09:41:07 +00003557 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3558 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003559 }
John McCall94c3b562010-08-18 09:41:07 +00003560 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003561
John McCall94c3b562010-08-18 09:41:07 +00003562 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3563 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3564 }
Mike Stump1eb44332009-09-09 15:08:12 +00003565
John McCall94c3b562010-08-18 09:41:07 +00003566 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3567 // Visit the type parameters from a permissive context.
3568 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3569 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3570 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3571 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3572 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3573 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003574 }
John McCall94c3b562010-08-18 09:41:07 +00003575 }
Mike Stump1eb44332009-09-09 15:08:12 +00003576
John McCall94c3b562010-08-18 09:41:07 +00003577 // Visit pointee types from a permissive context.
3578#define CheckPolymorphic(Type) \
3579 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3580 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3581 }
3582 CheckPolymorphic(PointerTypeLoc)
3583 CheckPolymorphic(ReferenceTypeLoc)
3584 CheckPolymorphic(MemberPointerTypeLoc)
3585 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003586 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003587
John McCall94c3b562010-08-18 09:41:07 +00003588 /// Handle all the types we haven't given a more specific
3589 /// implementation for above.
3590 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3591 // Every other kind of type that we haven't called out already
3592 // that has an inner type is either (1) sugar or (2) contains that
3593 // inner type in some way as a subobject.
3594 if (TypeLoc Next = TL.getNextTypeLoc())
3595 return Visit(Next, Sel);
3596
3597 // If there's no inner type and we're in a permissive context,
3598 // don't diagnose.
3599 if (Sel == Sema::AbstractNone) return;
3600
3601 // Check whether the type matches the abstract type.
3602 QualType T = TL.getType();
3603 if (T->isArrayType()) {
3604 Sel = Sema::AbstractArrayType;
3605 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003606 }
John McCall94c3b562010-08-18 09:41:07 +00003607 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3608 if (CT != Info.AbstractType) return;
3609
3610 // It matched; do some magic.
3611 if (Sel == Sema::AbstractArrayType) {
3612 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3613 << T << TL.getSourceRange();
3614 } else {
3615 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3616 << Sel << T << TL.getSourceRange();
3617 }
3618 Info.DiagnoseAbstractType();
3619 }
3620};
3621
3622void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3623 Sema::AbstractDiagSelID Sel) {
3624 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3625}
3626
3627}
3628
3629/// Check for invalid uses of an abstract type in a method declaration.
3630static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3631 CXXMethodDecl *MD) {
3632 // No need to do the check on definitions, which require that
3633 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003634 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003635 return;
3636
3637 // For safety's sake, just ignore it if we don't have type source
3638 // information. This should never happen for non-implicit methods,
3639 // but...
3640 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3641 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3642}
3643
3644/// Check for invalid uses of an abstract type within a class definition.
3645static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3646 CXXRecordDecl *RD) {
3647 for (CXXRecordDecl::decl_iterator
3648 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3649 Decl *D = *I;
3650 if (D->isImplicit()) continue;
3651
3652 // Methods and method templates.
3653 if (isa<CXXMethodDecl>(D)) {
3654 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3655 } else if (isa<FunctionTemplateDecl>(D)) {
3656 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3657 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3658
3659 // Fields and static variables.
3660 } else if (isa<FieldDecl>(D)) {
3661 FieldDecl *FD = cast<FieldDecl>(D);
3662 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3663 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3664 } else if (isa<VarDecl>(D)) {
3665 VarDecl *VD = cast<VarDecl>(D);
3666 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3667 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3668
3669 // Nested classes and class templates.
3670 } else if (isa<CXXRecordDecl>(D)) {
3671 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3672 } else if (isa<ClassTemplateDecl>(D)) {
3673 CheckAbstractClassUsage(Info,
3674 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3675 }
3676 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003677}
3678
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003679/// \brief Perform semantic checks on a class definition that has been
3680/// completing, introducing implicitly-declared members, checking for
3681/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003682void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003683 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003684 return;
3685
John McCall94c3b562010-08-18 09:41:07 +00003686 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3687 AbstractUsageInfo Info(*this, Record);
3688 CheckAbstractClassUsage(Info, Record);
3689 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003690
3691 // If this is not an aggregate type and has no user-declared constructor,
3692 // complain about any non-static data members of reference or const scalar
3693 // type, since they will never get initializers.
3694 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003695 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3696 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003697 bool Complained = false;
3698 for (RecordDecl::field_iterator F = Record->field_begin(),
3699 FEnd = Record->field_end();
3700 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003701 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003702 continue;
3703
Douglas Gregor325e5932010-04-15 00:00:53 +00003704 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003705 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003706 if (!Complained) {
3707 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3708 << Record->getTagKind() << Record;
3709 Complained = true;
3710 }
3711
3712 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3713 << F->getType()->isReferenceType()
3714 << F->getDeclName();
3715 }
3716 }
3717 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003718
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003719 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003720 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003721
3722 if (Record->getIdentifier()) {
3723 // C++ [class.mem]p13:
3724 // If T is the name of a class, then each of the following shall have a
3725 // name different from T:
3726 // - every member of every anonymous union that is a member of class T.
3727 //
3728 // C++ [class.mem]p14:
3729 // In addition, if class T has a user-declared constructor (12.1), every
3730 // non-static data member of class T shall have a name different from T.
3731 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003732 R.first != R.second; ++R.first) {
3733 NamedDecl *D = *R.first;
3734 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3735 isa<IndirectFieldDecl>(D)) {
3736 Diag(D->getLocation(), diag::err_member_name_of_class)
3737 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003738 break;
3739 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003740 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003741 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003742
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003743 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003744 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003745 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003746 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003747 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3748 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3749 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003750
3751 // See if a method overloads virtual methods in a base
3752 /// class without overriding any.
3753 if (!Record->isDependentType()) {
3754 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3755 MEnd = Record->method_end();
3756 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003757 if (!M->isStatic())
3758 DiagnoseHiddenVirtualMethods(Record, &*M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003759 }
3760 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003761
Richard Smith9f569cc2011-10-01 02:31:28 +00003762 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3763 // function that is not a constructor declares that member function to be
3764 // const. [...] The class of which that function is a member shall be
3765 // a literal type.
3766 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003767 // If the class has virtual bases, any constexpr members will already have
3768 // been diagnosed by the checks performed on the member declaration, so
3769 // suppress this (less useful) diagnostic.
3770 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3771 !Record->isLiteral() && !Record->getNumVBases()) {
3772 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3773 MEnd = Record->method_end();
3774 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003775 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003776 switch (Record->getTemplateSpecializationKind()) {
3777 case TSK_ImplicitInstantiation:
3778 case TSK_ExplicitInstantiationDeclaration:
3779 case TSK_ExplicitInstantiationDefinition:
3780 // If a template instantiates to a non-literal type, but its members
3781 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003782 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003783 continue;
3784
3785 case TSK_Undeclared:
3786 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003787 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003788 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003789 break;
3790 }
3791
3792 // Only produce one error per class.
3793 break;
3794 }
3795 }
3796 }
3797
Sebastian Redlf677ea32011-02-05 19:23:19 +00003798 // Declare inherited constructors. We do this eagerly here because:
3799 // - The standard requires an eager diagnostic for conflicting inherited
3800 // constructors from different classes.
3801 // - The lazy declaration of the other implicit constructors is so as to not
3802 // waste space and performance on classes that are not meant to be
3803 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3804 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003805 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003806
Sean Hunteb88ae52011-05-23 21:07:59 +00003807 if (!Record->isDependentType())
3808 CheckExplicitlyDefaultedMethods(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003809}
3810
3811void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003812 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3813 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003814 MI != ME; ++MI)
3815 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
3816 CheckExplicitlyDefaultedSpecialMember(&*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003817}
3818
Richard Smith3003e1d2012-05-15 04:39:51 +00003819void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
3820 CXXRecordDecl *RD = MD->getParent();
3821 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00003822
Richard Smith3003e1d2012-05-15 04:39:51 +00003823 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
3824 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00003825
3826 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00003827 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00003828 bool First = MD == MD->getCanonicalDecl();
3829
3830 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00003831
3832 // C++11 [dcl.fct.def.default]p1:
3833 // A function that is explicitly defaulted shall
3834 // -- be a special member function (checked elsewhere),
3835 // -- have the same type (except for ref-qualifiers, and except that a
3836 // copy operation can take a non-const reference) as an implicit
3837 // declaration, and
3838 // -- not have default arguments.
3839 unsigned ExpectedParams = 1;
3840 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
3841 ExpectedParams = 0;
3842 if (MD->getNumParams() != ExpectedParams) {
3843 // This also checks for default arguments: a copy or move constructor with a
3844 // default argument is classified as a default constructor, and assignment
3845 // operations and destructors can't have default arguments.
3846 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
3847 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00003848 HadError = true;
3849 }
3850
Richard Smith3003e1d2012-05-15 04:39:51 +00003851 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00003852
Richard Smith3003e1d2012-05-15 04:39:51 +00003853 // Compute implicit exception specification, argument constness, constexpr
3854 // and triviality.
Richard Smithe6975e92012-04-17 00:58:00 +00003855 ImplicitExceptionSpecification Spec(*this);
Richard Smith3003e1d2012-05-15 04:39:51 +00003856 bool Const = false;
3857 bool Constexpr = false;
3858 bool Trivial;
3859 switch (CSM) {
3860 case CXXDefaultConstructor:
3861 Spec = ComputeDefaultedDefaultCtorExceptionSpec(RD);
3862 if (Spec.isDelayed())
3863 // Exception specification depends on some deferred part of the class.
3864 // We'll try again when the class's definition has been fully processed.
3865 return;
3866 Constexpr = RD->defaultedDefaultConstructorIsConstexpr();
3867 Trivial = RD->hasTrivialDefaultConstructor();
3868 break;
3869 case CXXCopyConstructor:
3870 llvm::tie(Spec, Const) =
3871 ComputeDefaultedCopyCtorExceptionSpecAndConst(RD);
3872 Constexpr = RD->defaultedCopyConstructorIsConstexpr();
3873 Trivial = RD->hasTrivialCopyConstructor();
3874 break;
3875 case CXXCopyAssignment:
3876 llvm::tie(Spec, Const) =
3877 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(RD);
3878 Trivial = RD->hasTrivialCopyAssignment();
3879 break;
3880 case CXXMoveConstructor:
3881 Spec = ComputeDefaultedMoveCtorExceptionSpec(RD);
3882 Constexpr = RD->defaultedMoveConstructorIsConstexpr();
3883 Trivial = RD->hasTrivialMoveConstructor();
3884 break;
3885 case CXXMoveAssignment:
3886 Spec = ComputeDefaultedMoveAssignmentExceptionSpec(RD);
3887 Trivial = RD->hasTrivialMoveAssignment();
3888 break;
3889 case CXXDestructor:
3890 Spec = ComputeDefaultedDtorExceptionSpec(RD);
3891 Trivial = RD->hasTrivialDestructor();
3892 break;
3893 case CXXInvalid:
3894 llvm_unreachable("non-special member explicitly defaulted!");
3895 }
Sean Hunt2b188082011-05-14 05:23:28 +00003896
Richard Smith3003e1d2012-05-15 04:39:51 +00003897 QualType ReturnType = Context.VoidTy;
3898 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
3899 // Check for return type matching.
3900 ReturnType = Type->getResultType();
3901 QualType ExpectedReturnType =
3902 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
3903 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
3904 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
3905 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
3906 HadError = true;
3907 }
3908
3909 // A defaulted special member cannot have cv-qualifiers.
3910 if (Type->getTypeQuals()) {
3911 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
3912 << (CSM == CXXMoveAssignment);
3913 HadError = true;
3914 }
3915 }
3916
3917 // Check for parameter type matching.
3918 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
3919 if (ExpectedParams && ArgType->isReferenceType()) {
3920 // Argument must be reference to possibly-const T.
3921 QualType ReferentType = ArgType->getPointeeType();
3922
3923 if (ReferentType.isVolatileQualified()) {
3924 Diag(MD->getLocation(),
3925 diag::err_defaulted_special_member_volatile_param) << CSM;
3926 HadError = true;
3927 }
3928
3929 if (ReferentType.isConstQualified() && !Const) {
3930 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
3931 Diag(MD->getLocation(),
3932 diag::err_defaulted_special_member_copy_const_param)
3933 << (CSM == CXXCopyAssignment);
3934 // FIXME: Explain why this special member can't be const.
3935 } else {
3936 Diag(MD->getLocation(),
3937 diag::err_defaulted_special_member_move_const_param)
3938 << (CSM == CXXMoveAssignment);
3939 }
3940 HadError = true;
3941 }
3942
3943 // If a function is explicitly defaulted on its first declaration, it shall
3944 // have the same parameter type as if it had been implicitly declared.
3945 // (Presumably this is to prevent it from being trivial?)
3946 if (!ReferentType.isConstQualified() && Const && First)
3947 Diag(MD->getLocation(),
3948 diag::err_defaulted_special_member_copy_non_const_param)
3949 << (CSM == CXXCopyAssignment);
3950 } else if (ExpectedParams) {
3951 // A copy assignment operator can take its argument by value, but a
3952 // defaulted one cannot.
3953 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00003954 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00003955 HadError = true;
3956 }
Sean Huntbe631222011-05-17 20:44:43 +00003957
Richard Smith3003e1d2012-05-15 04:39:51 +00003958 // Rebuild the type with the implicit exception specification added.
3959 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
3960 Spec.getEPI(EPI);
3961 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
3962 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003963
Richard Smith61802452011-12-22 02:22:31 +00003964 // C++11 [dcl.fct.def.default]p2:
3965 // An explicitly-defaulted function may be declared constexpr only if it
3966 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00003967 // Do not apply this rule to members of class templates, since core issue 1358
3968 // makes such functions always instantiate to constexpr functions. For
3969 // non-constructors, this is checked elsewhere.
3970 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
3971 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
3972 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
3973 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00003974 }
3975 // and may have an explicit exception-specification only if it is compatible
3976 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00003977 if (Type->hasExceptionSpec() &&
3978 CheckEquivalentExceptionSpec(
3979 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
3980 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
3981 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00003982
3983 // If a function is explicitly defaulted on its first declaration,
3984 if (First) {
3985 // -- it is implicitly considered to be constexpr if the implicit
3986 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00003987 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00003988
Richard Smith3003e1d2012-05-15 04:39:51 +00003989 // -- it is implicitly considered to have the same exception-specification
3990 // as if it had been implicitly declared,
3991 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00003992
3993 // Such a function is also trivial if the implicitly-declared function
3994 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00003995 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003996 }
3997
Richard Smith3003e1d2012-05-15 04:39:51 +00003998 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003999 if (First) {
4000 MD->setDeletedAsWritten();
4001 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004002 // C++11 [dcl.fct.def.default]p4:
4003 // [For a] user-provided explicitly-defaulted function [...] if such a
4004 // function is implicitly defined as deleted, the program is ill-formed.
4005 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4006 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004007 }
4008 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004009
Richard Smith3003e1d2012-05-15 04:39:51 +00004010 if (HadError)
4011 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004012}
4013
Richard Smith7d5088a2012-02-18 02:02:13 +00004014namespace {
4015struct SpecialMemberDeletionInfo {
4016 Sema &S;
4017 CXXMethodDecl *MD;
4018 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004019 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004020
4021 // Properties of the special member, computed for convenience.
4022 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4023 SourceLocation Loc;
4024
4025 bool AllFieldsAreConst;
4026
4027 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004028 Sema::CXXSpecialMember CSM, bool Diagnose)
4029 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004030 IsConstructor(false), IsAssignment(false), IsMove(false),
4031 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4032 AllFieldsAreConst(true) {
4033 switch (CSM) {
4034 case Sema::CXXDefaultConstructor:
4035 case Sema::CXXCopyConstructor:
4036 IsConstructor = true;
4037 break;
4038 case Sema::CXXMoveConstructor:
4039 IsConstructor = true;
4040 IsMove = true;
4041 break;
4042 case Sema::CXXCopyAssignment:
4043 IsAssignment = true;
4044 break;
4045 case Sema::CXXMoveAssignment:
4046 IsAssignment = true;
4047 IsMove = true;
4048 break;
4049 case Sema::CXXDestructor:
4050 break;
4051 case Sema::CXXInvalid:
4052 llvm_unreachable("invalid special member kind");
4053 }
4054
4055 if (MD->getNumParams()) {
4056 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4057 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4058 }
4059 }
4060
4061 bool inUnion() const { return MD->getParent()->isUnion(); }
4062
4063 /// Look up the corresponding special member in the given class.
4064 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class) {
4065 unsigned TQ = MD->getTypeQualifiers();
4066 return S.LookupSpecialMember(Class, CSM, ConstArg, VolatileArg,
4067 MD->getRefQualifier() == RQ_RValue,
4068 TQ & Qualifiers::Const,
4069 TQ & Qualifiers::Volatile);
4070 }
4071
Richard Smith6c4c36c2012-03-30 20:53:28 +00004072 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004073
Richard Smith6c4c36c2012-03-30 20:53:28 +00004074 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004075 bool shouldDeleteForField(FieldDecl *FD);
4076 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004077
4078 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj);
4079 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4080 Sema::SpecialMemberOverloadResult *SMOR,
4081 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004082
4083 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004084};
4085}
4086
John McCall12d8d802012-04-09 20:53:23 +00004087/// Is the given special member inaccessible when used on the given
4088/// sub-object.
4089bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4090 CXXMethodDecl *target) {
4091 /// If we're operating on a base class, the object type is the
4092 /// type of this special member.
4093 QualType objectTy;
4094 AccessSpecifier access = target->getAccess();;
4095 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4096 objectTy = S.Context.getTypeDeclType(MD->getParent());
4097 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4098
4099 // If we're operating on a field, the object type is the type of the field.
4100 } else {
4101 objectTy = S.Context.getTypeDeclType(target->getParent());
4102 }
4103
4104 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4105}
4106
Richard Smith6c4c36c2012-03-30 20:53:28 +00004107/// Check whether we should delete a special member due to the implicit
4108/// definition containing a call to a special member of a subobject.
4109bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4110 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4111 bool IsDtorCallInCtor) {
4112 CXXMethodDecl *Decl = SMOR->getMethod();
4113 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4114
4115 int DiagKind = -1;
4116
4117 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4118 DiagKind = !Decl ? 0 : 1;
4119 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4120 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004121 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004122 DiagKind = 3;
4123 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4124 !Decl->isTrivial()) {
4125 // A member of a union must have a trivial corresponding special member.
4126 // As a weird special case, a destructor call from a union's constructor
4127 // must be accessible and non-deleted, but need not be trivial. Such a
4128 // destructor is never actually called, but is semantically checked as
4129 // if it were.
4130 DiagKind = 4;
4131 }
4132
4133 if (DiagKind == -1)
4134 return false;
4135
4136 if (Diagnose) {
4137 if (Field) {
4138 S.Diag(Field->getLocation(),
4139 diag::note_deleted_special_member_class_subobject)
4140 << CSM << MD->getParent() << /*IsField*/true
4141 << Field << DiagKind << IsDtorCallInCtor;
4142 } else {
4143 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4144 S.Diag(Base->getLocStart(),
4145 diag::note_deleted_special_member_class_subobject)
4146 << CSM << MD->getParent() << /*IsField*/false
4147 << Base->getType() << DiagKind << IsDtorCallInCtor;
4148 }
4149
4150 if (DiagKind == 1)
4151 S.NoteDeletedFunction(Decl);
4152 // FIXME: Explain inaccessibility if DiagKind == 3.
4153 }
4154
4155 return true;
4156}
4157
Richard Smith9a561d52012-02-26 09:11:52 +00004158/// Check whether we should delete a special member function due to having a
4159/// direct or virtual base class or static data member of class type M.
4160bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith6c4c36c2012-03-30 20:53:28 +00004161 CXXRecordDecl *Class, Subobject Subobj) {
4162 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004163
4164 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004165 // -- any direct or virtual base class, or non-static data member with no
4166 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004167 // either M has no default constructor or overload resolution as applied
4168 // to M's default constructor results in an ambiguity or in a function
4169 // that is deleted or inaccessible
4170 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4171 // -- a direct or virtual base class B that cannot be copied/moved because
4172 // overload resolution, as applied to B's corresponding special member,
4173 // results in an ambiguity or a function that is deleted or inaccessible
4174 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004175 // C++11 [class.dtor]p5:
4176 // -- any direct or virtual base class [...] has a type with a destructor
4177 // that is deleted or inaccessible
4178 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004179 Field && Field->hasInClassInitializer()) &&
4180 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class), false))
4181 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004182
Richard Smith6c4c36c2012-03-30 20:53:28 +00004183 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4184 // -- any direct or virtual base class or non-static data member has a
4185 // type with a destructor that is deleted or inaccessible
4186 if (IsConstructor) {
4187 Sema::SpecialMemberOverloadResult *SMOR =
4188 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4189 false, false, false, false, false);
4190 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4191 return true;
4192 }
4193
Richard Smith9a561d52012-02-26 09:11:52 +00004194 return false;
4195}
4196
4197/// Check whether we should delete a special member function due to the class
4198/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004199bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004200 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
4201 return shouldDeleteForClassSubobject(BaseClass, Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004202}
4203
4204/// Check whether we should delete a special member function due to the class
4205/// having a particular non-static data member.
4206bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4207 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4208 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4209
4210 if (CSM == Sema::CXXDefaultConstructor) {
4211 // For a default constructor, all references must be initialized in-class
4212 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004213 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4214 if (Diagnose)
4215 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4216 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004217 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004218 }
Richard Smith79363f52012-02-27 06:07:25 +00004219 // C++11 [class.ctor]p5: any non-variant non-static data member of
4220 // const-qualified type (or array thereof) with no
4221 // brace-or-equal-initializer does not have a user-provided default
4222 // constructor.
4223 if (!inUnion() && FieldType.isConstQualified() &&
4224 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004225 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4226 if (Diagnose)
4227 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004228 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004229 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004230 }
4231
4232 if (inUnion() && !FieldType.isConstQualified())
4233 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004234 } else if (CSM == Sema::CXXCopyConstructor) {
4235 // For a copy constructor, data members must not be of rvalue reference
4236 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004237 if (FieldType->isRValueReferenceType()) {
4238 if (Diagnose)
4239 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4240 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004241 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004242 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004243 } else if (IsAssignment) {
4244 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004245 if (FieldType->isReferenceType()) {
4246 if (Diagnose)
4247 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4248 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004249 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004250 }
4251 if (!FieldRecord && FieldType.isConstQualified()) {
4252 // C++11 [class.copy]p23:
4253 // -- a non-static data member of const non-class type (or array thereof)
4254 if (Diagnose)
4255 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004256 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004257 return true;
4258 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004259 }
4260
4261 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004262 // Some additional restrictions exist on the variant members.
4263 if (!inUnion() && FieldRecord->isUnion() &&
4264 FieldRecord->isAnonymousStructOrUnion()) {
4265 bool AllVariantFieldsAreConst = true;
4266
Richard Smithdf8dc862012-03-29 19:00:10 +00004267 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004268 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4269 UE = FieldRecord->field_end();
4270 UI != UE; ++UI) {
4271 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004272
4273 if (!UnionFieldType.isConstQualified())
4274 AllVariantFieldsAreConst = false;
4275
Richard Smith9a561d52012-02-26 09:11:52 +00004276 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4277 if (UnionFieldRecord &&
David Blaikie262bc182012-04-30 02:36:29 +00004278 shouldDeleteForClassSubobject(UnionFieldRecord, &*UI))
Richard Smith9a561d52012-02-26 09:11:52 +00004279 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004280 }
4281
4282 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004283 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004284 FieldRecord->field_begin() != FieldRecord->field_end()) {
4285 if (Diagnose)
4286 S.Diag(FieldRecord->getLocation(),
4287 diag::note_deleted_default_ctor_all_const)
4288 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004289 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004290 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004291
Richard Smithdf8dc862012-03-29 19:00:10 +00004292 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004293 // This is technically non-conformant, but sanity demands it.
4294 return false;
4295 }
4296
Richard Smithdf8dc862012-03-29 19:00:10 +00004297 if (shouldDeleteForClassSubobject(FieldRecord, FD))
4298 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004299 }
4300
4301 return false;
4302}
4303
4304/// C++11 [class.ctor] p5:
4305/// A defaulted default constructor for a class X is defined as deleted if
4306/// X is a union and all of its variant members are of const-qualified type.
4307bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004308 // This is a silly definition, because it gives an empty union a deleted
4309 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004310 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4311 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4312 if (Diagnose)
4313 S.Diag(MD->getParent()->getLocation(),
4314 diag::note_deleted_default_ctor_all_const)
4315 << MD->getParent() << /*not anonymous union*/0;
4316 return true;
4317 }
4318 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004319}
4320
4321/// Determine whether a defaulted special member function should be defined as
4322/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4323/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004324bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4325 bool Diagnose) {
Sean Hunte16da072011-10-10 06:18:57 +00004326 assert(!MD->isInvalidDecl());
4327 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004328 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004329 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004330 return false;
4331
Richard Smith7d5088a2012-02-18 02:02:13 +00004332 // C++11 [expr.lambda.prim]p19:
4333 // The closure type associated with a lambda-expression has a
4334 // deleted (8.4.3) default constructor and a deleted copy
4335 // assignment operator.
4336 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004337 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4338 if (Diagnose)
4339 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004340 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004341 }
4342
Richard Smith5bdaac52012-04-02 20:59:25 +00004343 // For an anonymous struct or union, the copy and assignment special members
4344 // will never be used, so skip the check. For an anonymous union declared at
4345 // namespace scope, the constructor and destructor are used.
4346 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4347 RD->isAnonymousStructOrUnion())
4348 return false;
4349
Richard Smith6c4c36c2012-03-30 20:53:28 +00004350 // C++11 [class.copy]p7, p18:
4351 // If the class definition declares a move constructor or move assignment
4352 // operator, an implicitly declared copy constructor or copy assignment
4353 // operator is defined as deleted.
4354 if (MD->isImplicit() &&
4355 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4356 CXXMethodDecl *UserDeclaredMove = 0;
4357
4358 // In Microsoft mode, a user-declared move only causes the deletion of the
4359 // corresponding copy operation, not both copy operations.
4360 if (RD->hasUserDeclaredMoveConstructor() &&
4361 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4362 if (!Diagnose) return true;
4363 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004364 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004365 } else if (RD->hasUserDeclaredMoveAssignment() &&
4366 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4367 if (!Diagnose) return true;
4368 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004369 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004370 }
4371
4372 if (UserDeclaredMove) {
4373 Diag(UserDeclaredMove->getLocation(),
4374 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004375 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004376 << UserDeclaredMove->isMoveAssignmentOperator();
4377 return true;
4378 }
4379 }
Sean Hunte16da072011-10-10 06:18:57 +00004380
Richard Smith5bdaac52012-04-02 20:59:25 +00004381 // Do access control from the special member function
4382 ContextRAII MethodContext(*this, MD);
4383
Richard Smith9a561d52012-02-26 09:11:52 +00004384 // C++11 [class.dtor]p5:
4385 // -- for a virtual destructor, lookup of the non-array deallocation function
4386 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004387 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004388 FunctionDecl *OperatorDelete = 0;
4389 DeclarationName Name =
4390 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4391 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004392 OperatorDelete, false)) {
4393 if (Diagnose)
4394 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004395 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004396 }
Richard Smith9a561d52012-02-26 09:11:52 +00004397 }
4398
Richard Smith6c4c36c2012-03-30 20:53:28 +00004399 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004400
Sean Huntcdee3fe2011-05-11 22:34:38 +00004401 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004402 BE = RD->bases_end(); BI != BE; ++BI)
4403 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004404 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004405 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004406
4407 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004408 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004409 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004410 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004411
4412 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004413 FE = RD->field_end(); FI != FE; ++FI)
4414 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie262bc182012-04-30 02:36:29 +00004415 SMI.shouldDeleteForField(&*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004416 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004417
Richard Smith7d5088a2012-02-18 02:02:13 +00004418 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004419 return true;
4420
4421 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004422}
4423
4424/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004425namespace {
4426 struct FindHiddenVirtualMethodData {
4427 Sema *S;
4428 CXXMethodDecl *Method;
4429 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004430 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004431 };
4432}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004433
4434/// \brief Member lookup function that determines whether a given C++
4435/// method overloads virtual methods in a base class without overriding any,
4436/// to be used with CXXRecordDecl::lookupInBases().
4437static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4438 CXXBasePath &Path,
4439 void *UserData) {
4440 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4441
4442 FindHiddenVirtualMethodData &Data
4443 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4444
4445 DeclarationName Name = Data.Method->getDeclName();
4446 assert(Name.getNameKind() == DeclarationName::Identifier);
4447
4448 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004449 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004450 for (Path.Decls = BaseRecord->lookup(Name);
4451 Path.Decls.first != Path.Decls.second;
4452 ++Path.Decls.first) {
4453 NamedDecl *D = *Path.Decls.first;
4454 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004455 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004456 foundSameNameMethod = true;
4457 // Interested only in hidden virtual methods.
4458 if (!MD->isVirtual())
4459 continue;
4460 // If the method we are checking overrides a method from its base
4461 // don't warn about the other overloaded methods.
4462 if (!Data.S->IsOverload(Data.Method, MD, false))
4463 return true;
4464 // Collect the overload only if its hidden.
4465 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4466 overloadedMethods.push_back(MD);
4467 }
4468 }
4469
4470 if (foundSameNameMethod)
4471 Data.OverloadedMethods.append(overloadedMethods.begin(),
4472 overloadedMethods.end());
4473 return foundSameNameMethod;
4474}
4475
4476/// \brief See if a method overloads virtual methods in a base class without
4477/// overriding any.
4478void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4479 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004480 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004481 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004482 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004483 return;
4484
4485 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4486 /*bool RecordPaths=*/false,
4487 /*bool DetectVirtual=*/false);
4488 FindHiddenVirtualMethodData Data;
4489 Data.Method = MD;
4490 Data.S = this;
4491
4492 // Keep the base methods that were overriden or introduced in the subclass
4493 // by 'using' in a set. A base method not in this set is hidden.
4494 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4495 res.first != res.second; ++res.first) {
4496 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4497 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4498 E = MD->end_overridden_methods();
4499 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004500 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004501 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4502 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004503 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004504 }
4505
4506 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4507 !Data.OverloadedMethods.empty()) {
4508 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4509 << MD << (Data.OverloadedMethods.size() > 1);
4510
4511 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4512 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4513 Diag(overloadedMD->getLocation(),
4514 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4515 }
4516 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004517}
4518
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004519void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004520 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004521 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004522 SourceLocation RBrac,
4523 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004524 if (!TagDecl)
4525 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004526
Douglas Gregor42af25f2009-05-11 19:58:34 +00004527 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004528
David Blaikie77b6de02011-09-22 02:58:26 +00004529 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004530 // strict aliasing violation!
4531 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004532 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004533
Douglas Gregor23c94db2010-07-02 17:43:08 +00004534 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004535 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004536}
4537
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004538/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4539/// special functions, such as the default constructor, copy
4540/// constructor, or destructor, to the given C++ class (C++
4541/// [special]p1). This routine can only be executed just before the
4542/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004543void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004544 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004545 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004546
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004547 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004548 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004549
David Blaikie4e4d0842012-03-11 07:00:24 +00004550 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004551 ++ASTContext::NumImplicitMoveConstructors;
4552
Douglas Gregora376d102010-07-02 21:50:04 +00004553 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4554 ++ASTContext::NumImplicitCopyAssignmentOperators;
4555
4556 // If we have a dynamic class, then the copy assignment operator may be
4557 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4558 // it shows up in the right place in the vtable and that we diagnose
4559 // problems with the implicit exception specification.
4560 if (ClassDecl->isDynamicClass())
4561 DeclareImplicitCopyAssignment(ClassDecl);
4562 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004563
Richard Smith1c931be2012-04-02 18:40:40 +00004564 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004565 ++ASTContext::NumImplicitMoveAssignmentOperators;
4566
4567 // Likewise for the move assignment operator.
4568 if (ClassDecl->isDynamicClass())
4569 DeclareImplicitMoveAssignment(ClassDecl);
4570 }
4571
Douglas Gregor4923aa22010-07-02 20:37:36 +00004572 if (!ClassDecl->hasUserDeclaredDestructor()) {
4573 ++ASTContext::NumImplicitDestructors;
4574
4575 // If we have a dynamic class, then the destructor may be virtual, so we
4576 // have to declare the destructor immediately. This ensures that, e.g., it
4577 // shows up in the right place in the vtable and that we diagnose problems
4578 // with the implicit exception specification.
4579 if (ClassDecl->isDynamicClass())
4580 DeclareImplicitDestructor(ClassDecl);
4581 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004582}
4583
Francois Pichet8387e2a2011-04-22 22:18:13 +00004584void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4585 if (!D)
4586 return;
4587
4588 int NumParamList = D->getNumTemplateParameterLists();
4589 for (int i = 0; i < NumParamList; i++) {
4590 TemplateParameterList* Params = D->getTemplateParameterList(i);
4591 for (TemplateParameterList::iterator Param = Params->begin(),
4592 ParamEnd = Params->end();
4593 Param != ParamEnd; ++Param) {
4594 NamedDecl *Named = cast<NamedDecl>(*Param);
4595 if (Named->getDeclName()) {
4596 S->AddDecl(Named);
4597 IdResolver.AddDecl(Named);
4598 }
4599 }
4600 }
4601}
4602
John McCalld226f652010-08-21 09:40:31 +00004603void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004604 if (!D)
4605 return;
4606
4607 TemplateParameterList *Params = 0;
4608 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4609 Params = Template->getTemplateParameters();
4610 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4611 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4612 Params = PartialSpec->getTemplateParameters();
4613 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004614 return;
4615
Douglas Gregor6569d682009-05-27 23:11:45 +00004616 for (TemplateParameterList::iterator Param = Params->begin(),
4617 ParamEnd = Params->end();
4618 Param != ParamEnd; ++Param) {
4619 NamedDecl *Named = cast<NamedDecl>(*Param);
4620 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004621 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004622 IdResolver.AddDecl(Named);
4623 }
4624 }
4625}
4626
John McCalld226f652010-08-21 09:40:31 +00004627void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004628 if (!RecordD) return;
4629 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004630 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004631 PushDeclContext(S, Record);
4632}
4633
John McCalld226f652010-08-21 09:40:31 +00004634void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004635 if (!RecordD) return;
4636 PopDeclContext();
4637}
4638
Douglas Gregor72b505b2008-12-16 21:30:33 +00004639/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4640/// parsing a top-level (non-nested) C++ class, and we are now
4641/// parsing those parts of the given Method declaration that could
4642/// not be parsed earlier (C++ [class.mem]p2), such as default
4643/// arguments. This action should enter the scope of the given
4644/// Method declaration as if we had just parsed the qualified method
4645/// name. However, it should not bring the parameters into scope;
4646/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004647void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004648}
4649
4650/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4651/// C++ method declaration. We're (re-)introducing the given
4652/// function parameter into scope for use in parsing later parts of
4653/// the method declaration. For example, we could see an
4654/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004655void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004656 if (!ParamD)
4657 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004658
John McCalld226f652010-08-21 09:40:31 +00004659 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004660
4661 // If this parameter has an unparsed default argument, clear it out
4662 // to make way for the parsed default argument.
4663 if (Param->hasUnparsedDefaultArg())
4664 Param->setDefaultArg(0);
4665
John McCalld226f652010-08-21 09:40:31 +00004666 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004667 if (Param->getDeclName())
4668 IdResolver.AddDecl(Param);
4669}
4670
4671/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4672/// processing the delayed method declaration for Method. The method
4673/// declaration is now considered finished. There may be a separate
4674/// ActOnStartOfFunctionDef action later (not necessarily
4675/// immediately!) for this method, if it was also defined inside the
4676/// class body.
John McCalld226f652010-08-21 09:40:31 +00004677void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004678 if (!MethodD)
4679 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004680
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004681 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004682
John McCalld226f652010-08-21 09:40:31 +00004683 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004684
4685 // Now that we have our default arguments, check the constructor
4686 // again. It could produce additional diagnostics or affect whether
4687 // the class has implicitly-declared destructors, among other
4688 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004689 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4690 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004691
4692 // Check the default arguments, which we may have added.
4693 if (!Method->isInvalidDecl())
4694 CheckCXXDefaultArguments(Method);
4695}
4696
Douglas Gregor42a552f2008-11-05 20:51:48 +00004697/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004698/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004699/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004700/// emit diagnostics and set the invalid bit to true. In any case, the type
4701/// will be updated to reflect a well-formed type for the constructor and
4702/// returned.
4703QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004704 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004705 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004706
4707 // C++ [class.ctor]p3:
4708 // A constructor shall not be virtual (10.3) or static (9.4). A
4709 // constructor can be invoked for a const, volatile or const
4710 // volatile object. A constructor shall not be declared const,
4711 // volatile, or const volatile (9.3.2).
4712 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004713 if (!D.isInvalidType())
4714 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4715 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4716 << SourceRange(D.getIdentifierLoc());
4717 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004718 }
John McCalld931b082010-08-26 03:08:43 +00004719 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004720 if (!D.isInvalidType())
4721 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4722 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4723 << SourceRange(D.getIdentifierLoc());
4724 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004725 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004726 }
Mike Stump1eb44332009-09-09 15:08:12 +00004727
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004728 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004729 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004730 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004731 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4732 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004733 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004734 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4735 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004736 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004737 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4738 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004739 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004740 }
Mike Stump1eb44332009-09-09 15:08:12 +00004741
Douglas Gregorc938c162011-01-26 05:01:58 +00004742 // C++0x [class.ctor]p4:
4743 // A constructor shall not be declared with a ref-qualifier.
4744 if (FTI.hasRefQualifier()) {
4745 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4746 << FTI.RefQualifierIsLValueRef
4747 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4748 D.setInvalidType();
4749 }
4750
Douglas Gregor42a552f2008-11-05 20:51:48 +00004751 // Rebuild the function type "R" without any type qualifiers (in
4752 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004753 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004754 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004755 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4756 return R;
4757
4758 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4759 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004760 EPI.RefQualifier = RQ_None;
4761
Chris Lattner65401802009-04-25 08:28:21 +00004762 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00004763 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004764}
4765
Douglas Gregor72b505b2008-12-16 21:30:33 +00004766/// CheckConstructor - Checks a fully-formed constructor for
4767/// well-formedness, issuing any diagnostics required. Returns true if
4768/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00004769void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00004770 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00004771 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
4772 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00004773 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004774
4775 // C++ [class.copy]p3:
4776 // A declaration of a constructor for a class X is ill-formed if
4777 // its first parameter is of type (optionally cv-qualified) X and
4778 // either there are no other parameters or else all other
4779 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00004780 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00004781 ((Constructor->getNumParams() == 1) ||
4782 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00004783 Constructor->getParamDecl(1)->hasDefaultArg())) &&
4784 Constructor->getTemplateSpecializationKind()
4785 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004786 QualType ParamType = Constructor->getParamDecl(0)->getType();
4787 QualType ClassTy = Context.getTagDeclType(ClassDecl);
4788 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00004789 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004790 const char *ConstRef
4791 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
4792 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00004793 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004794 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00004795
4796 // FIXME: Rather that making the constructor invalid, we should endeavor
4797 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00004798 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004799 }
4800 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00004801}
4802
John McCall15442822010-08-04 01:04:25 +00004803/// CheckDestructor - Checks a fully-formed destructor definition for
4804/// well-formedness, issuing any diagnostics required. Returns true
4805/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004806bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00004807 CXXRecordDecl *RD = Destructor->getParent();
4808
4809 if (Destructor->isVirtual()) {
4810 SourceLocation Loc;
4811
4812 if (!Destructor->isImplicit())
4813 Loc = Destructor->getLocation();
4814 else
4815 Loc = RD->getLocation();
4816
4817 // If we have a virtual destructor, look up the deallocation function
4818 FunctionDecl *OperatorDelete = 0;
4819 DeclarationName Name =
4820 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004821 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00004822 return true;
John McCall5efd91a2010-07-03 18:33:00 +00004823
Eli Friedman5f2987c2012-02-02 03:46:19 +00004824 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00004825
4826 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00004827 }
Anders Carlsson37909802009-11-30 21:24:50 +00004828
4829 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00004830}
4831
Mike Stump1eb44332009-09-09 15:08:12 +00004832static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004833FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
4834 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
4835 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00004836 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004837}
4838
Douglas Gregor42a552f2008-11-05 20:51:48 +00004839/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
4840/// the well-formednes of the destructor declarator @p D with type @p
4841/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004842/// emit diagnostics and set the declarator to invalid. Even if this happens,
4843/// will be updated to reflect a well-formed type for the destructor and
4844/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00004845QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004846 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004847 // C++ [class.dtor]p1:
4848 // [...] A typedef-name that names a class is a class-name
4849 // (7.1.3); however, a typedef-name that names a class shall not
4850 // be used as the identifier in the declarator for a destructor
4851 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004852 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00004853 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00004854 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00004855 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00004856 else if (const TemplateSpecializationType *TST =
4857 DeclaratorType->getAs<TemplateSpecializationType>())
4858 if (TST->isTypeAlias())
4859 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
4860 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004861
4862 // C++ [class.dtor]p2:
4863 // A destructor is used to destroy objects of its class type. A
4864 // destructor takes no parameters, and no return type can be
4865 // specified for it (not even void). The address of a destructor
4866 // shall not be taken. A destructor shall not be static. A
4867 // destructor can be invoked for a const, volatile or const
4868 // volatile object. A destructor shall not be declared const,
4869 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00004870 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004871 if (!D.isInvalidType())
4872 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
4873 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00004874 << SourceRange(D.getIdentifierLoc())
4875 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
4876
John McCalld931b082010-08-26 03:08:43 +00004877 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004878 }
Chris Lattner65401802009-04-25 08:28:21 +00004879 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004880 // Destructors don't have return types, but the parser will
4881 // happily parse something like:
4882 //
4883 // class X {
4884 // float ~X();
4885 // };
4886 //
4887 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004888 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
4889 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4890 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00004891 }
Mike Stump1eb44332009-09-09 15:08:12 +00004892
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004893 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004894 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00004895 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004896 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4897 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004898 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004899 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4900 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004901 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004902 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4903 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00004904 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004905 }
4906
Douglas Gregorc938c162011-01-26 05:01:58 +00004907 // C++0x [class.dtor]p2:
4908 // A destructor shall not be declared with a ref-qualifier.
4909 if (FTI.hasRefQualifier()) {
4910 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
4911 << FTI.RefQualifierIsLValueRef
4912 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4913 D.setInvalidType();
4914 }
4915
Douglas Gregor42a552f2008-11-05 20:51:48 +00004916 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004917 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004918 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
4919
4920 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00004921 FTI.freeArgs();
4922 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004923 }
4924
Mike Stump1eb44332009-09-09 15:08:12 +00004925 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00004926 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004927 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00004928 D.setInvalidType();
4929 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00004930
4931 // Rebuild the function type "R" without any type qualifiers or
4932 // parameters (in case any of the errors above fired) and with
4933 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00004934 // types.
John McCalle23cf432010-12-14 08:05:40 +00004935 if (!D.isInvalidType())
4936 return R;
4937
Douglas Gregord92ec472010-07-01 05:10:53 +00004938 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004939 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4940 EPI.Variadic = false;
4941 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004942 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00004943 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004944}
4945
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004946/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
4947/// well-formednes of the conversion function declarator @p D with
4948/// type @p R. If there are any errors in the declarator, this routine
4949/// will emit diagnostics and return true. Otherwise, it will return
4950/// false. Either way, the type @p R will be updated to reflect a
4951/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00004952void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00004953 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004954 // C++ [class.conv.fct]p1:
4955 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00004956 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00004957 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00004958 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00004959 if (!D.isInvalidType())
4960 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
4961 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4962 << SourceRange(D.getIdentifierLoc());
4963 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004964 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004965 }
John McCalla3f81372010-04-13 00:04:31 +00004966
4967 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
4968
Chris Lattner6e475012009-04-25 08:35:12 +00004969 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004970 // Conversion functions don't have return types, but the parser will
4971 // happily parse something like:
4972 //
4973 // class X {
4974 // float operator bool();
4975 // };
4976 //
4977 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004978 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
4979 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4980 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00004981 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004982 }
4983
John McCalla3f81372010-04-13 00:04:31 +00004984 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
4985
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004986 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00004987 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004988 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
4989
4990 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004991 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00004992 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00004993 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004994 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00004995 D.setInvalidType();
4996 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004997
John McCalla3f81372010-04-13 00:04:31 +00004998 // Diagnose "&operator bool()" and other such nonsense. This
4999 // is actually a gcc extension which we don't support.
5000 if (Proto->getResultType() != ConvType) {
5001 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5002 << Proto->getResultType();
5003 D.setInvalidType();
5004 ConvType = Proto->getResultType();
5005 }
5006
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005007 // C++ [class.conv.fct]p4:
5008 // The conversion-type-id shall not represent a function type nor
5009 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005010 if (ConvType->isArrayType()) {
5011 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5012 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005013 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005014 } else if (ConvType->isFunctionType()) {
5015 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5016 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005017 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005018 }
5019
5020 // Rebuild the function type "R" without any parameters (in case any
5021 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005022 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005023 if (D.isInvalidType())
5024 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005025
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005026 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005027 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005028 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005029 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005030 diag::warn_cxx98_compat_explicit_conversion_functions :
5031 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005032 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005033}
5034
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005035/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5036/// the declaration of the given C++ conversion function. This routine
5037/// is responsible for recording the conversion function in the C++
5038/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005039Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005040 assert(Conversion && "Expected to receive a conversion function declaration");
5041
Douglas Gregor9d350972008-12-12 08:25:50 +00005042 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005043
5044 // Make sure we aren't redeclaring the conversion function.
5045 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005046
5047 // C++ [class.conv.fct]p1:
5048 // [...] A conversion function is never used to convert a
5049 // (possibly cv-qualified) object to the (possibly cv-qualified)
5050 // same object type (or a reference to it), to a (possibly
5051 // cv-qualified) base class of that type (or a reference to it),
5052 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005053 // FIXME: Suppress this warning if the conversion function ends up being a
5054 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005055 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005056 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005057 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005058 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005059 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5060 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005061 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005062 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005063 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5064 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005065 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005066 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005067 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005068 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005069 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005070 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005071 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005072 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005073 }
5074
Douglas Gregore80622f2010-09-29 04:25:11 +00005075 if (FunctionTemplateDecl *ConversionTemplate
5076 = Conversion->getDescribedFunctionTemplate())
5077 return ConversionTemplate;
5078
John McCalld226f652010-08-21 09:40:31 +00005079 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005080}
5081
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005082//===----------------------------------------------------------------------===//
5083// Namespace Handling
5084//===----------------------------------------------------------------------===//
5085
John McCallea318642010-08-26 09:15:37 +00005086
5087
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005088/// ActOnStartNamespaceDef - This is called at the start of a namespace
5089/// definition.
John McCalld226f652010-08-21 09:40:31 +00005090Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005091 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005092 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005093 SourceLocation IdentLoc,
5094 IdentifierInfo *II,
5095 SourceLocation LBrace,
5096 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005097 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5098 // For anonymous namespace, take the location of the left brace.
5099 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005100 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005101 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005102 bool IsStd = false;
5103 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005104 Scope *DeclRegionScope = NamespcScope->getParent();
5105
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005106 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005107 if (II) {
5108 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005109 // The identifier in an original-namespace-definition shall not
5110 // have been previously defined in the declarative region in
5111 // which the original-namespace-definition appears. The
5112 // identifier in an original-namespace-definition is the name of
5113 // the namespace. Subsequently in that declarative region, it is
5114 // treated as an original-namespace-name.
5115 //
5116 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005117 // look through using directives, just look for any ordinary names.
5118
5119 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005120 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5121 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005122 NamedDecl *PrevDecl = 0;
5123 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005124 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005125 R.first != R.second; ++R.first) {
5126 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5127 PrevDecl = *R.first;
5128 break;
5129 }
5130 }
5131
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005132 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5133
5134 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005135 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005136 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005137 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005138 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005139 // The user probably just forgot the 'inline', so suggest that it
5140 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005141 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005142 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5143 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005144 Diag(Loc, diag::err_inline_namespace_mismatch)
5145 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005146 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005147 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5148
5149 IsInline = PrevNS->isInline();
5150 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005151 } else if (PrevDecl) {
5152 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005153 Diag(Loc, diag::err_redefinition_different_kind)
5154 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005155 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005156 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005157 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005158 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005159 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005160 // This is the first "real" definition of the namespace "std", so update
5161 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005162 PrevNS = getStdNamespace();
5163 IsStd = true;
5164 AddToKnown = !IsInline;
5165 } else {
5166 // We've seen this namespace for the first time.
5167 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005168 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005169 } else {
John McCall9aeed322009-10-01 00:25:31 +00005170 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005171
5172 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005173 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005174 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005175 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005176 } else {
5177 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005178 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005179 }
5180
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005181 if (PrevNS && IsInline != PrevNS->isInline()) {
5182 // inline-ness must match
5183 Diag(Loc, diag::err_inline_namespace_mismatch)
5184 << IsInline;
5185 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005186
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005187 // Recover by ignoring the new namespace's inline status.
5188 IsInline = PrevNS->isInline();
5189 }
5190 }
5191
5192 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5193 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005194 if (IsInvalid)
5195 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005196
5197 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005198
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005199 // FIXME: Should we be merging attributes?
5200 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005201 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005202
5203 if (IsStd)
5204 StdNamespace = Namespc;
5205 if (AddToKnown)
5206 KnownNamespaces[Namespc] = false;
5207
5208 if (II) {
5209 PushOnScopeChains(Namespc, DeclRegionScope);
5210 } else {
5211 // Link the anonymous namespace into its parent.
5212 DeclContext *Parent = CurContext->getRedeclContext();
5213 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5214 TU->setAnonymousNamespace(Namespc);
5215 } else {
5216 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005217 }
John McCall9aeed322009-10-01 00:25:31 +00005218
Douglas Gregora4181472010-03-24 00:46:35 +00005219 CurContext->addDecl(Namespc);
5220
John McCall9aeed322009-10-01 00:25:31 +00005221 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5222 // behaves as if it were replaced by
5223 // namespace unique { /* empty body */ }
5224 // using namespace unique;
5225 // namespace unique { namespace-body }
5226 // where all occurrences of 'unique' in a translation unit are
5227 // replaced by the same identifier and this identifier differs
5228 // from all other identifiers in the entire program.
5229
5230 // We just create the namespace with an empty name and then add an
5231 // implicit using declaration, just like the standard suggests.
5232 //
5233 // CodeGen enforces the "universally unique" aspect by giving all
5234 // declarations semantically contained within an anonymous
5235 // namespace internal linkage.
5236
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005237 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005238 UsingDirectiveDecl* UD
5239 = UsingDirectiveDecl::Create(Context, CurContext,
5240 /* 'using' */ LBrace,
5241 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005242 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005243 /* identifier */ SourceLocation(),
5244 Namespc,
5245 /* Ancestor */ CurContext);
5246 UD->setImplicit();
5247 CurContext->addDecl(UD);
5248 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005249 }
5250
5251 // Although we could have an invalid decl (i.e. the namespace name is a
5252 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005253 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5254 // for the namespace has the declarations that showed up in that particular
5255 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005256 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005257 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005258}
5259
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005260/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5261/// is a namespace alias, returns the namespace it points to.
5262static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5263 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5264 return AD->getNamespace();
5265 return dyn_cast_or_null<NamespaceDecl>(D);
5266}
5267
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005268/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5269/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005270void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005271 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5272 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005273 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005274 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005275 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005276 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005277}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005278
John McCall384aff82010-08-25 07:42:41 +00005279CXXRecordDecl *Sema::getStdBadAlloc() const {
5280 return cast_or_null<CXXRecordDecl>(
5281 StdBadAlloc.get(Context.getExternalSource()));
5282}
5283
5284NamespaceDecl *Sema::getStdNamespace() const {
5285 return cast_or_null<NamespaceDecl>(
5286 StdNamespace.get(Context.getExternalSource()));
5287}
5288
Douglas Gregor66992202010-06-29 17:53:46 +00005289/// \brief Retrieve the special "std" namespace, which may require us to
5290/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005291NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005292 if (!StdNamespace) {
5293 // The "std" namespace has not yet been defined, so build one implicitly.
5294 StdNamespace = NamespaceDecl::Create(Context,
5295 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005296 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005297 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005298 &PP.getIdentifierTable().get("std"),
5299 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005300 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005301 }
5302
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005303 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005304}
5305
Sebastian Redl395e04d2012-01-17 22:49:33 +00005306bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005307 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005308 "Looking for std::initializer_list outside of C++.");
5309
5310 // We're looking for implicit instantiations of
5311 // template <typename E> class std::initializer_list.
5312
5313 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5314 return false;
5315
Sebastian Redl84760e32012-01-17 22:49:58 +00005316 ClassTemplateDecl *Template = 0;
5317 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005318
Sebastian Redl84760e32012-01-17 22:49:58 +00005319 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005320
Sebastian Redl84760e32012-01-17 22:49:58 +00005321 ClassTemplateSpecializationDecl *Specialization =
5322 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5323 if (!Specialization)
5324 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005325
Sebastian Redl84760e32012-01-17 22:49:58 +00005326 Template = Specialization->getSpecializedTemplate();
5327 Arguments = Specialization->getTemplateArgs().data();
5328 } else if (const TemplateSpecializationType *TST =
5329 Ty->getAs<TemplateSpecializationType>()) {
5330 Template = dyn_cast_or_null<ClassTemplateDecl>(
5331 TST->getTemplateName().getAsTemplateDecl());
5332 Arguments = TST->getArgs();
5333 }
5334 if (!Template)
5335 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005336
5337 if (!StdInitializerList) {
5338 // Haven't recognized std::initializer_list yet, maybe this is it.
5339 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5340 if (TemplateClass->getIdentifier() !=
5341 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005342 !getStdNamespace()->InEnclosingNamespaceSetOf(
5343 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005344 return false;
5345 // This is a template called std::initializer_list, but is it the right
5346 // template?
5347 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005348 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005349 return false;
5350 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5351 return false;
5352
5353 // It's the right template.
5354 StdInitializerList = Template;
5355 }
5356
5357 if (Template != StdInitializerList)
5358 return false;
5359
5360 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005361 if (Element)
5362 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005363 return true;
5364}
5365
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005366static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5367 NamespaceDecl *Std = S.getStdNamespace();
5368 if (!Std) {
5369 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5370 return 0;
5371 }
5372
5373 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5374 Loc, Sema::LookupOrdinaryName);
5375 if (!S.LookupQualifiedName(Result, Std)) {
5376 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5377 return 0;
5378 }
5379 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5380 if (!Template) {
5381 Result.suppressDiagnostics();
5382 // We found something weird. Complain about the first thing we found.
5383 NamedDecl *Found = *Result.begin();
5384 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5385 return 0;
5386 }
5387
5388 // We found some template called std::initializer_list. Now verify that it's
5389 // correct.
5390 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005391 if (Params->getMinRequiredArguments() != 1 ||
5392 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005393 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5394 return 0;
5395 }
5396
5397 return Template;
5398}
5399
5400QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5401 if (!StdInitializerList) {
5402 StdInitializerList = LookupStdInitializerList(*this, Loc);
5403 if (!StdInitializerList)
5404 return QualType();
5405 }
5406
5407 TemplateArgumentListInfo Args(Loc, Loc);
5408 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5409 Context.getTrivialTypeSourceInfo(Element,
5410 Loc)));
5411 return Context.getCanonicalType(
5412 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5413}
5414
Sebastian Redl98d36062012-01-17 22:50:14 +00005415bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5416 // C++ [dcl.init.list]p2:
5417 // A constructor is an initializer-list constructor if its first parameter
5418 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5419 // std::initializer_list<E> for some type E, and either there are no other
5420 // parameters or else all other parameters have default arguments.
5421 if (Ctor->getNumParams() < 1 ||
5422 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5423 return false;
5424
5425 QualType ArgType = Ctor->getParamDecl(0)->getType();
5426 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5427 ArgType = RT->getPointeeType().getUnqualifiedType();
5428
5429 return isStdInitializerList(ArgType, 0);
5430}
5431
Douglas Gregor9172aa62011-03-26 22:25:30 +00005432/// \brief Determine whether a using statement is in a context where it will be
5433/// apply in all contexts.
5434static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5435 switch (CurContext->getDeclKind()) {
5436 case Decl::TranslationUnit:
5437 return true;
5438 case Decl::LinkageSpec:
5439 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5440 default:
5441 return false;
5442 }
5443}
5444
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005445namespace {
5446
5447// Callback to only accept typo corrections that are namespaces.
5448class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5449 public:
5450 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5451 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5452 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5453 }
5454 return false;
5455 }
5456};
5457
5458}
5459
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005460static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5461 CXXScopeSpec &SS,
5462 SourceLocation IdentLoc,
5463 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005464 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005465 R.clear();
5466 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005467 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005468 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005469 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5470 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005471 if (DeclContext *DC = S.computeDeclContext(SS, false))
5472 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5473 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5474 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5475 else
5476 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5477 << Ident << CorrectedQuotedStr
5478 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005479
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005480 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5481 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005482
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005483 R.addDecl(Corrected.getCorrectionDecl());
5484 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005485 }
5486 return false;
5487}
5488
John McCalld226f652010-08-21 09:40:31 +00005489Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005490 SourceLocation UsingLoc,
5491 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005492 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005493 SourceLocation IdentLoc,
5494 IdentifierInfo *NamespcName,
5495 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005496 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5497 assert(NamespcName && "Invalid NamespcName.");
5498 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005499
5500 // This can only happen along a recovery path.
5501 while (S->getFlags() & Scope::TemplateParamScope)
5502 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005503 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005504
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005505 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005506 NestedNameSpecifier *Qualifier = 0;
5507 if (SS.isSet())
5508 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5509
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005510 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005511 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5512 LookupParsedName(R, S, &SS);
5513 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005514 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005515
Douglas Gregor66992202010-06-29 17:53:46 +00005516 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005517 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005518 // Allow "using namespace std;" or "using namespace ::std;" even if
5519 // "std" hasn't been defined yet, for GCC compatibility.
5520 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5521 NamespcName->isStr("std")) {
5522 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005523 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005524 R.resolveKind();
5525 }
5526 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005527 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005528 }
5529
John McCallf36e02d2009-10-09 21:13:30 +00005530 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005531 NamedDecl *Named = R.getFoundDecl();
5532 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5533 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005534 // C++ [namespace.udir]p1:
5535 // A using-directive specifies that the names in the nominated
5536 // namespace can be used in the scope in which the
5537 // using-directive appears after the using-directive. During
5538 // unqualified name lookup (3.4.1), the names appear as if they
5539 // were declared in the nearest enclosing namespace which
5540 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005541 // namespace. [Note: in this context, "contains" means "contains
5542 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005543
5544 // Find enclosing context containing both using-directive and
5545 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005546 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005547 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5548 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5549 CommonAncestor = CommonAncestor->getParent();
5550
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005551 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005552 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005553 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005554
Douglas Gregor9172aa62011-03-26 22:25:30 +00005555 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005556 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005557 Diag(IdentLoc, diag::warn_using_directive_in_header);
5558 }
5559
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005560 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005561 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005562 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005563 }
5564
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005565 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005566 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005567}
5568
5569void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005570 // If the scope has an associated entity and the using directive is at
5571 // namespace or translation unit scope, add the UsingDirectiveDecl into
5572 // its lookup structure so qualified name lookup can find it.
5573 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5574 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005575 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005576 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005577 // Otherwise, it is at block sope. The using-directives will affect lookup
5578 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005579 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005580}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005581
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005582
John McCalld226f652010-08-21 09:40:31 +00005583Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005584 AccessSpecifier AS,
5585 bool HasUsingKeyword,
5586 SourceLocation UsingLoc,
5587 CXXScopeSpec &SS,
5588 UnqualifiedId &Name,
5589 AttributeList *AttrList,
5590 bool IsTypeName,
5591 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005592 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005593
Douglas Gregor12c118a2009-11-04 16:30:06 +00005594 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005595 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005596 case UnqualifiedId::IK_Identifier:
5597 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005598 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005599 case UnqualifiedId::IK_ConversionFunctionId:
5600 break;
5601
5602 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005603 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005604 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005605 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005606 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005607 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5608 // instead once inheriting constructors work.
5609 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005610 diag::err_using_decl_constructor)
5611 << SS.getRange();
5612
David Blaikie4e4d0842012-03-11 07:00:24 +00005613 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005614
John McCalld226f652010-08-21 09:40:31 +00005615 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005616
5617 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005618 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005619 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005620 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005621
5622 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005623 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005624 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005625 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005626 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005627
5628 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5629 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005630 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005631 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005632
John McCall60fa3cf2009-12-11 02:10:03 +00005633 // Warn about using declarations.
5634 // TODO: store that the declaration was written without 'using' and
5635 // talk about access decls instead of using decls in the
5636 // diagnostics.
5637 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005638 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005639
5640 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005641 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005642 }
5643
Douglas Gregor56c04582010-12-16 00:46:58 +00005644 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5645 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5646 return 0;
5647
John McCall9488ea12009-11-17 05:59:44 +00005648 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005649 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005650 /* IsInstantiation */ false,
5651 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005652 if (UD)
5653 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005654
John McCalld226f652010-08-21 09:40:31 +00005655 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005656}
5657
Douglas Gregor09acc982010-07-07 23:08:52 +00005658/// \brief Determine whether a using declaration considers the given
5659/// declarations as "equivalent", e.g., if they are redeclarations of
5660/// the same entity or are both typedefs of the same type.
5661static bool
5662IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5663 bool &SuppressRedeclaration) {
5664 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5665 SuppressRedeclaration = false;
5666 return true;
5667 }
5668
Richard Smith162e1c12011-04-15 14:24:37 +00005669 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5670 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005671 SuppressRedeclaration = true;
5672 return Context.hasSameType(TD1->getUnderlyingType(),
5673 TD2->getUnderlyingType());
5674 }
5675
5676 return false;
5677}
5678
5679
John McCall9f54ad42009-12-10 09:41:52 +00005680/// Determines whether to create a using shadow decl for a particular
5681/// decl, given the set of decls existing prior to this using lookup.
5682bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5683 const LookupResult &Previous) {
5684 // Diagnose finding a decl which is not from a base class of the
5685 // current class. We do this now because there are cases where this
5686 // function will silently decide not to build a shadow decl, which
5687 // will pre-empt further diagnostics.
5688 //
5689 // We don't need to do this in C++0x because we do the check once on
5690 // the qualifier.
5691 //
5692 // FIXME: diagnose the following if we care enough:
5693 // struct A { int foo; };
5694 // struct B : A { using A::foo; };
5695 // template <class T> struct C : A {};
5696 // template <class T> struct D : C<T> { using B::foo; } // <---
5697 // This is invalid (during instantiation) in C++03 because B::foo
5698 // resolves to the using decl in B, which is not a base class of D<T>.
5699 // We can't diagnose it immediately because C<T> is an unknown
5700 // specialization. The UsingShadowDecl in D<T> then points directly
5701 // to A::foo, which will look well-formed when we instantiate.
5702 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005703 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005704 DeclContext *OrigDC = Orig->getDeclContext();
5705
5706 // Handle enums and anonymous structs.
5707 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5708 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5709 while (OrigRec->isAnonymousStructOrUnion())
5710 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5711
5712 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5713 if (OrigDC == CurContext) {
5714 Diag(Using->getLocation(),
5715 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005716 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005717 Diag(Orig->getLocation(), diag::note_using_decl_target);
5718 return true;
5719 }
5720
Douglas Gregordc355712011-02-25 00:36:19 +00005721 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005722 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005723 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005724 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005725 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005726 Diag(Orig->getLocation(), diag::note_using_decl_target);
5727 return true;
5728 }
5729 }
5730
5731 if (Previous.empty()) return false;
5732
5733 NamedDecl *Target = Orig;
5734 if (isa<UsingShadowDecl>(Target))
5735 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5736
John McCalld7533ec2009-12-11 02:33:26 +00005737 // If the target happens to be one of the previous declarations, we
5738 // don't have a conflict.
5739 //
5740 // FIXME: but we might be increasing its access, in which case we
5741 // should redeclare it.
5742 NamedDecl *NonTag = 0, *Tag = 0;
5743 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5744 I != E; ++I) {
5745 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005746 bool Result;
5747 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5748 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005749
5750 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5751 }
5752
John McCall9f54ad42009-12-10 09:41:52 +00005753 if (Target->isFunctionOrFunctionTemplate()) {
5754 FunctionDecl *FD;
5755 if (isa<FunctionTemplateDecl>(Target))
5756 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5757 else
5758 FD = cast<FunctionDecl>(Target);
5759
5760 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00005761 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00005762 case Ovl_Overload:
5763 return false;
5764
5765 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00005766 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005767 break;
5768
5769 // We found a decl with the exact signature.
5770 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00005771 // If we're in a record, we want to hide the target, so we
5772 // return true (without a diagnostic) to tell the caller not to
5773 // build a shadow decl.
5774 if (CurContext->isRecord())
5775 return true;
5776
5777 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00005778 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005779 break;
5780 }
5781
5782 Diag(Target->getLocation(), diag::note_using_decl_target);
5783 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
5784 return true;
5785 }
5786
5787 // Target is not a function.
5788
John McCall9f54ad42009-12-10 09:41:52 +00005789 if (isa<TagDecl>(Target)) {
5790 // No conflict between a tag and a non-tag.
5791 if (!Tag) return false;
5792
John McCall41ce66f2009-12-10 19:51:03 +00005793 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005794 Diag(Target->getLocation(), diag::note_using_decl_target);
5795 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
5796 return true;
5797 }
5798
5799 // No conflict between a tag and a non-tag.
5800 if (!NonTag) return false;
5801
John McCall41ce66f2009-12-10 19:51:03 +00005802 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005803 Diag(Target->getLocation(), diag::note_using_decl_target);
5804 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
5805 return true;
5806}
5807
John McCall9488ea12009-11-17 05:59:44 +00005808/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00005809UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00005810 UsingDecl *UD,
5811 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00005812
5813 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00005814 NamedDecl *Target = Orig;
5815 if (isa<UsingShadowDecl>(Target)) {
5816 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5817 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00005818 }
5819
5820 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00005821 = UsingShadowDecl::Create(Context, CurContext,
5822 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00005823 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00005824
5825 Shadow->setAccess(UD->getAccess());
5826 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
5827 Shadow->setInvalidDecl();
5828
John McCall9488ea12009-11-17 05:59:44 +00005829 if (S)
John McCall604e7f12009-12-08 07:46:18 +00005830 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00005831 else
John McCall604e7f12009-12-08 07:46:18 +00005832 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00005833
John McCall604e7f12009-12-08 07:46:18 +00005834
John McCall9f54ad42009-12-10 09:41:52 +00005835 return Shadow;
5836}
John McCall604e7f12009-12-08 07:46:18 +00005837
John McCall9f54ad42009-12-10 09:41:52 +00005838/// Hides a using shadow declaration. This is required by the current
5839/// using-decl implementation when a resolvable using declaration in a
5840/// class is followed by a declaration which would hide or override
5841/// one or more of the using decl's targets; for example:
5842///
5843/// struct Base { void foo(int); };
5844/// struct Derived : Base {
5845/// using Base::foo;
5846/// void foo(int);
5847/// };
5848///
5849/// The governing language is C++03 [namespace.udecl]p12:
5850///
5851/// When a using-declaration brings names from a base class into a
5852/// derived class scope, member functions in the derived class
5853/// override and/or hide member functions with the same name and
5854/// parameter types in a base class (rather than conflicting).
5855///
5856/// There are two ways to implement this:
5857/// (1) optimistically create shadow decls when they're not hidden
5858/// by existing declarations, or
5859/// (2) don't create any shadow decls (or at least don't make them
5860/// visible) until we've fully parsed/instantiated the class.
5861/// The problem with (1) is that we might have to retroactively remove
5862/// a shadow decl, which requires several O(n) operations because the
5863/// decl structures are (very reasonably) not designed for removal.
5864/// (2) avoids this but is very fiddly and phase-dependent.
5865void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00005866 if (Shadow->getDeclName().getNameKind() ==
5867 DeclarationName::CXXConversionFunctionName)
5868 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
5869
John McCall9f54ad42009-12-10 09:41:52 +00005870 // Remove it from the DeclContext...
5871 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005872
John McCall9f54ad42009-12-10 09:41:52 +00005873 // ...and the scope, if applicable...
5874 if (S) {
John McCalld226f652010-08-21 09:40:31 +00005875 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00005876 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005877 }
5878
John McCall9f54ad42009-12-10 09:41:52 +00005879 // ...and the using decl.
5880 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
5881
5882 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00005883 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00005884}
5885
John McCall7ba107a2009-11-18 02:36:19 +00005886/// Builds a using declaration.
5887///
5888/// \param IsInstantiation - Whether this call arises from an
5889/// instantiation of an unresolved using declaration. We treat
5890/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00005891NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
5892 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005893 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005894 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00005895 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005896 bool IsInstantiation,
5897 bool IsTypeName,
5898 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00005899 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005900 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00005901 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00005902
Anders Carlsson550b14b2009-08-28 05:49:21 +00005903 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00005904
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005905 if (SS.isEmpty()) {
5906 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00005907 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005908 }
Mike Stump1eb44332009-09-09 15:08:12 +00005909
John McCall9f54ad42009-12-10 09:41:52 +00005910 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005911 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00005912 ForRedeclaration);
5913 Previous.setHideTags(false);
5914 if (S) {
5915 LookupName(Previous, S);
5916
5917 // It is really dumb that we have to do this.
5918 LookupResult::Filter F = Previous.makeFilter();
5919 while (F.hasNext()) {
5920 NamedDecl *D = F.next();
5921 if (!isDeclInScope(D, CurContext, S))
5922 F.erase();
5923 }
5924 F.done();
5925 } else {
5926 assert(IsInstantiation && "no scope in non-instantiation");
5927 assert(CurContext->isRecord() && "scope not record in instantiation");
5928 LookupQualifiedName(Previous, CurContext);
5929 }
5930
John McCall9f54ad42009-12-10 09:41:52 +00005931 // Check for invalid redeclarations.
5932 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
5933 return 0;
5934
5935 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00005936 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
5937 return 0;
5938
John McCallaf8e6ed2009-11-12 03:15:40 +00005939 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00005940 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00005941 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00005942 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00005943 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00005944 // FIXME: not all declaration name kinds are legal here
5945 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
5946 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00005947 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005948 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00005949 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00005950 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
5951 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00005952 }
John McCalled976492009-12-04 22:46:56 +00005953 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00005954 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
5955 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00005956 }
John McCalled976492009-12-04 22:46:56 +00005957 D->setAccess(AS);
5958 CurContext->addDecl(D);
5959
5960 if (!LookupContext) return D;
5961 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00005962
John McCall77bb1aa2010-05-01 00:40:08 +00005963 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00005964 UD->setInvalidDecl();
5965 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005966 }
5967
Richard Smithc5a89a12012-04-02 01:30:27 +00005968 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00005969 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00005970 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00005971 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00005972 return UD;
5973 }
5974
5975 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00005976
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005977 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00005978
John McCall604e7f12009-12-08 07:46:18 +00005979 // Unlike most lookups, we don't always want to hide tag
5980 // declarations: tag names are visible through the using declaration
5981 // even if hidden by ordinary names, *except* in a dependent context
5982 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00005983 if (!IsInstantiation)
5984 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00005985
John McCallb9abd8722012-04-07 03:04:20 +00005986 // For the purposes of this lookup, we have a base object type
5987 // equal to that of the current context.
5988 if (CurContext->isRecord()) {
5989 R.setBaseObjectType(
5990 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
5991 }
5992
John McCalla24dc2e2009-11-17 02:14:36 +00005993 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00005994
John McCallf36e02d2009-10-09 21:13:30 +00005995 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00005996 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005997 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00005998 UD->setInvalidDecl();
5999 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006000 }
6001
John McCalled976492009-12-04 22:46:56 +00006002 if (R.isAmbiguous()) {
6003 UD->setInvalidDecl();
6004 return UD;
6005 }
Mike Stump1eb44332009-09-09 15:08:12 +00006006
John McCall7ba107a2009-11-18 02:36:19 +00006007 if (IsTypeName) {
6008 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006009 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006010 Diag(IdentLoc, diag::err_using_typename_non_type);
6011 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6012 Diag((*I)->getUnderlyingDecl()->getLocation(),
6013 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006014 UD->setInvalidDecl();
6015 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006016 }
6017 } else {
6018 // If we asked for a non-typename and we got a type, error out,
6019 // but only if this is an instantiation of an unresolved using
6020 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006021 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006022 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6023 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006024 UD->setInvalidDecl();
6025 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006026 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006027 }
6028
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006029 // C++0x N2914 [namespace.udecl]p6:
6030 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006031 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006032 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6033 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006034 UD->setInvalidDecl();
6035 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006036 }
Mike Stump1eb44332009-09-09 15:08:12 +00006037
John McCall9f54ad42009-12-10 09:41:52 +00006038 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6039 if (!CheckUsingShadowDecl(UD, *I, Previous))
6040 BuildUsingShadowDecl(S, UD, *I);
6041 }
John McCall9488ea12009-11-17 05:59:44 +00006042
6043 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006044}
6045
Sebastian Redlf677ea32011-02-05 19:23:19 +00006046/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006047bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6048 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006049
Douglas Gregordc355712011-02-25 00:36:19 +00006050 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006051 assert(SourceType &&
6052 "Using decl naming constructor doesn't have type in scope spec.");
6053 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6054
6055 // Check whether the named type is a direct base class.
6056 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6057 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6058 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6059 BaseIt != BaseE; ++BaseIt) {
6060 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6061 if (CanonicalSourceType == BaseType)
6062 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006063 if (BaseIt->getType()->isDependentType())
6064 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006065 }
6066
6067 if (BaseIt == BaseE) {
6068 // Did not find SourceType in the bases.
6069 Diag(UD->getUsingLocation(),
6070 diag::err_using_decl_constructor_not_in_direct_base)
6071 << UD->getNameInfo().getSourceRange()
6072 << QualType(SourceType, 0) << TargetClass;
6073 return true;
6074 }
6075
Richard Smithc5a89a12012-04-02 01:30:27 +00006076 if (!CurContext->isDependentContext())
6077 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006078
6079 return false;
6080}
6081
John McCall9f54ad42009-12-10 09:41:52 +00006082/// Checks that the given using declaration is not an invalid
6083/// redeclaration. Note that this is checking only for the using decl
6084/// itself, not for any ill-formedness among the UsingShadowDecls.
6085bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6086 bool isTypeName,
6087 const CXXScopeSpec &SS,
6088 SourceLocation NameLoc,
6089 const LookupResult &Prev) {
6090 // C++03 [namespace.udecl]p8:
6091 // C++0x [namespace.udecl]p10:
6092 // A using-declaration is a declaration and can therefore be used
6093 // repeatedly where (and only where) multiple declarations are
6094 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006095 //
John McCall8a726212010-11-29 18:01:58 +00006096 // That's in non-member contexts.
6097 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006098 return false;
6099
6100 NestedNameSpecifier *Qual
6101 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6102
6103 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6104 NamedDecl *D = *I;
6105
6106 bool DTypename;
6107 NestedNameSpecifier *DQual;
6108 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6109 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006110 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006111 } else if (UnresolvedUsingValueDecl *UD
6112 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6113 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006114 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006115 } else if (UnresolvedUsingTypenameDecl *UD
6116 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6117 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006118 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006119 } else continue;
6120
6121 // using decls differ if one says 'typename' and the other doesn't.
6122 // FIXME: non-dependent using decls?
6123 if (isTypeName != DTypename) continue;
6124
6125 // using decls differ if they name different scopes (but note that
6126 // template instantiation can cause this check to trigger when it
6127 // didn't before instantiation).
6128 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6129 Context.getCanonicalNestedNameSpecifier(DQual))
6130 continue;
6131
6132 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006133 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006134 return true;
6135 }
6136
6137 return false;
6138}
6139
John McCall604e7f12009-12-08 07:46:18 +00006140
John McCalled976492009-12-04 22:46:56 +00006141/// Checks that the given nested-name qualifier used in a using decl
6142/// in the current context is appropriately related to the current
6143/// scope. If an error is found, diagnoses it and returns true.
6144bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6145 const CXXScopeSpec &SS,
6146 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006147 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006148
John McCall604e7f12009-12-08 07:46:18 +00006149 if (!CurContext->isRecord()) {
6150 // C++03 [namespace.udecl]p3:
6151 // C++0x [namespace.udecl]p8:
6152 // A using-declaration for a class member shall be a member-declaration.
6153
6154 // If we weren't able to compute a valid scope, it must be a
6155 // dependent class scope.
6156 if (!NamedContext || NamedContext->isRecord()) {
6157 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6158 << SS.getRange();
6159 return true;
6160 }
6161
6162 // Otherwise, everything is known to be fine.
6163 return false;
6164 }
6165
6166 // The current scope is a record.
6167
6168 // If the named context is dependent, we can't decide much.
6169 if (!NamedContext) {
6170 // FIXME: in C++0x, we can diagnose if we can prove that the
6171 // nested-name-specifier does not refer to a base class, which is
6172 // still possible in some cases.
6173
6174 // Otherwise we have to conservatively report that things might be
6175 // okay.
6176 return false;
6177 }
6178
6179 if (!NamedContext->isRecord()) {
6180 // Ideally this would point at the last name in the specifier,
6181 // but we don't have that level of source info.
6182 Diag(SS.getRange().getBegin(),
6183 diag::err_using_decl_nested_name_specifier_is_not_class)
6184 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6185 return true;
6186 }
6187
Douglas Gregor6fb07292010-12-21 07:41:49 +00006188 if (!NamedContext->isDependentContext() &&
6189 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6190 return true;
6191
David Blaikie4e4d0842012-03-11 07:00:24 +00006192 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006193 // C++0x [namespace.udecl]p3:
6194 // In a using-declaration used as a member-declaration, the
6195 // nested-name-specifier shall name a base class of the class
6196 // being defined.
6197
6198 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6199 cast<CXXRecordDecl>(NamedContext))) {
6200 if (CurContext == NamedContext) {
6201 Diag(NameLoc,
6202 diag::err_using_decl_nested_name_specifier_is_current_class)
6203 << SS.getRange();
6204 return true;
6205 }
6206
6207 Diag(SS.getRange().getBegin(),
6208 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6209 << (NestedNameSpecifier*) SS.getScopeRep()
6210 << cast<CXXRecordDecl>(CurContext)
6211 << SS.getRange();
6212 return true;
6213 }
6214
6215 return false;
6216 }
6217
6218 // C++03 [namespace.udecl]p4:
6219 // A using-declaration used as a member-declaration shall refer
6220 // to a member of a base class of the class being defined [etc.].
6221
6222 // Salient point: SS doesn't have to name a base class as long as
6223 // lookup only finds members from base classes. Therefore we can
6224 // diagnose here only if we can prove that that can't happen,
6225 // i.e. if the class hierarchies provably don't intersect.
6226
6227 // TODO: it would be nice if "definitely valid" results were cached
6228 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6229 // need to be repeated.
6230
6231 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006232 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006233
6234 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6235 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6236 Data->Bases.insert(Base);
6237 return true;
6238 }
6239
6240 bool hasDependentBases(const CXXRecordDecl *Class) {
6241 return !Class->forallBases(collect, this);
6242 }
6243
6244 /// Returns true if the base is dependent or is one of the
6245 /// accumulated base classes.
6246 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6247 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6248 return !Data->Bases.count(Base);
6249 }
6250
6251 bool mightShareBases(const CXXRecordDecl *Class) {
6252 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6253 }
6254 };
6255
6256 UserData Data;
6257
6258 // Returns false if we find a dependent base.
6259 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6260 return false;
6261
6262 // Returns false if the class has a dependent base or if it or one
6263 // of its bases is present in the base set of the current context.
6264 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6265 return false;
6266
6267 Diag(SS.getRange().getBegin(),
6268 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6269 << (NestedNameSpecifier*) SS.getScopeRep()
6270 << cast<CXXRecordDecl>(CurContext)
6271 << SS.getRange();
6272
6273 return true;
John McCalled976492009-12-04 22:46:56 +00006274}
6275
Richard Smith162e1c12011-04-15 14:24:37 +00006276Decl *Sema::ActOnAliasDeclaration(Scope *S,
6277 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006278 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006279 SourceLocation UsingLoc,
6280 UnqualifiedId &Name,
6281 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006282 // Skip up to the relevant declaration scope.
6283 while (S->getFlags() & Scope::TemplateParamScope)
6284 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006285 assert((S->getFlags() & Scope::DeclScope) &&
6286 "got alias-declaration outside of declaration scope");
6287
6288 if (Type.isInvalid())
6289 return 0;
6290
6291 bool Invalid = false;
6292 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6293 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006294 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006295
6296 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6297 return 0;
6298
6299 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006300 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006301 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006302 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6303 TInfo->getTypeLoc().getBeginLoc());
6304 }
Richard Smith162e1c12011-04-15 14:24:37 +00006305
6306 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6307 LookupName(Previous, S);
6308
6309 // Warn about shadowing the name of a template parameter.
6310 if (Previous.isSingleResult() &&
6311 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006312 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006313 Previous.clear();
6314 }
6315
6316 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6317 "name in alias declaration must be an identifier");
6318 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6319 Name.StartLocation,
6320 Name.Identifier, TInfo);
6321
6322 NewTD->setAccess(AS);
6323
6324 if (Invalid)
6325 NewTD->setInvalidDecl();
6326
Richard Smith3e4c6c42011-05-05 21:57:07 +00006327 CheckTypedefForVariablyModifiedType(S, NewTD);
6328 Invalid |= NewTD->isInvalidDecl();
6329
Richard Smith162e1c12011-04-15 14:24:37 +00006330 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006331
6332 NamedDecl *NewND;
6333 if (TemplateParamLists.size()) {
6334 TypeAliasTemplateDecl *OldDecl = 0;
6335 TemplateParameterList *OldTemplateParams = 0;
6336
6337 if (TemplateParamLists.size() != 1) {
6338 Diag(UsingLoc, diag::err_alias_template_extra_headers)
6339 << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
6340 TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
6341 }
6342 TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
6343
6344 // Only consider previous declarations in the same scope.
6345 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6346 /*ExplicitInstantiationOrSpecialization*/false);
6347 if (!Previous.empty()) {
6348 Redeclaration = true;
6349
6350 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6351 if (!OldDecl && !Invalid) {
6352 Diag(UsingLoc, diag::err_redefinition_different_kind)
6353 << Name.Identifier;
6354
6355 NamedDecl *OldD = Previous.getRepresentativeDecl();
6356 if (OldD->getLocation().isValid())
6357 Diag(OldD->getLocation(), diag::note_previous_definition);
6358
6359 Invalid = true;
6360 }
6361
6362 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6363 if (TemplateParameterListsAreEqual(TemplateParams,
6364 OldDecl->getTemplateParameters(),
6365 /*Complain=*/true,
6366 TPL_TemplateMatch))
6367 OldTemplateParams = OldDecl->getTemplateParameters();
6368 else
6369 Invalid = true;
6370
6371 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6372 if (!Invalid &&
6373 !Context.hasSameType(OldTD->getUnderlyingType(),
6374 NewTD->getUnderlyingType())) {
6375 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6376 // but we can't reasonably accept it.
6377 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6378 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6379 if (OldTD->getLocation().isValid())
6380 Diag(OldTD->getLocation(), diag::note_previous_definition);
6381 Invalid = true;
6382 }
6383 }
6384 }
6385
6386 // Merge any previous default template arguments into our parameters,
6387 // and check the parameter list.
6388 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6389 TPC_TypeAliasTemplate))
6390 return 0;
6391
6392 TypeAliasTemplateDecl *NewDecl =
6393 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6394 Name.Identifier, TemplateParams,
6395 NewTD);
6396
6397 NewDecl->setAccess(AS);
6398
6399 if (Invalid)
6400 NewDecl->setInvalidDecl();
6401 else if (OldDecl)
6402 NewDecl->setPreviousDeclaration(OldDecl);
6403
6404 NewND = NewDecl;
6405 } else {
6406 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6407 NewND = NewTD;
6408 }
Richard Smith162e1c12011-04-15 14:24:37 +00006409
6410 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006411 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006412
Richard Smith3e4c6c42011-05-05 21:57:07 +00006413 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006414}
6415
John McCalld226f652010-08-21 09:40:31 +00006416Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006417 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006418 SourceLocation AliasLoc,
6419 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006420 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006421 SourceLocation IdentLoc,
6422 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006423
Anders Carlsson81c85c42009-03-28 23:53:49 +00006424 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006425 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6426 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006427
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006428 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006429 NamedDecl *PrevDecl
6430 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6431 ForRedeclaration);
6432 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6433 PrevDecl = 0;
6434
6435 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006436 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006437 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006438 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006439 // FIXME: At some point, we'll want to create the (redundant)
6440 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006441 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006442 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006443 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006444 }
Mike Stump1eb44332009-09-09 15:08:12 +00006445
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006446 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6447 diag::err_redefinition_different_kind;
6448 Diag(AliasLoc, DiagID) << Alias;
6449 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006450 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006451 }
6452
John McCalla24dc2e2009-11-17 02:14:36 +00006453 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006454 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006455
John McCallf36e02d2009-10-09 21:13:30 +00006456 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006457 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006458 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006459 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006460 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006461 }
Mike Stump1eb44332009-09-09 15:08:12 +00006462
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006463 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006464 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006465 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006466 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006467
John McCall3dbd3d52010-02-16 06:53:13 +00006468 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006469 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006470}
6471
Douglas Gregor39957dc2010-05-01 15:04:51 +00006472namespace {
6473 /// \brief Scoped object used to handle the state changes required in Sema
6474 /// to implicitly define the body of a C++ member function;
6475 class ImplicitlyDefinedFunctionScope {
6476 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006477 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006478
6479 public:
6480 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006481 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006482 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006483 S.PushFunctionScope();
6484 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6485 }
6486
6487 ~ImplicitlyDefinedFunctionScope() {
6488 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006489 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006490 }
6491 };
6492}
6493
Sean Hunt001cad92011-05-10 00:49:42 +00006494Sema::ImplicitExceptionSpecification
6495Sema::ComputeDefaultedDefaultCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006496 // C++ [except.spec]p14:
6497 // An implicitly declared special member function (Clause 12) shall have an
6498 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006499 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006500 if (ClassDecl->isInvalidDecl())
6501 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006502
Sebastian Redl60618fa2011-03-12 11:50:43 +00006503 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006504 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6505 BEnd = ClassDecl->bases_end();
6506 B != BEnd; ++B) {
6507 if (B->isVirtual()) // Handled below.
6508 continue;
6509
Douglas Gregor18274032010-07-03 00:47:00 +00006510 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6511 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006512 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6513 // If this is a deleted function, add it anyway. This might be conformant
6514 // with the standard. This might not. I'm not sure. It might not matter.
6515 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006516 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006517 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006518 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006519
6520 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006521 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6522 BEnd = ClassDecl->vbases_end();
6523 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006524 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6525 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006526 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6527 // If this is a deleted function, add it anyway. This might be conformant
6528 // with the standard. This might not. I'm not sure. It might not matter.
6529 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006530 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006531 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006532 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006533
6534 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006535 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6536 FEnd = ClassDecl->field_end();
6537 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006538 if (F->hasInClassInitializer()) {
6539 if (Expr *E = F->getInClassInitializer())
6540 ExceptSpec.CalledExpr(E);
6541 else if (!F->isInvalidDecl())
6542 ExceptSpec.SetDelayed();
6543 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006544 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006545 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6546 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6547 // If this is a deleted function, add it anyway. This might be conformant
6548 // with the standard. This might not. I'm not sure. It might not matter.
6549 // In particular, the problem is that this function never gets called. It
6550 // might just be ill-formed because this function attempts to refer to
6551 // a deleted function here.
6552 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006553 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006554 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006555 }
John McCalle23cf432010-12-14 08:05:40 +00006556
Sean Hunt001cad92011-05-10 00:49:42 +00006557 return ExceptSpec;
6558}
6559
6560CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6561 CXXRecordDecl *ClassDecl) {
6562 // C++ [class.ctor]p5:
6563 // A default constructor for a class X is a constructor of class X
6564 // that can be called without an argument. If there is no
6565 // user-declared constructor for class X, a default constructor is
6566 // implicitly declared. An implicitly-declared default constructor
6567 // is an inline public member of its class.
6568 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6569 "Should not build implicit default constructor!");
6570
6571 ImplicitExceptionSpecification Spec =
6572 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6573 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00006574
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006575 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006576 CanQualType ClassType
6577 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006578 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006579 DeclarationName Name
6580 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006581 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006582 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
6583 Context, ClassDecl, ClassLoc, NameInfo,
6584 Context.getFunctionType(Context.VoidTy, 0, 0, EPI), /*TInfo=*/0,
6585 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
6586 /*isConstexpr=*/ClassDecl->defaultedDefaultConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00006587 getLangOpts().CPlusPlus0x);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006588 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006589 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006590 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006591 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00006592
6593 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006594 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6595
Douglas Gregor23c94db2010-07-02 17:43:08 +00006596 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006597 PushOnScopeChains(DefaultCon, S, false);
6598 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006599
Sean Hunte16da072011-10-10 06:18:57 +00006600 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006601 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006602
Douglas Gregor32df23e2010-07-01 22:02:46 +00006603 return DefaultCon;
6604}
6605
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006606void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6607 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006608 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006609 !Constructor->doesThisDeclarationHaveABody() &&
6610 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006611 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006612
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006613 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006614 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006615
Douglas Gregor39957dc2010-05-01 15:04:51 +00006616 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006617 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006618 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006619 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006620 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006621 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006622 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006623 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006624 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006625
6626 SourceLocation Loc = Constructor->getLocation();
6627 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
6628
6629 Constructor->setUsed();
6630 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006631
6632 if (ASTMutationListener *L = getASTMutationListener()) {
6633 L->CompletedImplicitDefinition(Constructor);
6634 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006635}
6636
Richard Smith7a614d82011-06-11 17:19:42 +00006637/// Get any existing defaulted default constructor for the given class. Do not
6638/// implicitly define one if it does not exist.
6639static CXXConstructorDecl *getDefaultedDefaultConstructorUnsafe(Sema &Self,
6640 CXXRecordDecl *D) {
6641 ASTContext &Context = Self.Context;
6642 QualType ClassType = Context.getTypeDeclType(D);
6643 DeclarationName ConstructorName
6644 = Context.DeclarationNames.getCXXConstructorName(
6645 Context.getCanonicalType(ClassType.getUnqualifiedType()));
6646
6647 DeclContext::lookup_const_iterator Con, ConEnd;
6648 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
6649 Con != ConEnd; ++Con) {
6650 // A function template cannot be defaulted.
6651 if (isa<FunctionTemplateDecl>(*Con))
6652 continue;
6653
6654 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
6655 if (Constructor->isDefaultConstructor())
6656 return Constructor->isDefaulted() ? Constructor : 0;
6657 }
6658 return 0;
6659}
6660
6661void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6662 if (!D) return;
6663 AdjustDeclIfTemplate(D);
6664
6665 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
6666 CXXConstructorDecl *CtorDecl
6667 = getDefaultedDefaultConstructorUnsafe(*this, ClassDecl);
6668
6669 if (!CtorDecl) return;
6670
6671 // Compute the exception specification for the default constructor.
6672 const FunctionProtoType *CtorTy =
6673 CtorDecl->getType()->castAs<FunctionProtoType>();
6674 if (CtorTy->getExceptionSpecType() == EST_Delayed) {
Richard Smithe6975e92012-04-17 00:58:00 +00006675 // FIXME: Don't do this unless the exception spec is needed.
Richard Smith7a614d82011-06-11 17:19:42 +00006676 ImplicitExceptionSpecification Spec =
6677 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6678 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6679 assert(EPI.ExceptionSpecType != EST_Delayed);
6680
6681 CtorDecl->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6682 }
6683
6684 // If the default constructor is explicitly defaulted, checking the exception
6685 // specification is deferred until now.
6686 if (!CtorDecl->isInvalidDecl() && CtorDecl->isExplicitlyDefaulted() &&
6687 !ClassDecl->isDependentType())
Richard Smith3003e1d2012-05-15 04:39:51 +00006688 CheckExplicitlyDefaultedSpecialMember(CtorDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006689}
6690
Sebastian Redlf677ea32011-02-05 19:23:19 +00006691void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6692 // We start with an initial pass over the base classes to collect those that
6693 // inherit constructors from. If there are none, we can forgo all further
6694 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006695 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006696 BasesVector BasesToInheritFrom;
6697 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6698 BaseE = ClassDecl->bases_end();
6699 BaseIt != BaseE; ++BaseIt) {
6700 if (BaseIt->getInheritConstructors()) {
6701 QualType Base = BaseIt->getType();
6702 if (Base->isDependentType()) {
6703 // If we inherit constructors from anything that is dependent, just
6704 // abort processing altogether. We'll get another chance for the
6705 // instantiations.
6706 return;
6707 }
6708 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6709 }
6710 }
6711 if (BasesToInheritFrom.empty())
6712 return;
6713
6714 // Now collect the constructors that we already have in the current class.
6715 // Those take precedence over inherited constructors.
6716 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6717 // unless there is a user-declared constructor with the same signature in
6718 // the class where the using-declaration appears.
6719 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6720 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6721 CtorE = ClassDecl->ctor_end();
6722 CtorIt != CtorE; ++CtorIt) {
6723 ExistingConstructors.insert(
6724 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6725 }
6726
Sebastian Redlf677ea32011-02-05 19:23:19 +00006727 DeclarationName CreatedCtorName =
6728 Context.DeclarationNames.getCXXConstructorName(
6729 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6730
6731 // Now comes the true work.
6732 // First, we keep a map from constructor types to the base that introduced
6733 // them. Needed for finding conflicting constructors. We also keep the
6734 // actually inserted declarations in there, for pretty diagnostics.
6735 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6736 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6737 ConstructorToSourceMap InheritedConstructors;
6738 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6739 BaseE = BasesToInheritFrom.end();
6740 BaseIt != BaseE; ++BaseIt) {
6741 const RecordType *Base = *BaseIt;
6742 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6743 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6744 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6745 CtorE = BaseDecl->ctor_end();
6746 CtorIt != CtorE; ++CtorIt) {
6747 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006748 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006749 DeclarationName Name =
6750 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006751 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6752 LookupQualifiedName(Result, CurContext);
6753 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006754 SourceLocation UsingLoc = UD ? UD->getLocation() :
6755 ClassDecl->getLocation();
6756
6757 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6758 // from the class X named in the using-declaration consists of actual
6759 // constructors and notional constructors that result from the
6760 // transformation of defaulted parameters as follows:
6761 // - all non-template default constructors of X, and
6762 // - for each non-template constructor of X that has at least one
6763 // parameter with a default argument, the set of constructors that
6764 // results from omitting any ellipsis parameter specification and
6765 // successively omitting parameters with a default argument from the
6766 // end of the parameter-type-list.
David Blaikie262bc182012-04-30 02:36:29 +00006767 CXXConstructorDecl *BaseCtor = &*CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006768 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6769 const FunctionProtoType *BaseCtorType =
6770 BaseCtor->getType()->getAs<FunctionProtoType>();
6771
6772 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6773 maxParams = BaseCtor->getNumParams();
6774 params <= maxParams; ++params) {
6775 // Skip default constructors. They're never inherited.
6776 if (params == 0)
6777 continue;
6778 // Skip copy and move constructors for the same reason.
6779 if (CanBeCopyOrMove && params == 1)
6780 continue;
6781
6782 // Build up a function type for this particular constructor.
6783 // FIXME: The working paper does not consider that the exception spec
6784 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00006785 // source. This code doesn't yet, either. When it does, this code will
6786 // need to be delayed until after exception specifications and in-class
6787 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006788 const Type *NewCtorType;
6789 if (params == maxParams)
6790 NewCtorType = BaseCtorType;
6791 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006792 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006793 for (unsigned i = 0; i < params; ++i) {
6794 Args.push_back(BaseCtorType->getArgType(i));
6795 }
6796 FunctionProtoType::ExtProtoInfo ExtInfo =
6797 BaseCtorType->getExtProtoInfo();
6798 ExtInfo.Variadic = false;
6799 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
6800 Args.data(), params, ExtInfo)
6801 .getTypePtr();
6802 }
6803 const Type *CanonicalNewCtorType =
6804 Context.getCanonicalType(NewCtorType);
6805
6806 // Now that we have the type, first check if the class already has a
6807 // constructor with this signature.
6808 if (ExistingConstructors.count(CanonicalNewCtorType))
6809 continue;
6810
6811 // Then we check if we have already declared an inherited constructor
6812 // with this signature.
6813 std::pair<ConstructorToSourceMap::iterator, bool> result =
6814 InheritedConstructors.insert(std::make_pair(
6815 CanonicalNewCtorType,
6816 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
6817 if (!result.second) {
6818 // Already in the map. If it came from a different class, that's an
6819 // error. Not if it's from the same.
6820 CanQualType PreviousBase = result.first->second.first;
6821 if (CanonicalBase != PreviousBase) {
6822 const CXXConstructorDecl *PrevCtor = result.first->second.second;
6823 const CXXConstructorDecl *PrevBaseCtor =
6824 PrevCtor->getInheritedConstructor();
6825 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
6826
6827 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
6828 Diag(BaseCtor->getLocation(),
6829 diag::note_using_decl_constructor_conflict_current_ctor);
6830 Diag(PrevBaseCtor->getLocation(),
6831 diag::note_using_decl_constructor_conflict_previous_ctor);
6832 Diag(PrevCtor->getLocation(),
6833 diag::note_using_decl_constructor_conflict_previous_using);
6834 }
6835 continue;
6836 }
6837
6838 // OK, we're there, now add the constructor.
6839 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006840 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00006841 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
6842 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006843 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
6844 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006845 /*ImplicitlyDeclared=*/true,
6846 // FIXME: Due to a defect in the standard, we treat inherited
6847 // constructors as constexpr even if that makes them ill-formed.
6848 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00006849 NewCtor->setAccess(BaseCtor->getAccess());
6850
6851 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006852 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006853 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006854 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
6855 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00006856 /*IdentifierInfo=*/0,
6857 BaseCtorType->getArgType(i),
6858 /*TInfo=*/0, SC_None,
6859 SC_None, /*DefaultArg=*/0));
6860 }
David Blaikie4278c652011-09-21 18:16:56 +00006861 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006862 NewCtor->setInheritedConstructor(BaseCtor);
6863
Sebastian Redlf677ea32011-02-05 19:23:19 +00006864 ClassDecl->addDecl(NewCtor);
6865 result.first->second.second = NewCtor;
6866 }
6867 }
6868 }
6869}
6870
Sean Huntcb45a0f2011-05-12 22:46:25 +00006871Sema::ImplicitExceptionSpecification
6872Sema::ComputeDefaultedDtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006873 // C++ [except.spec]p14:
6874 // An implicitly declared special member function (Clause 12) shall have
6875 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00006876 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006877 if (ClassDecl->isInvalidDecl())
6878 return ExceptSpec;
6879
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006880 // Direct base-class destructors.
6881 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6882 BEnd = ClassDecl->bases_end();
6883 B != BEnd; ++B) {
6884 if (B->isVirtual()) // Handled below.
6885 continue;
6886
6887 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006888 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006889 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006890 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006891
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006892 // Virtual base-class destructors.
6893 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6894 BEnd = ClassDecl->vbases_end();
6895 B != BEnd; ++B) {
6896 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006897 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006898 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006899 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006900
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006901 // Field destructors.
6902 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6903 FEnd = ClassDecl->field_end();
6904 F != FEnd; ++F) {
6905 if (const RecordType *RecordTy
6906 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006907 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006908 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006909 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006910
Sean Huntcb45a0f2011-05-12 22:46:25 +00006911 return ExceptSpec;
6912}
6913
6914CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
6915 // C++ [class.dtor]p2:
6916 // If a class has no user-declared destructor, a destructor is
6917 // declared implicitly. An implicitly-declared destructor is an
6918 // inline public member of its class.
6919
6920 ImplicitExceptionSpecification Spec =
Sebastian Redl0ee33912011-05-19 05:13:44 +00006921 ComputeDefaultedDtorExceptionSpec(ClassDecl);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006922 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6923
Douglas Gregor4923aa22010-07-02 20:37:36 +00006924 // Create the actual destructor declaration.
John McCalle23cf432010-12-14 08:05:40 +00006925 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Sebastian Redl60618fa2011-03-12 11:50:43 +00006926
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006927 CanQualType ClassType
6928 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006929 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006930 DeclarationName Name
6931 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006932 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006933 CXXDestructorDecl *Destructor
Sebastian Redl60618fa2011-03-12 11:50:43 +00006934 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
6935 /*isInline=*/true,
6936 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006937 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006938 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006939 Destructor->setImplicit();
6940 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00006941
6942 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00006943 ++ASTContext::NumImplicitDestructorsDeclared;
6944
6945 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00006946 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00006947 PushOnScopeChains(Destructor, S, false);
6948 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006949
6950 // This could be uniqued if it ever proves significant.
6951 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Sean Huntcb45a0f2011-05-12 22:46:25 +00006952
Richard Smith9a561d52012-02-26 09:11:52 +00006953 AddOverriddenMethods(ClassDecl, Destructor);
6954
Richard Smith7d5088a2012-02-18 02:02:13 +00006955 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00006956 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00006957
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006958 return Destructor;
6959}
6960
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006961void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00006962 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00006963 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00006964 !Destructor->doesThisDeclarationHaveABody() &&
6965 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006966 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00006967 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006968 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006969
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006970 if (Destructor->isInvalidDecl())
6971 return;
6972
Douglas Gregor39957dc2010-05-01 15:04:51 +00006973 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006974
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006975 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00006976 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
6977 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00006978
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006979 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006980 Diag(CurrentLocation, diag::note_member_synthesized_at)
6981 << CXXDestructor << Context.getTagDeclType(ClassDecl);
6982
6983 Destructor->setInvalidDecl();
6984 return;
6985 }
6986
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006987 SourceLocation Loc = Destructor->getLocation();
6988 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00006989 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006990 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006991 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006992
6993 if (ASTMutationListener *L = getASTMutationListener()) {
6994 L->CompletedImplicitDefinition(Destructor);
6995 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006996}
6997
Richard Smitha4156b82012-04-21 18:42:51 +00006998/// \brief Perform any semantic analysis which needs to be delayed until all
6999/// pending class member declarations have been parsed.
7000void Sema::ActOnFinishCXXMemberDecls() {
7001 // Now we have parsed all exception specifications, determine the implicit
7002 // exception specifications for destructors.
7003 for (unsigned i = 0, e = DelayedDestructorExceptionSpecs.size();
7004 i != e; ++i) {
7005 CXXDestructorDecl *Dtor = DelayedDestructorExceptionSpecs[i];
7006 AdjustDestructorExceptionSpec(Dtor->getParent(), Dtor, true);
7007 }
7008 DelayedDestructorExceptionSpecs.clear();
7009
7010 // Perform any deferred checking of exception specifications for virtual
7011 // destructors.
7012 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7013 i != e; ++i) {
7014 const CXXDestructorDecl *Dtor =
7015 DelayedDestructorExceptionSpecChecks[i].first;
7016 assert(!Dtor->getParent()->isDependentType() &&
7017 "Should not ever add destructors of templates into the list.");
7018 CheckOverridingFunctionExceptionSpec(Dtor,
7019 DelayedDestructorExceptionSpecChecks[i].second);
7020 }
7021 DelayedDestructorExceptionSpecChecks.clear();
7022}
7023
Sebastian Redl0ee33912011-05-19 05:13:44 +00007024void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *classDecl,
Richard Smitha4156b82012-04-21 18:42:51 +00007025 CXXDestructorDecl *destructor,
7026 bool WasDelayed) {
Sebastian Redl0ee33912011-05-19 05:13:44 +00007027 // C++11 [class.dtor]p3:
7028 // A declaration of a destructor that does not have an exception-
7029 // specification is implicitly considered to have the same exception-
7030 // specification as an implicit declaration.
7031 const FunctionProtoType *dtorType = destructor->getType()->
7032 getAs<FunctionProtoType>();
Richard Smitha4156b82012-04-21 18:42:51 +00007033 if (!WasDelayed && dtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007034 return;
7035
7036 ImplicitExceptionSpecification exceptSpec =
7037 ComputeDefaultedDtorExceptionSpec(classDecl);
7038
Chandler Carruth3f224b22011-09-20 04:55:26 +00007039 // Replace the destructor's type, building off the existing one. Fortunately,
7040 // the only thing of interest in the destructor type is its extended info.
7041 // The return and arguments are fixed.
7042 FunctionProtoType::ExtProtoInfo epi = dtorType->getExtProtoInfo();
Sebastian Redl0ee33912011-05-19 05:13:44 +00007043 epi.ExceptionSpecType = exceptSpec.getExceptionSpecType();
7044 epi.NumExceptions = exceptSpec.size();
7045 epi.Exceptions = exceptSpec.data();
7046 QualType ty = Context.getFunctionType(Context.VoidTy, 0, 0, epi);
7047
7048 destructor->setType(ty);
7049
Richard Smitha4156b82012-04-21 18:42:51 +00007050 // If we can't compute the exception specification for this destructor yet
7051 // (because it depends on an exception specification which we have not parsed
7052 // yet), make a note that we need to try again when the class is complete.
7053 if (epi.ExceptionSpecType == EST_Delayed) {
7054 assert(!WasDelayed && "couldn't compute destructor exception spec");
7055 DelayedDestructorExceptionSpecs.push_back(destructor);
7056 }
7057
Sebastian Redl0ee33912011-05-19 05:13:44 +00007058 // FIXME: If the destructor has a body that could throw, and the newly created
7059 // spec doesn't allow exceptions, we should emit a warning, because this
7060 // change in behavior can break conforming C++03 programs at runtime.
7061 // However, we don't have a body yet, so it needs to be done somewhere else.
7062}
7063
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007064/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007065/// \c To.
7066///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007067/// This routine is used to copy/move the members of a class with an
7068/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007069/// copied are arrays, this routine builds for loops to copy them.
7070///
7071/// \param S The Sema object used for type-checking.
7072///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007073/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007074///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007075/// \param T The type of the expressions being copied/moved. Both expressions
7076/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007077///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007078/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007079///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007080/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007081///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007082/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007083/// Otherwise, it's a non-static member subobject.
7084///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007085/// \param Copying Whether we're copying or moving.
7086///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007087/// \param Depth Internal parameter recording the depth of the recursion.
7088///
7089/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007090static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007091BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007092 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007093 bool CopyingBaseSubobject, bool Copying,
7094 unsigned Depth = 0) {
7095 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007096 // Each subobject is assigned in the manner appropriate to its type:
7097 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007098 // - if the subobject is of class type, as if by a call to operator= with
7099 // the subobject as the object expression and the corresponding
7100 // subobject of x as a single function argument (as if by explicit
7101 // qualification; that is, ignoring any possible virtual overriding
7102 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007103 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7104 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7105
7106 // Look for operator=.
7107 DeclarationName Name
7108 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7109 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7110 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7111
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007112 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007113 LookupResult::Filter F = OpLookup.makeFilter();
7114 while (F.hasNext()) {
7115 NamedDecl *D = F.next();
7116 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007117 if (Method->isCopyAssignmentOperator() ||
7118 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007119 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007120
Douglas Gregor06a9f362010-05-01 20:49:11 +00007121 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007122 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007123 F.done();
7124
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007125 // Suppress the protected check (C++ [class.protected]) for each of the
7126 // assignment operators we found. This strange dance is required when
7127 // we're assigning via a base classes's copy-assignment operator. To
7128 // ensure that we're getting the right base class subobject (without
7129 // ambiguities), we need to cast "this" to that subobject type; to
7130 // ensure that we don't go through the virtual call mechanism, we need
7131 // to qualify the operator= name with the base class (see below). However,
7132 // this means that if the base class has a protected copy assignment
7133 // operator, the protected member access check will fail. So, we
7134 // rewrite "protected" access to "public" access in this case, since we
7135 // know by construction that we're calling from a derived class.
7136 if (CopyingBaseSubobject) {
7137 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7138 L != LEnd; ++L) {
7139 if (L.getAccess() == AS_protected)
7140 L.setAccess(AS_public);
7141 }
7142 }
7143
Douglas Gregor06a9f362010-05-01 20:49:11 +00007144 // Create the nested-name-specifier that will be used to qualify the
7145 // reference to operator=; this is required to suppress the virtual
7146 // call mechanism.
7147 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007148 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007149 SS.MakeTrivial(S.Context,
7150 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007151 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007152 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007153
7154 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007155 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007156 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007157 /*TemplateKWLoc=*/SourceLocation(),
7158 /*FirstQualifierInScope=*/0,
7159 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007160 /*TemplateArgs=*/0,
7161 /*SuppressQualifierCheck=*/true);
7162 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007163 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007164
7165 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007166
John McCall60d7b3a2010-08-24 06:29:42 +00007167 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007168 OpEqualRef.takeAs<Expr>(),
7169 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007170 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007171 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007172
7173 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007174 }
John McCallb0207482010-03-16 06:11:48 +00007175
Douglas Gregor06a9f362010-05-01 20:49:11 +00007176 // - if the subobject is of scalar type, the built-in assignment
7177 // operator is used.
7178 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7179 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007180 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007181 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007182 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007183
7184 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007185 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007186
7187 // - if the subobject is an array, each element is assigned, in the
7188 // manner appropriate to the element type;
7189
7190 // Construct a loop over the array bounds, e.g.,
7191 //
7192 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7193 //
7194 // that will copy each of the array elements.
7195 QualType SizeType = S.Context.getSizeType();
7196
7197 // Create the iteration variable.
7198 IdentifierInfo *IterationVarName = 0;
7199 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007200 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007201 llvm::raw_svector_ostream OS(Str);
7202 OS << "__i" << Depth;
7203 IterationVarName = &S.Context.Idents.get(OS.str());
7204 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007205 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007206 IterationVarName, SizeType,
7207 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007208 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007209
7210 // Initialize the iteration variable to zero.
7211 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007212 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007213
7214 // Create a reference to the iteration variable; we'll use this several
7215 // times throughout.
7216 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007217 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007218 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007219 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7220 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7221
Douglas Gregor06a9f362010-05-01 20:49:11 +00007222 // Create the DeclStmt that holds the iteration variable.
7223 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7224
7225 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007226 llvm::APInt Upper
7227 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007228 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007229 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007230 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7231 BO_NE, S.Context.BoolTy,
7232 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007233
7234 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007235 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007236 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7237 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007238
7239 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007240 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007241 IterationVarRefRVal,
7242 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007243 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007244 IterationVarRefRVal,
7245 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007246 if (!Copying) // Cast to rvalue
7247 From = CastForMoving(S, From);
7248
7249 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007250 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7251 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007252 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007253 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007254 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007255
7256 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007257 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007258 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007259 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007260 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007261}
7262
Sean Hunt30de05c2011-05-14 05:23:20 +00007263std::pair<Sema::ImplicitExceptionSpecification, bool>
7264Sema::ComputeDefaultedCopyAssignmentExceptionSpecAndConst(
7265 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007266 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00007267 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007268
Douglas Gregord3c35902010-07-01 16:36:15 +00007269 // C++ [class.copy]p10:
7270 // If the class definition does not explicitly declare a copy
7271 // assignment operator, one is declared implicitly.
7272 // The implicitly-defined copy assignment operator for a class X
7273 // will have the form
7274 //
7275 // X& X::operator=(const X&)
7276 //
7277 // if
7278 bool HasConstCopyAssignment = true;
7279
7280 // -- each direct base class B of X has a copy assignment operator
7281 // whose parameter is of type const B&, const volatile B& or B,
7282 // and
7283 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7284 BaseEnd = ClassDecl->bases_end();
7285 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007286 // We'll handle this below
7287 if (LangOpts.CPlusPlus0x && Base->isVirtual())
7288 continue;
7289
Douglas Gregord3c35902010-07-01 16:36:15 +00007290 assert(!Base->getType()->isDependentType() &&
7291 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007292 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007293 HasConstCopyAssignment &=
7294 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7295 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007296 }
7297
Richard Smithebaf0e62011-10-18 20:49:44 +00007298 // In C++11, the above citation has "or virtual" added
Sean Hunt661c67a2011-06-21 23:42:56 +00007299 if (LangOpts.CPlusPlus0x) {
7300 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7301 BaseEnd = ClassDecl->vbases_end();
7302 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
7303 assert(!Base->getType()->isDependentType() &&
7304 "Cannot generate implicit members for class with dependent bases.");
7305 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007306 HasConstCopyAssignment &=
7307 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7308 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007309 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007310 }
7311
7312 // -- for all the nonstatic data members of X that are of a class
7313 // type M (or array thereof), each such class type has a copy
7314 // assignment operator whose parameter is of type const M&,
7315 // const volatile M& or M.
7316 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7317 FieldEnd = ClassDecl->field_end();
7318 HasConstCopyAssignment && Field != FieldEnd;
7319 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007320 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007321 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00007322 HasConstCopyAssignment &=
7323 (bool)LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7324 false, 0);
Douglas Gregord3c35902010-07-01 16:36:15 +00007325 }
7326 }
7327
7328 // Otherwise, the implicitly declared copy assignment operator will
7329 // have the form
7330 //
7331 // X& X::operator=(X&)
Douglas Gregord3c35902010-07-01 16:36:15 +00007332
Douglas Gregorb87786f2010-07-01 17:48:08 +00007333 // C++ [except.spec]p14:
7334 // An implicitly declared special member function (Clause 12) shall have an
7335 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007336
7337 // It is unspecified whether or not an implicit copy assignment operator
7338 // attempts to deduplicate calls to assignment operators of virtual bases are
7339 // made. As such, this exception specification is effectively unspecified.
7340 // Based on a similar decision made for constness in C++0x, we're erring on
7341 // the side of assuming such calls to be made regardless of whether they
7342 // actually happen.
Richard Smithe6975e92012-04-17 00:58:00 +00007343 ImplicitExceptionSpecification ExceptSpec(*this);
Sean Hunt661c67a2011-06-21 23:42:56 +00007344 unsigned ArgQuals = HasConstCopyAssignment ? Qualifiers::Const : 0;
Douglas Gregorb87786f2010-07-01 17:48:08 +00007345 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7346 BaseEnd = ClassDecl->bases_end();
7347 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007348 if (Base->isVirtual())
7349 continue;
7350
Douglas Gregora376d102010-07-02 21:50:04 +00007351 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007352 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007353 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7354 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007355 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007356 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007357
7358 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7359 BaseEnd = ClassDecl->vbases_end();
7360 Base != BaseEnd; ++Base) {
7361 CXXRecordDecl *BaseClassDecl
7362 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7363 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7364 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007365 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007366 }
7367
Douglas Gregorb87786f2010-07-01 17:48:08 +00007368 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7369 FieldEnd = ClassDecl->field_end();
7370 Field != FieldEnd;
7371 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007372 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007373 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7374 if (CXXMethodDecl *CopyAssign =
7375 LookupCopyingAssignment(FieldClassDecl, ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007376 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007377 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007378 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007379
Sean Hunt30de05c2011-05-14 05:23:20 +00007380 return std::make_pair(ExceptSpec, HasConstCopyAssignment);
7381}
7382
7383CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7384 // Note: The following rules are largely analoguous to the copy
7385 // constructor rules. Note that virtual bases are not taken into account
7386 // for determining the argument type of the operator. Note also that
7387 // operators taking an object instead of a reference are allowed.
7388
Richard Smithe6975e92012-04-17 00:58:00 +00007389 ImplicitExceptionSpecification Spec(*this);
Sean Hunt30de05c2011-05-14 05:23:20 +00007390 bool Const;
7391 llvm::tie(Spec, Const) =
7392 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(ClassDecl);
7393
7394 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7395 QualType RetType = Context.getLValueReferenceType(ArgType);
7396 if (Const)
7397 ArgType = ArgType.withConst();
7398 ArgType = Context.getLValueReferenceType(ArgType);
7399
Douglas Gregord3c35902010-07-01 16:36:15 +00007400 // An implicitly-declared copy assignment operator is an inline public
7401 // member of its class.
Sean Hunt30de05c2011-05-14 05:23:20 +00007402 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Douglas Gregord3c35902010-07-01 16:36:15 +00007403 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007404 SourceLocation ClassLoc = ClassDecl->getLocation();
7405 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007406 CXXMethodDecl *CopyAssignment
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007407 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
John McCalle23cf432010-12-14 08:05:40 +00007408 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregord3c35902010-07-01 16:36:15 +00007409 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007410 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007411 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007412 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007413 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007414 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007415 CopyAssignment->setImplicit();
7416 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregord3c35902010-07-01 16:36:15 +00007417
7418 // Add the parameter to the operator.
7419 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007420 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007421 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007422 SC_None,
7423 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007424 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007425
Douglas Gregora376d102010-07-02 21:50:04 +00007426 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007427 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007428
Douglas Gregor23c94db2010-07-02 17:43:08 +00007429 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007430 PushOnScopeChains(CopyAssignment, S, false);
7431 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007432
Nico Weberafcc96a2012-01-23 03:19:29 +00007433 // C++0x [class.copy]p19:
7434 // .... If the class definition does not explicitly declare a copy
7435 // assignment operator, there is no user-declared move constructor, and
7436 // there is no user-declared move assignment operator, a copy assignment
7437 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007438 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007439 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007440
Douglas Gregord3c35902010-07-01 16:36:15 +00007441 AddOverriddenMethods(ClassDecl, CopyAssignment);
7442 return CopyAssignment;
7443}
7444
Douglas Gregor06a9f362010-05-01 20:49:11 +00007445void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7446 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007447 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007448 CopyAssignOperator->isOverloadedOperator() &&
7449 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007450 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7451 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007452 "DefineImplicitCopyAssignment called for wrong function");
7453
7454 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7455
7456 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7457 CopyAssignOperator->setInvalidDecl();
7458 return;
7459 }
7460
7461 CopyAssignOperator->setUsed();
7462
7463 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007464 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007465
7466 // C++0x [class.copy]p30:
7467 // The implicitly-defined or explicitly-defaulted copy assignment operator
7468 // for a non-union class X performs memberwise copy assignment of its
7469 // subobjects. The direct base classes of X are assigned first, in the
7470 // order of their declaration in the base-specifier-list, and then the
7471 // immediate non-static data members of X are assigned, in the order in
7472 // which they were declared in the class definition.
7473
7474 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00007475 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007476
7477 // The parameter for the "other" object, which we are copying from.
7478 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7479 Qualifiers OtherQuals = Other->getType().getQualifiers();
7480 QualType OtherRefType = Other->getType();
7481 if (const LValueReferenceType *OtherRef
7482 = OtherRefType->getAs<LValueReferenceType>()) {
7483 OtherRefType = OtherRef->getPointeeType();
7484 OtherQuals = OtherRefType.getQualifiers();
7485 }
7486
7487 // Our location for everything implicitly-generated.
7488 SourceLocation Loc = CopyAssignOperator->getLocation();
7489
7490 // Construct a reference to the "other" object. We'll be using this
7491 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007492 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007493 assert(OtherRef && "Reference to parameter cannot fail!");
7494
7495 // Construct the "this" pointer. We'll be using this throughout the generated
7496 // ASTs.
7497 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7498 assert(This && "Reference to this cannot fail!");
7499
7500 // Assign base classes.
7501 bool Invalid = false;
7502 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7503 E = ClassDecl->bases_end(); Base != E; ++Base) {
7504 // Form the assignment:
7505 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7506 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007507 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007508 Invalid = true;
7509 continue;
7510 }
7511
John McCallf871d0c2010-08-07 06:22:56 +00007512 CXXCastPath BasePath;
7513 BasePath.push_back(Base);
7514
Douglas Gregor06a9f362010-05-01 20:49:11 +00007515 // Construct the "from" expression, which is an implicit cast to the
7516 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007517 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007518 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7519 CK_UncheckedDerivedToBase,
7520 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007521
7522 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007523 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007524
7525 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007526 To = ImpCastExprToType(To.take(),
7527 Context.getCVRQualifiedType(BaseType,
7528 CopyAssignOperator->getTypeQualifiers()),
7529 CK_UncheckedDerivedToBase,
7530 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007531
7532 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007533 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007534 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007535 /*CopyingBaseSubobject=*/true,
7536 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007537 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007538 Diag(CurrentLocation, diag::note_member_synthesized_at)
7539 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7540 CopyAssignOperator->setInvalidDecl();
7541 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007542 }
7543
7544 // Success! Record the copy.
7545 Statements.push_back(Copy.takeAs<Expr>());
7546 }
7547
7548 // \brief Reference to the __builtin_memcpy function.
7549 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007550 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007551 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007552
7553 // Assign non-static members.
7554 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7555 FieldEnd = ClassDecl->field_end();
7556 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007557 if (Field->isUnnamedBitfield())
7558 continue;
7559
Douglas Gregor06a9f362010-05-01 20:49:11 +00007560 // Check for members of reference type; we can't copy those.
7561 if (Field->getType()->isReferenceType()) {
7562 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7563 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7564 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007565 Diag(CurrentLocation, diag::note_member_synthesized_at)
7566 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007567 Invalid = true;
7568 continue;
7569 }
7570
7571 // Check for members of const-qualified, non-class type.
7572 QualType BaseType = Context.getBaseElementType(Field->getType());
7573 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7574 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7575 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7576 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007577 Diag(CurrentLocation, diag::note_member_synthesized_at)
7578 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007579 Invalid = true;
7580 continue;
7581 }
John McCallb77115d2011-06-17 00:18:42 +00007582
7583 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007584 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7585 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007586
7587 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007588 if (FieldType->isIncompleteArrayType()) {
7589 assert(ClassDecl->hasFlexibleArrayMember() &&
7590 "Incomplete array type is not valid");
7591 continue;
7592 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007593
7594 // Build references to the field in the object we're copying from and to.
7595 CXXScopeSpec SS; // Intentionally empty
7596 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7597 LookupMemberName);
David Blaikie262bc182012-04-30 02:36:29 +00007598 MemberLookup.addDecl(&*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007599 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007600 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007601 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007602 SS, SourceLocation(), 0,
7603 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007604 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007605 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007606 SS, SourceLocation(), 0,
7607 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007608 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7609 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7610
7611 // If the field should be copied with __builtin_memcpy rather than via
7612 // explicit assignments, do so. This optimization only applies for arrays
7613 // of scalars and arrays of class type with trivial copy-assignment
7614 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007615 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007616 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007617 // Compute the size of the memory buffer to be copied.
7618 QualType SizeType = Context.getSizeType();
7619 llvm::APInt Size(Context.getTypeSize(SizeType),
7620 Context.getTypeSizeInChars(BaseType).getQuantity());
7621 for (const ConstantArrayType *Array
7622 = Context.getAsConstantArrayType(FieldType);
7623 Array;
7624 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007625 llvm::APInt ArraySize
7626 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007627 Size *= ArraySize;
7628 }
7629
7630 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007631 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7632 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007633
7634 bool NeedsCollectableMemCpy =
7635 (BaseType->isRecordType() &&
7636 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7637
7638 if (NeedsCollectableMemCpy) {
7639 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007640 // Create a reference to the __builtin_objc_memmove_collectable function.
7641 LookupResult R(*this,
7642 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007643 Loc, LookupOrdinaryName);
7644 LookupName(R, TUScope, true);
7645
7646 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7647 if (!CollectableMemCpy) {
7648 // Something went horribly wrong earlier, and we will have
7649 // complained about it.
7650 Invalid = true;
7651 continue;
7652 }
7653
7654 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
7655 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007656 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007657 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7658 }
7659 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007660 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007661 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007662 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7663 LookupOrdinaryName);
7664 LookupName(R, TUScope, true);
7665
7666 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7667 if (!BuiltinMemCpy) {
7668 // Something went horribly wrong earlier, and we will have complained
7669 // about it.
7670 Invalid = true;
7671 continue;
7672 }
7673
7674 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
7675 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007676 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007677 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7678 }
7679
John McCallca0408f2010-08-23 06:44:23 +00007680 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007681 CallArgs.push_back(To.takeAs<Expr>());
7682 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007683 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007684 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007685 if (NeedsCollectableMemCpy)
7686 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007687 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007688 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007689 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007690 else
7691 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007692 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007693 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007694 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007695
Douglas Gregor06a9f362010-05-01 20:49:11 +00007696 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7697 Statements.push_back(Call.takeAs<Expr>());
7698 continue;
7699 }
7700
7701 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007702 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007703 To.get(), From.get(),
7704 /*CopyingBaseSubobject=*/false,
7705 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007706 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007707 Diag(CurrentLocation, diag::note_member_synthesized_at)
7708 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7709 CopyAssignOperator->setInvalidDecl();
7710 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007711 }
7712
7713 // Success! Record the copy.
7714 Statements.push_back(Copy.takeAs<Stmt>());
7715 }
7716
7717 if (!Invalid) {
7718 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007719 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007720
John McCall60d7b3a2010-08-24 06:29:42 +00007721 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007722 if (Return.isInvalid())
7723 Invalid = true;
7724 else {
7725 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007726
7727 if (Trap.hasErrorOccurred()) {
7728 Diag(CurrentLocation, diag::note_member_synthesized_at)
7729 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7730 Invalid = true;
7731 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007732 }
7733 }
7734
7735 if (Invalid) {
7736 CopyAssignOperator->setInvalidDecl();
7737 return;
7738 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007739
7740 StmtResult Body;
7741 {
7742 CompoundScopeRAII CompoundScope(*this);
7743 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
7744 /*isStmtExpr=*/false);
7745 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7746 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007747 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007748
7749 if (ASTMutationListener *L = getASTMutationListener()) {
7750 L->CompletedImplicitDefinition(CopyAssignOperator);
7751 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007752}
7753
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007754Sema::ImplicitExceptionSpecification
7755Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXRecordDecl *ClassDecl) {
Richard Smithe6975e92012-04-17 00:58:00 +00007756 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007757
7758 if (ClassDecl->isInvalidDecl())
7759 return ExceptSpec;
7760
7761 // C++0x [except.spec]p14:
7762 // An implicitly declared special member function (Clause 12) shall have an
7763 // exception-specification. [...]
7764
7765 // It is unspecified whether or not an implicit move assignment operator
7766 // attempts to deduplicate calls to assignment operators of virtual bases are
7767 // made. As such, this exception specification is effectively unspecified.
7768 // Based on a similar decision made for constness in C++0x, we're erring on
7769 // the side of assuming such calls to be made regardless of whether they
7770 // actually happen.
7771 // Note that a move constructor is not implicitly declared when there are
7772 // virtual bases, but it can still be user-declared and explicitly defaulted.
7773 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7774 BaseEnd = ClassDecl->bases_end();
7775 Base != BaseEnd; ++Base) {
7776 if (Base->isVirtual())
7777 continue;
7778
7779 CXXRecordDecl *BaseClassDecl
7780 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7781 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7782 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007783 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007784 }
7785
7786 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7787 BaseEnd = ClassDecl->vbases_end();
7788 Base != BaseEnd; ++Base) {
7789 CXXRecordDecl *BaseClassDecl
7790 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7791 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7792 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007793 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007794 }
7795
7796 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7797 FieldEnd = ClassDecl->field_end();
7798 Field != FieldEnd;
7799 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007800 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007801 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7802 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(FieldClassDecl,
7803 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007804 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007805 }
7806 }
7807
7808 return ExceptSpec;
7809}
7810
Richard Smith1c931be2012-04-02 18:40:40 +00007811/// Determine whether the class type has any direct or indirect virtual base
7812/// classes which have a non-trivial move assignment operator.
7813static bool
7814hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
7815 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7816 BaseEnd = ClassDecl->vbases_end();
7817 Base != BaseEnd; ++Base) {
7818 CXXRecordDecl *BaseClass =
7819 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7820
7821 // Try to declare the move assignment. If it would be deleted, then the
7822 // class does not have a non-trivial move assignment.
7823 if (BaseClass->needsImplicitMoveAssignment())
7824 S.DeclareImplicitMoveAssignment(BaseClass);
7825
7826 // If the class has both a trivial move assignment and a non-trivial move
7827 // assignment, hasTrivialMoveAssignment() is false.
7828 if (BaseClass->hasDeclaredMoveAssignment() &&
7829 !BaseClass->hasTrivialMoveAssignment())
7830 return true;
7831 }
7832
7833 return false;
7834}
7835
7836/// Determine whether the given type either has a move constructor or is
7837/// trivially copyable.
7838static bool
7839hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
7840 Type = S.Context.getBaseElementType(Type);
7841
7842 // FIXME: Technically, non-trivially-copyable non-class types, such as
7843 // reference types, are supposed to return false here, but that appears
7844 // to be a standard defect.
7845 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00007846 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00007847 return true;
7848
7849 if (Type.isTriviallyCopyableType(S.Context))
7850 return true;
7851
7852 if (IsConstructor) {
7853 if (ClassDecl->needsImplicitMoveConstructor())
7854 S.DeclareImplicitMoveConstructor(ClassDecl);
7855 return ClassDecl->hasDeclaredMoveConstructor();
7856 }
7857
7858 if (ClassDecl->needsImplicitMoveAssignment())
7859 S.DeclareImplicitMoveAssignment(ClassDecl);
7860 return ClassDecl->hasDeclaredMoveAssignment();
7861}
7862
7863/// Determine whether all non-static data members and direct or virtual bases
7864/// of class \p ClassDecl have either a move operation, or are trivially
7865/// copyable.
7866static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
7867 bool IsConstructor) {
7868 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7869 BaseEnd = ClassDecl->bases_end();
7870 Base != BaseEnd; ++Base) {
7871 if (Base->isVirtual())
7872 continue;
7873
7874 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7875 return false;
7876 }
7877
7878 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7879 BaseEnd = ClassDecl->vbases_end();
7880 Base != BaseEnd; ++Base) {
7881 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7882 return false;
7883 }
7884
7885 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7886 FieldEnd = ClassDecl->field_end();
7887 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007888 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00007889 return false;
7890 }
7891
7892 return true;
7893}
7894
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007895CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00007896 // C++11 [class.copy]p20:
7897 // If the definition of a class X does not explicitly declare a move
7898 // assignment operator, one will be implicitly declared as defaulted
7899 // if and only if:
7900 //
7901 // - [first 4 bullets]
7902 assert(ClassDecl->needsImplicitMoveAssignment());
7903
7904 // [Checked after we build the declaration]
7905 // - the move assignment operator would not be implicitly defined as
7906 // deleted,
7907
7908 // [DR1402]:
7909 // - X has no direct or indirect virtual base class with a non-trivial
7910 // move assignment operator, and
7911 // - each of X's non-static data members and direct or virtual base classes
7912 // has a type that either has a move assignment operator or is trivially
7913 // copyable.
7914 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
7915 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
7916 ClassDecl->setFailedImplicitMoveAssignment();
7917 return 0;
7918 }
7919
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007920 // Note: The following rules are largely analoguous to the move
7921 // constructor rules.
7922
7923 ImplicitExceptionSpecification Spec(
7924 ComputeDefaultedMoveAssignmentExceptionSpec(ClassDecl));
7925
7926 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7927 QualType RetType = Context.getLValueReferenceType(ArgType);
7928 ArgType = Context.getRValueReferenceType(ArgType);
7929
7930 // An implicitly-declared move assignment operator is an inline public
7931 // member of its class.
7932 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
7933 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7934 SourceLocation ClassLoc = ClassDecl->getLocation();
7935 DeclarationNameInfo NameInfo(Name, ClassLoc);
7936 CXXMethodDecl *MoveAssignment
7937 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7938 Context.getFunctionType(RetType, &ArgType, 1, EPI),
7939 /*TInfo=*/0, /*isStatic=*/false,
7940 /*StorageClassAsWritten=*/SC_None,
7941 /*isInline=*/true,
7942 /*isConstexpr=*/false,
7943 SourceLocation());
7944 MoveAssignment->setAccess(AS_public);
7945 MoveAssignment->setDefaulted();
7946 MoveAssignment->setImplicit();
7947 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
7948
7949 // Add the parameter to the operator.
7950 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
7951 ClassLoc, ClassLoc, /*Id=*/0,
7952 ArgType, /*TInfo=*/0,
7953 SC_None,
7954 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007955 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007956
7957 // Note that we have added this copy-assignment operator.
7958 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
7959
7960 // C++0x [class.copy]p9:
7961 // If the definition of a class X does not explicitly declare a move
7962 // assignment operator, one will be implicitly declared as defaulted if and
7963 // only if:
7964 // [...]
7965 // - the move assignment operator would not be implicitly defined as
7966 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00007967 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007968 // Cache this result so that we don't try to generate this over and over
7969 // on every lookup, leaking memory and wasting time.
7970 ClassDecl->setFailedImplicitMoveAssignment();
7971 return 0;
7972 }
7973
7974 if (Scope *S = getScopeForContext(ClassDecl))
7975 PushOnScopeChains(MoveAssignment, S, false);
7976 ClassDecl->addDecl(MoveAssignment);
7977
7978 AddOverriddenMethods(ClassDecl, MoveAssignment);
7979 return MoveAssignment;
7980}
7981
7982void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
7983 CXXMethodDecl *MoveAssignOperator) {
7984 assert((MoveAssignOperator->isDefaulted() &&
7985 MoveAssignOperator->isOverloadedOperator() &&
7986 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007987 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
7988 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007989 "DefineImplicitMoveAssignment called for wrong function");
7990
7991 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
7992
7993 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
7994 MoveAssignOperator->setInvalidDecl();
7995 return;
7996 }
7997
7998 MoveAssignOperator->setUsed();
7999
8000 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
8001 DiagnosticErrorTrap Trap(Diags);
8002
8003 // C++0x [class.copy]p28:
8004 // The implicitly-defined or move assignment operator for a non-union class
8005 // X performs memberwise move assignment of its subobjects. The direct base
8006 // classes of X are assigned first, in the order of their declaration in the
8007 // base-specifier-list, and then the immediate non-static data members of X
8008 // are assigned, in the order in which they were declared in the class
8009 // definition.
8010
8011 // The statements that form the synthesized function body.
8012 ASTOwningVector<Stmt*> Statements(*this);
8013
8014 // The parameter for the "other" object, which we are move from.
8015 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8016 QualType OtherRefType = Other->getType()->
8017 getAs<RValueReferenceType>()->getPointeeType();
8018 assert(OtherRefType.getQualifiers() == 0 &&
8019 "Bad argument type of defaulted move assignment");
8020
8021 // Our location for everything implicitly-generated.
8022 SourceLocation Loc = MoveAssignOperator->getLocation();
8023
8024 // Construct a reference to the "other" object. We'll be using this
8025 // throughout the generated ASTs.
8026 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8027 assert(OtherRef && "Reference to parameter cannot fail!");
8028 // Cast to rvalue.
8029 OtherRef = CastForMoving(*this, OtherRef);
8030
8031 // Construct the "this" pointer. We'll be using this throughout the generated
8032 // ASTs.
8033 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8034 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008035
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008036 // Assign base classes.
8037 bool Invalid = false;
8038 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8039 E = ClassDecl->bases_end(); Base != E; ++Base) {
8040 // Form the assignment:
8041 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8042 QualType BaseType = Base->getType().getUnqualifiedType();
8043 if (!BaseType->isRecordType()) {
8044 Invalid = true;
8045 continue;
8046 }
8047
8048 CXXCastPath BasePath;
8049 BasePath.push_back(Base);
8050
8051 // Construct the "from" expression, which is an implicit cast to the
8052 // appropriately-qualified base type.
8053 Expr *From = OtherRef;
8054 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008055 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008056
8057 // Dereference "this".
8058 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8059
8060 // Implicitly cast "this" to the appropriately-qualified base type.
8061 To = ImpCastExprToType(To.take(),
8062 Context.getCVRQualifiedType(BaseType,
8063 MoveAssignOperator->getTypeQualifiers()),
8064 CK_UncheckedDerivedToBase,
8065 VK_LValue, &BasePath);
8066
8067 // Build the move.
8068 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8069 To.get(), From,
8070 /*CopyingBaseSubobject=*/true,
8071 /*Copying=*/false);
8072 if (Move.isInvalid()) {
8073 Diag(CurrentLocation, diag::note_member_synthesized_at)
8074 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8075 MoveAssignOperator->setInvalidDecl();
8076 return;
8077 }
8078
8079 // Success! Record the move.
8080 Statements.push_back(Move.takeAs<Expr>());
8081 }
8082
8083 // \brief Reference to the __builtin_memcpy function.
8084 Expr *BuiltinMemCpyRef = 0;
8085 // \brief Reference to the __builtin_objc_memmove_collectable function.
8086 Expr *CollectableMemCpyRef = 0;
8087
8088 // Assign non-static members.
8089 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8090 FieldEnd = ClassDecl->field_end();
8091 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008092 if (Field->isUnnamedBitfield())
8093 continue;
8094
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008095 // Check for members of reference type; we can't move those.
8096 if (Field->getType()->isReferenceType()) {
8097 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8098 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8099 Diag(Field->getLocation(), diag::note_declared_at);
8100 Diag(CurrentLocation, diag::note_member_synthesized_at)
8101 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8102 Invalid = true;
8103 continue;
8104 }
8105
8106 // Check for members of const-qualified, non-class type.
8107 QualType BaseType = Context.getBaseElementType(Field->getType());
8108 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8109 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8110 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8111 Diag(Field->getLocation(), diag::note_declared_at);
8112 Diag(CurrentLocation, diag::note_member_synthesized_at)
8113 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8114 Invalid = true;
8115 continue;
8116 }
8117
8118 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008119 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8120 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008121
8122 QualType FieldType = Field->getType().getNonReferenceType();
8123 if (FieldType->isIncompleteArrayType()) {
8124 assert(ClassDecl->hasFlexibleArrayMember() &&
8125 "Incomplete array type is not valid");
8126 continue;
8127 }
8128
8129 // Build references to the field in the object we're copying from and to.
8130 CXXScopeSpec SS; // Intentionally empty
8131 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8132 LookupMemberName);
David Blaikie262bc182012-04-30 02:36:29 +00008133 MemberLookup.addDecl(&*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008134 MemberLookup.resolveKind();
8135 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8136 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008137 SS, SourceLocation(), 0,
8138 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008139 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8140 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008141 SS, SourceLocation(), 0,
8142 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008143 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8144 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8145
8146 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8147 "Member reference with rvalue base must be rvalue except for reference "
8148 "members, which aren't allowed for move assignment.");
8149
8150 // If the field should be copied with __builtin_memcpy rather than via
8151 // explicit assignments, do so. This optimization only applies for arrays
8152 // of scalars and arrays of class type with trivial move-assignment
8153 // operators.
8154 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8155 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8156 // Compute the size of the memory buffer to be copied.
8157 QualType SizeType = Context.getSizeType();
8158 llvm::APInt Size(Context.getTypeSize(SizeType),
8159 Context.getTypeSizeInChars(BaseType).getQuantity());
8160 for (const ConstantArrayType *Array
8161 = Context.getAsConstantArrayType(FieldType);
8162 Array;
8163 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8164 llvm::APInt ArraySize
8165 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8166 Size *= ArraySize;
8167 }
8168
Douglas Gregor45d3d712011-09-01 02:09:07 +00008169 // Take the address of the field references for "from" and "to". We
8170 // directly construct UnaryOperators here because semantic analysis
8171 // does not permit us to take the address of an xvalue.
8172 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8173 Context.getPointerType(From.get()->getType()),
8174 VK_RValue, OK_Ordinary, Loc);
8175 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8176 Context.getPointerType(To.get()->getType()),
8177 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008178
8179 bool NeedsCollectableMemCpy =
8180 (BaseType->isRecordType() &&
8181 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8182
8183 if (NeedsCollectableMemCpy) {
8184 if (!CollectableMemCpyRef) {
8185 // Create a reference to the __builtin_objc_memmove_collectable function.
8186 LookupResult R(*this,
8187 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8188 Loc, LookupOrdinaryName);
8189 LookupName(R, TUScope, true);
8190
8191 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8192 if (!CollectableMemCpy) {
8193 // Something went horribly wrong earlier, and we will have
8194 // complained about it.
8195 Invalid = true;
8196 continue;
8197 }
8198
8199 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
8200 CollectableMemCpy->getType(),
8201 VK_LValue, Loc, 0).take();
8202 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8203 }
8204 }
8205 // Create a reference to the __builtin_memcpy builtin function.
8206 else if (!BuiltinMemCpyRef) {
8207 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8208 LookupOrdinaryName);
8209 LookupName(R, TUScope, true);
8210
8211 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8212 if (!BuiltinMemCpy) {
8213 // Something went horribly wrong earlier, and we will have complained
8214 // about it.
8215 Invalid = true;
8216 continue;
8217 }
8218
8219 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
8220 BuiltinMemCpy->getType(),
8221 VK_LValue, Loc, 0).take();
8222 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8223 }
8224
8225 ASTOwningVector<Expr*> CallArgs(*this);
8226 CallArgs.push_back(To.takeAs<Expr>());
8227 CallArgs.push_back(From.takeAs<Expr>());
8228 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8229 ExprResult Call = ExprError();
8230 if (NeedsCollectableMemCpy)
8231 Call = ActOnCallExpr(/*Scope=*/0,
8232 CollectableMemCpyRef,
8233 Loc, move_arg(CallArgs),
8234 Loc);
8235 else
8236 Call = ActOnCallExpr(/*Scope=*/0,
8237 BuiltinMemCpyRef,
8238 Loc, move_arg(CallArgs),
8239 Loc);
8240
8241 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8242 Statements.push_back(Call.takeAs<Expr>());
8243 continue;
8244 }
8245
8246 // Build the move of this field.
8247 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8248 To.get(), From.get(),
8249 /*CopyingBaseSubobject=*/false,
8250 /*Copying=*/false);
8251 if (Move.isInvalid()) {
8252 Diag(CurrentLocation, diag::note_member_synthesized_at)
8253 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8254 MoveAssignOperator->setInvalidDecl();
8255 return;
8256 }
8257
8258 // Success! Record the copy.
8259 Statements.push_back(Move.takeAs<Stmt>());
8260 }
8261
8262 if (!Invalid) {
8263 // Add a "return *this;"
8264 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8265
8266 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8267 if (Return.isInvalid())
8268 Invalid = true;
8269 else {
8270 Statements.push_back(Return.takeAs<Stmt>());
8271
8272 if (Trap.hasErrorOccurred()) {
8273 Diag(CurrentLocation, diag::note_member_synthesized_at)
8274 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8275 Invalid = true;
8276 }
8277 }
8278 }
8279
8280 if (Invalid) {
8281 MoveAssignOperator->setInvalidDecl();
8282 return;
8283 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008284
8285 StmtResult Body;
8286 {
8287 CompoundScopeRAII CompoundScope(*this);
8288 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
8289 /*isStmtExpr=*/false);
8290 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8291 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008292 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8293
8294 if (ASTMutationListener *L = getASTMutationListener()) {
8295 L->CompletedImplicitDefinition(MoveAssignOperator);
8296 }
8297}
8298
Sean Hunt49634cf2011-05-13 06:10:58 +00008299std::pair<Sema::ImplicitExceptionSpecification, bool>
8300Sema::ComputeDefaultedCopyCtorExceptionSpecAndConst(CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008301 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00008302 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008303
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008304 // C++ [class.copy]p5:
8305 // The implicitly-declared copy constructor for a class X will
8306 // have the form
8307 //
8308 // X::X(const X&)
8309 //
8310 // if
Sean Huntc530d172011-06-10 04:44:37 +00008311 // FIXME: It ought to be possible to store this on the record.
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008312 bool HasConstCopyConstructor = true;
8313
8314 // -- each direct or virtual base class B of X has a copy
8315 // constructor whose first parameter is of type const B& or
8316 // const volatile B&, and
8317 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8318 BaseEnd = ClassDecl->bases_end();
8319 HasConstCopyConstructor && Base != BaseEnd;
8320 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008321 // Virtual bases are handled below.
8322 if (Base->isVirtual())
8323 continue;
8324
Douglas Gregor22584312010-07-02 23:41:54 +00008325 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008326 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008327 HasConstCopyConstructor &=
8328 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor598a8542010-07-01 18:27:03 +00008329 }
8330
8331 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8332 BaseEnd = ClassDecl->vbases_end();
8333 HasConstCopyConstructor && Base != BaseEnd;
8334 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008335 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008336 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008337 HasConstCopyConstructor &=
8338 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008339 }
8340
8341 // -- for all the nonstatic data members of X that are of a
8342 // class type M (or array thereof), each such class type
8343 // has a copy constructor whose first parameter is of type
8344 // const M& or const volatile M&.
8345 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8346 FieldEnd = ClassDecl->field_end();
8347 HasConstCopyConstructor && Field != FieldEnd;
8348 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008349 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008350 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00008351 HasConstCopyConstructor &=
8352 (bool)LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008353 }
8354 }
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008355 // Otherwise, the implicitly declared copy constructor will have
8356 // the form
8357 //
8358 // X::X(X&)
Sean Hunt49634cf2011-05-13 06:10:58 +00008359
Douglas Gregor0d405db2010-07-01 20:59:04 +00008360 // C++ [except.spec]p14:
8361 // An implicitly declared special member function (Clause 12) shall have an
8362 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008363 ImplicitExceptionSpecification ExceptSpec(*this);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008364 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
8365 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8366 BaseEnd = ClassDecl->bases_end();
8367 Base != BaseEnd;
8368 ++Base) {
8369 // Virtual bases are handled below.
8370 if (Base->isVirtual())
8371 continue;
8372
Douglas Gregor22584312010-07-02 23:41:54 +00008373 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008374 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008375 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008376 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008377 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008378 }
8379 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8380 BaseEnd = ClassDecl->vbases_end();
8381 Base != BaseEnd;
8382 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008383 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008384 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008385 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008386 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008387 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008388 }
8389 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8390 FieldEnd = ClassDecl->field_end();
8391 Field != FieldEnd;
8392 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008393 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008394 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8395 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008396 LookupCopyingConstructor(FieldClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008397 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008398 }
8399 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008400
Sean Hunt49634cf2011-05-13 06:10:58 +00008401 return std::make_pair(ExceptSpec, HasConstCopyConstructor);
8402}
8403
8404CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8405 CXXRecordDecl *ClassDecl) {
8406 // C++ [class.copy]p4:
8407 // If the class definition does not explicitly declare a copy
8408 // constructor, one is declared implicitly.
8409
Richard Smithe6975e92012-04-17 00:58:00 +00008410 ImplicitExceptionSpecification Spec(*this);
Sean Hunt49634cf2011-05-13 06:10:58 +00008411 bool Const;
8412 llvm::tie(Spec, Const) =
8413 ComputeDefaultedCopyCtorExceptionSpecAndConst(ClassDecl);
8414
8415 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8416 QualType ArgType = ClassType;
8417 if (Const)
8418 ArgType = ArgType.withConst();
8419 ArgType = Context.getLValueReferenceType(ArgType);
8420
8421 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8422
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008423 DeclarationName Name
8424 = Context.DeclarationNames.getCXXConstructorName(
8425 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008426 SourceLocation ClassLoc = ClassDecl->getLocation();
8427 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008428
8429 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008430 // member of its class.
8431 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
8432 Context, ClassDecl, ClassLoc, NameInfo,
8433 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8434 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8435 /*isConstexpr=*/ClassDecl->defaultedCopyConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008436 getLangOpts().CPlusPlus0x);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008437 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008438 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008439 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008440
Douglas Gregor22584312010-07-02 23:41:54 +00008441 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008442 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8443
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008444 // Add the parameter to the constructor.
8445 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008446 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008447 /*IdentifierInfo=*/0,
8448 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008449 SC_None,
8450 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008451 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008452
Douglas Gregor23c94db2010-07-02 17:43:08 +00008453 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008454 PushOnScopeChains(CopyConstructor, S, false);
8455 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008456
Nico Weberafcc96a2012-01-23 03:19:29 +00008457 // C++11 [class.copy]p8:
8458 // ... If the class definition does not explicitly declare a copy
8459 // constructor, there is no user-declared move constructor, and there is no
8460 // user-declared move assignment operator, a copy constructor is implicitly
8461 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008462 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008463 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008464
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008465 return CopyConstructor;
8466}
8467
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008468void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008469 CXXConstructorDecl *CopyConstructor) {
8470 assert((CopyConstructor->isDefaulted() &&
8471 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008472 !CopyConstructor->doesThisDeclarationHaveABody() &&
8473 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008474 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008475
Anders Carlsson63010a72010-04-23 16:24:12 +00008476 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008477 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008478
Douglas Gregor39957dc2010-05-01 15:04:51 +00008479 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008480 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008481
Sean Huntcbb67482011-01-08 20:30:50 +00008482 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008483 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008484 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008485 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008486 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008487 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008488 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008489 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8490 CopyConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008491 MultiStmtArg(*this, 0, 0),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008492 /*isStmtExpr=*/false)
8493 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008494 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008495 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008496
8497 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008498 if (ASTMutationListener *L = getASTMutationListener()) {
8499 L->CompletedImplicitDefinition(CopyConstructor);
8500 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008501}
8502
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008503Sema::ImplicitExceptionSpecification
8504Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
8505 // C++ [except.spec]p14:
8506 // An implicitly declared special member function (Clause 12) shall have an
8507 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008508 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008509 if (ClassDecl->isInvalidDecl())
8510 return ExceptSpec;
8511
8512 // Direct base-class constructors.
8513 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8514 BEnd = ClassDecl->bases_end();
8515 B != BEnd; ++B) {
8516 if (B->isVirtual()) // Handled below.
8517 continue;
8518
8519 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8520 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8521 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8522 // If this is a deleted function, add it anyway. This might be conformant
8523 // with the standard. This might not. I'm not sure. It might not matter.
8524 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008525 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008526 }
8527 }
8528
8529 // Virtual base-class constructors.
8530 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8531 BEnd = ClassDecl->vbases_end();
8532 B != BEnd; ++B) {
8533 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8534 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8535 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8536 // If this is a deleted function, add it anyway. This might be conformant
8537 // with the standard. This might not. I'm not sure. It might not matter.
8538 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008539 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008540 }
8541 }
8542
8543 // Field constructors.
8544 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8545 FEnd = ClassDecl->field_end();
8546 F != FEnd; ++F) {
Douglas Gregorf4853882011-11-28 20:03:15 +00008547 if (const RecordType *RecordTy
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008548 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
8549 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8550 CXXConstructorDecl *Constructor = LookupMovingConstructor(FieldRecDecl);
8551 // If this is a deleted function, add it anyway. This might be conformant
8552 // with the standard. This might not. I'm not sure. It might not matter.
8553 // In particular, the problem is that this function never gets called. It
8554 // might just be ill-formed because this function attempts to refer to
8555 // a deleted function here.
8556 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008557 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008558 }
8559 }
8560
8561 return ExceptSpec;
8562}
8563
8564CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8565 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008566 // C++11 [class.copy]p9:
8567 // If the definition of a class X does not explicitly declare a move
8568 // constructor, one will be implicitly declared as defaulted if and only if:
8569 //
8570 // - [first 4 bullets]
8571 assert(ClassDecl->needsImplicitMoveConstructor());
8572
8573 // [Checked after we build the declaration]
8574 // - the move assignment operator would not be implicitly defined as
8575 // deleted,
8576
8577 // [DR1402]:
8578 // - each of X's non-static data members and direct or virtual base classes
8579 // has a type that either has a move constructor or is trivially copyable.
8580 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8581 ClassDecl->setFailedImplicitMoveConstructor();
8582 return 0;
8583 }
8584
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008585 ImplicitExceptionSpecification Spec(
8586 ComputeDefaultedMoveCtorExceptionSpec(ClassDecl));
8587
8588 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8589 QualType ArgType = Context.getRValueReferenceType(ClassType);
8590
8591 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8592
8593 DeclarationName Name
8594 = Context.DeclarationNames.getCXXConstructorName(
8595 Context.getCanonicalType(ClassType));
8596 SourceLocation ClassLoc = ClassDecl->getLocation();
8597 DeclarationNameInfo NameInfo(Name, ClassLoc);
8598
8599 // C++0x [class.copy]p11:
8600 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008601 // member of its class.
8602 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
8603 Context, ClassDecl, ClassLoc, NameInfo,
8604 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8605 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8606 /*isConstexpr=*/ClassDecl->defaultedMoveConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008607 getLangOpts().CPlusPlus0x);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008608 MoveConstructor->setAccess(AS_public);
8609 MoveConstructor->setDefaulted();
8610 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008611
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008612 // Add the parameter to the constructor.
8613 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8614 ClassLoc, ClassLoc,
8615 /*IdentifierInfo=*/0,
8616 ArgType, /*TInfo=*/0,
8617 SC_None,
8618 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008619 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008620
8621 // C++0x [class.copy]p9:
8622 // If the definition of a class X does not explicitly declare a move
8623 // constructor, one will be implicitly declared as defaulted if and only if:
8624 // [...]
8625 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008626 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008627 // Cache this result so that we don't try to generate this over and over
8628 // on every lookup, leaking memory and wasting time.
8629 ClassDecl->setFailedImplicitMoveConstructor();
8630 return 0;
8631 }
8632
8633 // Note that we have declared this constructor.
8634 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8635
8636 if (Scope *S = getScopeForContext(ClassDecl))
8637 PushOnScopeChains(MoveConstructor, S, false);
8638 ClassDecl->addDecl(MoveConstructor);
8639
8640 return MoveConstructor;
8641}
8642
8643void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8644 CXXConstructorDecl *MoveConstructor) {
8645 assert((MoveConstructor->isDefaulted() &&
8646 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008647 !MoveConstructor->doesThisDeclarationHaveABody() &&
8648 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008649 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8650
8651 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8652 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8653
8654 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8655 DiagnosticErrorTrap Trap(Diags);
8656
8657 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8658 Trap.hasErrorOccurred()) {
8659 Diag(CurrentLocation, diag::note_member_synthesized_at)
8660 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8661 MoveConstructor->setInvalidDecl();
8662 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008663 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008664 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8665 MoveConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008666 MultiStmtArg(*this, 0, 0),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008667 /*isStmtExpr=*/false)
8668 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008669 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008670 }
8671
8672 MoveConstructor->setUsed();
8673
8674 if (ASTMutationListener *L = getASTMutationListener()) {
8675 L->CompletedImplicitDefinition(MoveConstructor);
8676 }
8677}
8678
Douglas Gregore4e68d42012-02-15 19:33:52 +00008679bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8680 return FD->isDeleted() &&
8681 (FD->isDefaulted() || FD->isImplicit()) &&
8682 isa<CXXMethodDecl>(FD);
8683}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008684
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008685/// \brief Mark the call operator of the given lambda closure type as "used".
8686static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8687 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008688 = cast<CXXMethodDecl>(
8689 *Lambda->lookup(
8690 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008691 CallOperator->setReferenced();
8692 CallOperator->setUsed();
8693}
8694
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008695void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8696 SourceLocation CurrentLocation,
8697 CXXConversionDecl *Conv)
8698{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008699 CXXRecordDecl *Lambda = Conv->getParent();
8700
8701 // Make sure that the lambda call operator is marked used.
8702 markLambdaCallOperatorUsed(*this, Lambda);
8703
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008704 Conv->setUsed();
8705
8706 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8707 DiagnosticErrorTrap Trap(Diags);
8708
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008709 // Return the address of the __invoke function.
8710 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8711 CXXMethodDecl *Invoke
8712 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8713 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8714 VK_LValue, Conv->getLocation()).take();
8715 assert(FunctionRef && "Can't refer to __invoke function?");
8716 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8717 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8718 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008719 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008720
8721 // Fill in the __invoke function with a dummy implementation. IR generation
8722 // will fill in the actual details.
8723 Invoke->setUsed();
8724 Invoke->setReferenced();
8725 Invoke->setBody(new (Context) CompoundStmt(Context, 0, 0, Conv->getLocation(),
8726 Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008727
8728 if (ASTMutationListener *L = getASTMutationListener()) {
8729 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008730 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008731 }
8732}
8733
8734void Sema::DefineImplicitLambdaToBlockPointerConversion(
8735 SourceLocation CurrentLocation,
8736 CXXConversionDecl *Conv)
8737{
8738 Conv->setUsed();
8739
8740 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8741 DiagnosticErrorTrap Trap(Diags);
8742
Douglas Gregorac1303e2012-02-22 05:02:47 +00008743 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008744 Expr *This = ActOnCXXThis(CurrentLocation).take();
8745 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008746
Eli Friedman23f02672012-03-01 04:01:32 +00008747 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8748 Conv->getLocation(),
8749 Conv, DerefThis);
8750
8751 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8752 // behavior. Note that only the general conversion function does this
8753 // (since it's unusable otherwise); in the case where we inline the
8754 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008755 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008756 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8757 CK_CopyAndAutoreleaseBlockObject,
8758 BuildBlock.get(), 0, VK_RValue);
8759
8760 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008761 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008762 Conv->setInvalidDecl();
8763 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008764 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008765
Douglas Gregorac1303e2012-02-22 05:02:47 +00008766 // Create the return statement that returns the block from the conversion
8767 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00008768 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00008769 if (Return.isInvalid()) {
8770 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
8771 Conv->setInvalidDecl();
8772 return;
8773 }
8774
8775 // Set the body of the conversion function.
8776 Stmt *ReturnS = Return.take();
8777 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
8778 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008779 Conv->getLocation()));
8780
Douglas Gregorac1303e2012-02-22 05:02:47 +00008781 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008782 if (ASTMutationListener *L = getASTMutationListener()) {
8783 L->CompletedImplicitDefinition(Conv);
8784 }
8785}
8786
Douglas Gregorf52757d2012-03-10 06:53:13 +00008787/// \brief Determine whether the given list arguments contains exactly one
8788/// "real" (non-default) argument.
8789static bool hasOneRealArgument(MultiExprArg Args) {
8790 switch (Args.size()) {
8791 case 0:
8792 return false;
8793
8794 default:
8795 if (!Args.get()[1]->isDefaultArgument())
8796 return false;
8797
8798 // fall through
8799 case 1:
8800 return !Args.get()[0]->isDefaultArgument();
8801 }
8802
8803 return false;
8804}
8805
John McCall60d7b3a2010-08-24 06:29:42 +00008806ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008807Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00008808 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00008809 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008810 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008811 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008812 unsigned ConstructKind,
8813 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008814 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00008815
Douglas Gregor2f599792010-04-02 18:24:57 +00008816 // C++0x [class.copy]p34:
8817 // When certain criteria are met, an implementation is allowed to
8818 // omit the copy/move construction of a class object, even if the
8819 // copy/move constructor and/or destructor for the object have
8820 // side effects. [...]
8821 // - when a temporary class object that has not been bound to a
8822 // reference (12.2) would be copied/moved to a class object
8823 // with the same cv-unqualified type, the copy/move operation
8824 // can be omitted by constructing the temporary object
8825 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00008826 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00008827 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Douglas Gregor2f599792010-04-02 18:24:57 +00008828 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00008829 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008830 }
Mike Stump1eb44332009-09-09 15:08:12 +00008831
8832 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008833 Elidable, move(ExprArgs), HadMultipleCandidates,
8834 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008835}
8836
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008837/// BuildCXXConstructExpr - Creates a complete call to a constructor,
8838/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00008839ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008840Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
8841 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00008842 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008843 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008844 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008845 unsigned ConstructKind,
8846 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00008847 unsigned NumExprs = ExprArgs.size();
8848 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00008849
Nick Lewycky909a70d2011-03-25 01:44:32 +00008850 for (specific_attr_iterator<NonNullAttr>
8851 i = Constructor->specific_attr_begin<NonNullAttr>(),
8852 e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
8853 const NonNullAttr *NonNull = *i;
8854 CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
8855 }
8856
Eli Friedman5f2987c2012-02-02 03:46:19 +00008857 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00008858 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008859 Constructor, Elidable, Exprs, NumExprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008860 HadMultipleCandidates, /*FIXME*/false,
8861 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008862 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
8863 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008864}
8865
Mike Stump1eb44332009-09-09 15:08:12 +00008866bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008867 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008868 MultiExprArg Exprs,
8869 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00008870 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00008871 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00008872 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008873 move(Exprs), HadMultipleCandidates, false,
8874 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00008875 if (TempResult.isInvalid())
8876 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00008877
Anders Carlssonda3f4e22009-08-25 05:12:04 +00008878 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00008879 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00008880 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00008881 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00008882 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00008883
Anders Carlssonfe2de492009-08-25 05:18:00 +00008884 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00008885}
8886
John McCall68c6c9a2010-02-02 09:10:11 +00008887void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008888 if (VD->isInvalidDecl()) return;
8889
John McCall68c6c9a2010-02-02 09:10:11 +00008890 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008891 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00008892 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008893 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00008894
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008895 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00008896 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008897 CheckDestructorAccess(VD->getLocation(), Destructor,
8898 PDiag(diag::err_access_dtor_var)
8899 << VD->getDeclName()
8900 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00008901 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00008902
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008903 if (!VD->hasGlobalStorage()) return;
8904
8905 // Emit warning for non-trivial dtor in global scope (a real global,
8906 // class-static, function-static).
8907 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
8908
8909 // TODO: this should be re-enabled for static locals by !CXAAtExit
8910 if (!VD->isStaticLocal())
8911 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008912}
8913
Douglas Gregor39da0b82009-09-09 23:08:42 +00008914/// \brief Given a constructor and the set of arguments provided for the
8915/// constructor, convert the arguments and add any required default arguments
8916/// to form a proper call to this constructor.
8917///
8918/// \returns true if an error occurred, false otherwise.
8919bool
8920Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
8921 MultiExprArg ArgsPtr,
8922 SourceLocation Loc,
Douglas Gregored878af2012-02-24 23:56:31 +00008923 ASTOwningVector<Expr*> &ConvertedArgs,
8924 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00008925 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
8926 unsigned NumArgs = ArgsPtr.size();
8927 Expr **Args = (Expr **)ArgsPtr.get();
8928
8929 const FunctionProtoType *Proto
8930 = Constructor->getType()->getAs<FunctionProtoType>();
8931 assert(Proto && "Constructor without a prototype?");
8932 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00008933
8934 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008935 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00008936 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008937 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00008938 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008939
8940 VariadicCallType CallType =
8941 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00008942 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008943 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
8944 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00008945 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00008946 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00008947
8948 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
8949
8950 // FIXME: Missing call to CheckFunctionCall or equivalent
8951
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008952 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00008953}
8954
Anders Carlsson20d45d22009-12-12 00:32:00 +00008955static inline bool
8956CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
8957 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00008958 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00008959 if (isa<NamespaceDecl>(DC)) {
8960 return SemaRef.Diag(FnDecl->getLocation(),
8961 diag::err_operator_new_delete_declared_in_namespace)
8962 << FnDecl->getDeclName();
8963 }
8964
8965 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00008966 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00008967 return SemaRef.Diag(FnDecl->getLocation(),
8968 diag::err_operator_new_delete_declared_static)
8969 << FnDecl->getDeclName();
8970 }
8971
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00008972 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00008973}
8974
Anders Carlsson156c78e2009-12-13 17:53:43 +00008975static inline bool
8976CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
8977 CanQualType ExpectedResultType,
8978 CanQualType ExpectedFirstParamType,
8979 unsigned DependentParamTypeDiag,
8980 unsigned InvalidParamTypeDiag) {
8981 QualType ResultType =
8982 FnDecl->getType()->getAs<FunctionType>()->getResultType();
8983
8984 // Check that the result type is not dependent.
8985 if (ResultType->isDependentType())
8986 return SemaRef.Diag(FnDecl->getLocation(),
8987 diag::err_operator_new_delete_dependent_result_type)
8988 << FnDecl->getDeclName() << ExpectedResultType;
8989
8990 // Check that the result type is what we expect.
8991 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
8992 return SemaRef.Diag(FnDecl->getLocation(),
8993 diag::err_operator_new_delete_invalid_result_type)
8994 << FnDecl->getDeclName() << ExpectedResultType;
8995
8996 // A function template must have at least 2 parameters.
8997 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
8998 return SemaRef.Diag(FnDecl->getLocation(),
8999 diag::err_operator_new_delete_template_too_few_parameters)
9000 << FnDecl->getDeclName();
9001
9002 // The function decl must have at least 1 parameter.
9003 if (FnDecl->getNumParams() == 0)
9004 return SemaRef.Diag(FnDecl->getLocation(),
9005 diag::err_operator_new_delete_too_few_parameters)
9006 << FnDecl->getDeclName();
9007
9008 // Check the the first parameter type is not dependent.
9009 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9010 if (FirstParamType->isDependentType())
9011 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9012 << FnDecl->getDeclName() << ExpectedFirstParamType;
9013
9014 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009015 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009016 ExpectedFirstParamType)
9017 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9018 << FnDecl->getDeclName() << ExpectedFirstParamType;
9019
9020 return false;
9021}
9022
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009023static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009024CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009025 // C++ [basic.stc.dynamic.allocation]p1:
9026 // A program is ill-formed if an allocation function is declared in a
9027 // namespace scope other than global scope or declared static in global
9028 // scope.
9029 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9030 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009031
9032 CanQualType SizeTy =
9033 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9034
9035 // C++ [basic.stc.dynamic.allocation]p1:
9036 // The return type shall be void*. The first parameter shall have type
9037 // std::size_t.
9038 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9039 SizeTy,
9040 diag::err_operator_new_dependent_param_type,
9041 diag::err_operator_new_param_type))
9042 return true;
9043
9044 // C++ [basic.stc.dynamic.allocation]p1:
9045 // The first parameter shall not have an associated default argument.
9046 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009047 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009048 diag::err_operator_new_default_arg)
9049 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9050
9051 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009052}
9053
9054static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009055CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9056 // C++ [basic.stc.dynamic.deallocation]p1:
9057 // A program is ill-formed if deallocation functions are declared in a
9058 // namespace scope other than global scope or declared static in global
9059 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009060 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9061 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009062
9063 // C++ [basic.stc.dynamic.deallocation]p2:
9064 // Each deallocation function shall return void and its first parameter
9065 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009066 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9067 SemaRef.Context.VoidPtrTy,
9068 diag::err_operator_delete_dependent_param_type,
9069 diag::err_operator_delete_param_type))
9070 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009071
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009072 return false;
9073}
9074
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009075/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9076/// of this overloaded operator is well-formed. If so, returns false;
9077/// otherwise, emits appropriate diagnostics and returns true.
9078bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009079 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009080 "Expected an overloaded operator declaration");
9081
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009082 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9083
Mike Stump1eb44332009-09-09 15:08:12 +00009084 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009085 // The allocation and deallocation functions, operator new,
9086 // operator new[], operator delete and operator delete[], are
9087 // described completely in 3.7.3. The attributes and restrictions
9088 // found in the rest of this subclause do not apply to them unless
9089 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009090 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009091 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009092
Anders Carlssona3ccda52009-12-12 00:26:23 +00009093 if (Op == OO_New || Op == OO_Array_New)
9094 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009095
9096 // C++ [over.oper]p6:
9097 // An operator function shall either be a non-static member
9098 // function or be a non-member function and have at least one
9099 // parameter whose type is a class, a reference to a class, an
9100 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009101 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9102 if (MethodDecl->isStatic())
9103 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009104 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009105 } else {
9106 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009107 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9108 ParamEnd = FnDecl->param_end();
9109 Param != ParamEnd; ++Param) {
9110 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009111 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9112 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009113 ClassOrEnumParam = true;
9114 break;
9115 }
9116 }
9117
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009118 if (!ClassOrEnumParam)
9119 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009120 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009121 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009122 }
9123
9124 // C++ [over.oper]p8:
9125 // An operator function cannot have default arguments (8.3.6),
9126 // except where explicitly stated below.
9127 //
Mike Stump1eb44332009-09-09 15:08:12 +00009128 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009129 // (C++ [over.call]p1).
9130 if (Op != OO_Call) {
9131 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9132 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009133 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009134 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009135 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009136 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009137 }
9138 }
9139
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009140 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9141 { false, false, false }
9142#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9143 , { Unary, Binary, MemberOnly }
9144#include "clang/Basic/OperatorKinds.def"
9145 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009146
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009147 bool CanBeUnaryOperator = OperatorUses[Op][0];
9148 bool CanBeBinaryOperator = OperatorUses[Op][1];
9149 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009150
9151 // C++ [over.oper]p8:
9152 // [...] Operator functions cannot have more or fewer parameters
9153 // than the number required for the corresponding operator, as
9154 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009155 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009156 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009157 if (Op != OO_Call &&
9158 ((NumParams == 1 && !CanBeUnaryOperator) ||
9159 (NumParams == 2 && !CanBeBinaryOperator) ||
9160 (NumParams < 1) || (NumParams > 2))) {
9161 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009162 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009163 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009164 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009165 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009166 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009167 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009168 assert(CanBeBinaryOperator &&
9169 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009170 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009171 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009172
Chris Lattner416e46f2008-11-21 07:57:12 +00009173 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009174 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009175 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009176
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009177 // Overloaded operators other than operator() cannot be variadic.
9178 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009179 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009180 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009181 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009182 }
9183
9184 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009185 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9186 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009187 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009188 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009189 }
9190
9191 // C++ [over.inc]p1:
9192 // The user-defined function called operator++ implements the
9193 // prefix and postfix ++ operator. If this function is a member
9194 // function with no parameters, or a non-member function with one
9195 // parameter of class or enumeration type, it defines the prefix
9196 // increment operator ++ for objects of that type. If the function
9197 // is a member function with one parameter (which shall be of type
9198 // int) or a non-member function with two parameters (the second
9199 // of which shall be of type int), it defines the postfix
9200 // increment operator ++ for objects of that type.
9201 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9202 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9203 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009204 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009205 ParamIsInt = BT->getKind() == BuiltinType::Int;
9206
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009207 if (!ParamIsInt)
9208 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009209 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009210 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009211 }
9212
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009213 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009214}
Chris Lattner5a003a42008-12-17 07:09:26 +00009215
Sean Hunta6c058d2010-01-13 09:01:02 +00009216/// CheckLiteralOperatorDeclaration - Check whether the declaration
9217/// of this literal operator function is well-formed. If so, returns
9218/// false; otherwise, emits appropriate diagnostics and returns true.
9219bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009220 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009221 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9222 << FnDecl->getDeclName();
9223 return true;
9224 }
9225
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009226 if (FnDecl->isExternC()) {
9227 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9228 return true;
9229 }
9230
Sean Hunta6c058d2010-01-13 09:01:02 +00009231 bool Valid = false;
9232
Richard Smith36f5cfe2012-03-09 08:00:36 +00009233 // This might be the definition of a literal operator template.
9234 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9235 // This might be a specialization of a literal operator template.
9236 if (!TpDecl)
9237 TpDecl = FnDecl->getPrimaryTemplate();
9238
Sean Hunt216c2782010-04-07 23:11:06 +00009239 // template <char...> type operator "" name() is the only valid template
9240 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009241 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009242 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009243 // Must have only one template parameter
9244 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9245 if (Params->size() == 1) {
9246 NonTypeTemplateParmDecl *PmDecl =
9247 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009248
Sean Hunt216c2782010-04-07 23:11:06 +00009249 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009250 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9251 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9252 Valid = true;
9253 }
9254 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009255 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009256 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009257 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9258
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009259 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009260
Sean Hunt30019c02010-04-07 22:57:35 +00009261 // unsigned long long int, long double, and any character type are allowed
9262 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009263 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9264 Context.hasSameType(T, Context.LongDoubleTy) ||
9265 Context.hasSameType(T, Context.CharTy) ||
9266 Context.hasSameType(T, Context.WCharTy) ||
9267 Context.hasSameType(T, Context.Char16Ty) ||
9268 Context.hasSameType(T, Context.Char32Ty)) {
9269 if (++Param == FnDecl->param_end())
9270 Valid = true;
9271 goto FinishedParams;
9272 }
9273
Sean Hunt30019c02010-04-07 22:57:35 +00009274 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009275 const PointerType *PT = T->getAs<PointerType>();
9276 if (!PT)
9277 goto FinishedParams;
9278 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009279 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009280 goto FinishedParams;
9281 T = T.getUnqualifiedType();
9282
9283 // Move on to the second parameter;
9284 ++Param;
9285
9286 // If there is no second parameter, the first must be a const char *
9287 if (Param == FnDecl->param_end()) {
9288 if (Context.hasSameType(T, Context.CharTy))
9289 Valid = true;
9290 goto FinishedParams;
9291 }
9292
9293 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9294 // are allowed as the first parameter to a two-parameter function
9295 if (!(Context.hasSameType(T, Context.CharTy) ||
9296 Context.hasSameType(T, Context.WCharTy) ||
9297 Context.hasSameType(T, Context.Char16Ty) ||
9298 Context.hasSameType(T, Context.Char32Ty)))
9299 goto FinishedParams;
9300
9301 // The second and final parameter must be an std::size_t
9302 T = (*Param)->getType().getUnqualifiedType();
9303 if (Context.hasSameType(T, Context.getSizeType()) &&
9304 ++Param == FnDecl->param_end())
9305 Valid = true;
9306 }
9307
9308 // FIXME: This diagnostic is absolutely terrible.
9309FinishedParams:
9310 if (!Valid) {
9311 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9312 << FnDecl->getDeclName();
9313 return true;
9314 }
9315
Richard Smitha9e88b22012-03-09 08:16:22 +00009316 // A parameter-declaration-clause containing a default argument is not
9317 // equivalent to any of the permitted forms.
9318 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9319 ParamEnd = FnDecl->param_end();
9320 Param != ParamEnd; ++Param) {
9321 if ((*Param)->hasDefaultArg()) {
9322 Diag((*Param)->getDefaultArgRange().getBegin(),
9323 diag::err_literal_operator_default_argument)
9324 << (*Param)->getDefaultArgRange();
9325 break;
9326 }
9327 }
9328
Richard Smith2fb4ae32012-03-08 02:39:21 +00009329 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009330 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9331 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009332 // C++11 [usrlit.suffix]p1:
9333 // Literal suffix identifiers that do not start with an underscore
9334 // are reserved for future standardization.
9335 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009336 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009337
Sean Hunta6c058d2010-01-13 09:01:02 +00009338 return false;
9339}
9340
Douglas Gregor074149e2009-01-05 19:45:36 +00009341/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9342/// linkage specification, including the language and (if present)
9343/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9344/// the location of the language string literal, which is provided
9345/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9346/// the '{' brace. Otherwise, this linkage specification does not
9347/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009348Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9349 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009350 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009351 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009352 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009353 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009354 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009355 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009356 Language = LinkageSpecDecl::lang_cxx;
9357 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009358 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009359 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009360 }
Mike Stump1eb44332009-09-09 15:08:12 +00009361
Chris Lattnercc98eac2008-12-17 07:13:27 +00009362 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009363
Douglas Gregor074149e2009-01-05 19:45:36 +00009364 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009365 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009366 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009367 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009368 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009369}
9370
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009371/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009372/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9373/// valid, it's the position of the closing '}' brace in a linkage
9374/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009375Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009376 Decl *LinkageSpec,
9377 SourceLocation RBraceLoc) {
9378 if (LinkageSpec) {
9379 if (RBraceLoc.isValid()) {
9380 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9381 LSDecl->setRBraceLoc(RBraceLoc);
9382 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009383 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009384 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009385 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009386}
9387
Douglas Gregord308e622009-05-18 20:51:54 +00009388/// \brief Perform semantic analysis for the variable declaration that
9389/// occurs within a C++ catch clause, returning the newly-created
9390/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009391VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009392 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009393 SourceLocation StartLoc,
9394 SourceLocation Loc,
9395 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009396 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009397 QualType ExDeclType = TInfo->getType();
9398
Sebastian Redl4b07b292008-12-22 19:15:10 +00009399 // Arrays and functions decay.
9400 if (ExDeclType->isArrayType())
9401 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9402 else if (ExDeclType->isFunctionType())
9403 ExDeclType = Context.getPointerType(ExDeclType);
9404
9405 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9406 // The exception-declaration shall not denote a pointer or reference to an
9407 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009408 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009409 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009410 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009411 Invalid = true;
9412 }
Douglas Gregord308e622009-05-18 20:51:54 +00009413
Sebastian Redl4b07b292008-12-22 19:15:10 +00009414 QualType BaseType = ExDeclType;
9415 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009416 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009417 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009418 BaseType = Ptr->getPointeeType();
9419 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009420 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009421 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009422 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009423 BaseType = Ref->getPointeeType();
9424 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009425 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009426 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009427 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009428 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009429 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009430
Mike Stump1eb44332009-09-09 15:08:12 +00009431 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009432 RequireNonAbstractType(Loc, ExDeclType,
9433 diag::err_abstract_type_in_decl,
9434 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009435 Invalid = true;
9436
John McCall5a180392010-07-24 00:37:23 +00009437 // Only the non-fragile NeXT runtime currently supports C++ catches
9438 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009439 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009440 QualType T = ExDeclType;
9441 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9442 T = RT->getPointeeType();
9443
9444 if (T->isObjCObjectType()) {
9445 Diag(Loc, diag::err_objc_object_catch);
9446 Invalid = true;
9447 } else if (T->isObjCObjectPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00009448 if (!getLangOpts().ObjCNonFragileABI)
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009449 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009450 }
9451 }
9452
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009453 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9454 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009455 ExDecl->setExceptionVariable(true);
9456
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009457 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009458 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009459 Invalid = true;
9460
Douglas Gregorc41b8782011-07-06 18:14:43 +00009461 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009462 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009463 // C++ [except.handle]p16:
9464 // The object declared in an exception-declaration or, if the
9465 // exception-declaration does not specify a name, a temporary (12.2) is
9466 // copy-initialized (8.5) from the exception object. [...]
9467 // The object is destroyed when the handler exits, after the destruction
9468 // of any automatic objects initialized within the handler.
9469 //
9470 // We just pretend to initialize the object with itself, then make sure
9471 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009472 QualType initType = ExDeclType;
9473
9474 InitializedEntity entity =
9475 InitializedEntity::InitializeVariable(ExDecl);
9476 InitializationKind initKind =
9477 InitializationKind::CreateCopy(Loc, SourceLocation());
9478
9479 Expr *opaqueValue =
9480 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9481 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9482 ExprResult result = sequence.Perform(*this, entity, initKind,
9483 MultiExprArg(&opaqueValue, 1));
9484 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009485 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009486 else {
9487 // If the constructor used was non-trivial, set this as the
9488 // "initializer".
9489 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9490 if (!construct->getConstructor()->isTrivial()) {
9491 Expr *init = MaybeCreateExprWithCleanups(construct);
9492 ExDecl->setInit(init);
9493 }
9494
9495 // And make sure it's destructable.
9496 FinalizeVarWithDestructor(ExDecl, recordType);
9497 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009498 }
9499 }
9500
Douglas Gregord308e622009-05-18 20:51:54 +00009501 if (Invalid)
9502 ExDecl->setInvalidDecl();
9503
9504 return ExDecl;
9505}
9506
9507/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9508/// handler.
John McCalld226f652010-08-21 09:40:31 +00009509Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009510 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009511 bool Invalid = D.isInvalidType();
9512
9513 // Check for unexpanded parameter packs.
9514 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9515 UPPC_ExceptionType)) {
9516 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9517 D.getIdentifierLoc());
9518 Invalid = true;
9519 }
9520
Sebastian Redl4b07b292008-12-22 19:15:10 +00009521 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009522 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009523 LookupOrdinaryName,
9524 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009525 // The scope should be freshly made just for us. There is just no way
9526 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009527 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009528 if (PrevDecl->isTemplateParameter()) {
9529 // Maybe we will complain about the shadowed template parameter.
9530 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009531 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009532 }
9533 }
9534
Chris Lattnereaaebc72009-04-25 08:06:05 +00009535 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009536 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9537 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009538 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009539 }
9540
Douglas Gregor83cb9422010-09-09 17:09:21 +00009541 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009542 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009543 D.getIdentifierLoc(),
9544 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009545 if (Invalid)
9546 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009547
Sebastian Redl4b07b292008-12-22 19:15:10 +00009548 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009549 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009550 PushOnScopeChains(ExDecl, S);
9551 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009552 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009553
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009554 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009555 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009556}
Anders Carlssonfb311762009-03-14 00:25:26 +00009557
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009558Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009559 Expr *AssertExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009560 Expr *AssertMessageExpr_,
9561 SourceLocation RParenLoc) {
John McCall9ae2f072010-08-23 23:25:46 +00009562 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlssonfb311762009-03-14 00:25:26 +00009563
Anders Carlssonc3082412009-03-14 00:33:21 +00009564 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
Richard Smith282e7e62012-02-04 09:53:13 +00009565 // In a static_assert-declaration, the constant-expression shall be a
9566 // constant expression that can be contextually converted to bool.
9567 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9568 if (Converted.isInvalid())
9569 return 0;
9570
Richard Smithdaaefc52011-12-14 23:32:26 +00009571 llvm::APSInt Cond;
Richard Smith282e7e62012-02-04 09:53:13 +00009572 if (VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009573 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009574 /*AllowFold=*/false).isInvalid())
John McCalld226f652010-08-21 09:40:31 +00009575 return 0;
Anders Carlssonfb311762009-03-14 00:25:26 +00009576
Richard Smith0cc323c2012-03-05 23:20:05 +00009577 if (!Cond) {
9578 llvm::SmallString<256> MsgBuffer;
9579 llvm::raw_svector_ostream Msg(MsgBuffer);
9580 AssertMessage->printPretty(Msg, Context, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009581 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009582 << Msg.str() << AssertExpr->getSourceRange();
9583 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009584 }
Mike Stump1eb44332009-09-09 15:08:12 +00009585
Douglas Gregor399ad972010-12-15 23:55:21 +00009586 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9587 return 0;
9588
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009589 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
9590 AssertExpr, AssertMessage, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00009591
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009592 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009593 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009594}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009595
Douglas Gregor1d869352010-04-07 16:53:43 +00009596/// \brief Perform semantic analysis of the given friend type declaration.
9597///
9598/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009599FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9600 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009601 TypeSourceInfo *TSInfo) {
9602 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9603
9604 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009605 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009606
Richard Smith6b130222011-10-18 21:39:00 +00009607 // C++03 [class.friend]p2:
9608 // An elaborated-type-specifier shall be used in a friend declaration
9609 // for a class.*
9610 //
9611 // * The class-key of the elaborated-type-specifier is required.
9612 if (!ActiveTemplateInstantiations.empty()) {
9613 // Do not complain about the form of friend template types during
9614 // template instantiation; we will already have complained when the
9615 // template was declared.
9616 } else if (!T->isElaboratedTypeSpecifier()) {
9617 // If we evaluated the type to a record type, suggest putting
9618 // a tag in front.
9619 if (const RecordType *RT = T->getAs<RecordType>()) {
9620 RecordDecl *RD = RT->getDecl();
9621
9622 std::string InsertionText = std::string(" ") + RD->getKindName();
9623
9624 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009625 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009626 diag::warn_cxx98_compat_unelaborated_friend_type :
9627 diag::ext_unelaborated_friend_type)
9628 << (unsigned) RD->getTagKind()
9629 << T
9630 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9631 InsertionText);
9632 } else {
9633 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009634 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009635 diag::warn_cxx98_compat_nonclass_type_friend :
9636 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009637 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009638 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009639 }
Richard Smith6b130222011-10-18 21:39:00 +00009640 } else if (T->getAs<EnumType>()) {
9641 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009642 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009643 diag::warn_cxx98_compat_enum_friend :
9644 diag::ext_enum_friend)
9645 << T
9646 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009647 }
9648
Douglas Gregor06245bf2010-04-07 17:57:12 +00009649 // C++0x [class.friend]p3:
9650 // If the type specifier in a friend declaration designates a (possibly
9651 // cv-qualified) class type, that class is declared as a friend; otherwise,
9652 // the friend declaration is ignored.
9653
9654 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9655 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009656
Abramo Bagnara0216df82011-10-29 20:52:52 +00009657 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009658}
9659
John McCall9a34edb2010-10-19 01:40:49 +00009660/// Handle a friend tag declaration where the scope specifier was
9661/// templated.
9662Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9663 unsigned TagSpec, SourceLocation TagLoc,
9664 CXXScopeSpec &SS,
9665 IdentifierInfo *Name, SourceLocation NameLoc,
9666 AttributeList *Attr,
9667 MultiTemplateParamsArg TempParamLists) {
9668 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9669
9670 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009671 bool Invalid = false;
9672
9673 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009674 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
John McCall9a34edb2010-10-19 01:40:49 +00009675 TempParamLists.get(),
9676 TempParamLists.size(),
9677 /*friend*/ true,
9678 isExplicitSpecialization,
9679 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009680 if (TemplateParams->size() > 0) {
9681 // This is a declaration of a class template.
9682 if (Invalid)
9683 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009684
Eric Christopher4110e132011-07-21 05:34:24 +00009685 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9686 SS, Name, NameLoc, Attr,
9687 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009688 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009689 TempParamLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009690 (TemplateParameterList**) TempParamLists.release()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009691 } else {
9692 // The "template<>" header is extraneous.
9693 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9694 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9695 isExplicitSpecialization = true;
9696 }
9697 }
9698
9699 if (Invalid) return 0;
9700
John McCall9a34edb2010-10-19 01:40:49 +00009701 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009702 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCall9a34edb2010-10-19 01:40:49 +00009703 if (TempParamLists.get()[I]->size()) {
9704 isAllExplicitSpecializations = false;
9705 break;
9706 }
9707 }
9708
9709 // FIXME: don't ignore attributes.
9710
9711 // If it's explicit specializations all the way down, just forget
9712 // about the template header and build an appropriate non-templated
9713 // friend. TODO: for source fidelity, remember the headers.
9714 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009715 if (SS.isEmpty()) {
9716 bool Owned = false;
9717 bool IsDependent = false;
9718 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9719 Attr, AS_public,
9720 /*ModulePrivateLoc=*/SourceLocation(),
9721 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009722 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009723 /*ScopedEnumUsesClassTag=*/false,
9724 /*UnderlyingType=*/TypeResult());
9725 }
9726
Douglas Gregor2494dd02011-03-01 01:34:45 +00009727 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009728 ElaboratedTypeKeyword Keyword
9729 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009730 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009731 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009732 if (T.isNull())
9733 return 0;
9734
9735 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9736 if (isa<DependentNameType>(T)) {
9737 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009738 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009739 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009740 TL.setNameLoc(NameLoc);
9741 } else {
9742 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009743 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009744 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009745 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9746 }
9747
9748 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9749 TSI, FriendLoc);
9750 Friend->setAccess(AS_public);
9751 CurContext->addDecl(Friend);
9752 return Friend;
9753 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009754
9755 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9756
9757
John McCall9a34edb2010-10-19 01:40:49 +00009758
9759 // Handle the case of a templated-scope friend class. e.g.
9760 // template <class T> class A<T>::B;
9761 // FIXME: we don't support these right now.
9762 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
9763 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
9764 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9765 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009766 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009767 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +00009768 TL.setNameLoc(NameLoc);
9769
9770 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9771 TSI, FriendLoc);
9772 Friend->setAccess(AS_public);
9773 Friend->setUnsupportedFriend(true);
9774 CurContext->addDecl(Friend);
9775 return Friend;
9776}
9777
9778
John McCalldd4a3b02009-09-16 22:47:08 +00009779/// Handle a friend type declaration. This works in tandem with
9780/// ActOnTag.
9781///
9782/// Notes on friend class templates:
9783///
9784/// We generally treat friend class declarations as if they were
9785/// declaring a class. So, for example, the elaborated type specifier
9786/// in a friend declaration is required to obey the restrictions of a
9787/// class-head (i.e. no typedefs in the scope chain), template
9788/// parameters are required to match up with simple template-ids, &c.
9789/// However, unlike when declaring a template specialization, it's
9790/// okay to refer to a template specialization without an empty
9791/// template parameter declaration, e.g.
9792/// friend class A<T>::B<unsigned>;
9793/// We permit this as a special case; if there are any template
9794/// parameters present at all, require proper matching, i.e.
9795/// template <> template <class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +00009796Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +00009797 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009798 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +00009799
9800 assert(DS.isFriendSpecified());
9801 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9802
John McCalldd4a3b02009-09-16 22:47:08 +00009803 // Try to convert the decl specifier to a type. This works for
9804 // friend templates because ActOnTag never produces a ClassTemplateDecl
9805 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00009806 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00009807 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
9808 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00009809 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +00009810 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009811
Douglas Gregor6ccab972010-12-16 01:14:37 +00009812 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
9813 return 0;
9814
John McCalldd4a3b02009-09-16 22:47:08 +00009815 // This is definitely an error in C++98. It's probably meant to
9816 // be forbidden in C++0x, too, but the specification is just
9817 // poorly written.
9818 //
9819 // The problem is with declarations like the following:
9820 // template <T> friend A<T>::foo;
9821 // where deciding whether a class C is a friend or not now hinges
9822 // on whether there exists an instantiation of A that causes
9823 // 'foo' to equal C. There are restrictions on class-heads
9824 // (which we declare (by fiat) elaborated friend declarations to
9825 // be) that makes this tractable.
9826 //
9827 // FIXME: handle "template <> friend class A<T>;", which
9828 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00009829 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00009830 Diag(Loc, diag::err_tagless_friend_type_template)
9831 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00009832 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +00009833 }
Douglas Gregor1d869352010-04-07 16:53:43 +00009834
John McCall02cace72009-08-28 07:59:38 +00009835 // C++98 [class.friend]p1: A friend of a class is a function
9836 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00009837 // This is fixed in DR77, which just barely didn't make the C++03
9838 // deadline. It's also a very silly restriction that seriously
9839 // affects inner classes and which nobody else seems to implement;
9840 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00009841 //
9842 // But note that we could warn about it: it's always useless to
9843 // friend one of your own members (it's not, however, worthless to
9844 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00009845
John McCalldd4a3b02009-09-16 22:47:08 +00009846 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00009847 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00009848 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009849 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +00009850 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00009851 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00009852 DS.getFriendSpecLoc());
9853 else
Abramo Bagnara0216df82011-10-29 20:52:52 +00009854 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +00009855
9856 if (!D)
John McCalld226f652010-08-21 09:40:31 +00009857 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +00009858
John McCalldd4a3b02009-09-16 22:47:08 +00009859 D->setAccess(AS_public);
9860 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00009861
John McCalld226f652010-08-21 09:40:31 +00009862 return D;
John McCall02cace72009-08-28 07:59:38 +00009863}
9864
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009865Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +00009866 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00009867 const DeclSpec &DS = D.getDeclSpec();
9868
9869 assert(DS.isFriendSpecified());
9870 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9871
9872 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00009873 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +00009874
9875 // C++ [class.friend]p1
9876 // A friend of a class is a function or class....
9877 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00009878 // It *doesn't* see through dependent types, which is correct
9879 // according to [temp.arg.type]p3:
9880 // If a declaration acquires a function type through a
9881 // type dependent on a template-parameter and this causes
9882 // a declaration that does not use the syntactic form of a
9883 // function declarator to have a function type, the program
9884 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009885 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +00009886 Diag(Loc, diag::err_unexpected_friend);
9887
9888 // It might be worthwhile to try to recover by creating an
9889 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +00009890 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009891 }
9892
9893 // C++ [namespace.memdef]p3
9894 // - If a friend declaration in a non-local class first declares a
9895 // class or function, the friend class or function is a member
9896 // of the innermost enclosing namespace.
9897 // - The name of the friend is not found by simple name lookup
9898 // until a matching declaration is provided in that namespace
9899 // scope (either before or after the class declaration granting
9900 // friendship).
9901 // - If a friend function is called, its name may be found by the
9902 // name lookup that considers functions from namespaces and
9903 // classes associated with the types of the function arguments.
9904 // - When looking for a prior declaration of a class or a function
9905 // declared as a friend, scopes outside the innermost enclosing
9906 // namespace scope are not considered.
9907
John McCall337ec3d2010-10-12 23:13:28 +00009908 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00009909 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
9910 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +00009911 assert(Name);
9912
Douglas Gregor6ccab972010-12-16 01:14:37 +00009913 // Check for unexpanded parameter packs.
9914 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
9915 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
9916 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
9917 return 0;
9918
John McCall67d1a672009-08-06 02:15:43 +00009919 // The context we found the declaration in, or in which we should
9920 // create the declaration.
9921 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +00009922 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +00009923 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00009924 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00009925
John McCall337ec3d2010-10-12 23:13:28 +00009926 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +00009927
John McCall337ec3d2010-10-12 23:13:28 +00009928 // There are four cases here.
9929 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +00009930 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +00009931 // there as appropriate.
9932 // Recover from invalid scope qualifiers as if they just weren't there.
9933 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +00009934 // C++0x [namespace.memdef]p3:
9935 // If the name in a friend declaration is neither qualified nor
9936 // a template-id and the declaration is a function or an
9937 // elaborated-type-specifier, the lookup to determine whether
9938 // the entity has been previously declared shall not consider
9939 // any scopes outside the innermost enclosing namespace.
9940 // C++0x [class.friend]p11:
9941 // If a friend declaration appears in a local class and the name
9942 // specified is an unqualified name, a prior declaration is
9943 // looked up without considering scopes that are outside the
9944 // innermost enclosing non-class scope. For a friend function
9945 // declaration, if there is no prior declaration, the program is
9946 // ill-formed.
9947 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +00009948 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +00009949
John McCall29ae6e52010-10-13 05:45:15 +00009950 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +00009951 DC = CurContext;
9952 while (true) {
9953 // Skip class contexts. If someone can cite chapter and verse
9954 // for this behavior, that would be nice --- it's what GCC and
9955 // EDG do, and it seems like a reasonable intent, but the spec
9956 // really only says that checks for unqualified existing
9957 // declarations should stop at the nearest enclosing namespace,
9958 // not that they should only consider the nearest enclosing
9959 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +00009960 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +00009961 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00009962
John McCall68263142009-11-18 22:49:29 +00009963 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00009964
9965 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +00009966 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00009967 break;
John McCall29ae6e52010-10-13 05:45:15 +00009968
John McCall8a407372010-10-14 22:22:28 +00009969 if (isTemplateId) {
9970 if (isa<TranslationUnitDecl>(DC)) break;
9971 } else {
9972 if (DC->isFileContext()) break;
9973 }
John McCall67d1a672009-08-06 02:15:43 +00009974 DC = DC->getParent();
9975 }
9976
9977 // C++ [class.friend]p1: A friend of a class is a function or
9978 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +00009979 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +00009980 // Most C++ 98 compilers do seem to give an error here, so
9981 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +00009982 if (!Previous.empty() && DC->Equals(CurContext))
9983 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009984 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00009985 diag::warn_cxx98_compat_friend_is_member :
9986 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +00009987
John McCall380aaa42010-10-13 06:22:15 +00009988 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +00009989
Douglas Gregor883af832011-10-10 01:11:59 +00009990 // C++ [class.friend]p6:
9991 // A function can be defined in a friend declaration of a class if and
9992 // only if the class is a non-local class (9.8), the function name is
9993 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009994 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +00009995 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
9996 }
9997
John McCall337ec3d2010-10-12 23:13:28 +00009998 // - There's a non-dependent scope specifier, in which case we
9999 // compute it and do a previous lookup there for a function
10000 // or function template.
10001 } else if (!SS.getScopeRep()->isDependent()) {
10002 DC = computeDeclContext(SS);
10003 if (!DC) return 0;
10004
10005 if (RequireCompleteDeclContext(SS, DC)) return 0;
10006
10007 LookupQualifiedName(Previous, DC);
10008
10009 // Ignore things found implicitly in the wrong scope.
10010 // TODO: better diagnostics for this case. Suggesting the right
10011 // qualified scope would be nice...
10012 LookupResult::Filter F = Previous.makeFilter();
10013 while (F.hasNext()) {
10014 NamedDecl *D = F.next();
10015 if (!DC->InEnclosingNamespaceSetOf(
10016 D->getDeclContext()->getRedeclContext()))
10017 F.erase();
10018 }
10019 F.done();
10020
10021 if (Previous.empty()) {
10022 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010023 Diag(Loc, diag::err_qualified_friend_not_found)
10024 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010025 return 0;
10026 }
10027
10028 // C++ [class.friend]p1: A friend of a class is a function or
10029 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010030 if (DC->Equals(CurContext))
10031 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010032 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010033 diag::warn_cxx98_compat_friend_is_member :
10034 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010035
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010036 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010037 // C++ [class.friend]p6:
10038 // A function can be defined in a friend declaration of a class if and
10039 // only if the class is a non-local class (9.8), the function name is
10040 // unqualified, and the function has namespace scope.
10041 SemaDiagnosticBuilder DB
10042 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10043
10044 DB << SS.getScopeRep();
10045 if (DC->isFileContext())
10046 DB << FixItHint::CreateRemoval(SS.getRange());
10047 SS.clear();
10048 }
John McCall337ec3d2010-10-12 23:13:28 +000010049
10050 // - There's a scope specifier that does not match any template
10051 // parameter lists, in which case we use some arbitrary context,
10052 // create a method or method template, and wait for instantiation.
10053 // - There's a scope specifier that does match some template
10054 // parameter lists, which we don't handle right now.
10055 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010056 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010057 // C++ [class.friend]p6:
10058 // A function can be defined in a friend declaration of a class if and
10059 // only if the class is a non-local class (9.8), the function name is
10060 // unqualified, and the function has namespace scope.
10061 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10062 << SS.getScopeRep();
10063 }
10064
John McCall337ec3d2010-10-12 23:13:28 +000010065 DC = CurContext;
10066 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010067 }
Douglas Gregor883af832011-10-10 01:11:59 +000010068
John McCall29ae6e52010-10-13 05:45:15 +000010069 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010070 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010071 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10072 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10073 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010074 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010075 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10076 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010077 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010078 }
John McCall67d1a672009-08-06 02:15:43 +000010079 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010080
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010081 // FIXME: This is an egregious hack to cope with cases where the scope stack
10082 // does not contain the declaration context, i.e., in an out-of-line
10083 // definition of a class.
10084 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10085 if (!DCScope) {
10086 FakeDCScope.setEntity(DC);
10087 DCScope = &FakeDCScope;
10088 }
10089
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010090 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010091 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
10092 move(TemplateParams), AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010093 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010094
Douglas Gregor182ddf02009-09-28 00:08:27 +000010095 assert(ND->getDeclContext() == DC);
10096 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010097
John McCallab88d972009-08-31 22:39:49 +000010098 // Add the function declaration to the appropriate lookup tables,
10099 // adjusting the redeclarations list as necessary. We don't
10100 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010101 //
John McCallab88d972009-08-31 22:39:49 +000010102 // Also update the scope-based lookup if the target context's
10103 // lookup context is in lexical scope.
10104 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010105 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010106 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010107 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010108 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010109 }
John McCall02cace72009-08-28 07:59:38 +000010110
10111 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010112 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010113 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010114 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010115 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010116
John McCall337ec3d2010-10-12 23:13:28 +000010117 if (ND->isInvalidDecl())
10118 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +000010119 else {
10120 FunctionDecl *FD;
10121 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10122 FD = FTD->getTemplatedDecl();
10123 else
10124 FD = cast<FunctionDecl>(ND);
10125
10126 // Mark templated-scope function declarations as unsupported.
10127 if (FD->getNumTemplateParameterLists())
10128 FrD->setUnsupportedFriend(true);
10129 }
John McCall337ec3d2010-10-12 23:13:28 +000010130
John McCalld226f652010-08-21 09:40:31 +000010131 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010132}
10133
John McCalld226f652010-08-21 09:40:31 +000010134void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10135 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010136
Sebastian Redl50de12f2009-03-24 22:27:57 +000010137 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10138 if (!Fn) {
10139 Diag(DelLoc, diag::err_deleted_non_function);
10140 return;
10141 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010142 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
Sebastian Redl50de12f2009-03-24 22:27:57 +000010143 Diag(DelLoc, diag::err_deleted_decl_not_first);
10144 Diag(Prev->getLocation(), diag::note_previous_declaration);
10145 // If the declaration wasn't the first, we delete the function anyway for
10146 // recovery.
10147 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010148 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010149
10150 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10151 if (!MD)
10152 return;
10153
10154 // A deleted special member function is trivial if the corresponding
10155 // implicitly-declared function would have been.
10156 switch (getSpecialMember(MD)) {
10157 case CXXInvalid:
10158 break;
10159 case CXXDefaultConstructor:
10160 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10161 break;
10162 case CXXCopyConstructor:
10163 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10164 break;
10165 case CXXMoveConstructor:
10166 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10167 break;
10168 case CXXCopyAssignment:
10169 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10170 break;
10171 case CXXMoveAssignment:
10172 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10173 break;
10174 case CXXDestructor:
10175 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10176 break;
10177 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010178}
Sebastian Redl13e88542009-04-27 21:33:24 +000010179
Sean Hunte4246a62011-05-12 06:15:49 +000010180void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10181 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10182
10183 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010184 if (MD->getParent()->isDependentType()) {
10185 MD->setDefaulted();
10186 MD->setExplicitlyDefaulted();
10187 return;
10188 }
10189
Sean Hunte4246a62011-05-12 06:15:49 +000010190 CXXSpecialMember Member = getSpecialMember(MD);
10191 if (Member == CXXInvalid) {
10192 Diag(DefaultLoc, diag::err_default_special_members);
10193 return;
10194 }
10195
10196 MD->setDefaulted();
10197 MD->setExplicitlyDefaulted();
10198
Sean Huntcd10dec2011-05-23 23:14:04 +000010199 // If this definition appears within the record, do the checking when
10200 // the record is complete.
10201 const FunctionDecl *Primary = MD;
10202 if (MD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
10203 // Find the uninstantiated declaration that actually had the '= default'
10204 // on it.
10205 MD->getTemplateInstantiationPattern()->isDefined(Primary);
10206
10207 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010208 return;
10209
10210 switch (Member) {
10211 case CXXDefaultConstructor: {
10212 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010213 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010214 if (!CD->isInvalidDecl())
10215 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10216 break;
10217 }
10218
10219 case CXXCopyConstructor: {
10220 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010221 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010222 if (!CD->isInvalidDecl())
10223 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010224 break;
10225 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010226
Sean Hunt2b188082011-05-14 05:23:28 +000010227 case CXXCopyAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010228 CheckExplicitlyDefaultedSpecialMember(MD);
Sean Hunt2b188082011-05-14 05:23:28 +000010229 if (!MD->isInvalidDecl())
10230 DefineImplicitCopyAssignment(DefaultLoc, MD);
10231 break;
10232 }
10233
Sean Huntcb45a0f2011-05-12 22:46:25 +000010234 case CXXDestructor: {
10235 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010236 CheckExplicitlyDefaultedSpecialMember(DD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010237 if (!DD->isInvalidDecl())
10238 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010239 break;
10240 }
10241
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010242 case CXXMoveConstructor: {
10243 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010244 CheckExplicitlyDefaultedSpecialMember(CD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010245 if (!CD->isInvalidDecl())
10246 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010247 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010248 }
Sean Hunt82713172011-05-25 23:16:36 +000010249
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010250 case CXXMoveAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010251 CheckExplicitlyDefaultedSpecialMember(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010252 if (!MD->isInvalidDecl())
10253 DefineImplicitMoveAssignment(DefaultLoc, MD);
10254 break;
10255 }
10256
10257 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010258 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010259 }
10260 } else {
10261 Diag(DefaultLoc, diag::err_default_special_members);
10262 }
10263}
10264
Sebastian Redl13e88542009-04-27 21:33:24 +000010265static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010266 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010267 Stmt *SubStmt = *CI;
10268 if (!SubStmt)
10269 continue;
10270 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010271 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010272 diag::err_return_in_constructor_handler);
10273 if (!isa<Expr>(SubStmt))
10274 SearchForReturnInStmt(Self, SubStmt);
10275 }
10276}
10277
10278void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10279 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10280 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10281 SearchForReturnInStmt(*this, Handler);
10282 }
10283}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010284
Mike Stump1eb44332009-09-09 15:08:12 +000010285bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010286 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010287 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10288 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010289
Chandler Carruth73857792010-02-15 11:53:20 +000010290 if (Context.hasSameType(NewTy, OldTy) ||
10291 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010292 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010293
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010294 // Check if the return types are covariant
10295 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010296
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010297 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010298 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10299 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010300 NewClassTy = NewPT->getPointeeType();
10301 OldClassTy = OldPT->getPointeeType();
10302 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010303 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10304 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10305 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10306 NewClassTy = NewRT->getPointeeType();
10307 OldClassTy = OldRT->getPointeeType();
10308 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010309 }
10310 }
Mike Stump1eb44332009-09-09 15:08:12 +000010311
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010312 // The return types aren't either both pointers or references to a class type.
10313 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010314 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010315 diag::err_different_return_type_for_overriding_virtual_function)
10316 << New->getDeclName() << NewTy << OldTy;
10317 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010318
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010319 return true;
10320 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010321
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010322 // C++ [class.virtual]p6:
10323 // If the return type of D::f differs from the return type of B::f, the
10324 // class type in the return type of D::f shall be complete at the point of
10325 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010326 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10327 if (!RT->isBeingDefined() &&
10328 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010329 diag::err_covariant_return_incomplete,
10330 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010331 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010332 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010333
Douglas Gregora4923eb2009-11-16 21:35:15 +000010334 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010335 // Check if the new class derives from the old class.
10336 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10337 Diag(New->getLocation(),
10338 diag::err_covariant_return_not_derived)
10339 << New->getDeclName() << NewTy << OldTy;
10340 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10341 return true;
10342 }
Mike Stump1eb44332009-09-09 15:08:12 +000010343
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010344 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010345 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010346 diag::err_covariant_return_inaccessible_base,
10347 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10348 // FIXME: Should this point to the return type?
10349 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010350 // FIXME: this note won't trigger for delayed access control
10351 // diagnostics, and it's impossible to get an undelayed error
10352 // here from access control during the original parse because
10353 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010354 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10355 return true;
10356 }
10357 }
Mike Stump1eb44332009-09-09 15:08:12 +000010358
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010359 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010360 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010361 Diag(New->getLocation(),
10362 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010363 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010364 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10365 return true;
10366 };
Mike Stump1eb44332009-09-09 15:08:12 +000010367
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010368
10369 // The new class type must have the same or less qualifiers as the old type.
10370 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10371 Diag(New->getLocation(),
10372 diag::err_covariant_return_type_class_type_more_qualified)
10373 << New->getDeclName() << NewTy << OldTy;
10374 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10375 return true;
10376 };
Mike Stump1eb44332009-09-09 15:08:12 +000010377
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010378 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010379}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010380
Douglas Gregor4ba31362009-12-01 17:24:26 +000010381/// \brief Mark the given method pure.
10382///
10383/// \param Method the method to be marked pure.
10384///
10385/// \param InitRange the source range that covers the "0" initializer.
10386bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010387 SourceLocation EndLoc = InitRange.getEnd();
10388 if (EndLoc.isValid())
10389 Method->setRangeEnd(EndLoc);
10390
Douglas Gregor4ba31362009-12-01 17:24:26 +000010391 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10392 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010393 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010394 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010395
10396 if (!Method->isInvalidDecl())
10397 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10398 << Method->getDeclName() << InitRange;
10399 return true;
10400}
10401
Douglas Gregor552e2992012-02-21 02:22:07 +000010402/// \brief Determine whether the given declaration is a static data member.
10403static bool isStaticDataMember(Decl *D) {
10404 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10405 if (!Var)
10406 return false;
10407
10408 return Var->isStaticDataMember();
10409}
John McCall731ad842009-12-19 09:28:58 +000010410/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10411/// an initializer for the out-of-line declaration 'Dcl'. The scope
10412/// is a fresh scope pushed for just this purpose.
10413///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010414/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10415/// static data member of class X, names should be looked up in the scope of
10416/// class X.
John McCalld226f652010-08-21 09:40:31 +000010417void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010418 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010419 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010420
John McCall731ad842009-12-19 09:28:58 +000010421 // We should only get called for declarations with scope specifiers, like:
10422 // int foo::bar;
10423 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010424 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010425
10426 // If we are parsing the initializer for a static data member, push a
10427 // new expression evaluation context that is associated with this static
10428 // data member.
10429 if (isStaticDataMember(D))
10430 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010431}
10432
10433/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010434/// initializer for the out-of-line declaration 'D'.
10435void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010436 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010437 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010438
Douglas Gregor552e2992012-02-21 02:22:07 +000010439 if (isStaticDataMember(D))
10440 PopExpressionEvaluationContext();
10441
John McCall731ad842009-12-19 09:28:58 +000010442 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010443 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010444}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010445
10446/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10447/// C++ if/switch/while/for statement.
10448/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010449DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010450 // C++ 6.4p2:
10451 // The declarator shall not specify a function or an array.
10452 // The type-specifier-seq shall not contain typedef and shall not declare a
10453 // new class or enumeration.
10454 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10455 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010456
10457 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010458 if (!Dcl)
10459 return true;
10460
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010461 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10462 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010463 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010464 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010465 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010466
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010467 return Dcl;
10468}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010469
Douglas Gregordfe65432011-07-28 19:11:31 +000010470void Sema::LoadExternalVTableUses() {
10471 if (!ExternalSource)
10472 return;
10473
10474 SmallVector<ExternalVTableUse, 4> VTables;
10475 ExternalSource->ReadUsedVTables(VTables);
10476 SmallVector<VTableUse, 4> NewUses;
10477 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10478 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10479 = VTablesUsed.find(VTables[I].Record);
10480 // Even if a definition wasn't required before, it may be required now.
10481 if (Pos != VTablesUsed.end()) {
10482 if (!Pos->second && VTables[I].DefinitionRequired)
10483 Pos->second = true;
10484 continue;
10485 }
10486
10487 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10488 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10489 }
10490
10491 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10492}
10493
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010494void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10495 bool DefinitionRequired) {
10496 // Ignore any vtable uses in unevaluated operands or for classes that do
10497 // not have a vtable.
10498 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10499 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010500 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010501 return;
10502
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010503 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010504 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010505 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10506 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10507 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10508 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010509 // If we already had an entry, check to see if we are promoting this vtable
10510 // to required a definition. If so, we need to reappend to the VTableUses
10511 // list, since we may have already processed the first entry.
10512 if (DefinitionRequired && !Pos.first->second) {
10513 Pos.first->second = true;
10514 } else {
10515 // Otherwise, we can early exit.
10516 return;
10517 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010518 }
10519
10520 // Local classes need to have their virtual members marked
10521 // immediately. For all other classes, we mark their virtual members
10522 // at the end of the translation unit.
10523 if (Class->isLocalClass())
10524 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010525 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010526 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010527}
10528
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010529bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010530 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010531 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010532 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010533
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010534 // Note: The VTableUses vector could grow as a result of marking
10535 // the members of a class as "used", so we check the size each
10536 // time through the loop and prefer indices (with are stable) to
10537 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010538 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010539 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010540 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010541 if (!Class)
10542 continue;
10543
10544 SourceLocation Loc = VTableUses[I].second;
10545
10546 // If this class has a key function, but that key function is
10547 // defined in another translation unit, we don't need to emit the
10548 // vtable even though we're using it.
10549 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010550 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010551 switch (KeyFunction->getTemplateSpecializationKind()) {
10552 case TSK_Undeclared:
10553 case TSK_ExplicitSpecialization:
10554 case TSK_ExplicitInstantiationDeclaration:
10555 // The key function is in another translation unit.
10556 continue;
10557
10558 case TSK_ExplicitInstantiationDefinition:
10559 case TSK_ImplicitInstantiation:
10560 // We will be instantiating the key function.
10561 break;
10562 }
10563 } else if (!KeyFunction) {
10564 // If we have a class with no key function that is the subject
10565 // of an explicit instantiation declaration, suppress the
10566 // vtable; it will live with the explicit instantiation
10567 // definition.
10568 bool IsExplicitInstantiationDeclaration
10569 = Class->getTemplateSpecializationKind()
10570 == TSK_ExplicitInstantiationDeclaration;
10571 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10572 REnd = Class->redecls_end();
10573 R != REnd; ++R) {
10574 TemplateSpecializationKind TSK
10575 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10576 if (TSK == TSK_ExplicitInstantiationDeclaration)
10577 IsExplicitInstantiationDeclaration = true;
10578 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10579 IsExplicitInstantiationDeclaration = false;
10580 break;
10581 }
10582 }
10583
10584 if (IsExplicitInstantiationDeclaration)
10585 continue;
10586 }
10587
10588 // Mark all of the virtual members of this class as referenced, so
10589 // that we can build a vtable. Then, tell the AST consumer that a
10590 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010591 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010592 MarkVirtualMembersReferenced(Loc, Class);
10593 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10594 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10595
10596 // Optionally warn if we're emitting a weak vtable.
10597 if (Class->getLinkage() == ExternalLinkage &&
10598 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010599 const FunctionDecl *KeyFunctionDef = 0;
10600 if (!KeyFunction ||
10601 (KeyFunction->hasBody(KeyFunctionDef) &&
10602 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010603 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10604 TSK_ExplicitInstantiationDefinition
10605 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10606 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010607 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010608 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010609 VTableUses.clear();
10610
Douglas Gregor78844032011-04-22 22:25:37 +000010611 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010612}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010613
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010614void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10615 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +000010616 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
10617 e = RD->method_end(); i != e; ++i) {
David Blaikie262bc182012-04-30 02:36:29 +000010618 CXXMethodDecl *MD = &*i;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010619
10620 // C++ [basic.def.odr]p2:
10621 // [...] A virtual member function is used if it is not pure. [...]
10622 if (MD->isVirtual() && !MD->isPure())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010623 MarkFunctionReferenced(Loc, MD);
Anders Carlssond6a637f2009-12-07 08:24:59 +000010624 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010625
10626 // Only classes that have virtual bases need a VTT.
10627 if (RD->getNumVBases() == 0)
10628 return;
10629
10630 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10631 e = RD->bases_end(); i != e; ++i) {
10632 const CXXRecordDecl *Base =
10633 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010634 if (Base->getNumVBases() == 0)
10635 continue;
10636 MarkVirtualMembersReferenced(Loc, Base);
10637 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010638}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010639
10640/// SetIvarInitializers - This routine builds initialization ASTs for the
10641/// Objective-C implementation whose ivars need be initialized.
10642void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010643 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010644 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010645 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010646 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010647 CollectIvarsToConstructOrDestruct(OID, ivars);
10648 if (ivars.empty())
10649 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010650 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010651 for (unsigned i = 0; i < ivars.size(); i++) {
10652 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010653 if (Field->isInvalidDecl())
10654 continue;
10655
Sean Huntcbb67482011-01-08 20:30:50 +000010656 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010657 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10658 InitializationKind InitKind =
10659 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10660
10661 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010662 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010663 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010664 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010665 // Note, MemberInit could actually come back empty if no initialization
10666 // is required (e.g., because it would call a trivial default constructor)
10667 if (!MemberInit.get() || MemberInit.isInvalid())
10668 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010669
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010670 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010671 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10672 SourceLocation(),
10673 MemberInit.takeAs<Expr>(),
10674 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010675 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010676
10677 // Be sure that the destructor is accessible and is marked as referenced.
10678 if (const RecordType *RecordTy
10679 = Context.getBaseElementType(Field->getType())
10680 ->getAs<RecordType>()) {
10681 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010682 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010683 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010684 CheckDestructorAccess(Field->getLocation(), Destructor,
10685 PDiag(diag::err_access_dtor_ivar)
10686 << Context.getBaseElementType(Field->getType()));
10687 }
10688 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010689 }
10690 ObjCImplementation->setIvarInitializers(Context,
10691 AllToInit.data(), AllToInit.size());
10692 }
10693}
Sean Huntfe57eef2011-05-04 05:57:24 +000010694
Sean Huntebcbe1d2011-05-04 23:29:54 +000010695static
10696void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10697 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10698 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10699 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10700 Sema &S) {
10701 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10702 CE = Current.end();
10703 if (Ctor->isInvalidDecl())
10704 return;
10705
10706 const FunctionDecl *FNTarget = 0;
10707 CXXConstructorDecl *Target;
10708
10709 // We ignore the result here since if we don't have a body, Target will be
10710 // null below.
10711 (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
10712 Target
10713= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
10714
10715 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10716 // Avoid dereferencing a null pointer here.
10717 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10718
10719 if (!Current.insert(Canonical))
10720 return;
10721
10722 // We know that beyond here, we aren't chaining into a cycle.
10723 if (!Target || !Target->isDelegatingConstructor() ||
10724 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10725 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10726 Valid.insert(*CI);
10727 Current.clear();
10728 // We've hit a cycle.
10729 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
10730 Current.count(TCanonical)) {
10731 // If we haven't diagnosed this cycle yet, do so now.
10732 if (!Invalid.count(TCanonical)) {
10733 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000010734 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000010735 << Ctor;
10736
10737 // Don't add a note for a function delegating directo to itself.
10738 if (TCanonical != Canonical)
10739 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
10740
10741 CXXConstructorDecl *C = Target;
10742 while (C->getCanonicalDecl() != Canonical) {
10743 (void)C->getTargetConstructor()->hasBody(FNTarget);
10744 assert(FNTarget && "Ctor cycle through bodiless function");
10745
10746 C
10747 = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
10748 S.Diag(C->getLocation(), diag::note_which_delegates_to);
10749 }
10750 }
10751
10752 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10753 Invalid.insert(*CI);
10754 Current.clear();
10755 } else {
10756 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
10757 }
10758}
10759
10760
Sean Huntfe57eef2011-05-04 05:57:24 +000010761void Sema::CheckDelegatingCtorCycles() {
10762 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
10763
Sean Huntebcbe1d2011-05-04 23:29:54 +000010764 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10765 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000010766
Douglas Gregor0129b562011-07-27 21:57:17 +000010767 for (DelegatingCtorDeclsType::iterator
10768 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000010769 E = DelegatingCtorDecls.end();
10770 I != E; ++I) {
10771 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntfe57eef2011-05-04 05:57:24 +000010772 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010773
10774 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
10775 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000010776}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000010777
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010778namespace {
10779 /// \brief AST visitor that finds references to the 'this' expression.
10780 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
10781 Sema &S;
10782
10783 public:
10784 explicit FindCXXThisExpr(Sema &S) : S(S) { }
10785
10786 bool VisitCXXThisExpr(CXXThisExpr *E) {
10787 S.Diag(E->getLocation(), diag::err_this_static_member_func)
10788 << E->isImplicit();
10789 return false;
10790 }
10791 };
10792}
10793
10794bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
10795 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10796 if (!TSInfo)
10797 return false;
10798
10799 TypeLoc TL = TSInfo->getTypeLoc();
10800 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10801 if (!ProtoTL)
10802 return false;
10803
10804 // C++11 [expr.prim.general]p3:
10805 // [The expression this] shall not appear before the optional
10806 // cv-qualifier-seq and it shall not appear within the declaration of a
10807 // static member function (although its type and value category are defined
10808 // within a static member function as they are within a non-static member
10809 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000010810 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010811 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10812 FindCXXThisExpr Finder(*this);
10813
10814 // If the return type came after the cv-qualifier-seq, check it now.
10815 if (Proto->hasTrailingReturn() &&
10816 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
10817 return true;
10818
10819 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010820 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
10821 return true;
10822
10823 return checkThisInStaticMemberFunctionAttributes(Method);
10824}
10825
10826bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
10827 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10828 if (!TSInfo)
10829 return false;
10830
10831 TypeLoc TL = TSInfo->getTypeLoc();
10832 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10833 if (!ProtoTL)
10834 return false;
10835
10836 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10837 FindCXXThisExpr Finder(*this);
10838
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010839 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000010840 case EST_Uninstantiated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010841 case EST_BasicNoexcept:
10842 case EST_Delayed:
10843 case EST_DynamicNone:
10844 case EST_MSAny:
10845 case EST_None:
10846 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010847
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010848 case EST_ComputedNoexcept:
10849 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
10850 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010851
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010852 case EST_Dynamic:
10853 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010854 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010855 E != EEnd; ++E) {
10856 if (!Finder.TraverseType(*E))
10857 return true;
10858 }
10859 break;
10860 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010861
10862 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010863}
10864
10865bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
10866 FindCXXThisExpr Finder(*this);
10867
10868 // Check attributes.
10869 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
10870 A != AEnd; ++A) {
10871 // FIXME: This should be emitted by tblgen.
10872 Expr *Arg = 0;
10873 ArrayRef<Expr *> Args;
10874 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
10875 Arg = G->getArg();
10876 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
10877 Arg = G->getArg();
10878 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
10879 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
10880 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
10881 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
10882 else if (ExclusiveLockFunctionAttr *ELF
10883 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
10884 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
10885 else if (SharedLockFunctionAttr *SLF
10886 = dyn_cast<SharedLockFunctionAttr>(*A))
10887 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
10888 else if (ExclusiveTrylockFunctionAttr *ETLF
10889 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
10890 Arg = ETLF->getSuccessValue();
10891 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
10892 } else if (SharedTrylockFunctionAttr *STLF
10893 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
10894 Arg = STLF->getSuccessValue();
10895 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
10896 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
10897 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
10898 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
10899 Arg = LR->getArg();
10900 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
10901 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
10902 else if (ExclusiveLocksRequiredAttr *ELR
10903 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
10904 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
10905 else if (SharedLocksRequiredAttr *SLR
10906 = dyn_cast<SharedLocksRequiredAttr>(*A))
10907 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
10908
10909 if (Arg && !Finder.TraverseStmt(Arg))
10910 return true;
10911
10912 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
10913 if (!Finder.TraverseStmt(Args[I]))
10914 return true;
10915 }
10916 }
10917
10918 return false;
10919}
10920
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010921void
10922Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
10923 ArrayRef<ParsedType> DynamicExceptions,
10924 ArrayRef<SourceRange> DynamicExceptionRanges,
10925 Expr *NoexceptExpr,
10926 llvm::SmallVectorImpl<QualType> &Exceptions,
10927 FunctionProtoType::ExtProtoInfo &EPI) {
10928 Exceptions.clear();
10929 EPI.ExceptionSpecType = EST;
10930 if (EST == EST_Dynamic) {
10931 Exceptions.reserve(DynamicExceptions.size());
10932 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
10933 // FIXME: Preserve type source info.
10934 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
10935
10936 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
10937 collectUnexpandedParameterPacks(ET, Unexpanded);
10938 if (!Unexpanded.empty()) {
10939 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
10940 UPPC_ExceptionType,
10941 Unexpanded);
10942 continue;
10943 }
10944
10945 // Check that the type is valid for an exception spec, and
10946 // drop it if not.
10947 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
10948 Exceptions.push_back(ET);
10949 }
10950 EPI.NumExceptions = Exceptions.size();
10951 EPI.Exceptions = Exceptions.data();
10952 return;
10953 }
10954
10955 if (EST == EST_ComputedNoexcept) {
10956 // If an error occurred, there's no expression here.
10957 if (NoexceptExpr) {
10958 assert((NoexceptExpr->isTypeDependent() ||
10959 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
10960 Context.BoolTy) &&
10961 "Parser should have made sure that the expression is boolean");
10962 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
10963 EPI.ExceptionSpecType = EST_BasicNoexcept;
10964 return;
10965 }
10966
10967 if (!NoexceptExpr->isValueDependent())
10968 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000010969 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010970 /*AllowFold*/ false).take();
10971 EPI.NoexceptExpr = NoexceptExpr;
10972 }
10973 return;
10974 }
10975}
10976
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000010977/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
10978Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
10979 // Implicitly declared functions (e.g. copy constructors) are
10980 // __host__ __device__
10981 if (D->isImplicit())
10982 return CFT_HostDevice;
10983
10984 if (D->hasAttr<CUDAGlobalAttr>())
10985 return CFT_Global;
10986
10987 if (D->hasAttr<CUDADeviceAttr>()) {
10988 if (D->hasAttr<CUDAHostAttr>())
10989 return CFT_HostDevice;
10990 else
10991 return CFT_Device;
10992 }
10993
10994 return CFT_Host;
10995}
10996
10997bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
10998 CUDAFunctionTarget CalleeTarget) {
10999 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11000 // Callable from the device only."
11001 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11002 return true;
11003
11004 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11005 // Callable from the host only."
11006 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11007 // Callable from the host only."
11008 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11009 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11010 return true;
11011
11012 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11013 return true;
11014
11015 return false;
11016}