blob: 4fd3a03cfd633385c34b891b3ccf9f262d289d83 [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 Blaikie581deb32012-06-06 20:45:41 +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 Blaikie581deb32012-06-06 20:45:41 +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
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001442static bool InitializationHasSideEffects(const FieldDecl &FD) {
1443 if (!FD.getType().isNull()) {
1444 if (const CXXRecordDecl *RD = FD.getType()->getAsCXXRecordDecl()) {
1445 return !RD->isCompleteDefinition() ||
1446 !RD->hasTrivialDefaultConstructor() ||
1447 !RD->hasTrivialDestructor();
1448 }
1449 }
1450 return false;
1451}
1452
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001453/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1454/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001455/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001456/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1457/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001458Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001459Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001460 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001461 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001462 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001463 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001464 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1465 DeclarationName Name = NameInfo.getName();
1466 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001467
1468 // For anonymous bitfields, the location should point to the type.
1469 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001470 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001471
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001472 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001473
John McCall4bde1e12010-06-04 08:34:12 +00001474 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001475 assert(!DS.isFriendSpecified());
1476
Richard Smith1ab0d902011-06-25 02:28:38 +00001477 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001478
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001479 // C++ 9.2p6: A member shall not be declared to have automatic storage
1480 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001481 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1482 // data members and cannot be applied to names declared const or static,
1483 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001484 switch (DS.getStorageClassSpec()) {
1485 case DeclSpec::SCS_unspecified:
1486 case DeclSpec::SCS_typedef:
1487 case DeclSpec::SCS_static:
1488 // FALL THROUGH.
1489 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001490 case DeclSpec::SCS_mutable:
1491 if (isFunc) {
1492 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001493 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001494 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001495 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Sebastian Redla11f42f2008-11-17 23:24:37 +00001497 // FIXME: It would be nicer if the keyword was ignored only for this
1498 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001499 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001500 }
1501 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001502 default:
1503 if (DS.getStorageClassSpecLoc().isValid())
1504 Diag(DS.getStorageClassSpecLoc(),
1505 diag::err_storageclass_invalid_for_member);
1506 else
1507 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1508 D.getMutableDeclSpec().ClearStorageClassSpecs();
1509 }
1510
Sebastian Redl669d5d72008-11-14 23:42:31 +00001511 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1512 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001513 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001514
1515 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001516 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001517 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001518
1519 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001520 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001521 Diag(Loc, diag::err_bad_variable_name)
1522 << Name;
1523 return 0;
1524 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001525
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001526 IdentifierInfo *II = Name.getAsIdentifierInfo();
1527
Douglas Gregorf2503652011-09-21 14:40:46 +00001528 // Member field could not be with "template" keyword.
1529 // So TemplateParameterLists should be empty in this case.
1530 if (TemplateParameterLists.size()) {
1531 TemplateParameterList* TemplateParams = TemplateParameterLists.get()[0];
1532 if (TemplateParams->size()) {
1533 // There is no such thing as a member field template.
1534 Diag(D.getIdentifierLoc(), diag::err_template_member)
1535 << II
1536 << SourceRange(TemplateParams->getTemplateLoc(),
1537 TemplateParams->getRAngleLoc());
1538 } else {
1539 // There is an extraneous 'template<>' for this member.
1540 Diag(TemplateParams->getTemplateLoc(),
1541 diag::err_template_member_noparams)
1542 << II
1543 << SourceRange(TemplateParams->getTemplateLoc(),
1544 TemplateParams->getRAngleLoc());
1545 }
1546 return 0;
1547 }
1548
Douglas Gregor922fff22010-10-13 22:19:53 +00001549 if (SS.isSet() && !SS.isInvalid()) {
1550 // The user provided a superfluous scope specifier inside a class
1551 // definition:
1552 //
1553 // class X {
1554 // int X::member;
1555 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001556 if (DeclContext *DC = computeDeclContext(SS, false))
1557 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001558 else
1559 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1560 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001561
Douglas Gregor922fff22010-10-13 22:19:53 +00001562 SS.clear();
1563 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001564
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001565 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001566 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001567 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001568 } else {
Richard Smithca523302012-06-10 03:12:00 +00001569 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001570
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001571 Member = HandleDeclarator(S, D, move(TemplateParameterLists));
Chris Lattner6f8ce142009-03-05 23:03:49 +00001572 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001573 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001574 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001575
1576 // Non-instance-fields can't have a bitfield.
1577 if (BitWidth) {
1578 if (Member->isInvalidDecl()) {
1579 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001580 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001581 // C++ 9.6p3: A bit-field shall not be a static member.
1582 // "static member 'A' cannot be a bit-field"
1583 Diag(Loc, diag::err_static_not_bitfield)
1584 << Name << BitWidth->getSourceRange();
1585 } else if (isa<TypedefDecl>(Member)) {
1586 // "typedef member 'x' cannot be a bit-field"
1587 Diag(Loc, diag::err_typedef_not_bitfield)
1588 << Name << BitWidth->getSourceRange();
1589 } else {
1590 // A function typedef ("typedef int f(); f a;").
1591 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1592 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001593 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001594 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001595 }
Mike Stump1eb44332009-09-09 15:08:12 +00001596
Chris Lattner8b963ef2009-03-05 23:01:03 +00001597 BitWidth = 0;
1598 Member->setInvalidDecl();
1599 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001600
1601 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001602
Douglas Gregor37b372b2009-08-20 22:52:58 +00001603 // If we have declared a member function template, set the access of the
1604 // templated declaration as well.
1605 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1606 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001607 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001608
Anders Carlssonaae5af22011-01-20 04:34:22 +00001609 if (VS.isOverrideSpecified()) {
1610 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1611 if (!MD || !MD->isVirtual()) {
1612 Diag(Member->getLocStart(),
1613 diag::override_keyword_only_allowed_on_virtual_member_functions)
1614 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001615 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001616 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001617 }
1618 if (VS.isFinalSpecified()) {
1619 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1620 if (!MD || !MD->isVirtual()) {
1621 Diag(Member->getLocStart(),
1622 diag::override_keyword_only_allowed_on_virtual_member_functions)
1623 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001624 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001625 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001626 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001627
Douglas Gregorf5251602011-03-08 17:10:18 +00001628 if (VS.getLastLocation().isValid()) {
1629 // Update the end location of a method that has a virt-specifiers.
1630 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1631 MD->setRangeEnd(VS.getLastLocation());
1632 }
1633
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001634 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001635
Douglas Gregor10bd3682008-11-17 22:58:34 +00001636 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001637
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001638 if (isInstField) {
1639 FieldDecl *FD = cast<FieldDecl>(Member);
1640 FieldCollector->Add(FD);
1641
1642 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1643 FD->getLocation())
1644 != DiagnosticsEngine::Ignored) {
1645 // Remember all explicit private FieldDecls that have a name, no side
1646 // effects and are not part of a dependent type declaration.
1647 if (!FD->isImplicit() && FD->getDeclName() &&
1648 FD->getAccess() == AS_private &&
1649 !FD->getParent()->getTypeForDecl()->isDependentType() &&
1650 !InitializationHasSideEffects(*FD))
1651 UnusedPrivateFields.insert(FD);
1652 }
1653 }
1654
John McCalld226f652010-08-21 09:40:31 +00001655 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001656}
1657
Richard Smith7a614d82011-06-11 17:19:42 +00001658/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001659/// in-class initializer for a non-static C++ class member, and after
1660/// instantiating an in-class initializer in a class template. Such actions
1661/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001662void
Richard Smithca523302012-06-10 03:12:00 +00001663Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001664 Expr *InitExpr) {
1665 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001666 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1667 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001668
1669 if (!InitExpr) {
1670 FD->setInvalidDecl();
1671 FD->removeInClassInitializer();
1672 return;
1673 }
1674
Peter Collingbournefef21892011-10-23 18:59:44 +00001675 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1676 FD->setInvalidDecl();
1677 FD->removeInClassInitializer();
1678 return;
1679 }
1680
Richard Smith7a614d82011-06-11 17:19:42 +00001681 ExprResult Init = InitExpr;
1682 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001683 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001684 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001685 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1686 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001687 Expr **Inits = &InitExpr;
1688 unsigned NumInits = 1;
1689 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001690 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001691 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001692 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001693 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1694 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001695 if (Init.isInvalid()) {
1696 FD->setInvalidDecl();
1697 return;
1698 }
1699
Richard Smithca523302012-06-10 03:12:00 +00001700 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001701 }
1702
1703 // C++0x [class.base.init]p7:
1704 // The initialization of each base and member constitutes a
1705 // full-expression.
1706 Init = MaybeCreateExprWithCleanups(Init);
1707 if (Init.isInvalid()) {
1708 FD->setInvalidDecl();
1709 return;
1710 }
1711
1712 InitExpr = Init.release();
1713
1714 FD->setInClassInitializer(InitExpr);
1715}
1716
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001717/// \brief Find the direct and/or virtual base specifiers that
1718/// correspond to the given base type, for use in base initialization
1719/// within a constructor.
1720static bool FindBaseInitializer(Sema &SemaRef,
1721 CXXRecordDecl *ClassDecl,
1722 QualType BaseType,
1723 const CXXBaseSpecifier *&DirectBaseSpec,
1724 const CXXBaseSpecifier *&VirtualBaseSpec) {
1725 // First, check for a direct base class.
1726 DirectBaseSpec = 0;
1727 for (CXXRecordDecl::base_class_const_iterator Base
1728 = ClassDecl->bases_begin();
1729 Base != ClassDecl->bases_end(); ++Base) {
1730 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1731 // We found a direct base of this type. That's what we're
1732 // initializing.
1733 DirectBaseSpec = &*Base;
1734 break;
1735 }
1736 }
1737
1738 // Check for a virtual base class.
1739 // FIXME: We might be able to short-circuit this if we know in advance that
1740 // there are no virtual bases.
1741 VirtualBaseSpec = 0;
1742 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1743 // We haven't found a base yet; search the class hierarchy for a
1744 // virtual base class.
1745 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1746 /*DetectVirtual=*/false);
1747 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1748 BaseType, Paths)) {
1749 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1750 Path != Paths.end(); ++Path) {
1751 if (Path->back().Base->isVirtual()) {
1752 VirtualBaseSpec = Path->back().Base;
1753 break;
1754 }
1755 }
1756 }
1757 }
1758
1759 return DirectBaseSpec || VirtualBaseSpec;
1760}
1761
Sebastian Redl6df65482011-09-24 17:48:25 +00001762/// \brief Handle a C++ member initializer using braced-init-list syntax.
1763MemInitResult
1764Sema::ActOnMemInitializer(Decl *ConstructorD,
1765 Scope *S,
1766 CXXScopeSpec &SS,
1767 IdentifierInfo *MemberOrBase,
1768 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001769 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001770 SourceLocation IdLoc,
1771 Expr *InitList,
1772 SourceLocation EllipsisLoc) {
1773 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001774 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001775 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001776}
1777
1778/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001779MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001780Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001781 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001782 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001783 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001784 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001785 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001786 SourceLocation IdLoc,
1787 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001788 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001789 SourceLocation RParenLoc,
1790 SourceLocation EllipsisLoc) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001791 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1792 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001793 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001794 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001795}
1796
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001797namespace {
1798
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001799// Callback to only accept typo corrections that can be a valid C++ member
1800// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001801class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1802 public:
1803 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1804 : ClassDecl(ClassDecl) {}
1805
1806 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1807 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1808 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1809 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1810 else
1811 return isa<TypeDecl>(ND);
1812 }
1813 return false;
1814 }
1815
1816 private:
1817 CXXRecordDecl *ClassDecl;
1818};
1819
1820}
1821
Sebastian Redl6df65482011-09-24 17:48:25 +00001822/// \brief Handle a C++ member initializer.
1823MemInitResult
1824Sema::BuildMemInitializer(Decl *ConstructorD,
1825 Scope *S,
1826 CXXScopeSpec &SS,
1827 IdentifierInfo *MemberOrBase,
1828 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001829 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001830 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001831 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001832 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001833 if (!ConstructorD)
1834 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001835
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001836 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001837
1838 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001839 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001840 if (!Constructor) {
1841 // The user wrote a constructor initializer on a function that is
1842 // not a C++ constructor. Ignore the error for now, because we may
1843 // have more member initializers coming; we'll diagnose it just
1844 // once in ActOnMemInitializers.
1845 return true;
1846 }
1847
1848 CXXRecordDecl *ClassDecl = Constructor->getParent();
1849
1850 // C++ [class.base.init]p2:
1851 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001852 // constructor's class and, if not found in that scope, are looked
1853 // up in the scope containing the constructor's definition.
1854 // [Note: if the constructor's class contains a member with the
1855 // same name as a direct or virtual base class of the class, a
1856 // mem-initializer-id naming the member or base class and composed
1857 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001858 // mem-initializer-id for the hidden base class may be specified
1859 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001860 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001861 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001862 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001863 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001864 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001865 ValueDecl *Member;
1866 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1867 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001868 if (EllipsisLoc.isValid())
1869 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001870 << MemberOrBase
1871 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001872
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001873 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001874 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001875 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001876 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001877 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001878 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001879 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001880
1881 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001882 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001883 } else if (DS.getTypeSpecType() == TST_decltype) {
1884 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001885 } else {
1886 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1887 LookupParsedName(R, S, &SS);
1888
1889 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1890 if (!TyD) {
1891 if (R.isAmbiguous()) return true;
1892
John McCallfd225442010-04-09 19:01:14 +00001893 // We don't want access-control diagnostics here.
1894 R.suppressDiagnostics();
1895
Douglas Gregor7a886e12010-01-19 06:46:48 +00001896 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1897 bool NotUnknownSpecialization = false;
1898 DeclContext *DC = computeDeclContext(SS, false);
1899 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1900 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1901
1902 if (!NotUnknownSpecialization) {
1903 // When the scope specifier can refer to a member of an unknown
1904 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001905 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1906 SS.getWithLocInContext(Context),
1907 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001908 if (BaseType.isNull())
1909 return true;
1910
Douglas Gregor7a886e12010-01-19 06:46:48 +00001911 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001912 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001913 }
1914 }
1915
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001916 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001917 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001918 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001919 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001920 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001921 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001922 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1923 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001924 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001925 // We have found a non-static data member with a similar
1926 // name to what was typed; complain and initialize that
1927 // member.
1928 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1929 << MemberOrBase << true << CorrectedQuotedStr
1930 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1931 Diag(Member->getLocation(), diag::note_previous_decl)
1932 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001933
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001934 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001935 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001936 const CXXBaseSpecifier *DirectBaseSpec;
1937 const CXXBaseSpecifier *VirtualBaseSpec;
1938 if (FindBaseInitializer(*this, ClassDecl,
1939 Context.getTypeDeclType(Type),
1940 DirectBaseSpec, VirtualBaseSpec)) {
1941 // We have found a direct or virtual base class with a
1942 // similar name to what was typed; complain and initialize
1943 // that base class.
1944 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001945 << MemberOrBase << false << CorrectedQuotedStr
1946 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001947
1948 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1949 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001950 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001951 diag::note_base_class_specified_here)
1952 << BaseSpec->getType()
1953 << BaseSpec->getSourceRange();
1954
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001955 TyD = Type;
1956 }
1957 }
1958 }
1959
Douglas Gregor7a886e12010-01-19 06:46:48 +00001960 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001961 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001962 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001963 return true;
1964 }
John McCall2b194412009-12-21 10:41:20 +00001965 }
1966
Douglas Gregor7a886e12010-01-19 06:46:48 +00001967 if (BaseType.isNull()) {
1968 BaseType = Context.getTypeDeclType(TyD);
1969 if (SS.isSet()) {
1970 NestedNameSpecifier *Qualifier =
1971 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001972
Douglas Gregor7a886e12010-01-19 06:46:48 +00001973 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001974 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001975 }
John McCall2b194412009-12-21 10:41:20 +00001976 }
1977 }
Mike Stump1eb44332009-09-09 15:08:12 +00001978
John McCalla93c9342009-12-07 02:54:59 +00001979 if (!TInfo)
1980 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001981
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001982 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001983}
1984
Chandler Carruth81c64772011-09-03 01:14:15 +00001985/// Checks a member initializer expression for cases where reference (or
1986/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00001987static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
1988 Expr *Init,
1989 SourceLocation IdLoc) {
1990 QualType MemberTy = Member->getType();
1991
1992 // We only handle pointers and references currently.
1993 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
1994 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
1995 return;
1996
1997 const bool IsPointer = MemberTy->isPointerType();
1998 if (IsPointer) {
1999 if (const UnaryOperator *Op
2000 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2001 // The only case we're worried about with pointers requires taking the
2002 // address.
2003 if (Op->getOpcode() != UO_AddrOf)
2004 return;
2005
2006 Init = Op->getSubExpr();
2007 } else {
2008 // We only handle address-of expression initializers for pointers.
2009 return;
2010 }
2011 }
2012
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002013 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2014 // Taking the address of a temporary will be diagnosed as a hard error.
2015 if (IsPointer)
2016 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002017
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002018 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2019 << Member << Init->getSourceRange();
2020 } else if (const DeclRefExpr *DRE
2021 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2022 // We only warn when referring to a non-reference parameter declaration.
2023 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2024 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002025 return;
2026
2027 S.Diag(Init->getExprLoc(),
2028 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2029 : diag::warn_bind_ref_member_to_parameter)
2030 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002031 } else {
2032 // Other initializers are fine.
2033 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002034 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002035
2036 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2037 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002038}
2039
John McCallb4190042009-11-04 23:02:40 +00002040/// Checks an initializer expression for use of uninitialized fields, such as
2041/// containing the field that is being initialized. Returns true if there is an
2042/// uninitialized field was used an updates the SourceLocation parameter; false
2043/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00002044static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichet00eb3f92010-12-04 09:14:42 +00002045 const ValueDecl *LhsField,
Nick Lewycky43ad1822010-06-15 07:32:55 +00002046 SourceLocation *L) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002047 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
2048
Nick Lewycky43ad1822010-06-15 07:32:55 +00002049 if (isa<CallExpr>(S)) {
2050 // Do not descend into function calls or constructors, as the use
2051 // of an uninitialized field may be valid. One would have to inspect
2052 // the contents of the function/ctor to determine if it is safe or not.
2053 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
2054 // may be safe, depending on what the function/ctor does.
2055 return false;
2056 }
2057 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
2058 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002059
2060 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
2061 // The member expression points to a static data member.
2062 assert(VD->isStaticDataMember() &&
2063 "Member points to non-static data member!");
Nick Lewyckyedd59112010-10-06 18:37:39 +00002064 (void)VD;
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002065 return false;
2066 }
2067
2068 if (isa<EnumConstantDecl>(RhsField)) {
2069 // The member expression points to an enum.
2070 return false;
2071 }
2072
John McCallb4190042009-11-04 23:02:40 +00002073 if (RhsField == LhsField) {
2074 // Initializing a field with itself. Throw a warning.
2075 // But wait; there are exceptions!
2076 // Exception #1: The field may not belong to this record.
2077 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00002078 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00002079 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
2080 // Even though the field matches, it does not belong to this record.
2081 return false;
2082 }
2083 // None of the exceptions triggered; return true to indicate an
2084 // uninitialized field was used.
2085 *L = ME->getMemberLoc();
2086 return true;
2087 }
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002088 } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
Argyrios Kyrtzidisff8819b2010-09-21 10:47:20 +00002089 // sizeof/alignof doesn't reference contents, do not warn.
2090 return false;
2091 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
2092 // address-of doesn't reference contents (the pointer may be dereferenced
2093 // in the same expression but it would be rare; and weird).
2094 if (UOE->getOpcode() == UO_AddrOf)
2095 return false;
John McCallb4190042009-11-04 23:02:40 +00002096 }
John McCall7502c1d2011-02-13 04:07:26 +00002097 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewycky43ad1822010-06-15 07:32:55 +00002098 if (!*it) {
2099 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00002100 continue;
2101 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002102 if (InitExprContainsUninitializedFields(*it, LhsField, L))
2103 return true;
John McCallb4190042009-11-04 23:02:40 +00002104 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002105 return false;
John McCallb4190042009-11-04 23:02:40 +00002106}
2107
John McCallf312b1e2010-08-26 23:41:50 +00002108MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002109Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002110 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002111 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2112 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2113 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002114 "Member must be a FieldDecl or IndirectFieldDecl");
2115
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002116 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002117 return true;
2118
Douglas Gregor464b2f02010-11-05 22:21:31 +00002119 if (Member->isInvalidDecl())
2120 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002121
John McCallb4190042009-11-04 23:02:40 +00002122 // Diagnose value-uses of fields to initialize themselves, e.g.
2123 // foo(foo)
2124 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002125 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002126 Expr **Args;
2127 unsigned NumArgs;
2128 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2129 Args = ParenList->getExprs();
2130 NumArgs = ParenList->getNumExprs();
2131 } else {
2132 InitListExpr *InitList = cast<InitListExpr>(Init);
2133 Args = InitList->getInits();
2134 NumArgs = InitList->getNumInits();
2135 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002136
2137 // Mark FieldDecl as being used if it is a non-primitive type and the
2138 // initializer does not call the default constructor (which is trivial
2139 // for all entries in UnusedPrivateFields).
2140 // FIXME: Make this smarter once more side effect-free types can be
2141 // determined.
2142 if (NumArgs > 0) {
2143 if (Member->getType()->isRecordType()) {
2144 UnusedPrivateFields.remove(Member);
2145 } else {
2146 for (unsigned i = 0; i < NumArgs; ++i) {
2147 if (Args[i]->HasSideEffects(Context)) {
2148 UnusedPrivateFields.remove(Member);
2149 break;
2150 }
2151 }
2152 }
2153 }
2154
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002155 for (unsigned i = 0; i < NumArgs; ++i) {
John McCallb4190042009-11-04 23:02:40 +00002156 SourceLocation L;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002157 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
John McCallb4190042009-11-04 23:02:40 +00002158 // FIXME: Return true in the case when other fields are used before being
2159 // uninitialized. For example, let this field be the i'th field. When
2160 // initializing the i'th field, throw a warning if any of the >= i'th
2161 // fields are used, as they are not yet initialized.
2162 // Right now we are only handling the case where the i'th field uses
2163 // itself in its initializer.
2164 Diag(L, diag::warn_field_is_uninit);
2165 }
2166 }
2167
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002168 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002169
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002170 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002171 // Can't check initialization for a member of dependent type or when
2172 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002173 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002174 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002175 bool InitList = false;
2176 if (isa<InitListExpr>(Init)) {
2177 InitList = true;
2178 Args = &Init;
2179 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002180
2181 if (isStdInitializerList(Member->getType(), 0)) {
2182 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2183 << /*at end of ctor*/1 << InitRange;
2184 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002185 }
2186
Chandler Carruth894aed92010-12-06 09:23:57 +00002187 // Initialize the member.
2188 InitializedEntity MemberEntity =
2189 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2190 : InitializedEntity::InitializeMember(IndirectMember, 0);
2191 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002192 InitList ? InitializationKind::CreateDirectList(IdLoc)
2193 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2194 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002195
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002196 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2197 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
2198 MultiExprArg(*this, Args, NumArgs),
2199 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002200 if (MemberInit.isInvalid())
2201 return true;
2202
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002203 CheckImplicitConversions(MemberInit.get(),
2204 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002205
2206 // C++0x [class.base.init]p7:
2207 // The initialization of each base and member constitutes a
2208 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002209 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002210 if (MemberInit.isInvalid())
2211 return true;
2212
2213 // If we are in a dependent context, template instantiation will
2214 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002215 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002216 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2217 // of the information that we have about the member
2218 // initializer. However, deconstructing the ASTs is a dicey process,
2219 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002220 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002221 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002222 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002223 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002224 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2225 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002226 }
2227
Chandler Carruth894aed92010-12-06 09:23:57 +00002228 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002229 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2230 InitRange.getBegin(), Init,
2231 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002232 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002233 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2234 InitRange.getBegin(), Init,
2235 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002236 }
Eli Friedman59c04372009-07-29 19:44:27 +00002237}
2238
John McCallf312b1e2010-08-26 23:41:50 +00002239MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002240Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002241 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002242 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002243 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002244 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002245 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002246 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002247
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002248 bool InitList = true;
2249 Expr **Args = &Init;
2250 unsigned NumArgs = 1;
2251 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2252 InitList = false;
2253 Args = ParenList->getExprs();
2254 NumArgs = ParenList->getNumExprs();
2255 }
2256
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002257 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002258 // Initialize the object.
2259 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2260 QualType(ClassDecl->getTypeForDecl(), 0));
2261 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002262 InitList ? InitializationKind::CreateDirectList(NameLoc)
2263 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2264 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002265 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2266 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
2267 MultiExprArg(*this, Args,NumArgs),
2268 0);
Sean Hunt41717662011-02-26 19:13:13 +00002269 if (DelegationInit.isInvalid())
2270 return true;
2271
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002272 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2273 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002274
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002275 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002276
2277 // C++0x [class.base.init]p7:
2278 // The initialization of each base and member constitutes a
2279 // full-expression.
2280 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2281 if (DelegationInit.isInvalid())
2282 return true;
2283
Eli Friedmand21016f2012-05-19 23:35:23 +00002284 // If we are in a dependent context, template instantiation will
2285 // perform this type-checking again. Just save the arguments that we
2286 // received in a ParenListExpr.
2287 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2288 // of the information that we have about the base
2289 // initializer. However, deconstructing the ASTs is a dicey process,
2290 // and this approach is far more likely to get the corner cases right.
2291 if (CurContext->isDependentContext())
2292 DelegationInit = Owned(Init);
2293
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002294 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002295 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002296 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002297}
2298
2299MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002300Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002301 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002302 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002303 SourceLocation BaseLoc
2304 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002305
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002306 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2307 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2308 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2309
2310 // C++ [class.base.init]p2:
2311 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002312 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002313 // of that class, the mem-initializer is ill-formed. A
2314 // mem-initializer-list can initialize a base class using any
2315 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002316 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002317
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002318 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002319 if (EllipsisLoc.isValid()) {
2320 // This is a pack expansion.
2321 if (!BaseType->containsUnexpandedParameterPack()) {
2322 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002323 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002324
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002325 EllipsisLoc = SourceLocation();
2326 }
2327 } else {
2328 // Check for any unexpanded parameter packs.
2329 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2330 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002331
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002332 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002333 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002334 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002335
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002336 // Check for direct and virtual base classes.
2337 const CXXBaseSpecifier *DirectBaseSpec = 0;
2338 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2339 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002340 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2341 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002342 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002343
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002344 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2345 VirtualBaseSpec);
2346
2347 // C++ [base.class.init]p2:
2348 // Unless the mem-initializer-id names a nonstatic data member of the
2349 // constructor's class or a direct or virtual base of that class, the
2350 // mem-initializer is ill-formed.
2351 if (!DirectBaseSpec && !VirtualBaseSpec) {
2352 // If the class has any dependent bases, then it's possible that
2353 // one of those types will resolve to the same type as
2354 // BaseType. Therefore, just treat this as a dependent base
2355 // class initialization. FIXME: Should we try to check the
2356 // initialization anyway? It seems odd.
2357 if (ClassDecl->hasAnyDependentBases())
2358 Dependent = true;
2359 else
2360 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2361 << BaseType << Context.getTypeDeclType(ClassDecl)
2362 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2363 }
2364 }
2365
2366 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002367 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002368
Sebastian Redl6df65482011-09-24 17:48:25 +00002369 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2370 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002371 InitRange.getBegin(), Init,
2372 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002373 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002374
2375 // C++ [base.class.init]p2:
2376 // If a mem-initializer-id is ambiguous because it designates both
2377 // a direct non-virtual base class and an inherited virtual base
2378 // class, the mem-initializer is ill-formed.
2379 if (DirectBaseSpec && VirtualBaseSpec)
2380 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002381 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002382
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002383 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002384 if (!BaseSpec)
2385 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2386
2387 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002388 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002389 Expr **Args = &Init;
2390 unsigned NumArgs = 1;
2391 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002392 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002393 Args = ParenList->getExprs();
2394 NumArgs = ParenList->getNumExprs();
2395 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002396
2397 InitializedEntity BaseEntity =
2398 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2399 InitializationKind Kind =
2400 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2401 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2402 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002403 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2404 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
2405 MultiExprArg(*this, Args, NumArgs),
2406 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002407 if (BaseInit.isInvalid())
2408 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002409
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002410 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002411
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002412 // C++0x [class.base.init]p7:
2413 // The initialization of each base and member constitutes a
2414 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002415 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002416 if (BaseInit.isInvalid())
2417 return true;
2418
2419 // If we are in a dependent context, template instantiation will
2420 // perform this type-checking again. Just save the arguments that we
2421 // received in a ParenListExpr.
2422 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2423 // of the information that we have about the base
2424 // initializer. However, deconstructing the ASTs is a dicey process,
2425 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002426 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002427 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002428
Sean Huntcbb67482011-01-08 20:30:50 +00002429 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002430 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002431 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002432 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002433 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002434}
2435
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002436// Create a static_cast\<T&&>(expr).
2437static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2438 QualType ExprType = E->getType();
2439 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2440 SourceLocation ExprLoc = E->getLocStart();
2441 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2442 TargetType, ExprLoc);
2443
2444 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2445 SourceRange(ExprLoc, ExprLoc),
2446 E->getSourceRange()).take();
2447}
2448
Anders Carlssone5ef7402010-04-23 03:10:23 +00002449/// ImplicitInitializerKind - How an implicit base or member initializer should
2450/// initialize its base or member.
2451enum ImplicitInitializerKind {
2452 IIK_Default,
2453 IIK_Copy,
2454 IIK_Move
2455};
2456
Anders Carlssondefefd22010-04-23 02:00:02 +00002457static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002458BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002459 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002460 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002461 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002462 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002463 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002464 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2465 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002466
John McCall60d7b3a2010-08-24 06:29:42 +00002467 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002468
2469 switch (ImplicitInitKind) {
2470 case IIK_Default: {
2471 InitializationKind InitKind
2472 = InitializationKind::CreateDefault(Constructor->getLocation());
2473 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2474 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002475 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002476 break;
2477 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002478
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002479 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002480 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002481 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002482 ParmVarDecl *Param = Constructor->getParamDecl(0);
2483 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002484
Anders Carlssone5ef7402010-04-23 03:10:23 +00002485 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002486 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002487 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002488 Constructor->getLocation(), ParamType,
2489 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002490
Eli Friedman5f2987c2012-02-02 03:46:19 +00002491 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2492
Anders Carlssonc7957502010-04-24 22:02:54 +00002493 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002494 QualType ArgTy =
2495 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2496 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002497
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002498 if (Moving) {
2499 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2500 }
2501
John McCallf871d0c2010-08-07 06:22:56 +00002502 CXXCastPath BasePath;
2503 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002504 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2505 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002506 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002507 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002508
Anders Carlssone5ef7402010-04-23 03:10:23 +00002509 InitializationKind InitKind
2510 = InitializationKind::CreateDirect(Constructor->getLocation(),
2511 SourceLocation(), SourceLocation());
2512 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2513 &CopyCtorArg, 1);
2514 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002515 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002516 break;
2517 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002518 }
John McCall9ae2f072010-08-23 23:25:46 +00002519
Douglas Gregor53c374f2010-12-07 00:41:46 +00002520 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002521 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002522 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002523
Anders Carlssondefefd22010-04-23 02:00:02 +00002524 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002525 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002526 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2527 SourceLocation()),
2528 BaseSpec->isVirtual(),
2529 SourceLocation(),
2530 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002531 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002532 SourceLocation());
2533
Anders Carlssondefefd22010-04-23 02:00:02 +00002534 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002535}
2536
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002537static bool RefersToRValueRef(Expr *MemRef) {
2538 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2539 return Referenced->getType()->isRValueReferenceType();
2540}
2541
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002542static bool
2543BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002544 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002545 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002546 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002547 if (Field->isInvalidDecl())
2548 return true;
2549
Chandler Carruthf186b542010-06-29 23:50:44 +00002550 SourceLocation Loc = Constructor->getLocation();
2551
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002552 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2553 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002554 ParmVarDecl *Param = Constructor->getParamDecl(0);
2555 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002556
2557 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002558 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2559 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002560
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002561 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002562 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002563 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002564 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002565
Eli Friedman5f2987c2012-02-02 03:46:19 +00002566 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2567
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002568 if (Moving) {
2569 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2570 }
2571
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002572 // Build a reference to this field within the parameter.
2573 CXXScopeSpec SS;
2574 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2575 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002576 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2577 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002578 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002579 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002580 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002581 ParamType, Loc,
2582 /*IsArrow=*/false,
2583 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002584 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002585 /*FirstQualifierInScope=*/0,
2586 MemberLookup,
2587 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002588 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002589 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002590
2591 // C++11 [class.copy]p15:
2592 // - if a member m has rvalue reference type T&&, it is direct-initialized
2593 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002594 if (RefersToRValueRef(CtorArg.get())) {
2595 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002596 }
2597
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002598 // When the field we are copying is an array, create index variables for
2599 // each dimension of the array. We use these index variables to subscript
2600 // the source array, and other clients (e.g., CodeGen) will perform the
2601 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002602 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002603 QualType BaseType = Field->getType();
2604 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002605 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002606 while (const ConstantArrayType *Array
2607 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002608 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002609 // Create the iteration variable for this array index.
2610 IdentifierInfo *IterationVarName = 0;
2611 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002612 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002613 llvm::raw_svector_ostream OS(Str);
2614 OS << "__i" << IndexVariables.size();
2615 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2616 }
2617 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002618 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002619 IterationVarName, SizeType,
2620 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002621 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002622 IndexVariables.push_back(IterationVar);
2623
2624 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002625 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002626 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002627 assert(!IterationVarRef.isInvalid() &&
2628 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002629 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2630 assert(!IterationVarRef.isInvalid() &&
2631 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002632
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002633 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002634 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002635 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002636 Loc);
2637 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002638 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002639
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002640 BaseType = Array->getElementType();
2641 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002642
2643 // The array subscript expression is an lvalue, which is wrong for moving.
2644 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002645 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002646
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002647 // Construct the entity that we will be initializing. For an array, this
2648 // will be first element in the array, which may require several levels
2649 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002650 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002651 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002652 if (Indirect)
2653 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2654 else
2655 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002656 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2657 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2658 0,
2659 Entities.back()));
2660
2661 // Direct-initialize to use the copy constructor.
2662 InitializationKind InitKind =
2663 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2664
Sebastian Redl74e611a2011-09-04 18:14:28 +00002665 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002666 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002667 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002668
John McCall60d7b3a2010-08-24 06:29:42 +00002669 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002670 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002671 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002672 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002673 if (MemberInit.isInvalid())
2674 return true;
2675
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002676 if (Indirect) {
2677 assert(IndexVariables.size() == 0 &&
2678 "Indirect field improperly initialized");
2679 CXXMemberInit
2680 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2681 Loc, Loc,
2682 MemberInit.takeAs<Expr>(),
2683 Loc);
2684 } else
2685 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2686 Loc, MemberInit.takeAs<Expr>(),
2687 Loc,
2688 IndexVariables.data(),
2689 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002690 return false;
2691 }
2692
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002693 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2694
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002695 QualType FieldBaseElementType =
2696 SemaRef.Context.getBaseElementType(Field->getType());
2697
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002698 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002699 InitializedEntity InitEntity
2700 = Indirect? InitializedEntity::InitializeMember(Indirect)
2701 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002702 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002703 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002704
2705 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002706 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002707 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002708
Douglas Gregor53c374f2010-12-07 00:41:46 +00002709 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002710 if (MemberInit.isInvalid())
2711 return true;
2712
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002713 if (Indirect)
2714 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2715 Indirect, Loc,
2716 Loc,
2717 MemberInit.get(),
2718 Loc);
2719 else
2720 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2721 Field, Loc, Loc,
2722 MemberInit.get(),
2723 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002724 return false;
2725 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002726
Sean Hunt1f2f3842011-05-17 00:19:05 +00002727 if (!Field->getParent()->isUnion()) {
2728 if (FieldBaseElementType->isReferenceType()) {
2729 SemaRef.Diag(Constructor->getLocation(),
2730 diag::err_uninitialized_member_in_ctor)
2731 << (int)Constructor->isImplicit()
2732 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2733 << 0 << Field->getDeclName();
2734 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2735 return true;
2736 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002737
Sean Hunt1f2f3842011-05-17 00:19:05 +00002738 if (FieldBaseElementType.isConstQualified()) {
2739 SemaRef.Diag(Constructor->getLocation(),
2740 diag::err_uninitialized_member_in_ctor)
2741 << (int)Constructor->isImplicit()
2742 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2743 << 1 << Field->getDeclName();
2744 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2745 return true;
2746 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002747 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002748
David Blaikie4e4d0842012-03-11 07:00:24 +00002749 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002750 FieldBaseElementType->isObjCRetainableType() &&
2751 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2752 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
2753 // Instant objects:
2754 // Default-initialize Objective-C pointers to NULL.
2755 CXXMemberInit
2756 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2757 Loc, Loc,
2758 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2759 Loc);
2760 return false;
2761 }
2762
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002763 // Nothing to initialize.
2764 CXXMemberInit = 0;
2765 return false;
2766}
John McCallf1860e52010-05-20 23:23:51 +00002767
2768namespace {
2769struct BaseAndFieldInfo {
2770 Sema &S;
2771 CXXConstructorDecl *Ctor;
2772 bool AnyErrorsInInits;
2773 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002774 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002775 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002776
2777 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2778 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002779 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2780 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002781 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002782 else if (Generated && Ctor->isMoveConstructor())
2783 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002784 else
2785 IIK = IIK_Default;
2786 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002787
2788 bool isImplicitCopyOrMove() const {
2789 switch (IIK) {
2790 case IIK_Copy:
2791 case IIK_Move:
2792 return true;
2793
2794 case IIK_Default:
2795 return false;
2796 }
David Blaikie30263482012-01-20 21:50:17 +00002797
2798 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002799 }
John McCallf1860e52010-05-20 23:23:51 +00002800};
2801}
2802
Richard Smitha4950662011-09-19 13:34:43 +00002803/// \brief Determine whether the given indirect field declaration is somewhere
2804/// within an anonymous union.
2805static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2806 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2807 CEnd = F->chain_end();
2808 C != CEnd; ++C)
2809 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2810 if (Record->isUnion())
2811 return true;
2812
2813 return false;
2814}
2815
Douglas Gregorddb21472011-11-02 23:04:16 +00002816/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2817/// array type.
2818static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2819 if (T->isIncompleteArrayType())
2820 return true;
2821
2822 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2823 if (!ArrayT->getSize())
2824 return true;
2825
2826 T = ArrayT->getElementType();
2827 }
2828
2829 return false;
2830}
2831
Richard Smith7a614d82011-06-11 17:19:42 +00002832static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002833 FieldDecl *Field,
2834 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002835
Chandler Carruthe861c602010-06-30 02:59:29 +00002836 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00002837 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002838 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00002839 return false;
2840 }
2841
Richard Smith7a614d82011-06-11 17:19:42 +00002842 // C++0x [class.base.init]p8: if the entity is a non-static data member that
2843 // has a brace-or-equal-initializer, the entity is initialized as specified
2844 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002845 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002846 CXXCtorInitializer *Init;
2847 if (Indirect)
2848 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2849 SourceLocation(),
2850 SourceLocation(), 0,
2851 SourceLocation());
2852 else
2853 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2854 SourceLocation(),
2855 SourceLocation(), 0,
2856 SourceLocation());
2857 Info.AllToInit.push_back(Init);
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002858
2859 // Check whether this initializer makes the field "used".
2860 Expr *InitExpr = Field->getInClassInitializer();
2861 if (Field->getType()->isRecordType() ||
2862 (InitExpr && InitExpr->HasSideEffects(SemaRef.Context)))
2863 SemaRef.UnusedPrivateFields.remove(Field);
2864
Richard Smith7a614d82011-06-11 17:19:42 +00002865 return false;
2866 }
2867
Richard Smithc115f632011-09-18 11:14:50 +00002868 // Don't build an implicit initializer for union members if none was
2869 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00002870 if (Field->getParent()->isUnion() ||
2871 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00002872 return false;
2873
Douglas Gregorddb21472011-11-02 23:04:16 +00002874 // Don't initialize incomplete or zero-length arrays.
2875 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2876 return false;
2877
John McCallf1860e52010-05-20 23:23:51 +00002878 // Don't try to build an implicit initializer if there were semantic
2879 // errors in any of the initializers (and therefore we might be
2880 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00002881 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00002882 return false;
2883
Sean Huntcbb67482011-01-08 20:30:50 +00002884 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002885 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2886 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00002887 return true;
John McCallf1860e52010-05-20 23:23:51 +00002888
Francois Pichet00eb3f92010-12-04 09:14:42 +00002889 if (Init)
2890 Info.AllToInit.push_back(Init);
2891
John McCallf1860e52010-05-20 23:23:51 +00002892 return false;
2893}
Sean Hunt059ce0d2011-05-01 07:04:31 +00002894
2895bool
2896Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2897 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00002898 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00002899 Constructor->setNumCtorInitializers(1);
2900 CXXCtorInitializer **initializer =
2901 new (Context) CXXCtorInitializer*[1];
2902 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2903 Constructor->setCtorInitializers(initializer);
2904
Sean Huntb76af9c2011-05-03 23:05:34 +00002905 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002906 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00002907 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2908 }
2909
Sean Huntc1598702011-05-05 00:05:47 +00002910 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00002911
Sean Hunt059ce0d2011-05-01 07:04:31 +00002912 return false;
2913}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002914
John McCallb77115d2011-06-17 00:18:42 +00002915bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2916 CXXCtorInitializer **Initializers,
2917 unsigned NumInitializers,
2918 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00002919 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002920 // Just store the initializers as written, they will be checked during
2921 // instantiation.
2922 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002923 Constructor->setNumCtorInitializers(NumInitializers);
2924 CXXCtorInitializer **baseOrMemberInitializers =
2925 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002926 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002927 NumInitializers * sizeof(CXXCtorInitializer*));
2928 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002929 }
2930
2931 return false;
2932 }
2933
John McCallf1860e52010-05-20 23:23:51 +00002934 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002935
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002936 // We need to build the initializer AST according to order of construction
2937 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002938 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002939 if (!ClassDecl)
2940 return true;
2941
Eli Friedman80c30da2009-11-09 19:20:36 +00002942 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002943
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002944 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002945 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002946
2947 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002948 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002949 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002950 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002951 }
2952
Anders Carlsson711f34a2010-04-21 19:52:01 +00002953 // Keep track of the direct virtual bases.
2954 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2955 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2956 E = ClassDecl->bases_end(); I != E; ++I) {
2957 if (I->isVirtual())
2958 DirectVBases.insert(I);
2959 }
2960
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002961 // Push virtual bases before others.
2962 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2963 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2964
Sean Huntcbb67482011-01-08 20:30:50 +00002965 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002966 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2967 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002968 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002969 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002970 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002971 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002972 VBase, IsInheritedVirtualBase,
2973 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002974 HadError = true;
2975 continue;
2976 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002977
John McCallf1860e52010-05-20 23:23:51 +00002978 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002979 }
2980 }
Mike Stump1eb44332009-09-09 15:08:12 +00002981
John McCallf1860e52010-05-20 23:23:51 +00002982 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002983 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2984 E = ClassDecl->bases_end(); Base != E; ++Base) {
2985 // Virtuals are in the virtual base list and already constructed.
2986 if (Base->isVirtual())
2987 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002988
Sean Huntcbb67482011-01-08 20:30:50 +00002989 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002990 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2991 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002992 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00002993 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002994 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002995 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00002996 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002997 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002998 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002999 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003000
John McCallf1860e52010-05-20 23:23:51 +00003001 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003002 }
3003 }
Mike Stump1eb44332009-09-09 15:08:12 +00003004
John McCallf1860e52010-05-20 23:23:51 +00003005 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003006 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3007 MemEnd = ClassDecl->decls_end();
3008 Mem != MemEnd; ++Mem) {
3009 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003010 // C++ [class.bit]p2:
3011 // A declaration for a bit-field that omits the identifier declares an
3012 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3013 // initialized.
3014 if (F->isUnnamedBitfield())
3015 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003016
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003017 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003018 // handle anonymous struct/union fields based on their individual
3019 // indirect fields.
3020 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3021 continue;
3022
3023 if (CollectFieldInitializer(*this, Info, F))
3024 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003025 continue;
3026 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003027
3028 // Beyond this point, we only consider default initialization.
3029 if (Info.IIK != IIK_Default)
3030 continue;
3031
3032 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3033 if (F->getType()->isIncompleteArrayType()) {
3034 assert(ClassDecl->hasFlexibleArrayMember() &&
3035 "Incomplete array type is not valid");
3036 continue;
3037 }
3038
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003039 // Initialize each field of an anonymous struct individually.
3040 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3041 HadError = true;
3042
3043 continue;
3044 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003045 }
Mike Stump1eb44332009-09-09 15:08:12 +00003046
John McCallf1860e52010-05-20 23:23:51 +00003047 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003048 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003049 Constructor->setNumCtorInitializers(NumInitializers);
3050 CXXCtorInitializer **baseOrMemberInitializers =
3051 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003052 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003053 NumInitializers * sizeof(CXXCtorInitializer*));
3054 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003055
John McCallef027fe2010-03-16 21:39:52 +00003056 // Constructors implicitly reference the base and member
3057 // destructors.
3058 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3059 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003060 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003061
3062 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003063}
3064
Eli Friedman6347f422009-07-21 19:28:10 +00003065static void *GetKeyForTopLevelField(FieldDecl *Field) {
3066 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003067 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003068 if (RT->getDecl()->isAnonymousStructOrUnion())
3069 return static_cast<void *>(RT->getDecl());
3070 }
3071 return static_cast<void *>(Field);
3072}
3073
Anders Carlssonea356fb2010-04-02 05:42:15 +00003074static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003075 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003076}
3077
Anders Carlssonea356fb2010-04-02 05:42:15 +00003078static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003079 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003080 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003081 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003082
Eli Friedman6347f422009-07-21 19:28:10 +00003083 // For fields injected into the class via declaration of an anonymous union,
3084 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003085 FieldDecl *Field = Member->getAnyMember();
3086
John McCall3c3ccdb2010-04-10 09:28:51 +00003087 // If the field is a member of an anonymous struct or union, our key
3088 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003089 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003090 if (RD->isAnonymousStructOrUnion()) {
3091 while (true) {
3092 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3093 if (Parent->isAnonymousStructOrUnion())
3094 RD = Parent;
3095 else
3096 break;
3097 }
3098
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003099 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003100 }
Mike Stump1eb44332009-09-09 15:08:12 +00003101
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003102 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003103}
3104
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003105static void
3106DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003107 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003108 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003109 unsigned NumInits) {
3110 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003111 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003112
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003113 // Don't check initializers order unless the warning is enabled at the
3114 // location of at least one initializer.
3115 bool ShouldCheckOrder = false;
3116 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003117 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003118 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3119 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003120 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003121 ShouldCheckOrder = true;
3122 break;
3123 }
3124 }
3125 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003126 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003127
John McCalld6ca8da2010-04-10 07:37:23 +00003128 // Build the list of bases and members in the order that they'll
3129 // actually be initialized. The explicit initializers should be in
3130 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003131 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003132
Anders Carlsson071d6102010-04-02 03:38:04 +00003133 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3134
John McCalld6ca8da2010-04-10 07:37:23 +00003135 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003136 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003137 ClassDecl->vbases_begin(),
3138 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003139 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003140
John McCalld6ca8da2010-04-10 07:37:23 +00003141 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003142 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003143 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003144 if (Base->isVirtual())
3145 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003146 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003147 }
Mike Stump1eb44332009-09-09 15:08:12 +00003148
John McCalld6ca8da2010-04-10 07:37:23 +00003149 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003150 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003151 E = ClassDecl->field_end(); Field != E; ++Field) {
3152 if (Field->isUnnamedBitfield())
3153 continue;
3154
David Blaikie581deb32012-06-06 20:45:41 +00003155 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003156 }
3157
John McCalld6ca8da2010-04-10 07:37:23 +00003158 unsigned NumIdealInits = IdealInitKeys.size();
3159 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003160
Sean Huntcbb67482011-01-08 20:30:50 +00003161 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003162 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003163 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003164 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003165
3166 // Scan forward to try to find this initializer in the idealized
3167 // initializers list.
3168 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3169 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003170 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003171
3172 // If we didn't find this initializer, it must be because we
3173 // scanned past it on a previous iteration. That can only
3174 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003175 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003176 Sema::SemaDiagnosticBuilder D =
3177 SemaRef.Diag(PrevInit->getSourceLocation(),
3178 diag::warn_initializer_out_of_order);
3179
Francois Pichet00eb3f92010-12-04 09:14:42 +00003180 if (PrevInit->isAnyMemberInitializer())
3181 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003182 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003183 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003184
Francois Pichet00eb3f92010-12-04 09:14:42 +00003185 if (Init->isAnyMemberInitializer())
3186 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003187 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003188 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003189
3190 // Move back to the initializer's location in the ideal list.
3191 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3192 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003193 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003194
3195 assert(IdealIndex != NumIdealInits &&
3196 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003197 }
John McCalld6ca8da2010-04-10 07:37:23 +00003198
3199 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003200 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003201}
3202
John McCall3c3ccdb2010-04-10 09:28:51 +00003203namespace {
3204bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003205 CXXCtorInitializer *Init,
3206 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003207 if (!PrevInit) {
3208 PrevInit = Init;
3209 return false;
3210 }
3211
3212 if (FieldDecl *Field = Init->getMember())
3213 S.Diag(Init->getSourceLocation(),
3214 diag::err_multiple_mem_initialization)
3215 << Field->getDeclName()
3216 << Init->getSourceRange();
3217 else {
John McCallf4c73712011-01-19 06:33:43 +00003218 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003219 assert(BaseClass && "neither field nor base");
3220 S.Diag(Init->getSourceLocation(),
3221 diag::err_multiple_base_initialization)
3222 << QualType(BaseClass, 0)
3223 << Init->getSourceRange();
3224 }
3225 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3226 << 0 << PrevInit->getSourceRange();
3227
3228 return true;
3229}
3230
Sean Huntcbb67482011-01-08 20:30:50 +00003231typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003232typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3233
3234bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003235 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003236 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003237 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003238 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003239 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003240
3241 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003242 if (Parent->isUnion()) {
3243 UnionEntry &En = Unions[Parent];
3244 if (En.first && En.first != Child) {
3245 S.Diag(Init->getSourceLocation(),
3246 diag::err_multiple_mem_union_initialization)
3247 << Field->getDeclName()
3248 << Init->getSourceRange();
3249 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3250 << 0 << En.second->getSourceRange();
3251 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003252 }
3253 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003254 En.first = Child;
3255 En.second = Init;
3256 }
David Blaikie6fe29652011-11-17 06:01:57 +00003257 if (!Parent->isAnonymousStructOrUnion())
3258 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003259 }
3260
3261 Child = Parent;
3262 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003263 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003264
3265 return false;
3266}
3267}
3268
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003269/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003270void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003271 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003272 CXXCtorInitializer **meminits,
3273 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003274 bool AnyErrors) {
3275 if (!ConstructorDecl)
3276 return;
3277
3278 AdjustDeclIfTemplate(ConstructorDecl);
3279
3280 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003281 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003282
3283 if (!Constructor) {
3284 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3285 return;
3286 }
3287
Sean Huntcbb67482011-01-08 20:30:50 +00003288 CXXCtorInitializer **MemInits =
3289 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003290
3291 // Mapping for the duplicate initializers check.
3292 // For member initializers, this is keyed with a FieldDecl*.
3293 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003294 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003295
3296 // Mapping for the inconsistent anonymous-union initializers check.
3297 RedundantUnionMap MemberUnions;
3298
Anders Carlssonea356fb2010-04-02 05:42:15 +00003299 bool HadError = false;
3300 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003301 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003302
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003303 // Set the source order index.
3304 Init->setSourceOrder(i);
3305
Francois Pichet00eb3f92010-12-04 09:14:42 +00003306 if (Init->isAnyMemberInitializer()) {
3307 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003308 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3309 CheckRedundantUnionInit(*this, Init, MemberUnions))
3310 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003311 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003312 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3313 if (CheckRedundantInit(*this, Init, Members[Key]))
3314 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003315 } else {
3316 assert(Init->isDelegatingInitializer());
3317 // This must be the only initializer
3318 if (i != 0 || NumMemInits > 1) {
3319 Diag(MemInits[0]->getSourceLocation(),
3320 diag::err_delegating_initializer_alone)
3321 << MemInits[0]->getSourceRange();
3322 HadError = true;
Sean Hunt059ce0d2011-05-01 07:04:31 +00003323 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003324 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003325 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003326 // Return immediately as the initializer is set.
3327 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003328 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003329 }
3330
Anders Carlssonea356fb2010-04-02 05:42:15 +00003331 if (HadError)
3332 return;
3333
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003334 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003335
Sean Huntcbb67482011-01-08 20:30:50 +00003336 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003337}
3338
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003339void
John McCallef027fe2010-03-16 21:39:52 +00003340Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3341 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003342 // Ignore dependent contexts. Also ignore unions, since their members never
3343 // have destructors implicitly called.
3344 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003345 return;
John McCall58e6f342010-03-16 05:22:47 +00003346
3347 // FIXME: all the access-control diagnostics are positioned on the
3348 // field/base declaration. That's probably good; that said, the
3349 // user might reasonably want to know why the destructor is being
3350 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003351
Anders Carlsson9f853df2009-11-17 04:44:12 +00003352 // Non-static data members.
3353 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3354 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003355 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003356 if (Field->isInvalidDecl())
3357 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003358
3359 // Don't destroy incomplete or zero-length arrays.
3360 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3361 continue;
3362
Anders Carlsson9f853df2009-11-17 04:44:12 +00003363 QualType FieldType = Context.getBaseElementType(Field->getType());
3364
3365 const RecordType* RT = FieldType->getAs<RecordType>();
3366 if (!RT)
3367 continue;
3368
3369 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003370 if (FieldClassDecl->isInvalidDecl())
3371 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003372 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003373 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003374 // The destructor for an implicit anonymous union member is never invoked.
3375 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3376 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003377
Douglas Gregordb89f282010-07-01 22:47:18 +00003378 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003379 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003380 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003381 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003382 << Field->getDeclName()
3383 << FieldType);
3384
Eli Friedman5f2987c2012-02-02 03:46:19 +00003385 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003386 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003387 }
3388
John McCall58e6f342010-03-16 05:22:47 +00003389 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3390
Anders Carlsson9f853df2009-11-17 04:44:12 +00003391 // Bases.
3392 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3393 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003394 // Bases are always records in a well-formed non-dependent class.
3395 const RecordType *RT = Base->getType()->getAs<RecordType>();
3396
3397 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003398 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003399 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003400
John McCall58e6f342010-03-16 05:22:47 +00003401 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003402 // If our base class is invalid, we probably can't get its dtor anyway.
3403 if (BaseClassDecl->isInvalidDecl())
3404 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003405 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003406 continue;
John McCall58e6f342010-03-16 05:22:47 +00003407
Douglas Gregordb89f282010-07-01 22:47:18 +00003408 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003409 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003410
3411 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003412 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003413 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003414 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003415 << Base->getSourceRange(),
3416 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003417
Eli Friedman5f2987c2012-02-02 03:46:19 +00003418 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003419 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003420 }
3421
3422 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003423 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3424 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003425
3426 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003427 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003428
3429 // Ignore direct virtual bases.
3430 if (DirectVirtualBases.count(RT))
3431 continue;
3432
John McCall58e6f342010-03-16 05:22:47 +00003433 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003434 // If our base class is invalid, we probably can't get its dtor anyway.
3435 if (BaseClassDecl->isInvalidDecl())
3436 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003437 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003438 continue;
John McCall58e6f342010-03-16 05:22:47 +00003439
Douglas Gregordb89f282010-07-01 22:47:18 +00003440 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003441 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003442 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003443 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003444 << VBase->getType(),
3445 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003446
Eli Friedman5f2987c2012-02-02 03:46:19 +00003447 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003448 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003449 }
3450}
3451
John McCalld226f652010-08-21 09:40:31 +00003452void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003453 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003454 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003455
Mike Stump1eb44332009-09-09 15:08:12 +00003456 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003457 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003458 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003459}
3460
Mike Stump1eb44332009-09-09 15:08:12 +00003461bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003462 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003463 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3464 unsigned DiagID;
3465 AbstractDiagSelID SelID;
3466
3467 public:
3468 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3469 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3470
3471 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
3472 if (SelID == -1)
3473 S.Diag(Loc, DiagID) << T;
3474 else
3475 S.Diag(Loc, DiagID) << SelID << T;
3476 }
3477 } Diagnoser(DiagID, SelID);
3478
3479 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003480}
3481
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003482bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003483 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003484 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003485 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003486
Anders Carlsson11f21a02009-03-23 19:10:31 +00003487 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003488 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003489
Ted Kremenek6217b802009-07-29 21:53:49 +00003490 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003491 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003492 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003493 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003494
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003495 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003496 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003497 }
Mike Stump1eb44332009-09-09 15:08:12 +00003498
Ted Kremenek6217b802009-07-29 21:53:49 +00003499 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003500 if (!RT)
3501 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003502
John McCall86ff3082010-02-04 22:26:26 +00003503 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003504
John McCall94c3b562010-08-18 09:41:07 +00003505 // We can't answer whether something is abstract until it has a
3506 // definition. If it's currently being defined, we'll walk back
3507 // over all the declarations when we have a full definition.
3508 const CXXRecordDecl *Def = RD->getDefinition();
3509 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003510 return false;
3511
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003512 if (!RD->isAbstract())
3513 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003514
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003515 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003516 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003517
John McCall94c3b562010-08-18 09:41:07 +00003518 return true;
3519}
3520
3521void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3522 // Check if we've already emitted the list of pure virtual functions
3523 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003524 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003525 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003526
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003527 CXXFinalOverriderMap FinalOverriders;
3528 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003529
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003530 // Keep a set of seen pure methods so we won't diagnose the same method
3531 // more than once.
3532 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3533
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003534 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3535 MEnd = FinalOverriders.end();
3536 M != MEnd;
3537 ++M) {
3538 for (OverridingMethods::iterator SO = M->second.begin(),
3539 SOEnd = M->second.end();
3540 SO != SOEnd; ++SO) {
3541 // C++ [class.abstract]p4:
3542 // A class is abstract if it contains or inherits at least one
3543 // pure virtual function for which the final overrider is pure
3544 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003545
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003546 //
3547 if (SO->second.size() != 1)
3548 continue;
3549
3550 if (!SO->second.front().Method->isPure())
3551 continue;
3552
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003553 if (!SeenPureMethods.insert(SO->second.front().Method))
3554 continue;
3555
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003556 Diag(SO->second.front().Method->getLocation(),
3557 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003558 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003559 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003560 }
3561
3562 if (!PureVirtualClassDiagSet)
3563 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3564 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003565}
3566
Anders Carlsson8211eff2009-03-24 01:19:16 +00003567namespace {
John McCall94c3b562010-08-18 09:41:07 +00003568struct AbstractUsageInfo {
3569 Sema &S;
3570 CXXRecordDecl *Record;
3571 CanQualType AbstractType;
3572 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003573
John McCall94c3b562010-08-18 09:41:07 +00003574 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3575 : S(S), Record(Record),
3576 AbstractType(S.Context.getCanonicalType(
3577 S.Context.getTypeDeclType(Record))),
3578 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003579
John McCall94c3b562010-08-18 09:41:07 +00003580 void DiagnoseAbstractType() {
3581 if (Invalid) return;
3582 S.DiagnoseAbstractType(Record);
3583 Invalid = true;
3584 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003585
John McCall94c3b562010-08-18 09:41:07 +00003586 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3587};
3588
3589struct CheckAbstractUsage {
3590 AbstractUsageInfo &Info;
3591 const NamedDecl *Ctx;
3592
3593 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3594 : Info(Info), Ctx(Ctx) {}
3595
3596 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3597 switch (TL.getTypeLocClass()) {
3598#define ABSTRACT_TYPELOC(CLASS, PARENT)
3599#define TYPELOC(CLASS, PARENT) \
3600 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3601#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003602 }
John McCall94c3b562010-08-18 09:41:07 +00003603 }
Mike Stump1eb44332009-09-09 15:08:12 +00003604
John McCall94c3b562010-08-18 09:41:07 +00003605 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3606 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3607 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003608 if (!TL.getArg(I))
3609 continue;
3610
John McCall94c3b562010-08-18 09:41:07 +00003611 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3612 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003613 }
John McCall94c3b562010-08-18 09:41:07 +00003614 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003615
John McCall94c3b562010-08-18 09:41:07 +00003616 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3617 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3618 }
Mike Stump1eb44332009-09-09 15:08:12 +00003619
John McCall94c3b562010-08-18 09:41:07 +00003620 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3621 // Visit the type parameters from a permissive context.
3622 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3623 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3624 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3625 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3626 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3627 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003628 }
John McCall94c3b562010-08-18 09:41:07 +00003629 }
Mike Stump1eb44332009-09-09 15:08:12 +00003630
John McCall94c3b562010-08-18 09:41:07 +00003631 // Visit pointee types from a permissive context.
3632#define CheckPolymorphic(Type) \
3633 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3634 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3635 }
3636 CheckPolymorphic(PointerTypeLoc)
3637 CheckPolymorphic(ReferenceTypeLoc)
3638 CheckPolymorphic(MemberPointerTypeLoc)
3639 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003640 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003641
John McCall94c3b562010-08-18 09:41:07 +00003642 /// Handle all the types we haven't given a more specific
3643 /// implementation for above.
3644 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3645 // Every other kind of type that we haven't called out already
3646 // that has an inner type is either (1) sugar or (2) contains that
3647 // inner type in some way as a subobject.
3648 if (TypeLoc Next = TL.getNextTypeLoc())
3649 return Visit(Next, Sel);
3650
3651 // If there's no inner type and we're in a permissive context,
3652 // don't diagnose.
3653 if (Sel == Sema::AbstractNone) return;
3654
3655 // Check whether the type matches the abstract type.
3656 QualType T = TL.getType();
3657 if (T->isArrayType()) {
3658 Sel = Sema::AbstractArrayType;
3659 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003660 }
John McCall94c3b562010-08-18 09:41:07 +00003661 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3662 if (CT != Info.AbstractType) return;
3663
3664 // It matched; do some magic.
3665 if (Sel == Sema::AbstractArrayType) {
3666 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3667 << T << TL.getSourceRange();
3668 } else {
3669 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3670 << Sel << T << TL.getSourceRange();
3671 }
3672 Info.DiagnoseAbstractType();
3673 }
3674};
3675
3676void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3677 Sema::AbstractDiagSelID Sel) {
3678 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3679}
3680
3681}
3682
3683/// Check for invalid uses of an abstract type in a method declaration.
3684static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3685 CXXMethodDecl *MD) {
3686 // No need to do the check on definitions, which require that
3687 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003688 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003689 return;
3690
3691 // For safety's sake, just ignore it if we don't have type source
3692 // information. This should never happen for non-implicit methods,
3693 // but...
3694 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3695 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3696}
3697
3698/// Check for invalid uses of an abstract type within a class definition.
3699static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3700 CXXRecordDecl *RD) {
3701 for (CXXRecordDecl::decl_iterator
3702 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3703 Decl *D = *I;
3704 if (D->isImplicit()) continue;
3705
3706 // Methods and method templates.
3707 if (isa<CXXMethodDecl>(D)) {
3708 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3709 } else if (isa<FunctionTemplateDecl>(D)) {
3710 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3711 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3712
3713 // Fields and static variables.
3714 } else if (isa<FieldDecl>(D)) {
3715 FieldDecl *FD = cast<FieldDecl>(D);
3716 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3717 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3718 } else if (isa<VarDecl>(D)) {
3719 VarDecl *VD = cast<VarDecl>(D);
3720 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3721 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3722
3723 // Nested classes and class templates.
3724 } else if (isa<CXXRecordDecl>(D)) {
3725 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3726 } else if (isa<ClassTemplateDecl>(D)) {
3727 CheckAbstractClassUsage(Info,
3728 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3729 }
3730 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003731}
3732
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003733/// \brief Perform semantic checks on a class definition that has been
3734/// completing, introducing implicitly-declared members, checking for
3735/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003736void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003737 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003738 return;
3739
John McCall94c3b562010-08-18 09:41:07 +00003740 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3741 AbstractUsageInfo Info(*this, Record);
3742 CheckAbstractClassUsage(Info, Record);
3743 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003744
3745 // If this is not an aggregate type and has no user-declared constructor,
3746 // complain about any non-static data members of reference or const scalar
3747 // type, since they will never get initializers.
3748 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003749 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3750 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003751 bool Complained = false;
3752 for (RecordDecl::field_iterator F = Record->field_begin(),
3753 FEnd = Record->field_end();
3754 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003755 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003756 continue;
3757
Douglas Gregor325e5932010-04-15 00:00:53 +00003758 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003759 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003760 if (!Complained) {
3761 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3762 << Record->getTagKind() << Record;
3763 Complained = true;
3764 }
3765
3766 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3767 << F->getType()->isReferenceType()
3768 << F->getDeclName();
3769 }
3770 }
3771 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003772
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003773 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003774 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003775
3776 if (Record->getIdentifier()) {
3777 // C++ [class.mem]p13:
3778 // If T is the name of a class, then each of the following shall have a
3779 // name different from T:
3780 // - every member of every anonymous union that is a member of class T.
3781 //
3782 // C++ [class.mem]p14:
3783 // In addition, if class T has a user-declared constructor (12.1), every
3784 // non-static data member of class T shall have a name different from T.
3785 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003786 R.first != R.second; ++R.first) {
3787 NamedDecl *D = *R.first;
3788 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3789 isa<IndirectFieldDecl>(D)) {
3790 Diag(D->getLocation(), diag::err_member_name_of_class)
3791 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003792 break;
3793 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003794 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003795 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003796
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003797 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003798 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003799 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003800 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003801 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3802 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3803 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003804
3805 // See if a method overloads virtual methods in a base
3806 /// class without overriding any.
3807 if (!Record->isDependentType()) {
3808 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3809 MEnd = Record->method_end();
3810 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003811 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003812 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003813 }
3814 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003815
Richard Smith9f569cc2011-10-01 02:31:28 +00003816 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3817 // function that is not a constructor declares that member function to be
3818 // const. [...] The class of which that function is a member shall be
3819 // a literal type.
3820 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003821 // If the class has virtual bases, any constexpr members will already have
3822 // been diagnosed by the checks performed on the member declaration, so
3823 // suppress this (less useful) diagnostic.
3824 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3825 !Record->isLiteral() && !Record->getNumVBases()) {
3826 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3827 MEnd = Record->method_end();
3828 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003829 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003830 switch (Record->getTemplateSpecializationKind()) {
3831 case TSK_ImplicitInstantiation:
3832 case TSK_ExplicitInstantiationDeclaration:
3833 case TSK_ExplicitInstantiationDefinition:
3834 // If a template instantiates to a non-literal type, but its members
3835 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003836 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003837 continue;
3838
3839 case TSK_Undeclared:
3840 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003841 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003842 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003843 break;
3844 }
3845
3846 // Only produce one error per class.
3847 break;
3848 }
3849 }
3850 }
3851
Sebastian Redlf677ea32011-02-05 19:23:19 +00003852 // Declare inherited constructors. We do this eagerly here because:
3853 // - The standard requires an eager diagnostic for conflicting inherited
3854 // constructors from different classes.
3855 // - The lazy declaration of the other implicit constructors is so as to not
3856 // waste space and performance on classes that are not meant to be
3857 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3858 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003859 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003860
Sean Hunteb88ae52011-05-23 21:07:59 +00003861 if (!Record->isDependentType())
3862 CheckExplicitlyDefaultedMethods(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003863}
3864
3865void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003866 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3867 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003868 MI != ME; ++MI)
3869 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00003870 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003871}
3872
Richard Smith3003e1d2012-05-15 04:39:51 +00003873void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
3874 CXXRecordDecl *RD = MD->getParent();
3875 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00003876
Richard Smith3003e1d2012-05-15 04:39:51 +00003877 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
3878 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00003879
3880 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00003881 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00003882 bool First = MD == MD->getCanonicalDecl();
3883
3884 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00003885
3886 // C++11 [dcl.fct.def.default]p1:
3887 // A function that is explicitly defaulted shall
3888 // -- be a special member function (checked elsewhere),
3889 // -- have the same type (except for ref-qualifiers, and except that a
3890 // copy operation can take a non-const reference) as an implicit
3891 // declaration, and
3892 // -- not have default arguments.
3893 unsigned ExpectedParams = 1;
3894 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
3895 ExpectedParams = 0;
3896 if (MD->getNumParams() != ExpectedParams) {
3897 // This also checks for default arguments: a copy or move constructor with a
3898 // default argument is classified as a default constructor, and assignment
3899 // operations and destructors can't have default arguments.
3900 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
3901 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00003902 HadError = true;
3903 }
3904
Richard Smith3003e1d2012-05-15 04:39:51 +00003905 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00003906
Richard Smith3003e1d2012-05-15 04:39:51 +00003907 // Compute implicit exception specification, argument constness, constexpr
3908 // and triviality.
Richard Smithe6975e92012-04-17 00:58:00 +00003909 ImplicitExceptionSpecification Spec(*this);
Richard Smith3003e1d2012-05-15 04:39:51 +00003910 bool Const = false;
3911 bool Constexpr = false;
3912 bool Trivial;
3913 switch (CSM) {
3914 case CXXDefaultConstructor:
3915 Spec = ComputeDefaultedDefaultCtorExceptionSpec(RD);
3916 if (Spec.isDelayed())
3917 // Exception specification depends on some deferred part of the class.
3918 // We'll try again when the class's definition has been fully processed.
3919 return;
3920 Constexpr = RD->defaultedDefaultConstructorIsConstexpr();
3921 Trivial = RD->hasTrivialDefaultConstructor();
3922 break;
3923 case CXXCopyConstructor:
3924 llvm::tie(Spec, Const) =
3925 ComputeDefaultedCopyCtorExceptionSpecAndConst(RD);
3926 Constexpr = RD->defaultedCopyConstructorIsConstexpr();
3927 Trivial = RD->hasTrivialCopyConstructor();
3928 break;
3929 case CXXCopyAssignment:
3930 llvm::tie(Spec, Const) =
3931 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(RD);
3932 Trivial = RD->hasTrivialCopyAssignment();
3933 break;
3934 case CXXMoveConstructor:
3935 Spec = ComputeDefaultedMoveCtorExceptionSpec(RD);
3936 Constexpr = RD->defaultedMoveConstructorIsConstexpr();
3937 Trivial = RD->hasTrivialMoveConstructor();
3938 break;
3939 case CXXMoveAssignment:
3940 Spec = ComputeDefaultedMoveAssignmentExceptionSpec(RD);
3941 Trivial = RD->hasTrivialMoveAssignment();
3942 break;
3943 case CXXDestructor:
3944 Spec = ComputeDefaultedDtorExceptionSpec(RD);
3945 Trivial = RD->hasTrivialDestructor();
3946 break;
3947 case CXXInvalid:
3948 llvm_unreachable("non-special member explicitly defaulted!");
3949 }
Sean Hunt2b188082011-05-14 05:23:28 +00003950
Richard Smith3003e1d2012-05-15 04:39:51 +00003951 QualType ReturnType = Context.VoidTy;
3952 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
3953 // Check for return type matching.
3954 ReturnType = Type->getResultType();
3955 QualType ExpectedReturnType =
3956 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
3957 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
3958 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
3959 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
3960 HadError = true;
3961 }
3962
3963 // A defaulted special member cannot have cv-qualifiers.
3964 if (Type->getTypeQuals()) {
3965 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
3966 << (CSM == CXXMoveAssignment);
3967 HadError = true;
3968 }
3969 }
3970
3971 // Check for parameter type matching.
3972 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
3973 if (ExpectedParams && ArgType->isReferenceType()) {
3974 // Argument must be reference to possibly-const T.
3975 QualType ReferentType = ArgType->getPointeeType();
3976
3977 if (ReferentType.isVolatileQualified()) {
3978 Diag(MD->getLocation(),
3979 diag::err_defaulted_special_member_volatile_param) << CSM;
3980 HadError = true;
3981 }
3982
3983 if (ReferentType.isConstQualified() && !Const) {
3984 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
3985 Diag(MD->getLocation(),
3986 diag::err_defaulted_special_member_copy_const_param)
3987 << (CSM == CXXCopyAssignment);
3988 // FIXME: Explain why this special member can't be const.
3989 } else {
3990 Diag(MD->getLocation(),
3991 diag::err_defaulted_special_member_move_const_param)
3992 << (CSM == CXXMoveAssignment);
3993 }
3994 HadError = true;
3995 }
3996
3997 // If a function is explicitly defaulted on its first declaration, it shall
3998 // have the same parameter type as if it had been implicitly declared.
3999 // (Presumably this is to prevent it from being trivial?)
4000 if (!ReferentType.isConstQualified() && Const && First)
4001 Diag(MD->getLocation(),
4002 diag::err_defaulted_special_member_copy_non_const_param)
4003 << (CSM == CXXCopyAssignment);
4004 } else if (ExpectedParams) {
4005 // A copy assignment operator can take its argument by value, but a
4006 // defaulted one cannot.
4007 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004008 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004009 HadError = true;
4010 }
Sean Huntbe631222011-05-17 20:44:43 +00004011
Richard Smith3003e1d2012-05-15 04:39:51 +00004012 // Rebuild the type with the implicit exception specification added.
4013 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4014 Spec.getEPI(EPI);
4015 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
4016 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004017
Richard Smith61802452011-12-22 02:22:31 +00004018 // C++11 [dcl.fct.def.default]p2:
4019 // An explicitly-defaulted function may be declared constexpr only if it
4020 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004021 // Do not apply this rule to members of class templates, since core issue 1358
4022 // makes such functions always instantiate to constexpr functions. For
4023 // non-constructors, this is checked elsewhere.
4024 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4025 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4026 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
4027 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004028 }
4029 // and may have an explicit exception-specification only if it is compatible
4030 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004031 if (Type->hasExceptionSpec() &&
4032 CheckEquivalentExceptionSpec(
4033 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4034 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4035 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004036
4037 // If a function is explicitly defaulted on its first declaration,
4038 if (First) {
4039 // -- it is implicitly considered to be constexpr if the implicit
4040 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004041 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004042
Richard Smith3003e1d2012-05-15 04:39:51 +00004043 // -- it is implicitly considered to have the same exception-specification
4044 // as if it had been implicitly declared,
4045 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004046
4047 // Such a function is also trivial if the implicitly-declared function
4048 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004049 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004050 }
4051
Richard Smith3003e1d2012-05-15 04:39:51 +00004052 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004053 if (First) {
4054 MD->setDeletedAsWritten();
4055 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004056 // C++11 [dcl.fct.def.default]p4:
4057 // [For a] user-provided explicitly-defaulted function [...] if such a
4058 // function is implicitly defined as deleted, the program is ill-formed.
4059 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4060 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004061 }
4062 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004063
Richard Smith3003e1d2012-05-15 04:39:51 +00004064 if (HadError)
4065 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004066}
4067
Richard Smith7d5088a2012-02-18 02:02:13 +00004068namespace {
4069struct SpecialMemberDeletionInfo {
4070 Sema &S;
4071 CXXMethodDecl *MD;
4072 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004073 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004074
4075 // Properties of the special member, computed for convenience.
4076 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4077 SourceLocation Loc;
4078
4079 bool AllFieldsAreConst;
4080
4081 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004082 Sema::CXXSpecialMember CSM, bool Diagnose)
4083 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004084 IsConstructor(false), IsAssignment(false), IsMove(false),
4085 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4086 AllFieldsAreConst(true) {
4087 switch (CSM) {
4088 case Sema::CXXDefaultConstructor:
4089 case Sema::CXXCopyConstructor:
4090 IsConstructor = true;
4091 break;
4092 case Sema::CXXMoveConstructor:
4093 IsConstructor = true;
4094 IsMove = true;
4095 break;
4096 case Sema::CXXCopyAssignment:
4097 IsAssignment = true;
4098 break;
4099 case Sema::CXXMoveAssignment:
4100 IsAssignment = true;
4101 IsMove = true;
4102 break;
4103 case Sema::CXXDestructor:
4104 break;
4105 case Sema::CXXInvalid:
4106 llvm_unreachable("invalid special member kind");
4107 }
4108
4109 if (MD->getNumParams()) {
4110 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4111 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4112 }
4113 }
4114
4115 bool inUnion() const { return MD->getParent()->isUnion(); }
4116
4117 /// Look up the corresponding special member in the given class.
4118 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class) {
4119 unsigned TQ = MD->getTypeQualifiers();
4120 return S.LookupSpecialMember(Class, CSM, ConstArg, VolatileArg,
4121 MD->getRefQualifier() == RQ_RValue,
4122 TQ & Qualifiers::Const,
4123 TQ & Qualifiers::Volatile);
4124 }
4125
Richard Smith6c4c36c2012-03-30 20:53:28 +00004126 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004127
Richard Smith6c4c36c2012-03-30 20:53:28 +00004128 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004129 bool shouldDeleteForField(FieldDecl *FD);
4130 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004131
4132 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj);
4133 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4134 Sema::SpecialMemberOverloadResult *SMOR,
4135 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004136
4137 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004138};
4139}
4140
John McCall12d8d802012-04-09 20:53:23 +00004141/// Is the given special member inaccessible when used on the given
4142/// sub-object.
4143bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4144 CXXMethodDecl *target) {
4145 /// If we're operating on a base class, the object type is the
4146 /// type of this special member.
4147 QualType objectTy;
4148 AccessSpecifier access = target->getAccess();;
4149 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4150 objectTy = S.Context.getTypeDeclType(MD->getParent());
4151 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4152
4153 // If we're operating on a field, the object type is the type of the field.
4154 } else {
4155 objectTy = S.Context.getTypeDeclType(target->getParent());
4156 }
4157
4158 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4159}
4160
Richard Smith6c4c36c2012-03-30 20:53:28 +00004161/// Check whether we should delete a special member due to the implicit
4162/// definition containing a call to a special member of a subobject.
4163bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4164 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4165 bool IsDtorCallInCtor) {
4166 CXXMethodDecl *Decl = SMOR->getMethod();
4167 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4168
4169 int DiagKind = -1;
4170
4171 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4172 DiagKind = !Decl ? 0 : 1;
4173 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4174 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004175 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004176 DiagKind = 3;
4177 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4178 !Decl->isTrivial()) {
4179 // A member of a union must have a trivial corresponding special member.
4180 // As a weird special case, a destructor call from a union's constructor
4181 // must be accessible and non-deleted, but need not be trivial. Such a
4182 // destructor is never actually called, but is semantically checked as
4183 // if it were.
4184 DiagKind = 4;
4185 }
4186
4187 if (DiagKind == -1)
4188 return false;
4189
4190 if (Diagnose) {
4191 if (Field) {
4192 S.Diag(Field->getLocation(),
4193 diag::note_deleted_special_member_class_subobject)
4194 << CSM << MD->getParent() << /*IsField*/true
4195 << Field << DiagKind << IsDtorCallInCtor;
4196 } else {
4197 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4198 S.Diag(Base->getLocStart(),
4199 diag::note_deleted_special_member_class_subobject)
4200 << CSM << MD->getParent() << /*IsField*/false
4201 << Base->getType() << DiagKind << IsDtorCallInCtor;
4202 }
4203
4204 if (DiagKind == 1)
4205 S.NoteDeletedFunction(Decl);
4206 // FIXME: Explain inaccessibility if DiagKind == 3.
4207 }
4208
4209 return true;
4210}
4211
Richard Smith9a561d52012-02-26 09:11:52 +00004212/// Check whether we should delete a special member function due to having a
4213/// direct or virtual base class or static data member of class type M.
4214bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith6c4c36c2012-03-30 20:53:28 +00004215 CXXRecordDecl *Class, Subobject Subobj) {
4216 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004217
4218 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004219 // -- any direct or virtual base class, or non-static data member with no
4220 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004221 // either M has no default constructor or overload resolution as applied
4222 // to M's default constructor results in an ambiguity or in a function
4223 // that is deleted or inaccessible
4224 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4225 // -- a direct or virtual base class B that cannot be copied/moved because
4226 // overload resolution, as applied to B's corresponding special member,
4227 // results in an ambiguity or a function that is deleted or inaccessible
4228 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004229 // C++11 [class.dtor]p5:
4230 // -- any direct or virtual base class [...] has a type with a destructor
4231 // that is deleted or inaccessible
4232 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004233 Field && Field->hasInClassInitializer()) &&
4234 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class), false))
4235 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004236
Richard Smith6c4c36c2012-03-30 20:53:28 +00004237 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4238 // -- any direct or virtual base class or non-static data member has a
4239 // type with a destructor that is deleted or inaccessible
4240 if (IsConstructor) {
4241 Sema::SpecialMemberOverloadResult *SMOR =
4242 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4243 false, false, false, false, false);
4244 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4245 return true;
4246 }
4247
Richard Smith9a561d52012-02-26 09:11:52 +00004248 return false;
4249}
4250
4251/// Check whether we should delete a special member function due to the class
4252/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004253bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004254 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
4255 return shouldDeleteForClassSubobject(BaseClass, Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004256}
4257
4258/// Check whether we should delete a special member function due to the class
4259/// having a particular non-static data member.
4260bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4261 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4262 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4263
4264 if (CSM == Sema::CXXDefaultConstructor) {
4265 // For a default constructor, all references must be initialized in-class
4266 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004267 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4268 if (Diagnose)
4269 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4270 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004271 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004272 }
Richard Smith79363f52012-02-27 06:07:25 +00004273 // C++11 [class.ctor]p5: any non-variant non-static data member of
4274 // const-qualified type (or array thereof) with no
4275 // brace-or-equal-initializer does not have a user-provided default
4276 // constructor.
4277 if (!inUnion() && FieldType.isConstQualified() &&
4278 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004279 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4280 if (Diagnose)
4281 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004282 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004283 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004284 }
4285
4286 if (inUnion() && !FieldType.isConstQualified())
4287 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004288 } else if (CSM == Sema::CXXCopyConstructor) {
4289 // For a copy constructor, data members must not be of rvalue reference
4290 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004291 if (FieldType->isRValueReferenceType()) {
4292 if (Diagnose)
4293 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4294 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004295 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004296 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004297 } else if (IsAssignment) {
4298 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004299 if (FieldType->isReferenceType()) {
4300 if (Diagnose)
4301 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4302 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004303 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004304 }
4305 if (!FieldRecord && FieldType.isConstQualified()) {
4306 // C++11 [class.copy]p23:
4307 // -- a non-static data member of const non-class type (or array thereof)
4308 if (Diagnose)
4309 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004310 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004311 return true;
4312 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004313 }
4314
4315 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004316 // Some additional restrictions exist on the variant members.
4317 if (!inUnion() && FieldRecord->isUnion() &&
4318 FieldRecord->isAnonymousStructOrUnion()) {
4319 bool AllVariantFieldsAreConst = true;
4320
Richard Smithdf8dc862012-03-29 19:00:10 +00004321 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004322 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4323 UE = FieldRecord->field_end();
4324 UI != UE; ++UI) {
4325 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004326
4327 if (!UnionFieldType.isConstQualified())
4328 AllVariantFieldsAreConst = false;
4329
Richard Smith9a561d52012-02-26 09:11:52 +00004330 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4331 if (UnionFieldRecord &&
David Blaikie581deb32012-06-06 20:45:41 +00004332 shouldDeleteForClassSubobject(UnionFieldRecord, *UI))
Richard Smith9a561d52012-02-26 09:11:52 +00004333 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004334 }
4335
4336 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004337 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004338 FieldRecord->field_begin() != FieldRecord->field_end()) {
4339 if (Diagnose)
4340 S.Diag(FieldRecord->getLocation(),
4341 diag::note_deleted_default_ctor_all_const)
4342 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004343 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004344 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004345
Richard Smithdf8dc862012-03-29 19:00:10 +00004346 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004347 // This is technically non-conformant, but sanity demands it.
4348 return false;
4349 }
4350
Richard Smithdf8dc862012-03-29 19:00:10 +00004351 if (shouldDeleteForClassSubobject(FieldRecord, FD))
4352 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004353 }
4354
4355 return false;
4356}
4357
4358/// C++11 [class.ctor] p5:
4359/// A defaulted default constructor for a class X is defined as deleted if
4360/// X is a union and all of its variant members are of const-qualified type.
4361bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004362 // This is a silly definition, because it gives an empty union a deleted
4363 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004364 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4365 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4366 if (Diagnose)
4367 S.Diag(MD->getParent()->getLocation(),
4368 diag::note_deleted_default_ctor_all_const)
4369 << MD->getParent() << /*not anonymous union*/0;
4370 return true;
4371 }
4372 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004373}
4374
4375/// Determine whether a defaulted special member function should be defined as
4376/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4377/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004378bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4379 bool Diagnose) {
Sean Hunte16da072011-10-10 06:18:57 +00004380 assert(!MD->isInvalidDecl());
4381 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004382 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004383 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004384 return false;
4385
Richard Smith7d5088a2012-02-18 02:02:13 +00004386 // C++11 [expr.lambda.prim]p19:
4387 // The closure type associated with a lambda-expression has a
4388 // deleted (8.4.3) default constructor and a deleted copy
4389 // assignment operator.
4390 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004391 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4392 if (Diagnose)
4393 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004394 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004395 }
4396
Richard Smith5bdaac52012-04-02 20:59:25 +00004397 // For an anonymous struct or union, the copy and assignment special members
4398 // will never be used, so skip the check. For an anonymous union declared at
4399 // namespace scope, the constructor and destructor are used.
4400 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4401 RD->isAnonymousStructOrUnion())
4402 return false;
4403
Richard Smith6c4c36c2012-03-30 20:53:28 +00004404 // C++11 [class.copy]p7, p18:
4405 // If the class definition declares a move constructor or move assignment
4406 // operator, an implicitly declared copy constructor or copy assignment
4407 // operator is defined as deleted.
4408 if (MD->isImplicit() &&
4409 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4410 CXXMethodDecl *UserDeclaredMove = 0;
4411
4412 // In Microsoft mode, a user-declared move only causes the deletion of the
4413 // corresponding copy operation, not both copy operations.
4414 if (RD->hasUserDeclaredMoveConstructor() &&
4415 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4416 if (!Diagnose) return true;
4417 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004418 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004419 } else if (RD->hasUserDeclaredMoveAssignment() &&
4420 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4421 if (!Diagnose) return true;
4422 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004423 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004424 }
4425
4426 if (UserDeclaredMove) {
4427 Diag(UserDeclaredMove->getLocation(),
4428 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004429 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004430 << UserDeclaredMove->isMoveAssignmentOperator();
4431 return true;
4432 }
4433 }
Sean Hunte16da072011-10-10 06:18:57 +00004434
Richard Smith5bdaac52012-04-02 20:59:25 +00004435 // Do access control from the special member function
4436 ContextRAII MethodContext(*this, MD);
4437
Richard Smith9a561d52012-02-26 09:11:52 +00004438 // C++11 [class.dtor]p5:
4439 // -- for a virtual destructor, lookup of the non-array deallocation function
4440 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004441 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004442 FunctionDecl *OperatorDelete = 0;
4443 DeclarationName Name =
4444 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4445 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004446 OperatorDelete, false)) {
4447 if (Diagnose)
4448 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004449 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004450 }
Richard Smith9a561d52012-02-26 09:11:52 +00004451 }
4452
Richard Smith6c4c36c2012-03-30 20:53:28 +00004453 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004454
Sean Huntcdee3fe2011-05-11 22:34:38 +00004455 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004456 BE = RD->bases_end(); BI != BE; ++BI)
4457 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004458 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004459 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004460
4461 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004462 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004463 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004464 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004465
4466 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004467 FE = RD->field_end(); FI != FE; ++FI)
4468 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004469 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004470 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004471
Richard Smith7d5088a2012-02-18 02:02:13 +00004472 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004473 return true;
4474
4475 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004476}
4477
4478/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004479namespace {
4480 struct FindHiddenVirtualMethodData {
4481 Sema *S;
4482 CXXMethodDecl *Method;
4483 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004484 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004485 };
4486}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004487
4488/// \brief Member lookup function that determines whether a given C++
4489/// method overloads virtual methods in a base class without overriding any,
4490/// to be used with CXXRecordDecl::lookupInBases().
4491static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4492 CXXBasePath &Path,
4493 void *UserData) {
4494 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4495
4496 FindHiddenVirtualMethodData &Data
4497 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4498
4499 DeclarationName Name = Data.Method->getDeclName();
4500 assert(Name.getNameKind() == DeclarationName::Identifier);
4501
4502 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004503 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004504 for (Path.Decls = BaseRecord->lookup(Name);
4505 Path.Decls.first != Path.Decls.second;
4506 ++Path.Decls.first) {
4507 NamedDecl *D = *Path.Decls.first;
4508 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004509 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004510 foundSameNameMethod = true;
4511 // Interested only in hidden virtual methods.
4512 if (!MD->isVirtual())
4513 continue;
4514 // If the method we are checking overrides a method from its base
4515 // don't warn about the other overloaded methods.
4516 if (!Data.S->IsOverload(Data.Method, MD, false))
4517 return true;
4518 // Collect the overload only if its hidden.
4519 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4520 overloadedMethods.push_back(MD);
4521 }
4522 }
4523
4524 if (foundSameNameMethod)
4525 Data.OverloadedMethods.append(overloadedMethods.begin(),
4526 overloadedMethods.end());
4527 return foundSameNameMethod;
4528}
4529
4530/// \brief See if a method overloads virtual methods in a base class without
4531/// overriding any.
4532void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4533 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004534 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004535 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004536 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004537 return;
4538
4539 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4540 /*bool RecordPaths=*/false,
4541 /*bool DetectVirtual=*/false);
4542 FindHiddenVirtualMethodData Data;
4543 Data.Method = MD;
4544 Data.S = this;
4545
4546 // Keep the base methods that were overriden or introduced in the subclass
4547 // by 'using' in a set. A base method not in this set is hidden.
4548 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4549 res.first != res.second; ++res.first) {
4550 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4551 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4552 E = MD->end_overridden_methods();
4553 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004554 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004555 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4556 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004557 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004558 }
4559
4560 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4561 !Data.OverloadedMethods.empty()) {
4562 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4563 << MD << (Data.OverloadedMethods.size() > 1);
4564
4565 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4566 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4567 Diag(overloadedMD->getLocation(),
4568 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4569 }
4570 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004571}
4572
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004573void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004574 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004575 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004576 SourceLocation RBrac,
4577 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004578 if (!TagDecl)
4579 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004580
Douglas Gregor42af25f2009-05-11 19:58:34 +00004581 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004582
David Blaikie77b6de02011-09-22 02:58:26 +00004583 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004584 // strict aliasing violation!
4585 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004586 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004587
Douglas Gregor23c94db2010-07-02 17:43:08 +00004588 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004589 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004590}
4591
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004592/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4593/// special functions, such as the default constructor, copy
4594/// constructor, or destructor, to the given C++ class (C++
4595/// [special]p1). This routine can only be executed just before the
4596/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004597void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004598 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004599 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004600
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004601 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004602 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004603
David Blaikie4e4d0842012-03-11 07:00:24 +00004604 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004605 ++ASTContext::NumImplicitMoveConstructors;
4606
Douglas Gregora376d102010-07-02 21:50:04 +00004607 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4608 ++ASTContext::NumImplicitCopyAssignmentOperators;
4609
4610 // If we have a dynamic class, then the copy assignment operator may be
4611 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4612 // it shows up in the right place in the vtable and that we diagnose
4613 // problems with the implicit exception specification.
4614 if (ClassDecl->isDynamicClass())
4615 DeclareImplicitCopyAssignment(ClassDecl);
4616 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004617
Richard Smith1c931be2012-04-02 18:40:40 +00004618 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004619 ++ASTContext::NumImplicitMoveAssignmentOperators;
4620
4621 // Likewise for the move assignment operator.
4622 if (ClassDecl->isDynamicClass())
4623 DeclareImplicitMoveAssignment(ClassDecl);
4624 }
4625
Douglas Gregor4923aa22010-07-02 20:37:36 +00004626 if (!ClassDecl->hasUserDeclaredDestructor()) {
4627 ++ASTContext::NumImplicitDestructors;
4628
4629 // If we have a dynamic class, then the destructor may be virtual, so we
4630 // have to declare the destructor immediately. This ensures that, e.g., it
4631 // shows up in the right place in the vtable and that we diagnose problems
4632 // with the implicit exception specification.
4633 if (ClassDecl->isDynamicClass())
4634 DeclareImplicitDestructor(ClassDecl);
4635 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004636}
4637
Francois Pichet8387e2a2011-04-22 22:18:13 +00004638void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4639 if (!D)
4640 return;
4641
4642 int NumParamList = D->getNumTemplateParameterLists();
4643 for (int i = 0; i < NumParamList; i++) {
4644 TemplateParameterList* Params = D->getTemplateParameterList(i);
4645 for (TemplateParameterList::iterator Param = Params->begin(),
4646 ParamEnd = Params->end();
4647 Param != ParamEnd; ++Param) {
4648 NamedDecl *Named = cast<NamedDecl>(*Param);
4649 if (Named->getDeclName()) {
4650 S->AddDecl(Named);
4651 IdResolver.AddDecl(Named);
4652 }
4653 }
4654 }
4655}
4656
John McCalld226f652010-08-21 09:40:31 +00004657void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004658 if (!D)
4659 return;
4660
4661 TemplateParameterList *Params = 0;
4662 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4663 Params = Template->getTemplateParameters();
4664 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4665 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4666 Params = PartialSpec->getTemplateParameters();
4667 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004668 return;
4669
Douglas Gregor6569d682009-05-27 23:11:45 +00004670 for (TemplateParameterList::iterator Param = Params->begin(),
4671 ParamEnd = Params->end();
4672 Param != ParamEnd; ++Param) {
4673 NamedDecl *Named = cast<NamedDecl>(*Param);
4674 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004675 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004676 IdResolver.AddDecl(Named);
4677 }
4678 }
4679}
4680
John McCalld226f652010-08-21 09:40:31 +00004681void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004682 if (!RecordD) return;
4683 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004684 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004685 PushDeclContext(S, Record);
4686}
4687
John McCalld226f652010-08-21 09:40:31 +00004688void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004689 if (!RecordD) return;
4690 PopDeclContext();
4691}
4692
Douglas Gregor72b505b2008-12-16 21:30:33 +00004693/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4694/// parsing a top-level (non-nested) C++ class, and we are now
4695/// parsing those parts of the given Method declaration that could
4696/// not be parsed earlier (C++ [class.mem]p2), such as default
4697/// arguments. This action should enter the scope of the given
4698/// Method declaration as if we had just parsed the qualified method
4699/// name. However, it should not bring the parameters into scope;
4700/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004701void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004702}
4703
4704/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4705/// C++ method declaration. We're (re-)introducing the given
4706/// function parameter into scope for use in parsing later parts of
4707/// the method declaration. For example, we could see an
4708/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004709void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004710 if (!ParamD)
4711 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004712
John McCalld226f652010-08-21 09:40:31 +00004713 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004714
4715 // If this parameter has an unparsed default argument, clear it out
4716 // to make way for the parsed default argument.
4717 if (Param->hasUnparsedDefaultArg())
4718 Param->setDefaultArg(0);
4719
John McCalld226f652010-08-21 09:40:31 +00004720 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004721 if (Param->getDeclName())
4722 IdResolver.AddDecl(Param);
4723}
4724
4725/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4726/// processing the delayed method declaration for Method. The method
4727/// declaration is now considered finished. There may be a separate
4728/// ActOnStartOfFunctionDef action later (not necessarily
4729/// immediately!) for this method, if it was also defined inside the
4730/// class body.
John McCalld226f652010-08-21 09:40:31 +00004731void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004732 if (!MethodD)
4733 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004734
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004735 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004736
John McCalld226f652010-08-21 09:40:31 +00004737 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004738
4739 // Now that we have our default arguments, check the constructor
4740 // again. It could produce additional diagnostics or affect whether
4741 // the class has implicitly-declared destructors, among other
4742 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004743 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4744 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004745
4746 // Check the default arguments, which we may have added.
4747 if (!Method->isInvalidDecl())
4748 CheckCXXDefaultArguments(Method);
4749}
4750
Douglas Gregor42a552f2008-11-05 20:51:48 +00004751/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004752/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004753/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004754/// emit diagnostics and set the invalid bit to true. In any case, the type
4755/// will be updated to reflect a well-formed type for the constructor and
4756/// returned.
4757QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004758 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004759 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004760
4761 // C++ [class.ctor]p3:
4762 // A constructor shall not be virtual (10.3) or static (9.4). A
4763 // constructor can be invoked for a const, volatile or const
4764 // volatile object. A constructor shall not be declared const,
4765 // volatile, or const volatile (9.3.2).
4766 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004767 if (!D.isInvalidType())
4768 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4769 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4770 << SourceRange(D.getIdentifierLoc());
4771 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004772 }
John McCalld931b082010-08-26 03:08:43 +00004773 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004774 if (!D.isInvalidType())
4775 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4776 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4777 << SourceRange(D.getIdentifierLoc());
4778 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004779 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004780 }
Mike Stump1eb44332009-09-09 15:08:12 +00004781
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004782 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004783 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004784 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004785 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4786 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004787 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004788 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4789 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004790 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004791 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4792 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004793 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004794 }
Mike Stump1eb44332009-09-09 15:08:12 +00004795
Douglas Gregorc938c162011-01-26 05:01:58 +00004796 // C++0x [class.ctor]p4:
4797 // A constructor shall not be declared with a ref-qualifier.
4798 if (FTI.hasRefQualifier()) {
4799 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4800 << FTI.RefQualifierIsLValueRef
4801 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4802 D.setInvalidType();
4803 }
4804
Douglas Gregor42a552f2008-11-05 20:51:48 +00004805 // Rebuild the function type "R" without any type qualifiers (in
4806 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004807 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004808 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004809 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4810 return R;
4811
4812 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4813 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004814 EPI.RefQualifier = RQ_None;
4815
Chris Lattner65401802009-04-25 08:28:21 +00004816 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00004817 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004818}
4819
Douglas Gregor72b505b2008-12-16 21:30:33 +00004820/// CheckConstructor - Checks a fully-formed constructor for
4821/// well-formedness, issuing any diagnostics required. Returns true if
4822/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00004823void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00004824 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00004825 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
4826 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00004827 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004828
4829 // C++ [class.copy]p3:
4830 // A declaration of a constructor for a class X is ill-formed if
4831 // its first parameter is of type (optionally cv-qualified) X and
4832 // either there are no other parameters or else all other
4833 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00004834 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00004835 ((Constructor->getNumParams() == 1) ||
4836 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00004837 Constructor->getParamDecl(1)->hasDefaultArg())) &&
4838 Constructor->getTemplateSpecializationKind()
4839 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004840 QualType ParamType = Constructor->getParamDecl(0)->getType();
4841 QualType ClassTy = Context.getTagDeclType(ClassDecl);
4842 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00004843 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004844 const char *ConstRef
4845 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
4846 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00004847 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004848 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00004849
4850 // FIXME: Rather that making the constructor invalid, we should endeavor
4851 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00004852 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004853 }
4854 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00004855}
4856
John McCall15442822010-08-04 01:04:25 +00004857/// CheckDestructor - Checks a fully-formed destructor definition for
4858/// well-formedness, issuing any diagnostics required. Returns true
4859/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004860bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00004861 CXXRecordDecl *RD = Destructor->getParent();
4862
4863 if (Destructor->isVirtual()) {
4864 SourceLocation Loc;
4865
4866 if (!Destructor->isImplicit())
4867 Loc = Destructor->getLocation();
4868 else
4869 Loc = RD->getLocation();
4870
4871 // If we have a virtual destructor, look up the deallocation function
4872 FunctionDecl *OperatorDelete = 0;
4873 DeclarationName Name =
4874 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004875 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00004876 return true;
John McCall5efd91a2010-07-03 18:33:00 +00004877
Eli Friedman5f2987c2012-02-02 03:46:19 +00004878 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00004879
4880 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00004881 }
Anders Carlsson37909802009-11-30 21:24:50 +00004882
4883 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00004884}
4885
Mike Stump1eb44332009-09-09 15:08:12 +00004886static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004887FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
4888 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
4889 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00004890 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004891}
4892
Douglas Gregor42a552f2008-11-05 20:51:48 +00004893/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
4894/// the well-formednes of the destructor declarator @p D with type @p
4895/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004896/// emit diagnostics and set the declarator to invalid. Even if this happens,
4897/// will be updated to reflect a well-formed type for the destructor and
4898/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00004899QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004900 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004901 // C++ [class.dtor]p1:
4902 // [...] A typedef-name that names a class is a class-name
4903 // (7.1.3); however, a typedef-name that names a class shall not
4904 // be used as the identifier in the declarator for a destructor
4905 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004906 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00004907 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00004908 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00004909 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00004910 else if (const TemplateSpecializationType *TST =
4911 DeclaratorType->getAs<TemplateSpecializationType>())
4912 if (TST->isTypeAlias())
4913 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
4914 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004915
4916 // C++ [class.dtor]p2:
4917 // A destructor is used to destroy objects of its class type. A
4918 // destructor takes no parameters, and no return type can be
4919 // specified for it (not even void). The address of a destructor
4920 // shall not be taken. A destructor shall not be static. A
4921 // destructor can be invoked for a const, volatile or const
4922 // volatile object. A destructor shall not be declared const,
4923 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00004924 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004925 if (!D.isInvalidType())
4926 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
4927 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00004928 << SourceRange(D.getIdentifierLoc())
4929 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
4930
John McCalld931b082010-08-26 03:08:43 +00004931 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004932 }
Chris Lattner65401802009-04-25 08:28:21 +00004933 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004934 // Destructors don't have return types, but the parser will
4935 // happily parse something like:
4936 //
4937 // class X {
4938 // float ~X();
4939 // };
4940 //
4941 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004942 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
4943 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4944 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00004945 }
Mike Stump1eb44332009-09-09 15:08:12 +00004946
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004947 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004948 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00004949 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004950 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4951 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004952 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004953 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4954 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004955 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004956 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4957 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00004958 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004959 }
4960
Douglas Gregorc938c162011-01-26 05:01:58 +00004961 // C++0x [class.dtor]p2:
4962 // A destructor shall not be declared with a ref-qualifier.
4963 if (FTI.hasRefQualifier()) {
4964 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
4965 << FTI.RefQualifierIsLValueRef
4966 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4967 D.setInvalidType();
4968 }
4969
Douglas Gregor42a552f2008-11-05 20:51:48 +00004970 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004971 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004972 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
4973
4974 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00004975 FTI.freeArgs();
4976 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004977 }
4978
Mike Stump1eb44332009-09-09 15:08:12 +00004979 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00004980 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004981 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00004982 D.setInvalidType();
4983 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00004984
4985 // Rebuild the function type "R" without any type qualifiers or
4986 // parameters (in case any of the errors above fired) and with
4987 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00004988 // types.
John McCalle23cf432010-12-14 08:05:40 +00004989 if (!D.isInvalidType())
4990 return R;
4991
Douglas Gregord92ec472010-07-01 05:10:53 +00004992 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004993 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4994 EPI.Variadic = false;
4995 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004996 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00004997 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004998}
4999
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005000/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5001/// well-formednes of the conversion function declarator @p D with
5002/// type @p R. If there are any errors in the declarator, this routine
5003/// will emit diagnostics and return true. Otherwise, it will return
5004/// false. Either way, the type @p R will be updated to reflect a
5005/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005006void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005007 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005008 // C++ [class.conv.fct]p1:
5009 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005010 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005011 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005012 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005013 if (!D.isInvalidType())
5014 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5015 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5016 << SourceRange(D.getIdentifierLoc());
5017 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005018 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005019 }
John McCalla3f81372010-04-13 00:04:31 +00005020
5021 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5022
Chris Lattner6e475012009-04-25 08:35:12 +00005023 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005024 // Conversion functions don't have return types, but the parser will
5025 // happily parse something like:
5026 //
5027 // class X {
5028 // float operator bool();
5029 // };
5030 //
5031 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005032 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5033 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5034 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005035 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005036 }
5037
John McCalla3f81372010-04-13 00:04:31 +00005038 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5039
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005040 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005041 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005042 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5043
5044 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005045 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005046 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005047 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005048 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005049 D.setInvalidType();
5050 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005051
John McCalla3f81372010-04-13 00:04:31 +00005052 // Diagnose "&operator bool()" and other such nonsense. This
5053 // is actually a gcc extension which we don't support.
5054 if (Proto->getResultType() != ConvType) {
5055 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5056 << Proto->getResultType();
5057 D.setInvalidType();
5058 ConvType = Proto->getResultType();
5059 }
5060
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005061 // C++ [class.conv.fct]p4:
5062 // The conversion-type-id shall not represent a function type nor
5063 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005064 if (ConvType->isArrayType()) {
5065 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5066 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005067 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005068 } else if (ConvType->isFunctionType()) {
5069 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5070 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005071 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005072 }
5073
5074 // Rebuild the function type "R" without any parameters (in case any
5075 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005076 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005077 if (D.isInvalidType())
5078 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005079
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005080 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005081 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005082 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005083 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005084 diag::warn_cxx98_compat_explicit_conversion_functions :
5085 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005086 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005087}
5088
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005089/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5090/// the declaration of the given C++ conversion function. This routine
5091/// is responsible for recording the conversion function in the C++
5092/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005093Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005094 assert(Conversion && "Expected to receive a conversion function declaration");
5095
Douglas Gregor9d350972008-12-12 08:25:50 +00005096 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005097
5098 // Make sure we aren't redeclaring the conversion function.
5099 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005100
5101 // C++ [class.conv.fct]p1:
5102 // [...] A conversion function is never used to convert a
5103 // (possibly cv-qualified) object to the (possibly cv-qualified)
5104 // same object type (or a reference to it), to a (possibly
5105 // cv-qualified) base class of that type (or a reference to it),
5106 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005107 // FIXME: Suppress this warning if the conversion function ends up being a
5108 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005109 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005110 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005111 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005112 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005113 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5114 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005115 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005116 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005117 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5118 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005119 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005120 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005121 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005122 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005123 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005124 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005125 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005126 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005127 }
5128
Douglas Gregore80622f2010-09-29 04:25:11 +00005129 if (FunctionTemplateDecl *ConversionTemplate
5130 = Conversion->getDescribedFunctionTemplate())
5131 return ConversionTemplate;
5132
John McCalld226f652010-08-21 09:40:31 +00005133 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005134}
5135
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005136//===----------------------------------------------------------------------===//
5137// Namespace Handling
5138//===----------------------------------------------------------------------===//
5139
John McCallea318642010-08-26 09:15:37 +00005140
5141
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005142/// ActOnStartNamespaceDef - This is called at the start of a namespace
5143/// definition.
John McCalld226f652010-08-21 09:40:31 +00005144Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005145 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005146 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005147 SourceLocation IdentLoc,
5148 IdentifierInfo *II,
5149 SourceLocation LBrace,
5150 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005151 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5152 // For anonymous namespace, take the location of the left brace.
5153 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005154 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005155 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005156 bool IsStd = false;
5157 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005158 Scope *DeclRegionScope = NamespcScope->getParent();
5159
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005160 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005161 if (II) {
5162 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005163 // The identifier in an original-namespace-definition shall not
5164 // have been previously defined in the declarative region in
5165 // which the original-namespace-definition appears. The
5166 // identifier in an original-namespace-definition is the name of
5167 // the namespace. Subsequently in that declarative region, it is
5168 // treated as an original-namespace-name.
5169 //
5170 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005171 // look through using directives, just look for any ordinary names.
5172
5173 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005174 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5175 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005176 NamedDecl *PrevDecl = 0;
5177 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005178 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005179 R.first != R.second; ++R.first) {
5180 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5181 PrevDecl = *R.first;
5182 break;
5183 }
5184 }
5185
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005186 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5187
5188 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005189 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005190 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005191 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005192 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005193 // The user probably just forgot the 'inline', so suggest that it
5194 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005195 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005196 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5197 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005198 Diag(Loc, diag::err_inline_namespace_mismatch)
5199 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005200 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005201 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5202
5203 IsInline = PrevNS->isInline();
5204 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005205 } else if (PrevDecl) {
5206 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005207 Diag(Loc, diag::err_redefinition_different_kind)
5208 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005209 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005210 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005211 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005212 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005213 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005214 // This is the first "real" definition of the namespace "std", so update
5215 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005216 PrevNS = getStdNamespace();
5217 IsStd = true;
5218 AddToKnown = !IsInline;
5219 } else {
5220 // We've seen this namespace for the first time.
5221 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005222 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005223 } else {
John McCall9aeed322009-10-01 00:25:31 +00005224 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005225
5226 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005227 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005228 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005229 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005230 } else {
5231 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005232 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005233 }
5234
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005235 if (PrevNS && IsInline != PrevNS->isInline()) {
5236 // inline-ness must match
5237 Diag(Loc, diag::err_inline_namespace_mismatch)
5238 << IsInline;
5239 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005240
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005241 // Recover by ignoring the new namespace's inline status.
5242 IsInline = PrevNS->isInline();
5243 }
5244 }
5245
5246 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5247 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005248 if (IsInvalid)
5249 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005250
5251 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005252
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005253 // FIXME: Should we be merging attributes?
5254 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005255 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005256
5257 if (IsStd)
5258 StdNamespace = Namespc;
5259 if (AddToKnown)
5260 KnownNamespaces[Namespc] = false;
5261
5262 if (II) {
5263 PushOnScopeChains(Namespc, DeclRegionScope);
5264 } else {
5265 // Link the anonymous namespace into its parent.
5266 DeclContext *Parent = CurContext->getRedeclContext();
5267 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5268 TU->setAnonymousNamespace(Namespc);
5269 } else {
5270 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005271 }
John McCall9aeed322009-10-01 00:25:31 +00005272
Douglas Gregora4181472010-03-24 00:46:35 +00005273 CurContext->addDecl(Namespc);
5274
John McCall9aeed322009-10-01 00:25:31 +00005275 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5276 // behaves as if it were replaced by
5277 // namespace unique { /* empty body */ }
5278 // using namespace unique;
5279 // namespace unique { namespace-body }
5280 // where all occurrences of 'unique' in a translation unit are
5281 // replaced by the same identifier and this identifier differs
5282 // from all other identifiers in the entire program.
5283
5284 // We just create the namespace with an empty name and then add an
5285 // implicit using declaration, just like the standard suggests.
5286 //
5287 // CodeGen enforces the "universally unique" aspect by giving all
5288 // declarations semantically contained within an anonymous
5289 // namespace internal linkage.
5290
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005291 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005292 UsingDirectiveDecl* UD
5293 = UsingDirectiveDecl::Create(Context, CurContext,
5294 /* 'using' */ LBrace,
5295 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005296 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005297 /* identifier */ SourceLocation(),
5298 Namespc,
5299 /* Ancestor */ CurContext);
5300 UD->setImplicit();
5301 CurContext->addDecl(UD);
5302 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005303 }
5304
5305 // Although we could have an invalid decl (i.e. the namespace name is a
5306 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005307 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5308 // for the namespace has the declarations that showed up in that particular
5309 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005310 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005311 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005312}
5313
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005314/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5315/// is a namespace alias, returns the namespace it points to.
5316static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5317 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5318 return AD->getNamespace();
5319 return dyn_cast_or_null<NamespaceDecl>(D);
5320}
5321
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005322/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5323/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005324void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005325 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5326 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005327 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005328 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005329 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005330 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005331}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005332
John McCall384aff82010-08-25 07:42:41 +00005333CXXRecordDecl *Sema::getStdBadAlloc() const {
5334 return cast_or_null<CXXRecordDecl>(
5335 StdBadAlloc.get(Context.getExternalSource()));
5336}
5337
5338NamespaceDecl *Sema::getStdNamespace() const {
5339 return cast_or_null<NamespaceDecl>(
5340 StdNamespace.get(Context.getExternalSource()));
5341}
5342
Douglas Gregor66992202010-06-29 17:53:46 +00005343/// \brief Retrieve the special "std" namespace, which may require us to
5344/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005345NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005346 if (!StdNamespace) {
5347 // The "std" namespace has not yet been defined, so build one implicitly.
5348 StdNamespace = NamespaceDecl::Create(Context,
5349 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005350 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005351 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005352 &PP.getIdentifierTable().get("std"),
5353 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005354 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005355 }
5356
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005357 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005358}
5359
Sebastian Redl395e04d2012-01-17 22:49:33 +00005360bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005361 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005362 "Looking for std::initializer_list outside of C++.");
5363
5364 // We're looking for implicit instantiations of
5365 // template <typename E> class std::initializer_list.
5366
5367 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5368 return false;
5369
Sebastian Redl84760e32012-01-17 22:49:58 +00005370 ClassTemplateDecl *Template = 0;
5371 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005372
Sebastian Redl84760e32012-01-17 22:49:58 +00005373 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005374
Sebastian Redl84760e32012-01-17 22:49:58 +00005375 ClassTemplateSpecializationDecl *Specialization =
5376 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5377 if (!Specialization)
5378 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005379
Sebastian Redl84760e32012-01-17 22:49:58 +00005380 Template = Specialization->getSpecializedTemplate();
5381 Arguments = Specialization->getTemplateArgs().data();
5382 } else if (const TemplateSpecializationType *TST =
5383 Ty->getAs<TemplateSpecializationType>()) {
5384 Template = dyn_cast_or_null<ClassTemplateDecl>(
5385 TST->getTemplateName().getAsTemplateDecl());
5386 Arguments = TST->getArgs();
5387 }
5388 if (!Template)
5389 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005390
5391 if (!StdInitializerList) {
5392 // Haven't recognized std::initializer_list yet, maybe this is it.
5393 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5394 if (TemplateClass->getIdentifier() !=
5395 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005396 !getStdNamespace()->InEnclosingNamespaceSetOf(
5397 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005398 return false;
5399 // This is a template called std::initializer_list, but is it the right
5400 // template?
5401 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005402 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005403 return false;
5404 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5405 return false;
5406
5407 // It's the right template.
5408 StdInitializerList = Template;
5409 }
5410
5411 if (Template != StdInitializerList)
5412 return false;
5413
5414 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005415 if (Element)
5416 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005417 return true;
5418}
5419
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005420static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5421 NamespaceDecl *Std = S.getStdNamespace();
5422 if (!Std) {
5423 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5424 return 0;
5425 }
5426
5427 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5428 Loc, Sema::LookupOrdinaryName);
5429 if (!S.LookupQualifiedName(Result, Std)) {
5430 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5431 return 0;
5432 }
5433 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5434 if (!Template) {
5435 Result.suppressDiagnostics();
5436 // We found something weird. Complain about the first thing we found.
5437 NamedDecl *Found = *Result.begin();
5438 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5439 return 0;
5440 }
5441
5442 // We found some template called std::initializer_list. Now verify that it's
5443 // correct.
5444 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005445 if (Params->getMinRequiredArguments() != 1 ||
5446 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005447 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5448 return 0;
5449 }
5450
5451 return Template;
5452}
5453
5454QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5455 if (!StdInitializerList) {
5456 StdInitializerList = LookupStdInitializerList(*this, Loc);
5457 if (!StdInitializerList)
5458 return QualType();
5459 }
5460
5461 TemplateArgumentListInfo Args(Loc, Loc);
5462 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5463 Context.getTrivialTypeSourceInfo(Element,
5464 Loc)));
5465 return Context.getCanonicalType(
5466 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5467}
5468
Sebastian Redl98d36062012-01-17 22:50:14 +00005469bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5470 // C++ [dcl.init.list]p2:
5471 // A constructor is an initializer-list constructor if its first parameter
5472 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5473 // std::initializer_list<E> for some type E, and either there are no other
5474 // parameters or else all other parameters have default arguments.
5475 if (Ctor->getNumParams() < 1 ||
5476 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5477 return false;
5478
5479 QualType ArgType = Ctor->getParamDecl(0)->getType();
5480 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5481 ArgType = RT->getPointeeType().getUnqualifiedType();
5482
5483 return isStdInitializerList(ArgType, 0);
5484}
5485
Douglas Gregor9172aa62011-03-26 22:25:30 +00005486/// \brief Determine whether a using statement is in a context where it will be
5487/// apply in all contexts.
5488static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5489 switch (CurContext->getDeclKind()) {
5490 case Decl::TranslationUnit:
5491 return true;
5492 case Decl::LinkageSpec:
5493 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5494 default:
5495 return false;
5496 }
5497}
5498
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005499namespace {
5500
5501// Callback to only accept typo corrections that are namespaces.
5502class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5503 public:
5504 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5505 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5506 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5507 }
5508 return false;
5509 }
5510};
5511
5512}
5513
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005514static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5515 CXXScopeSpec &SS,
5516 SourceLocation IdentLoc,
5517 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005518 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005519 R.clear();
5520 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005521 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005522 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005523 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5524 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005525 if (DeclContext *DC = S.computeDeclContext(SS, false))
5526 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5527 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5528 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5529 else
5530 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5531 << Ident << CorrectedQuotedStr
5532 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005533
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005534 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5535 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005536
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005537 R.addDecl(Corrected.getCorrectionDecl());
5538 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005539 }
5540 return false;
5541}
5542
John McCalld226f652010-08-21 09:40:31 +00005543Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005544 SourceLocation UsingLoc,
5545 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005546 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005547 SourceLocation IdentLoc,
5548 IdentifierInfo *NamespcName,
5549 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005550 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5551 assert(NamespcName && "Invalid NamespcName.");
5552 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005553
5554 // This can only happen along a recovery path.
5555 while (S->getFlags() & Scope::TemplateParamScope)
5556 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005557 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005558
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005559 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005560 NestedNameSpecifier *Qualifier = 0;
5561 if (SS.isSet())
5562 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5563
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005564 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005565 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5566 LookupParsedName(R, S, &SS);
5567 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005568 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005569
Douglas Gregor66992202010-06-29 17:53:46 +00005570 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005571 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005572 // Allow "using namespace std;" or "using namespace ::std;" even if
5573 // "std" hasn't been defined yet, for GCC compatibility.
5574 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5575 NamespcName->isStr("std")) {
5576 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005577 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005578 R.resolveKind();
5579 }
5580 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005581 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005582 }
5583
John McCallf36e02d2009-10-09 21:13:30 +00005584 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005585 NamedDecl *Named = R.getFoundDecl();
5586 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5587 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005588 // C++ [namespace.udir]p1:
5589 // A using-directive specifies that the names in the nominated
5590 // namespace can be used in the scope in which the
5591 // using-directive appears after the using-directive. During
5592 // unqualified name lookup (3.4.1), the names appear as if they
5593 // were declared in the nearest enclosing namespace which
5594 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005595 // namespace. [Note: in this context, "contains" means "contains
5596 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005597
5598 // Find enclosing context containing both using-directive and
5599 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005600 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005601 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5602 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5603 CommonAncestor = CommonAncestor->getParent();
5604
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005605 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005606 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005607 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005608
Douglas Gregor9172aa62011-03-26 22:25:30 +00005609 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005610 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005611 Diag(IdentLoc, diag::warn_using_directive_in_header);
5612 }
5613
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005614 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005615 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005616 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005617 }
5618
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005619 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005620 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005621}
5622
5623void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005624 // If the scope has an associated entity and the using directive is at
5625 // namespace or translation unit scope, add the UsingDirectiveDecl into
5626 // its lookup structure so qualified name lookup can find it.
5627 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5628 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005629 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005630 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005631 // Otherwise, it is at block sope. The using-directives will affect lookup
5632 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005633 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005634}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005635
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005636
John McCalld226f652010-08-21 09:40:31 +00005637Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005638 AccessSpecifier AS,
5639 bool HasUsingKeyword,
5640 SourceLocation UsingLoc,
5641 CXXScopeSpec &SS,
5642 UnqualifiedId &Name,
5643 AttributeList *AttrList,
5644 bool IsTypeName,
5645 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005646 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005647
Douglas Gregor12c118a2009-11-04 16:30:06 +00005648 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005649 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005650 case UnqualifiedId::IK_Identifier:
5651 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005652 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005653 case UnqualifiedId::IK_ConversionFunctionId:
5654 break;
5655
5656 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005657 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005658 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005659 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005660 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005661 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5662 // instead once inheriting constructors work.
5663 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005664 diag::err_using_decl_constructor)
5665 << SS.getRange();
5666
David Blaikie4e4d0842012-03-11 07:00:24 +00005667 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005668
John McCalld226f652010-08-21 09:40:31 +00005669 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005670
5671 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005672 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005673 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005674 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005675
5676 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005677 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005678 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005679 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005680 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005681
5682 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5683 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005684 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005685 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005686
John McCall60fa3cf2009-12-11 02:10:03 +00005687 // Warn about using declarations.
5688 // TODO: store that the declaration was written without 'using' and
5689 // talk about access decls instead of using decls in the
5690 // diagnostics.
5691 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005692 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005693
5694 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005695 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005696 }
5697
Douglas Gregor56c04582010-12-16 00:46:58 +00005698 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5699 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5700 return 0;
5701
John McCall9488ea12009-11-17 05:59:44 +00005702 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005703 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005704 /* IsInstantiation */ false,
5705 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005706 if (UD)
5707 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005708
John McCalld226f652010-08-21 09:40:31 +00005709 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005710}
5711
Douglas Gregor09acc982010-07-07 23:08:52 +00005712/// \brief Determine whether a using declaration considers the given
5713/// declarations as "equivalent", e.g., if they are redeclarations of
5714/// the same entity or are both typedefs of the same type.
5715static bool
5716IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5717 bool &SuppressRedeclaration) {
5718 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5719 SuppressRedeclaration = false;
5720 return true;
5721 }
5722
Richard Smith162e1c12011-04-15 14:24:37 +00005723 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5724 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005725 SuppressRedeclaration = true;
5726 return Context.hasSameType(TD1->getUnderlyingType(),
5727 TD2->getUnderlyingType());
5728 }
5729
5730 return false;
5731}
5732
5733
John McCall9f54ad42009-12-10 09:41:52 +00005734/// Determines whether to create a using shadow decl for a particular
5735/// decl, given the set of decls existing prior to this using lookup.
5736bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5737 const LookupResult &Previous) {
5738 // Diagnose finding a decl which is not from a base class of the
5739 // current class. We do this now because there are cases where this
5740 // function will silently decide not to build a shadow decl, which
5741 // will pre-empt further diagnostics.
5742 //
5743 // We don't need to do this in C++0x because we do the check once on
5744 // the qualifier.
5745 //
5746 // FIXME: diagnose the following if we care enough:
5747 // struct A { int foo; };
5748 // struct B : A { using A::foo; };
5749 // template <class T> struct C : A {};
5750 // template <class T> struct D : C<T> { using B::foo; } // <---
5751 // This is invalid (during instantiation) in C++03 because B::foo
5752 // resolves to the using decl in B, which is not a base class of D<T>.
5753 // We can't diagnose it immediately because C<T> is an unknown
5754 // specialization. The UsingShadowDecl in D<T> then points directly
5755 // to A::foo, which will look well-formed when we instantiate.
5756 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005757 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005758 DeclContext *OrigDC = Orig->getDeclContext();
5759
5760 // Handle enums and anonymous structs.
5761 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5762 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5763 while (OrigRec->isAnonymousStructOrUnion())
5764 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5765
5766 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5767 if (OrigDC == CurContext) {
5768 Diag(Using->getLocation(),
5769 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005770 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005771 Diag(Orig->getLocation(), diag::note_using_decl_target);
5772 return true;
5773 }
5774
Douglas Gregordc355712011-02-25 00:36:19 +00005775 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005776 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005777 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005778 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005779 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005780 Diag(Orig->getLocation(), diag::note_using_decl_target);
5781 return true;
5782 }
5783 }
5784
5785 if (Previous.empty()) return false;
5786
5787 NamedDecl *Target = Orig;
5788 if (isa<UsingShadowDecl>(Target))
5789 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5790
John McCalld7533ec2009-12-11 02:33:26 +00005791 // If the target happens to be one of the previous declarations, we
5792 // don't have a conflict.
5793 //
5794 // FIXME: but we might be increasing its access, in which case we
5795 // should redeclare it.
5796 NamedDecl *NonTag = 0, *Tag = 0;
5797 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5798 I != E; ++I) {
5799 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005800 bool Result;
5801 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5802 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005803
5804 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5805 }
5806
John McCall9f54ad42009-12-10 09:41:52 +00005807 if (Target->isFunctionOrFunctionTemplate()) {
5808 FunctionDecl *FD;
5809 if (isa<FunctionTemplateDecl>(Target))
5810 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5811 else
5812 FD = cast<FunctionDecl>(Target);
5813
5814 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00005815 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00005816 case Ovl_Overload:
5817 return false;
5818
5819 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00005820 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005821 break;
5822
5823 // We found a decl with the exact signature.
5824 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00005825 // If we're in a record, we want to hide the target, so we
5826 // return true (without a diagnostic) to tell the caller not to
5827 // build a shadow decl.
5828 if (CurContext->isRecord())
5829 return true;
5830
5831 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00005832 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005833 break;
5834 }
5835
5836 Diag(Target->getLocation(), diag::note_using_decl_target);
5837 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
5838 return true;
5839 }
5840
5841 // Target is not a function.
5842
John McCall9f54ad42009-12-10 09:41:52 +00005843 if (isa<TagDecl>(Target)) {
5844 // No conflict between a tag and a non-tag.
5845 if (!Tag) return false;
5846
John McCall41ce66f2009-12-10 19:51:03 +00005847 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005848 Diag(Target->getLocation(), diag::note_using_decl_target);
5849 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
5850 return true;
5851 }
5852
5853 // No conflict between a tag and a non-tag.
5854 if (!NonTag) return false;
5855
John McCall41ce66f2009-12-10 19:51:03 +00005856 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005857 Diag(Target->getLocation(), diag::note_using_decl_target);
5858 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
5859 return true;
5860}
5861
John McCall9488ea12009-11-17 05:59:44 +00005862/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00005863UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00005864 UsingDecl *UD,
5865 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00005866
5867 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00005868 NamedDecl *Target = Orig;
5869 if (isa<UsingShadowDecl>(Target)) {
5870 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5871 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00005872 }
5873
5874 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00005875 = UsingShadowDecl::Create(Context, CurContext,
5876 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00005877 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00005878
5879 Shadow->setAccess(UD->getAccess());
5880 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
5881 Shadow->setInvalidDecl();
5882
John McCall9488ea12009-11-17 05:59:44 +00005883 if (S)
John McCall604e7f12009-12-08 07:46:18 +00005884 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00005885 else
John McCall604e7f12009-12-08 07:46:18 +00005886 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00005887
John McCall604e7f12009-12-08 07:46:18 +00005888
John McCall9f54ad42009-12-10 09:41:52 +00005889 return Shadow;
5890}
John McCall604e7f12009-12-08 07:46:18 +00005891
John McCall9f54ad42009-12-10 09:41:52 +00005892/// Hides a using shadow declaration. This is required by the current
5893/// using-decl implementation when a resolvable using declaration in a
5894/// class is followed by a declaration which would hide or override
5895/// one or more of the using decl's targets; for example:
5896///
5897/// struct Base { void foo(int); };
5898/// struct Derived : Base {
5899/// using Base::foo;
5900/// void foo(int);
5901/// };
5902///
5903/// The governing language is C++03 [namespace.udecl]p12:
5904///
5905/// When a using-declaration brings names from a base class into a
5906/// derived class scope, member functions in the derived class
5907/// override and/or hide member functions with the same name and
5908/// parameter types in a base class (rather than conflicting).
5909///
5910/// There are two ways to implement this:
5911/// (1) optimistically create shadow decls when they're not hidden
5912/// by existing declarations, or
5913/// (2) don't create any shadow decls (or at least don't make them
5914/// visible) until we've fully parsed/instantiated the class.
5915/// The problem with (1) is that we might have to retroactively remove
5916/// a shadow decl, which requires several O(n) operations because the
5917/// decl structures are (very reasonably) not designed for removal.
5918/// (2) avoids this but is very fiddly and phase-dependent.
5919void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00005920 if (Shadow->getDeclName().getNameKind() ==
5921 DeclarationName::CXXConversionFunctionName)
5922 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
5923
John McCall9f54ad42009-12-10 09:41:52 +00005924 // Remove it from the DeclContext...
5925 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005926
John McCall9f54ad42009-12-10 09:41:52 +00005927 // ...and the scope, if applicable...
5928 if (S) {
John McCalld226f652010-08-21 09:40:31 +00005929 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00005930 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005931 }
5932
John McCall9f54ad42009-12-10 09:41:52 +00005933 // ...and the using decl.
5934 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
5935
5936 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00005937 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00005938}
5939
John McCall7ba107a2009-11-18 02:36:19 +00005940/// Builds a using declaration.
5941///
5942/// \param IsInstantiation - Whether this call arises from an
5943/// instantiation of an unresolved using declaration. We treat
5944/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00005945NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
5946 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005947 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005948 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00005949 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005950 bool IsInstantiation,
5951 bool IsTypeName,
5952 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00005953 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005954 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00005955 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00005956
Anders Carlsson550b14b2009-08-28 05:49:21 +00005957 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00005958
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005959 if (SS.isEmpty()) {
5960 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00005961 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005962 }
Mike Stump1eb44332009-09-09 15:08:12 +00005963
John McCall9f54ad42009-12-10 09:41:52 +00005964 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005965 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00005966 ForRedeclaration);
5967 Previous.setHideTags(false);
5968 if (S) {
5969 LookupName(Previous, S);
5970
5971 // It is really dumb that we have to do this.
5972 LookupResult::Filter F = Previous.makeFilter();
5973 while (F.hasNext()) {
5974 NamedDecl *D = F.next();
5975 if (!isDeclInScope(D, CurContext, S))
5976 F.erase();
5977 }
5978 F.done();
5979 } else {
5980 assert(IsInstantiation && "no scope in non-instantiation");
5981 assert(CurContext->isRecord() && "scope not record in instantiation");
5982 LookupQualifiedName(Previous, CurContext);
5983 }
5984
John McCall9f54ad42009-12-10 09:41:52 +00005985 // Check for invalid redeclarations.
5986 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
5987 return 0;
5988
5989 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00005990 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
5991 return 0;
5992
John McCallaf8e6ed2009-11-12 03:15:40 +00005993 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00005994 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00005995 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00005996 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00005997 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00005998 // FIXME: not all declaration name kinds are legal here
5999 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6000 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006001 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006002 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006003 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006004 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6005 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006006 }
John McCalled976492009-12-04 22:46:56 +00006007 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006008 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6009 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006010 }
John McCalled976492009-12-04 22:46:56 +00006011 D->setAccess(AS);
6012 CurContext->addDecl(D);
6013
6014 if (!LookupContext) return D;
6015 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006016
John McCall77bb1aa2010-05-01 00:40:08 +00006017 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006018 UD->setInvalidDecl();
6019 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006020 }
6021
Richard Smithc5a89a12012-04-02 01:30:27 +00006022 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006023 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006024 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006025 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006026 return UD;
6027 }
6028
6029 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006030
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006031 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006032
John McCall604e7f12009-12-08 07:46:18 +00006033 // Unlike most lookups, we don't always want to hide tag
6034 // declarations: tag names are visible through the using declaration
6035 // even if hidden by ordinary names, *except* in a dependent context
6036 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006037 if (!IsInstantiation)
6038 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006039
John McCallb9abd8722012-04-07 03:04:20 +00006040 // For the purposes of this lookup, we have a base object type
6041 // equal to that of the current context.
6042 if (CurContext->isRecord()) {
6043 R.setBaseObjectType(
6044 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6045 }
6046
John McCalla24dc2e2009-11-17 02:14:36 +00006047 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006048
John McCallf36e02d2009-10-09 21:13:30 +00006049 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006050 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006051 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006052 UD->setInvalidDecl();
6053 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006054 }
6055
John McCalled976492009-12-04 22:46:56 +00006056 if (R.isAmbiguous()) {
6057 UD->setInvalidDecl();
6058 return UD;
6059 }
Mike Stump1eb44332009-09-09 15:08:12 +00006060
John McCall7ba107a2009-11-18 02:36:19 +00006061 if (IsTypeName) {
6062 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006063 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006064 Diag(IdentLoc, diag::err_using_typename_non_type);
6065 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6066 Diag((*I)->getUnderlyingDecl()->getLocation(),
6067 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006068 UD->setInvalidDecl();
6069 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006070 }
6071 } else {
6072 // If we asked for a non-typename and we got a type, error out,
6073 // but only if this is an instantiation of an unresolved using
6074 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006075 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006076 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6077 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006078 UD->setInvalidDecl();
6079 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006080 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006081 }
6082
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006083 // C++0x N2914 [namespace.udecl]p6:
6084 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006085 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006086 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6087 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006088 UD->setInvalidDecl();
6089 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006090 }
Mike Stump1eb44332009-09-09 15:08:12 +00006091
John McCall9f54ad42009-12-10 09:41:52 +00006092 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6093 if (!CheckUsingShadowDecl(UD, *I, Previous))
6094 BuildUsingShadowDecl(S, UD, *I);
6095 }
John McCall9488ea12009-11-17 05:59:44 +00006096
6097 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006098}
6099
Sebastian Redlf677ea32011-02-05 19:23:19 +00006100/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006101bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6102 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006103
Douglas Gregordc355712011-02-25 00:36:19 +00006104 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006105 assert(SourceType &&
6106 "Using decl naming constructor doesn't have type in scope spec.");
6107 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6108
6109 // Check whether the named type is a direct base class.
6110 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6111 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6112 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6113 BaseIt != BaseE; ++BaseIt) {
6114 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6115 if (CanonicalSourceType == BaseType)
6116 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006117 if (BaseIt->getType()->isDependentType())
6118 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006119 }
6120
6121 if (BaseIt == BaseE) {
6122 // Did not find SourceType in the bases.
6123 Diag(UD->getUsingLocation(),
6124 diag::err_using_decl_constructor_not_in_direct_base)
6125 << UD->getNameInfo().getSourceRange()
6126 << QualType(SourceType, 0) << TargetClass;
6127 return true;
6128 }
6129
Richard Smithc5a89a12012-04-02 01:30:27 +00006130 if (!CurContext->isDependentContext())
6131 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006132
6133 return false;
6134}
6135
John McCall9f54ad42009-12-10 09:41:52 +00006136/// Checks that the given using declaration is not an invalid
6137/// redeclaration. Note that this is checking only for the using decl
6138/// itself, not for any ill-formedness among the UsingShadowDecls.
6139bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6140 bool isTypeName,
6141 const CXXScopeSpec &SS,
6142 SourceLocation NameLoc,
6143 const LookupResult &Prev) {
6144 // C++03 [namespace.udecl]p8:
6145 // C++0x [namespace.udecl]p10:
6146 // A using-declaration is a declaration and can therefore be used
6147 // repeatedly where (and only where) multiple declarations are
6148 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006149 //
John McCall8a726212010-11-29 18:01:58 +00006150 // That's in non-member contexts.
6151 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006152 return false;
6153
6154 NestedNameSpecifier *Qual
6155 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6156
6157 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6158 NamedDecl *D = *I;
6159
6160 bool DTypename;
6161 NestedNameSpecifier *DQual;
6162 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6163 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006164 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006165 } else if (UnresolvedUsingValueDecl *UD
6166 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6167 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006168 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006169 } else if (UnresolvedUsingTypenameDecl *UD
6170 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6171 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006172 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006173 } else continue;
6174
6175 // using decls differ if one says 'typename' and the other doesn't.
6176 // FIXME: non-dependent using decls?
6177 if (isTypeName != DTypename) continue;
6178
6179 // using decls differ if they name different scopes (but note that
6180 // template instantiation can cause this check to trigger when it
6181 // didn't before instantiation).
6182 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6183 Context.getCanonicalNestedNameSpecifier(DQual))
6184 continue;
6185
6186 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006187 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006188 return true;
6189 }
6190
6191 return false;
6192}
6193
John McCall604e7f12009-12-08 07:46:18 +00006194
John McCalled976492009-12-04 22:46:56 +00006195/// Checks that the given nested-name qualifier used in a using decl
6196/// in the current context is appropriately related to the current
6197/// scope. If an error is found, diagnoses it and returns true.
6198bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6199 const CXXScopeSpec &SS,
6200 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006201 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006202
John McCall604e7f12009-12-08 07:46:18 +00006203 if (!CurContext->isRecord()) {
6204 // C++03 [namespace.udecl]p3:
6205 // C++0x [namespace.udecl]p8:
6206 // A using-declaration for a class member shall be a member-declaration.
6207
6208 // If we weren't able to compute a valid scope, it must be a
6209 // dependent class scope.
6210 if (!NamedContext || NamedContext->isRecord()) {
6211 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6212 << SS.getRange();
6213 return true;
6214 }
6215
6216 // Otherwise, everything is known to be fine.
6217 return false;
6218 }
6219
6220 // The current scope is a record.
6221
6222 // If the named context is dependent, we can't decide much.
6223 if (!NamedContext) {
6224 // FIXME: in C++0x, we can diagnose if we can prove that the
6225 // nested-name-specifier does not refer to a base class, which is
6226 // still possible in some cases.
6227
6228 // Otherwise we have to conservatively report that things might be
6229 // okay.
6230 return false;
6231 }
6232
6233 if (!NamedContext->isRecord()) {
6234 // Ideally this would point at the last name in the specifier,
6235 // but we don't have that level of source info.
6236 Diag(SS.getRange().getBegin(),
6237 diag::err_using_decl_nested_name_specifier_is_not_class)
6238 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6239 return true;
6240 }
6241
Douglas Gregor6fb07292010-12-21 07:41:49 +00006242 if (!NamedContext->isDependentContext() &&
6243 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6244 return true;
6245
David Blaikie4e4d0842012-03-11 07:00:24 +00006246 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006247 // C++0x [namespace.udecl]p3:
6248 // In a using-declaration used as a member-declaration, the
6249 // nested-name-specifier shall name a base class of the class
6250 // being defined.
6251
6252 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6253 cast<CXXRecordDecl>(NamedContext))) {
6254 if (CurContext == NamedContext) {
6255 Diag(NameLoc,
6256 diag::err_using_decl_nested_name_specifier_is_current_class)
6257 << SS.getRange();
6258 return true;
6259 }
6260
6261 Diag(SS.getRange().getBegin(),
6262 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6263 << (NestedNameSpecifier*) SS.getScopeRep()
6264 << cast<CXXRecordDecl>(CurContext)
6265 << SS.getRange();
6266 return true;
6267 }
6268
6269 return false;
6270 }
6271
6272 // C++03 [namespace.udecl]p4:
6273 // A using-declaration used as a member-declaration shall refer
6274 // to a member of a base class of the class being defined [etc.].
6275
6276 // Salient point: SS doesn't have to name a base class as long as
6277 // lookup only finds members from base classes. Therefore we can
6278 // diagnose here only if we can prove that that can't happen,
6279 // i.e. if the class hierarchies provably don't intersect.
6280
6281 // TODO: it would be nice if "definitely valid" results were cached
6282 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6283 // need to be repeated.
6284
6285 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006286 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006287
6288 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6289 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6290 Data->Bases.insert(Base);
6291 return true;
6292 }
6293
6294 bool hasDependentBases(const CXXRecordDecl *Class) {
6295 return !Class->forallBases(collect, this);
6296 }
6297
6298 /// Returns true if the base is dependent or is one of the
6299 /// accumulated base classes.
6300 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6301 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6302 return !Data->Bases.count(Base);
6303 }
6304
6305 bool mightShareBases(const CXXRecordDecl *Class) {
6306 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6307 }
6308 };
6309
6310 UserData Data;
6311
6312 // Returns false if we find a dependent base.
6313 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6314 return false;
6315
6316 // Returns false if the class has a dependent base or if it or one
6317 // of its bases is present in the base set of the current context.
6318 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6319 return false;
6320
6321 Diag(SS.getRange().getBegin(),
6322 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6323 << (NestedNameSpecifier*) SS.getScopeRep()
6324 << cast<CXXRecordDecl>(CurContext)
6325 << SS.getRange();
6326
6327 return true;
John McCalled976492009-12-04 22:46:56 +00006328}
6329
Richard Smith162e1c12011-04-15 14:24:37 +00006330Decl *Sema::ActOnAliasDeclaration(Scope *S,
6331 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006332 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006333 SourceLocation UsingLoc,
6334 UnqualifiedId &Name,
6335 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006336 // Skip up to the relevant declaration scope.
6337 while (S->getFlags() & Scope::TemplateParamScope)
6338 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006339 assert((S->getFlags() & Scope::DeclScope) &&
6340 "got alias-declaration outside of declaration scope");
6341
6342 if (Type.isInvalid())
6343 return 0;
6344
6345 bool Invalid = false;
6346 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6347 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006348 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006349
6350 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6351 return 0;
6352
6353 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006354 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006355 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006356 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6357 TInfo->getTypeLoc().getBeginLoc());
6358 }
Richard Smith162e1c12011-04-15 14:24:37 +00006359
6360 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6361 LookupName(Previous, S);
6362
6363 // Warn about shadowing the name of a template parameter.
6364 if (Previous.isSingleResult() &&
6365 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006366 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006367 Previous.clear();
6368 }
6369
6370 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6371 "name in alias declaration must be an identifier");
6372 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6373 Name.StartLocation,
6374 Name.Identifier, TInfo);
6375
6376 NewTD->setAccess(AS);
6377
6378 if (Invalid)
6379 NewTD->setInvalidDecl();
6380
Richard Smith3e4c6c42011-05-05 21:57:07 +00006381 CheckTypedefForVariablyModifiedType(S, NewTD);
6382 Invalid |= NewTD->isInvalidDecl();
6383
Richard Smith162e1c12011-04-15 14:24:37 +00006384 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006385
6386 NamedDecl *NewND;
6387 if (TemplateParamLists.size()) {
6388 TypeAliasTemplateDecl *OldDecl = 0;
6389 TemplateParameterList *OldTemplateParams = 0;
6390
6391 if (TemplateParamLists.size() != 1) {
6392 Diag(UsingLoc, diag::err_alias_template_extra_headers)
6393 << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
6394 TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
6395 }
6396 TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
6397
6398 // Only consider previous declarations in the same scope.
6399 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6400 /*ExplicitInstantiationOrSpecialization*/false);
6401 if (!Previous.empty()) {
6402 Redeclaration = true;
6403
6404 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6405 if (!OldDecl && !Invalid) {
6406 Diag(UsingLoc, diag::err_redefinition_different_kind)
6407 << Name.Identifier;
6408
6409 NamedDecl *OldD = Previous.getRepresentativeDecl();
6410 if (OldD->getLocation().isValid())
6411 Diag(OldD->getLocation(), diag::note_previous_definition);
6412
6413 Invalid = true;
6414 }
6415
6416 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6417 if (TemplateParameterListsAreEqual(TemplateParams,
6418 OldDecl->getTemplateParameters(),
6419 /*Complain=*/true,
6420 TPL_TemplateMatch))
6421 OldTemplateParams = OldDecl->getTemplateParameters();
6422 else
6423 Invalid = true;
6424
6425 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6426 if (!Invalid &&
6427 !Context.hasSameType(OldTD->getUnderlyingType(),
6428 NewTD->getUnderlyingType())) {
6429 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6430 // but we can't reasonably accept it.
6431 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6432 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6433 if (OldTD->getLocation().isValid())
6434 Diag(OldTD->getLocation(), diag::note_previous_definition);
6435 Invalid = true;
6436 }
6437 }
6438 }
6439
6440 // Merge any previous default template arguments into our parameters,
6441 // and check the parameter list.
6442 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6443 TPC_TypeAliasTemplate))
6444 return 0;
6445
6446 TypeAliasTemplateDecl *NewDecl =
6447 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6448 Name.Identifier, TemplateParams,
6449 NewTD);
6450
6451 NewDecl->setAccess(AS);
6452
6453 if (Invalid)
6454 NewDecl->setInvalidDecl();
6455 else if (OldDecl)
6456 NewDecl->setPreviousDeclaration(OldDecl);
6457
6458 NewND = NewDecl;
6459 } else {
6460 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6461 NewND = NewTD;
6462 }
Richard Smith162e1c12011-04-15 14:24:37 +00006463
6464 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006465 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006466
Richard Smith3e4c6c42011-05-05 21:57:07 +00006467 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006468}
6469
John McCalld226f652010-08-21 09:40:31 +00006470Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006471 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006472 SourceLocation AliasLoc,
6473 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006474 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006475 SourceLocation IdentLoc,
6476 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006477
Anders Carlsson81c85c42009-03-28 23:53:49 +00006478 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006479 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6480 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006481
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006482 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006483 NamedDecl *PrevDecl
6484 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6485 ForRedeclaration);
6486 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6487 PrevDecl = 0;
6488
6489 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006490 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006491 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006492 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006493 // FIXME: At some point, we'll want to create the (redundant)
6494 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006495 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006496 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006497 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006498 }
Mike Stump1eb44332009-09-09 15:08:12 +00006499
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006500 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6501 diag::err_redefinition_different_kind;
6502 Diag(AliasLoc, DiagID) << Alias;
6503 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006504 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006505 }
6506
John McCalla24dc2e2009-11-17 02:14:36 +00006507 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006508 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006509
John McCallf36e02d2009-10-09 21:13:30 +00006510 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006511 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006512 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006513 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006514 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006515 }
Mike Stump1eb44332009-09-09 15:08:12 +00006516
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006517 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006518 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006519 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006520 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006521
John McCall3dbd3d52010-02-16 06:53:13 +00006522 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006523 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006524}
6525
Douglas Gregor39957dc2010-05-01 15:04:51 +00006526namespace {
6527 /// \brief Scoped object used to handle the state changes required in Sema
6528 /// to implicitly define the body of a C++ member function;
6529 class ImplicitlyDefinedFunctionScope {
6530 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006531 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006532
6533 public:
6534 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006535 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006536 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006537 S.PushFunctionScope();
6538 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6539 }
6540
6541 ~ImplicitlyDefinedFunctionScope() {
6542 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006543 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006544 }
6545 };
6546}
6547
Sean Hunt001cad92011-05-10 00:49:42 +00006548Sema::ImplicitExceptionSpecification
6549Sema::ComputeDefaultedDefaultCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006550 // C++ [except.spec]p14:
6551 // An implicitly declared special member function (Clause 12) shall have an
6552 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006553 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006554 if (ClassDecl->isInvalidDecl())
6555 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006556
Sebastian Redl60618fa2011-03-12 11:50:43 +00006557 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006558 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6559 BEnd = ClassDecl->bases_end();
6560 B != BEnd; ++B) {
6561 if (B->isVirtual()) // Handled below.
6562 continue;
6563
Douglas Gregor18274032010-07-03 00:47:00 +00006564 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6565 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006566 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6567 // If this is a deleted function, add it anyway. This might be conformant
6568 // with the standard. This might not. I'm not sure. It might not matter.
6569 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006570 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006571 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006572 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006573
6574 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006575 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6576 BEnd = ClassDecl->vbases_end();
6577 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006578 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6579 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006580 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6581 // If this is a deleted function, add it anyway. This might be conformant
6582 // with the standard. This might not. I'm not sure. It might not matter.
6583 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006584 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006585 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006586 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006587
6588 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006589 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6590 FEnd = ClassDecl->field_end();
6591 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006592 if (F->hasInClassInitializer()) {
6593 if (Expr *E = F->getInClassInitializer())
6594 ExceptSpec.CalledExpr(E);
6595 else if (!F->isInvalidDecl())
6596 ExceptSpec.SetDelayed();
6597 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006598 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006599 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6600 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6601 // If this is a deleted function, add it anyway. This might be conformant
6602 // with the standard. This might not. I'm not sure. It might not matter.
6603 // In particular, the problem is that this function never gets called. It
6604 // might just be ill-formed because this function attempts to refer to
6605 // a deleted function here.
6606 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006607 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006608 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006609 }
John McCalle23cf432010-12-14 08:05:40 +00006610
Sean Hunt001cad92011-05-10 00:49:42 +00006611 return ExceptSpec;
6612}
6613
6614CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6615 CXXRecordDecl *ClassDecl) {
6616 // C++ [class.ctor]p5:
6617 // A default constructor for a class X is a constructor of class X
6618 // that can be called without an argument. If there is no
6619 // user-declared constructor for class X, a default constructor is
6620 // implicitly declared. An implicitly-declared default constructor
6621 // is an inline public member of its class.
6622 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6623 "Should not build implicit default constructor!");
6624
6625 ImplicitExceptionSpecification Spec =
6626 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6627 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00006628
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006629 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006630 CanQualType ClassType
6631 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006632 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006633 DeclarationName Name
6634 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006635 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006636 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
6637 Context, ClassDecl, ClassLoc, NameInfo,
6638 Context.getFunctionType(Context.VoidTy, 0, 0, EPI), /*TInfo=*/0,
6639 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
6640 /*isConstexpr=*/ClassDecl->defaultedDefaultConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00006641 getLangOpts().CPlusPlus0x);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006642 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006643 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006644 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006645 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00006646
6647 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006648 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6649
Douglas Gregor23c94db2010-07-02 17:43:08 +00006650 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006651 PushOnScopeChains(DefaultCon, S, false);
6652 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006653
Sean Hunte16da072011-10-10 06:18:57 +00006654 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006655 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006656
Douglas Gregor32df23e2010-07-01 22:02:46 +00006657 return DefaultCon;
6658}
6659
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006660void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6661 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006662 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006663 !Constructor->doesThisDeclarationHaveABody() &&
6664 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006665 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006666
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006667 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006668 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006669
Douglas Gregor39957dc2010-05-01 15:04:51 +00006670 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006671 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006672 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006673 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006674 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006675 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006676 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006677 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006678 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006679
6680 SourceLocation Loc = Constructor->getLocation();
6681 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
6682
6683 Constructor->setUsed();
6684 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006685
6686 if (ASTMutationListener *L = getASTMutationListener()) {
6687 L->CompletedImplicitDefinition(Constructor);
6688 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006689}
6690
Richard Smith7a614d82011-06-11 17:19:42 +00006691/// Get any existing defaulted default constructor for the given class. Do not
6692/// implicitly define one if it does not exist.
6693static CXXConstructorDecl *getDefaultedDefaultConstructorUnsafe(Sema &Self,
6694 CXXRecordDecl *D) {
6695 ASTContext &Context = Self.Context;
6696 QualType ClassType = Context.getTypeDeclType(D);
6697 DeclarationName ConstructorName
6698 = Context.DeclarationNames.getCXXConstructorName(
6699 Context.getCanonicalType(ClassType.getUnqualifiedType()));
6700
6701 DeclContext::lookup_const_iterator Con, ConEnd;
6702 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
6703 Con != ConEnd; ++Con) {
6704 // A function template cannot be defaulted.
6705 if (isa<FunctionTemplateDecl>(*Con))
6706 continue;
6707
6708 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
6709 if (Constructor->isDefaultConstructor())
6710 return Constructor->isDefaulted() ? Constructor : 0;
6711 }
6712 return 0;
6713}
6714
6715void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6716 if (!D) return;
6717 AdjustDeclIfTemplate(D);
6718
6719 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
6720 CXXConstructorDecl *CtorDecl
6721 = getDefaultedDefaultConstructorUnsafe(*this, ClassDecl);
6722
6723 if (!CtorDecl) return;
6724
6725 // Compute the exception specification for the default constructor.
6726 const FunctionProtoType *CtorTy =
6727 CtorDecl->getType()->castAs<FunctionProtoType>();
6728 if (CtorTy->getExceptionSpecType() == EST_Delayed) {
Richard Smithe6975e92012-04-17 00:58:00 +00006729 // FIXME: Don't do this unless the exception spec is needed.
Richard Smith7a614d82011-06-11 17:19:42 +00006730 ImplicitExceptionSpecification Spec =
6731 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6732 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6733 assert(EPI.ExceptionSpecType != EST_Delayed);
6734
6735 CtorDecl->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6736 }
6737
6738 // If the default constructor is explicitly defaulted, checking the exception
6739 // specification is deferred until now.
6740 if (!CtorDecl->isInvalidDecl() && CtorDecl->isExplicitlyDefaulted() &&
6741 !ClassDecl->isDependentType())
Richard Smith3003e1d2012-05-15 04:39:51 +00006742 CheckExplicitlyDefaultedSpecialMember(CtorDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006743}
6744
Sebastian Redlf677ea32011-02-05 19:23:19 +00006745void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6746 // We start with an initial pass over the base classes to collect those that
6747 // inherit constructors from. If there are none, we can forgo all further
6748 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006749 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006750 BasesVector BasesToInheritFrom;
6751 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6752 BaseE = ClassDecl->bases_end();
6753 BaseIt != BaseE; ++BaseIt) {
6754 if (BaseIt->getInheritConstructors()) {
6755 QualType Base = BaseIt->getType();
6756 if (Base->isDependentType()) {
6757 // If we inherit constructors from anything that is dependent, just
6758 // abort processing altogether. We'll get another chance for the
6759 // instantiations.
6760 return;
6761 }
6762 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6763 }
6764 }
6765 if (BasesToInheritFrom.empty())
6766 return;
6767
6768 // Now collect the constructors that we already have in the current class.
6769 // Those take precedence over inherited constructors.
6770 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6771 // unless there is a user-declared constructor with the same signature in
6772 // the class where the using-declaration appears.
6773 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6774 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6775 CtorE = ClassDecl->ctor_end();
6776 CtorIt != CtorE; ++CtorIt) {
6777 ExistingConstructors.insert(
6778 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6779 }
6780
Sebastian Redlf677ea32011-02-05 19:23:19 +00006781 DeclarationName CreatedCtorName =
6782 Context.DeclarationNames.getCXXConstructorName(
6783 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6784
6785 // Now comes the true work.
6786 // First, we keep a map from constructor types to the base that introduced
6787 // them. Needed for finding conflicting constructors. We also keep the
6788 // actually inserted declarations in there, for pretty diagnostics.
6789 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6790 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6791 ConstructorToSourceMap InheritedConstructors;
6792 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6793 BaseE = BasesToInheritFrom.end();
6794 BaseIt != BaseE; ++BaseIt) {
6795 const RecordType *Base = *BaseIt;
6796 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6797 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6798 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6799 CtorE = BaseDecl->ctor_end();
6800 CtorIt != CtorE; ++CtorIt) {
6801 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006802 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006803 DeclarationName Name =
6804 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006805 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6806 LookupQualifiedName(Result, CurContext);
6807 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006808 SourceLocation UsingLoc = UD ? UD->getLocation() :
6809 ClassDecl->getLocation();
6810
6811 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6812 // from the class X named in the using-declaration consists of actual
6813 // constructors and notional constructors that result from the
6814 // transformation of defaulted parameters as follows:
6815 // - all non-template default constructors of X, and
6816 // - for each non-template constructor of X that has at least one
6817 // parameter with a default argument, the set of constructors that
6818 // results from omitting any ellipsis parameter specification and
6819 // successively omitting parameters with a default argument from the
6820 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00006821 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006822 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6823 const FunctionProtoType *BaseCtorType =
6824 BaseCtor->getType()->getAs<FunctionProtoType>();
6825
6826 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6827 maxParams = BaseCtor->getNumParams();
6828 params <= maxParams; ++params) {
6829 // Skip default constructors. They're never inherited.
6830 if (params == 0)
6831 continue;
6832 // Skip copy and move constructors for the same reason.
6833 if (CanBeCopyOrMove && params == 1)
6834 continue;
6835
6836 // Build up a function type for this particular constructor.
6837 // FIXME: The working paper does not consider that the exception spec
6838 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00006839 // source. This code doesn't yet, either. When it does, this code will
6840 // need to be delayed until after exception specifications and in-class
6841 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006842 const Type *NewCtorType;
6843 if (params == maxParams)
6844 NewCtorType = BaseCtorType;
6845 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006846 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006847 for (unsigned i = 0; i < params; ++i) {
6848 Args.push_back(BaseCtorType->getArgType(i));
6849 }
6850 FunctionProtoType::ExtProtoInfo ExtInfo =
6851 BaseCtorType->getExtProtoInfo();
6852 ExtInfo.Variadic = false;
6853 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
6854 Args.data(), params, ExtInfo)
6855 .getTypePtr();
6856 }
6857 const Type *CanonicalNewCtorType =
6858 Context.getCanonicalType(NewCtorType);
6859
6860 // Now that we have the type, first check if the class already has a
6861 // constructor with this signature.
6862 if (ExistingConstructors.count(CanonicalNewCtorType))
6863 continue;
6864
6865 // Then we check if we have already declared an inherited constructor
6866 // with this signature.
6867 std::pair<ConstructorToSourceMap::iterator, bool> result =
6868 InheritedConstructors.insert(std::make_pair(
6869 CanonicalNewCtorType,
6870 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
6871 if (!result.second) {
6872 // Already in the map. If it came from a different class, that's an
6873 // error. Not if it's from the same.
6874 CanQualType PreviousBase = result.first->second.first;
6875 if (CanonicalBase != PreviousBase) {
6876 const CXXConstructorDecl *PrevCtor = result.first->second.second;
6877 const CXXConstructorDecl *PrevBaseCtor =
6878 PrevCtor->getInheritedConstructor();
6879 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
6880
6881 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
6882 Diag(BaseCtor->getLocation(),
6883 diag::note_using_decl_constructor_conflict_current_ctor);
6884 Diag(PrevBaseCtor->getLocation(),
6885 diag::note_using_decl_constructor_conflict_previous_ctor);
6886 Diag(PrevCtor->getLocation(),
6887 diag::note_using_decl_constructor_conflict_previous_using);
6888 }
6889 continue;
6890 }
6891
6892 // OK, we're there, now add the constructor.
6893 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006894 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00006895 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
6896 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006897 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
6898 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006899 /*ImplicitlyDeclared=*/true,
6900 // FIXME: Due to a defect in the standard, we treat inherited
6901 // constructors as constexpr even if that makes them ill-formed.
6902 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00006903 NewCtor->setAccess(BaseCtor->getAccess());
6904
6905 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006906 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006907 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006908 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
6909 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00006910 /*IdentifierInfo=*/0,
6911 BaseCtorType->getArgType(i),
6912 /*TInfo=*/0, SC_None,
6913 SC_None, /*DefaultArg=*/0));
6914 }
David Blaikie4278c652011-09-21 18:16:56 +00006915 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006916 NewCtor->setInheritedConstructor(BaseCtor);
6917
Sebastian Redlf677ea32011-02-05 19:23:19 +00006918 ClassDecl->addDecl(NewCtor);
6919 result.first->second.second = NewCtor;
6920 }
6921 }
6922 }
6923}
6924
Sean Huntcb45a0f2011-05-12 22:46:25 +00006925Sema::ImplicitExceptionSpecification
6926Sema::ComputeDefaultedDtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006927 // C++ [except.spec]p14:
6928 // An implicitly declared special member function (Clause 12) shall have
6929 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00006930 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006931 if (ClassDecl->isInvalidDecl())
6932 return ExceptSpec;
6933
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006934 // Direct base-class destructors.
6935 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6936 BEnd = ClassDecl->bases_end();
6937 B != BEnd; ++B) {
6938 if (B->isVirtual()) // Handled below.
6939 continue;
6940
6941 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006942 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006943 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006944 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006945
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006946 // Virtual base-class destructors.
6947 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6948 BEnd = ClassDecl->vbases_end();
6949 B != BEnd; ++B) {
6950 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006951 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006952 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006953 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006954
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006955 // Field destructors.
6956 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6957 FEnd = ClassDecl->field_end();
6958 F != FEnd; ++F) {
6959 if (const RecordType *RecordTy
6960 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006961 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006962 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006963 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006964
Sean Huntcb45a0f2011-05-12 22:46:25 +00006965 return ExceptSpec;
6966}
6967
6968CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
6969 // C++ [class.dtor]p2:
6970 // If a class has no user-declared destructor, a destructor is
6971 // declared implicitly. An implicitly-declared destructor is an
6972 // inline public member of its class.
6973
6974 ImplicitExceptionSpecification Spec =
Sebastian Redl0ee33912011-05-19 05:13:44 +00006975 ComputeDefaultedDtorExceptionSpec(ClassDecl);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006976 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6977
Douglas Gregor4923aa22010-07-02 20:37:36 +00006978 // Create the actual destructor declaration.
John McCalle23cf432010-12-14 08:05:40 +00006979 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Sebastian Redl60618fa2011-03-12 11:50:43 +00006980
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006981 CanQualType ClassType
6982 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006983 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006984 DeclarationName Name
6985 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006986 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006987 CXXDestructorDecl *Destructor
Sebastian Redl60618fa2011-03-12 11:50:43 +00006988 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
6989 /*isInline=*/true,
6990 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006991 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006992 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006993 Destructor->setImplicit();
6994 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00006995
6996 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00006997 ++ASTContext::NumImplicitDestructorsDeclared;
6998
6999 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007000 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007001 PushOnScopeChains(Destructor, S, false);
7002 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007003
7004 // This could be uniqued if it ever proves significant.
7005 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Sean Huntcb45a0f2011-05-12 22:46:25 +00007006
Richard Smith9a561d52012-02-26 09:11:52 +00007007 AddOverriddenMethods(ClassDecl, Destructor);
7008
Richard Smith7d5088a2012-02-18 02:02:13 +00007009 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007010 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007011
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007012 return Destructor;
7013}
7014
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007015void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007016 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007017 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007018 !Destructor->doesThisDeclarationHaveABody() &&
7019 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007020 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007021 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007022 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007023
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007024 if (Destructor->isInvalidDecl())
7025 return;
7026
Douglas Gregor39957dc2010-05-01 15:04:51 +00007027 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007028
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007029 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007030 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7031 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007032
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007033 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007034 Diag(CurrentLocation, diag::note_member_synthesized_at)
7035 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7036
7037 Destructor->setInvalidDecl();
7038 return;
7039 }
7040
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007041 SourceLocation Loc = Destructor->getLocation();
7042 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007043 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007044 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007045 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007046
7047 if (ASTMutationListener *L = getASTMutationListener()) {
7048 L->CompletedImplicitDefinition(Destructor);
7049 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007050}
7051
Richard Smitha4156b82012-04-21 18:42:51 +00007052/// \brief Perform any semantic analysis which needs to be delayed until all
7053/// pending class member declarations have been parsed.
7054void Sema::ActOnFinishCXXMemberDecls() {
7055 // Now we have parsed all exception specifications, determine the implicit
7056 // exception specifications for destructors.
7057 for (unsigned i = 0, e = DelayedDestructorExceptionSpecs.size();
7058 i != e; ++i) {
7059 CXXDestructorDecl *Dtor = DelayedDestructorExceptionSpecs[i];
7060 AdjustDestructorExceptionSpec(Dtor->getParent(), Dtor, true);
7061 }
7062 DelayedDestructorExceptionSpecs.clear();
7063
7064 // Perform any deferred checking of exception specifications for virtual
7065 // destructors.
7066 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7067 i != e; ++i) {
7068 const CXXDestructorDecl *Dtor =
7069 DelayedDestructorExceptionSpecChecks[i].first;
7070 assert(!Dtor->getParent()->isDependentType() &&
7071 "Should not ever add destructors of templates into the list.");
7072 CheckOverridingFunctionExceptionSpec(Dtor,
7073 DelayedDestructorExceptionSpecChecks[i].second);
7074 }
7075 DelayedDestructorExceptionSpecChecks.clear();
7076}
7077
Sebastian Redl0ee33912011-05-19 05:13:44 +00007078void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *classDecl,
Richard Smitha4156b82012-04-21 18:42:51 +00007079 CXXDestructorDecl *destructor,
7080 bool WasDelayed) {
Sebastian Redl0ee33912011-05-19 05:13:44 +00007081 // C++11 [class.dtor]p3:
7082 // A declaration of a destructor that does not have an exception-
7083 // specification is implicitly considered to have the same exception-
7084 // specification as an implicit declaration.
7085 const FunctionProtoType *dtorType = destructor->getType()->
7086 getAs<FunctionProtoType>();
Richard Smitha4156b82012-04-21 18:42:51 +00007087 if (!WasDelayed && dtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007088 return;
7089
7090 ImplicitExceptionSpecification exceptSpec =
7091 ComputeDefaultedDtorExceptionSpec(classDecl);
7092
Chandler Carruth3f224b22011-09-20 04:55:26 +00007093 // Replace the destructor's type, building off the existing one. Fortunately,
7094 // the only thing of interest in the destructor type is its extended info.
7095 // The return and arguments are fixed.
7096 FunctionProtoType::ExtProtoInfo epi = dtorType->getExtProtoInfo();
Sebastian Redl0ee33912011-05-19 05:13:44 +00007097 epi.ExceptionSpecType = exceptSpec.getExceptionSpecType();
7098 epi.NumExceptions = exceptSpec.size();
7099 epi.Exceptions = exceptSpec.data();
7100 QualType ty = Context.getFunctionType(Context.VoidTy, 0, 0, epi);
7101
7102 destructor->setType(ty);
7103
Richard Smitha4156b82012-04-21 18:42:51 +00007104 // If we can't compute the exception specification for this destructor yet
7105 // (because it depends on an exception specification which we have not parsed
7106 // yet), make a note that we need to try again when the class is complete.
7107 if (epi.ExceptionSpecType == EST_Delayed) {
7108 assert(!WasDelayed && "couldn't compute destructor exception spec");
7109 DelayedDestructorExceptionSpecs.push_back(destructor);
7110 }
7111
Sebastian Redl0ee33912011-05-19 05:13:44 +00007112 // FIXME: If the destructor has a body that could throw, and the newly created
7113 // spec doesn't allow exceptions, we should emit a warning, because this
7114 // change in behavior can break conforming C++03 programs at runtime.
7115 // However, we don't have a body yet, so it needs to be done somewhere else.
7116}
7117
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007118/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007119/// \c To.
7120///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007121/// This routine is used to copy/move the members of a class with an
7122/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007123/// copied are arrays, this routine builds for loops to copy them.
7124///
7125/// \param S The Sema object used for type-checking.
7126///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007127/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007128///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007129/// \param T The type of the expressions being copied/moved. Both expressions
7130/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007131///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007132/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007133///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007134/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007135///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007136/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007137/// Otherwise, it's a non-static member subobject.
7138///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007139/// \param Copying Whether we're copying or moving.
7140///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007141/// \param Depth Internal parameter recording the depth of the recursion.
7142///
7143/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007144static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007145BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007146 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007147 bool CopyingBaseSubobject, bool Copying,
7148 unsigned Depth = 0) {
7149 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007150 // Each subobject is assigned in the manner appropriate to its type:
7151 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007152 // - if the subobject is of class type, as if by a call to operator= with
7153 // the subobject as the object expression and the corresponding
7154 // subobject of x as a single function argument (as if by explicit
7155 // qualification; that is, ignoring any possible virtual overriding
7156 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007157 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7158 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7159
7160 // Look for operator=.
7161 DeclarationName Name
7162 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7163 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7164 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7165
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007166 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007167 LookupResult::Filter F = OpLookup.makeFilter();
7168 while (F.hasNext()) {
7169 NamedDecl *D = F.next();
7170 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007171 if (Method->isCopyAssignmentOperator() ||
7172 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007173 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007174
Douglas Gregor06a9f362010-05-01 20:49:11 +00007175 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007176 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007177 F.done();
7178
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007179 // Suppress the protected check (C++ [class.protected]) for each of the
7180 // assignment operators we found. This strange dance is required when
7181 // we're assigning via a base classes's copy-assignment operator. To
7182 // ensure that we're getting the right base class subobject (without
7183 // ambiguities), we need to cast "this" to that subobject type; to
7184 // ensure that we don't go through the virtual call mechanism, we need
7185 // to qualify the operator= name with the base class (see below). However,
7186 // this means that if the base class has a protected copy assignment
7187 // operator, the protected member access check will fail. So, we
7188 // rewrite "protected" access to "public" access in this case, since we
7189 // know by construction that we're calling from a derived class.
7190 if (CopyingBaseSubobject) {
7191 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7192 L != LEnd; ++L) {
7193 if (L.getAccess() == AS_protected)
7194 L.setAccess(AS_public);
7195 }
7196 }
7197
Douglas Gregor06a9f362010-05-01 20:49:11 +00007198 // Create the nested-name-specifier that will be used to qualify the
7199 // reference to operator=; this is required to suppress the virtual
7200 // call mechanism.
7201 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007202 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007203 SS.MakeTrivial(S.Context,
7204 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007205 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007206 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007207
7208 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007209 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007210 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007211 /*TemplateKWLoc=*/SourceLocation(),
7212 /*FirstQualifierInScope=*/0,
7213 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007214 /*TemplateArgs=*/0,
7215 /*SuppressQualifierCheck=*/true);
7216 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007217 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007218
7219 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007220
John McCall60d7b3a2010-08-24 06:29:42 +00007221 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007222 OpEqualRef.takeAs<Expr>(),
7223 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007224 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007225 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007226
7227 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007228 }
John McCallb0207482010-03-16 06:11:48 +00007229
Douglas Gregor06a9f362010-05-01 20:49:11 +00007230 // - if the subobject is of scalar type, the built-in assignment
7231 // operator is used.
7232 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7233 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007234 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007235 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007236 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007237
7238 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007239 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007240
7241 // - if the subobject is an array, each element is assigned, in the
7242 // manner appropriate to the element type;
7243
7244 // Construct a loop over the array bounds, e.g.,
7245 //
7246 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7247 //
7248 // that will copy each of the array elements.
7249 QualType SizeType = S.Context.getSizeType();
7250
7251 // Create the iteration variable.
7252 IdentifierInfo *IterationVarName = 0;
7253 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007254 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007255 llvm::raw_svector_ostream OS(Str);
7256 OS << "__i" << Depth;
7257 IterationVarName = &S.Context.Idents.get(OS.str());
7258 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007259 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007260 IterationVarName, SizeType,
7261 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007262 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007263
7264 // Initialize the iteration variable to zero.
7265 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007266 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007267
7268 // Create a reference to the iteration variable; we'll use this several
7269 // times throughout.
7270 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007271 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007272 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007273 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7274 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7275
Douglas Gregor06a9f362010-05-01 20:49:11 +00007276 // Create the DeclStmt that holds the iteration variable.
7277 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7278
7279 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007280 llvm::APInt Upper
7281 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007282 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007283 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007284 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7285 BO_NE, S.Context.BoolTy,
7286 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007287
7288 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007289 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007290 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7291 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007292
7293 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007294 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007295 IterationVarRefRVal,
7296 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007297 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007298 IterationVarRefRVal,
7299 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007300 if (!Copying) // Cast to rvalue
7301 From = CastForMoving(S, From);
7302
7303 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007304 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7305 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007306 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007307 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007308 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007309
7310 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007311 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007312 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007313 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007314 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007315}
7316
Sean Hunt30de05c2011-05-14 05:23:20 +00007317std::pair<Sema::ImplicitExceptionSpecification, bool>
7318Sema::ComputeDefaultedCopyAssignmentExceptionSpecAndConst(
7319 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007320 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00007321 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007322
Douglas Gregord3c35902010-07-01 16:36:15 +00007323 // C++ [class.copy]p10:
7324 // If the class definition does not explicitly declare a copy
7325 // assignment operator, one is declared implicitly.
7326 // The implicitly-defined copy assignment operator for a class X
7327 // will have the form
7328 //
7329 // X& X::operator=(const X&)
7330 //
7331 // if
7332 bool HasConstCopyAssignment = true;
7333
7334 // -- each direct base class B of X has a copy assignment operator
7335 // whose parameter is of type const B&, const volatile B& or B,
7336 // and
7337 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7338 BaseEnd = ClassDecl->bases_end();
7339 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007340 // We'll handle this below
7341 if (LangOpts.CPlusPlus0x && Base->isVirtual())
7342 continue;
7343
Douglas Gregord3c35902010-07-01 16:36:15 +00007344 assert(!Base->getType()->isDependentType() &&
7345 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007346 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007347 HasConstCopyAssignment &=
7348 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7349 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007350 }
7351
Richard Smithebaf0e62011-10-18 20:49:44 +00007352 // In C++11, the above citation has "or virtual" added
Sean Hunt661c67a2011-06-21 23:42:56 +00007353 if (LangOpts.CPlusPlus0x) {
7354 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7355 BaseEnd = ClassDecl->vbases_end();
7356 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
7357 assert(!Base->getType()->isDependentType() &&
7358 "Cannot generate implicit members for class with dependent bases.");
7359 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007360 HasConstCopyAssignment &=
7361 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7362 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007363 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007364 }
7365
7366 // -- for all the nonstatic data members of X that are of a class
7367 // type M (or array thereof), each such class type has a copy
7368 // assignment operator whose parameter is of type const M&,
7369 // const volatile M& or M.
7370 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7371 FieldEnd = ClassDecl->field_end();
7372 HasConstCopyAssignment && Field != FieldEnd;
7373 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007374 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007375 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00007376 HasConstCopyAssignment &=
7377 (bool)LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7378 false, 0);
Douglas Gregord3c35902010-07-01 16:36:15 +00007379 }
7380 }
7381
7382 // Otherwise, the implicitly declared copy assignment operator will
7383 // have the form
7384 //
7385 // X& X::operator=(X&)
Douglas Gregord3c35902010-07-01 16:36:15 +00007386
Douglas Gregorb87786f2010-07-01 17:48:08 +00007387 // C++ [except.spec]p14:
7388 // An implicitly declared special member function (Clause 12) shall have an
7389 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007390
7391 // It is unspecified whether or not an implicit copy assignment operator
7392 // attempts to deduplicate calls to assignment operators of virtual bases are
7393 // made. As such, this exception specification is effectively unspecified.
7394 // Based on a similar decision made for constness in C++0x, we're erring on
7395 // the side of assuming such calls to be made regardless of whether they
7396 // actually happen.
Richard Smithe6975e92012-04-17 00:58:00 +00007397 ImplicitExceptionSpecification ExceptSpec(*this);
Sean Hunt661c67a2011-06-21 23:42:56 +00007398 unsigned ArgQuals = HasConstCopyAssignment ? Qualifiers::Const : 0;
Douglas Gregorb87786f2010-07-01 17:48:08 +00007399 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7400 BaseEnd = ClassDecl->bases_end();
7401 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007402 if (Base->isVirtual())
7403 continue;
7404
Douglas Gregora376d102010-07-02 21:50:04 +00007405 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007406 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007407 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7408 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007409 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007410 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007411
7412 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7413 BaseEnd = ClassDecl->vbases_end();
7414 Base != BaseEnd; ++Base) {
7415 CXXRecordDecl *BaseClassDecl
7416 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7417 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7418 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007419 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007420 }
7421
Douglas Gregorb87786f2010-07-01 17:48:08 +00007422 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7423 FieldEnd = ClassDecl->field_end();
7424 Field != FieldEnd;
7425 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007426 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007427 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7428 if (CXXMethodDecl *CopyAssign =
7429 LookupCopyingAssignment(FieldClassDecl, ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007430 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007431 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007432 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007433
Sean Hunt30de05c2011-05-14 05:23:20 +00007434 return std::make_pair(ExceptSpec, HasConstCopyAssignment);
7435}
7436
7437CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7438 // Note: The following rules are largely analoguous to the copy
7439 // constructor rules. Note that virtual bases are not taken into account
7440 // for determining the argument type of the operator. Note also that
7441 // operators taking an object instead of a reference are allowed.
7442
Richard Smithe6975e92012-04-17 00:58:00 +00007443 ImplicitExceptionSpecification Spec(*this);
Sean Hunt30de05c2011-05-14 05:23:20 +00007444 bool Const;
7445 llvm::tie(Spec, Const) =
7446 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(ClassDecl);
7447
7448 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7449 QualType RetType = Context.getLValueReferenceType(ArgType);
7450 if (Const)
7451 ArgType = ArgType.withConst();
7452 ArgType = Context.getLValueReferenceType(ArgType);
7453
Douglas Gregord3c35902010-07-01 16:36:15 +00007454 // An implicitly-declared copy assignment operator is an inline public
7455 // member of its class.
Sean Hunt30de05c2011-05-14 05:23:20 +00007456 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Douglas Gregord3c35902010-07-01 16:36:15 +00007457 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007458 SourceLocation ClassLoc = ClassDecl->getLocation();
7459 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007460 CXXMethodDecl *CopyAssignment
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007461 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
John McCalle23cf432010-12-14 08:05:40 +00007462 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregord3c35902010-07-01 16:36:15 +00007463 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007464 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007465 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007466 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007467 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007468 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007469 CopyAssignment->setImplicit();
7470 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregord3c35902010-07-01 16:36:15 +00007471
7472 // Add the parameter to the operator.
7473 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007474 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007475 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007476 SC_None,
7477 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007478 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007479
Douglas Gregora376d102010-07-02 21:50:04 +00007480 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007481 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007482
Douglas Gregor23c94db2010-07-02 17:43:08 +00007483 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007484 PushOnScopeChains(CopyAssignment, S, false);
7485 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007486
Nico Weberafcc96a2012-01-23 03:19:29 +00007487 // C++0x [class.copy]p19:
7488 // .... If the class definition does not explicitly declare a copy
7489 // assignment operator, there is no user-declared move constructor, and
7490 // there is no user-declared move assignment operator, a copy assignment
7491 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007492 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007493 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007494
Douglas Gregord3c35902010-07-01 16:36:15 +00007495 AddOverriddenMethods(ClassDecl, CopyAssignment);
7496 return CopyAssignment;
7497}
7498
Douglas Gregor06a9f362010-05-01 20:49:11 +00007499void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7500 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007501 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007502 CopyAssignOperator->isOverloadedOperator() &&
7503 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007504 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7505 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007506 "DefineImplicitCopyAssignment called for wrong function");
7507
7508 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7509
7510 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7511 CopyAssignOperator->setInvalidDecl();
7512 return;
7513 }
7514
7515 CopyAssignOperator->setUsed();
7516
7517 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007518 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007519
7520 // C++0x [class.copy]p30:
7521 // The implicitly-defined or explicitly-defaulted copy assignment operator
7522 // for a non-union class X performs memberwise copy assignment of its
7523 // subobjects. The direct base classes of X are assigned first, in the
7524 // order of their declaration in the base-specifier-list, and then the
7525 // immediate non-static data members of X are assigned, in the order in
7526 // which they were declared in the class definition.
7527
7528 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00007529 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007530
7531 // The parameter for the "other" object, which we are copying from.
7532 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7533 Qualifiers OtherQuals = Other->getType().getQualifiers();
7534 QualType OtherRefType = Other->getType();
7535 if (const LValueReferenceType *OtherRef
7536 = OtherRefType->getAs<LValueReferenceType>()) {
7537 OtherRefType = OtherRef->getPointeeType();
7538 OtherQuals = OtherRefType.getQualifiers();
7539 }
7540
7541 // Our location for everything implicitly-generated.
7542 SourceLocation Loc = CopyAssignOperator->getLocation();
7543
7544 // Construct a reference to the "other" object. We'll be using this
7545 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007546 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007547 assert(OtherRef && "Reference to parameter cannot fail!");
7548
7549 // Construct the "this" pointer. We'll be using this throughout the generated
7550 // ASTs.
7551 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7552 assert(This && "Reference to this cannot fail!");
7553
7554 // Assign base classes.
7555 bool Invalid = false;
7556 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7557 E = ClassDecl->bases_end(); Base != E; ++Base) {
7558 // Form the assignment:
7559 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7560 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007561 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007562 Invalid = true;
7563 continue;
7564 }
7565
John McCallf871d0c2010-08-07 06:22:56 +00007566 CXXCastPath BasePath;
7567 BasePath.push_back(Base);
7568
Douglas Gregor06a9f362010-05-01 20:49:11 +00007569 // Construct the "from" expression, which is an implicit cast to the
7570 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007571 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007572 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7573 CK_UncheckedDerivedToBase,
7574 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007575
7576 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007577 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007578
7579 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007580 To = ImpCastExprToType(To.take(),
7581 Context.getCVRQualifiedType(BaseType,
7582 CopyAssignOperator->getTypeQualifiers()),
7583 CK_UncheckedDerivedToBase,
7584 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007585
7586 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007587 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007588 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007589 /*CopyingBaseSubobject=*/true,
7590 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007591 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007592 Diag(CurrentLocation, diag::note_member_synthesized_at)
7593 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7594 CopyAssignOperator->setInvalidDecl();
7595 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007596 }
7597
7598 // Success! Record the copy.
7599 Statements.push_back(Copy.takeAs<Expr>());
7600 }
7601
7602 // \brief Reference to the __builtin_memcpy function.
7603 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007604 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007605 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007606
7607 // Assign non-static members.
7608 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7609 FieldEnd = ClassDecl->field_end();
7610 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007611 if (Field->isUnnamedBitfield())
7612 continue;
7613
Douglas Gregor06a9f362010-05-01 20:49:11 +00007614 // Check for members of reference type; we can't copy those.
7615 if (Field->getType()->isReferenceType()) {
7616 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7617 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7618 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007619 Diag(CurrentLocation, diag::note_member_synthesized_at)
7620 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007621 Invalid = true;
7622 continue;
7623 }
7624
7625 // Check for members of const-qualified, non-class type.
7626 QualType BaseType = Context.getBaseElementType(Field->getType());
7627 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7628 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7629 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7630 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007631 Diag(CurrentLocation, diag::note_member_synthesized_at)
7632 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007633 Invalid = true;
7634 continue;
7635 }
John McCallb77115d2011-06-17 00:18:42 +00007636
7637 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007638 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7639 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007640
7641 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007642 if (FieldType->isIncompleteArrayType()) {
7643 assert(ClassDecl->hasFlexibleArrayMember() &&
7644 "Incomplete array type is not valid");
7645 continue;
7646 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007647
7648 // Build references to the field in the object we're copying from and to.
7649 CXXScopeSpec SS; // Intentionally empty
7650 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7651 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00007652 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007653 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007654 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007655 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007656 SS, SourceLocation(), 0,
7657 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007658 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007659 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007660 SS, SourceLocation(), 0,
7661 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007662 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7663 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7664
7665 // If the field should be copied with __builtin_memcpy rather than via
7666 // explicit assignments, do so. This optimization only applies for arrays
7667 // of scalars and arrays of class type with trivial copy-assignment
7668 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007669 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007670 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007671 // Compute the size of the memory buffer to be copied.
7672 QualType SizeType = Context.getSizeType();
7673 llvm::APInt Size(Context.getTypeSize(SizeType),
7674 Context.getTypeSizeInChars(BaseType).getQuantity());
7675 for (const ConstantArrayType *Array
7676 = Context.getAsConstantArrayType(FieldType);
7677 Array;
7678 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007679 llvm::APInt ArraySize
7680 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007681 Size *= ArraySize;
7682 }
7683
7684 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007685 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7686 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007687
7688 bool NeedsCollectableMemCpy =
7689 (BaseType->isRecordType() &&
7690 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7691
7692 if (NeedsCollectableMemCpy) {
7693 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007694 // Create a reference to the __builtin_objc_memmove_collectable function.
7695 LookupResult R(*this,
7696 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007697 Loc, LookupOrdinaryName);
7698 LookupName(R, TUScope, true);
7699
7700 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7701 if (!CollectableMemCpy) {
7702 // Something went horribly wrong earlier, and we will have
7703 // complained about it.
7704 Invalid = true;
7705 continue;
7706 }
7707
7708 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
7709 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007710 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007711 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7712 }
7713 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007714 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007715 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007716 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7717 LookupOrdinaryName);
7718 LookupName(R, TUScope, true);
7719
7720 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7721 if (!BuiltinMemCpy) {
7722 // Something went horribly wrong earlier, and we will have complained
7723 // about it.
7724 Invalid = true;
7725 continue;
7726 }
7727
7728 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
7729 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007730 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007731 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7732 }
7733
John McCallca0408f2010-08-23 06:44:23 +00007734 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007735 CallArgs.push_back(To.takeAs<Expr>());
7736 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007737 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007738 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007739 if (NeedsCollectableMemCpy)
7740 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007741 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007742 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007743 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007744 else
7745 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007746 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007747 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007748 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007749
Douglas Gregor06a9f362010-05-01 20:49:11 +00007750 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7751 Statements.push_back(Call.takeAs<Expr>());
7752 continue;
7753 }
7754
7755 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007756 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007757 To.get(), From.get(),
7758 /*CopyingBaseSubobject=*/false,
7759 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007760 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007761 Diag(CurrentLocation, diag::note_member_synthesized_at)
7762 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7763 CopyAssignOperator->setInvalidDecl();
7764 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007765 }
7766
7767 // Success! Record the copy.
7768 Statements.push_back(Copy.takeAs<Stmt>());
7769 }
7770
7771 if (!Invalid) {
7772 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007773 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007774
John McCall60d7b3a2010-08-24 06:29:42 +00007775 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007776 if (Return.isInvalid())
7777 Invalid = true;
7778 else {
7779 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007780
7781 if (Trap.hasErrorOccurred()) {
7782 Diag(CurrentLocation, diag::note_member_synthesized_at)
7783 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7784 Invalid = true;
7785 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007786 }
7787 }
7788
7789 if (Invalid) {
7790 CopyAssignOperator->setInvalidDecl();
7791 return;
7792 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007793
7794 StmtResult Body;
7795 {
7796 CompoundScopeRAII CompoundScope(*this);
7797 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
7798 /*isStmtExpr=*/false);
7799 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7800 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007801 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007802
7803 if (ASTMutationListener *L = getASTMutationListener()) {
7804 L->CompletedImplicitDefinition(CopyAssignOperator);
7805 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007806}
7807
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007808Sema::ImplicitExceptionSpecification
7809Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXRecordDecl *ClassDecl) {
Richard Smithe6975e92012-04-17 00:58:00 +00007810 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007811
7812 if (ClassDecl->isInvalidDecl())
7813 return ExceptSpec;
7814
7815 // C++0x [except.spec]p14:
7816 // An implicitly declared special member function (Clause 12) shall have an
7817 // exception-specification. [...]
7818
7819 // It is unspecified whether or not an implicit move assignment operator
7820 // attempts to deduplicate calls to assignment operators of virtual bases are
7821 // made. As such, this exception specification is effectively unspecified.
7822 // Based on a similar decision made for constness in C++0x, we're erring on
7823 // the side of assuming such calls to be made regardless of whether they
7824 // actually happen.
7825 // Note that a move constructor is not implicitly declared when there are
7826 // virtual bases, but it can still be user-declared and explicitly defaulted.
7827 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7828 BaseEnd = ClassDecl->bases_end();
7829 Base != BaseEnd; ++Base) {
7830 if (Base->isVirtual())
7831 continue;
7832
7833 CXXRecordDecl *BaseClassDecl
7834 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7835 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7836 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007837 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007838 }
7839
7840 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7841 BaseEnd = ClassDecl->vbases_end();
7842 Base != BaseEnd; ++Base) {
7843 CXXRecordDecl *BaseClassDecl
7844 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7845 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7846 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007847 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007848 }
7849
7850 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7851 FieldEnd = ClassDecl->field_end();
7852 Field != FieldEnd;
7853 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007854 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007855 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7856 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(FieldClassDecl,
7857 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007858 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007859 }
7860 }
7861
7862 return ExceptSpec;
7863}
7864
Richard Smith1c931be2012-04-02 18:40:40 +00007865/// Determine whether the class type has any direct or indirect virtual base
7866/// classes which have a non-trivial move assignment operator.
7867static bool
7868hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
7869 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7870 BaseEnd = ClassDecl->vbases_end();
7871 Base != BaseEnd; ++Base) {
7872 CXXRecordDecl *BaseClass =
7873 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7874
7875 // Try to declare the move assignment. If it would be deleted, then the
7876 // class does not have a non-trivial move assignment.
7877 if (BaseClass->needsImplicitMoveAssignment())
7878 S.DeclareImplicitMoveAssignment(BaseClass);
7879
7880 // If the class has both a trivial move assignment and a non-trivial move
7881 // assignment, hasTrivialMoveAssignment() is false.
7882 if (BaseClass->hasDeclaredMoveAssignment() &&
7883 !BaseClass->hasTrivialMoveAssignment())
7884 return true;
7885 }
7886
7887 return false;
7888}
7889
7890/// Determine whether the given type either has a move constructor or is
7891/// trivially copyable.
7892static bool
7893hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
7894 Type = S.Context.getBaseElementType(Type);
7895
7896 // FIXME: Technically, non-trivially-copyable non-class types, such as
7897 // reference types, are supposed to return false here, but that appears
7898 // to be a standard defect.
7899 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00007900 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00007901 return true;
7902
7903 if (Type.isTriviallyCopyableType(S.Context))
7904 return true;
7905
7906 if (IsConstructor) {
7907 if (ClassDecl->needsImplicitMoveConstructor())
7908 S.DeclareImplicitMoveConstructor(ClassDecl);
7909 return ClassDecl->hasDeclaredMoveConstructor();
7910 }
7911
7912 if (ClassDecl->needsImplicitMoveAssignment())
7913 S.DeclareImplicitMoveAssignment(ClassDecl);
7914 return ClassDecl->hasDeclaredMoveAssignment();
7915}
7916
7917/// Determine whether all non-static data members and direct or virtual bases
7918/// of class \p ClassDecl have either a move operation, or are trivially
7919/// copyable.
7920static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
7921 bool IsConstructor) {
7922 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7923 BaseEnd = ClassDecl->bases_end();
7924 Base != BaseEnd; ++Base) {
7925 if (Base->isVirtual())
7926 continue;
7927
7928 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7929 return false;
7930 }
7931
7932 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7933 BaseEnd = ClassDecl->vbases_end();
7934 Base != BaseEnd; ++Base) {
7935 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7936 return false;
7937 }
7938
7939 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7940 FieldEnd = ClassDecl->field_end();
7941 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007942 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00007943 return false;
7944 }
7945
7946 return true;
7947}
7948
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007949CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00007950 // C++11 [class.copy]p20:
7951 // If the definition of a class X does not explicitly declare a move
7952 // assignment operator, one will be implicitly declared as defaulted
7953 // if and only if:
7954 //
7955 // - [first 4 bullets]
7956 assert(ClassDecl->needsImplicitMoveAssignment());
7957
7958 // [Checked after we build the declaration]
7959 // - the move assignment operator would not be implicitly defined as
7960 // deleted,
7961
7962 // [DR1402]:
7963 // - X has no direct or indirect virtual base class with a non-trivial
7964 // move assignment operator, and
7965 // - each of X's non-static data members and direct or virtual base classes
7966 // has a type that either has a move assignment operator or is trivially
7967 // copyable.
7968 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
7969 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
7970 ClassDecl->setFailedImplicitMoveAssignment();
7971 return 0;
7972 }
7973
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007974 // Note: The following rules are largely analoguous to the move
7975 // constructor rules.
7976
7977 ImplicitExceptionSpecification Spec(
7978 ComputeDefaultedMoveAssignmentExceptionSpec(ClassDecl));
7979
7980 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7981 QualType RetType = Context.getLValueReferenceType(ArgType);
7982 ArgType = Context.getRValueReferenceType(ArgType);
7983
7984 // An implicitly-declared move assignment operator is an inline public
7985 // member of its class.
7986 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
7987 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7988 SourceLocation ClassLoc = ClassDecl->getLocation();
7989 DeclarationNameInfo NameInfo(Name, ClassLoc);
7990 CXXMethodDecl *MoveAssignment
7991 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7992 Context.getFunctionType(RetType, &ArgType, 1, EPI),
7993 /*TInfo=*/0, /*isStatic=*/false,
7994 /*StorageClassAsWritten=*/SC_None,
7995 /*isInline=*/true,
7996 /*isConstexpr=*/false,
7997 SourceLocation());
7998 MoveAssignment->setAccess(AS_public);
7999 MoveAssignment->setDefaulted();
8000 MoveAssignment->setImplicit();
8001 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8002
8003 // Add the parameter to the operator.
8004 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8005 ClassLoc, ClassLoc, /*Id=*/0,
8006 ArgType, /*TInfo=*/0,
8007 SC_None,
8008 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008009 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008010
8011 // Note that we have added this copy-assignment operator.
8012 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8013
8014 // C++0x [class.copy]p9:
8015 // If the definition of a class X does not explicitly declare a move
8016 // assignment operator, one will be implicitly declared as defaulted if and
8017 // only if:
8018 // [...]
8019 // - the move assignment operator would not be implicitly defined as
8020 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008021 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008022 // Cache this result so that we don't try to generate this over and over
8023 // on every lookup, leaking memory and wasting time.
8024 ClassDecl->setFailedImplicitMoveAssignment();
8025 return 0;
8026 }
8027
8028 if (Scope *S = getScopeForContext(ClassDecl))
8029 PushOnScopeChains(MoveAssignment, S, false);
8030 ClassDecl->addDecl(MoveAssignment);
8031
8032 AddOverriddenMethods(ClassDecl, MoveAssignment);
8033 return MoveAssignment;
8034}
8035
8036void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8037 CXXMethodDecl *MoveAssignOperator) {
8038 assert((MoveAssignOperator->isDefaulted() &&
8039 MoveAssignOperator->isOverloadedOperator() &&
8040 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008041 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8042 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008043 "DefineImplicitMoveAssignment called for wrong function");
8044
8045 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8046
8047 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8048 MoveAssignOperator->setInvalidDecl();
8049 return;
8050 }
8051
8052 MoveAssignOperator->setUsed();
8053
8054 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
8055 DiagnosticErrorTrap Trap(Diags);
8056
8057 // C++0x [class.copy]p28:
8058 // The implicitly-defined or move assignment operator for a non-union class
8059 // X performs memberwise move assignment of its subobjects. The direct base
8060 // classes of X are assigned first, in the order of their declaration in the
8061 // base-specifier-list, and then the immediate non-static data members of X
8062 // are assigned, in the order in which they were declared in the class
8063 // definition.
8064
8065 // The statements that form the synthesized function body.
8066 ASTOwningVector<Stmt*> Statements(*this);
8067
8068 // The parameter for the "other" object, which we are move from.
8069 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8070 QualType OtherRefType = Other->getType()->
8071 getAs<RValueReferenceType>()->getPointeeType();
8072 assert(OtherRefType.getQualifiers() == 0 &&
8073 "Bad argument type of defaulted move assignment");
8074
8075 // Our location for everything implicitly-generated.
8076 SourceLocation Loc = MoveAssignOperator->getLocation();
8077
8078 // Construct a reference to the "other" object. We'll be using this
8079 // throughout the generated ASTs.
8080 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8081 assert(OtherRef && "Reference to parameter cannot fail!");
8082 // Cast to rvalue.
8083 OtherRef = CastForMoving(*this, OtherRef);
8084
8085 // Construct the "this" pointer. We'll be using this throughout the generated
8086 // ASTs.
8087 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8088 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008089
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008090 // Assign base classes.
8091 bool Invalid = false;
8092 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8093 E = ClassDecl->bases_end(); Base != E; ++Base) {
8094 // Form the assignment:
8095 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8096 QualType BaseType = Base->getType().getUnqualifiedType();
8097 if (!BaseType->isRecordType()) {
8098 Invalid = true;
8099 continue;
8100 }
8101
8102 CXXCastPath BasePath;
8103 BasePath.push_back(Base);
8104
8105 // Construct the "from" expression, which is an implicit cast to the
8106 // appropriately-qualified base type.
8107 Expr *From = OtherRef;
8108 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008109 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008110
8111 // Dereference "this".
8112 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8113
8114 // Implicitly cast "this" to the appropriately-qualified base type.
8115 To = ImpCastExprToType(To.take(),
8116 Context.getCVRQualifiedType(BaseType,
8117 MoveAssignOperator->getTypeQualifiers()),
8118 CK_UncheckedDerivedToBase,
8119 VK_LValue, &BasePath);
8120
8121 // Build the move.
8122 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8123 To.get(), From,
8124 /*CopyingBaseSubobject=*/true,
8125 /*Copying=*/false);
8126 if (Move.isInvalid()) {
8127 Diag(CurrentLocation, diag::note_member_synthesized_at)
8128 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8129 MoveAssignOperator->setInvalidDecl();
8130 return;
8131 }
8132
8133 // Success! Record the move.
8134 Statements.push_back(Move.takeAs<Expr>());
8135 }
8136
8137 // \brief Reference to the __builtin_memcpy function.
8138 Expr *BuiltinMemCpyRef = 0;
8139 // \brief Reference to the __builtin_objc_memmove_collectable function.
8140 Expr *CollectableMemCpyRef = 0;
8141
8142 // Assign non-static members.
8143 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8144 FieldEnd = ClassDecl->field_end();
8145 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008146 if (Field->isUnnamedBitfield())
8147 continue;
8148
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008149 // Check for members of reference type; we can't move those.
8150 if (Field->getType()->isReferenceType()) {
8151 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8152 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8153 Diag(Field->getLocation(), diag::note_declared_at);
8154 Diag(CurrentLocation, diag::note_member_synthesized_at)
8155 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8156 Invalid = true;
8157 continue;
8158 }
8159
8160 // Check for members of const-qualified, non-class type.
8161 QualType BaseType = Context.getBaseElementType(Field->getType());
8162 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8163 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8164 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8165 Diag(Field->getLocation(), diag::note_declared_at);
8166 Diag(CurrentLocation, diag::note_member_synthesized_at)
8167 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8168 Invalid = true;
8169 continue;
8170 }
8171
8172 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008173 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8174 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008175
8176 QualType FieldType = Field->getType().getNonReferenceType();
8177 if (FieldType->isIncompleteArrayType()) {
8178 assert(ClassDecl->hasFlexibleArrayMember() &&
8179 "Incomplete array type is not valid");
8180 continue;
8181 }
8182
8183 // Build references to the field in the object we're copying from and to.
8184 CXXScopeSpec SS; // Intentionally empty
8185 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8186 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008187 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008188 MemberLookup.resolveKind();
8189 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8190 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008191 SS, SourceLocation(), 0,
8192 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008193 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8194 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008195 SS, SourceLocation(), 0,
8196 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008197 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8198 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8199
8200 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8201 "Member reference with rvalue base must be rvalue except for reference "
8202 "members, which aren't allowed for move assignment.");
8203
8204 // If the field should be copied with __builtin_memcpy rather than via
8205 // explicit assignments, do so. This optimization only applies for arrays
8206 // of scalars and arrays of class type with trivial move-assignment
8207 // operators.
8208 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8209 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8210 // Compute the size of the memory buffer to be copied.
8211 QualType SizeType = Context.getSizeType();
8212 llvm::APInt Size(Context.getTypeSize(SizeType),
8213 Context.getTypeSizeInChars(BaseType).getQuantity());
8214 for (const ConstantArrayType *Array
8215 = Context.getAsConstantArrayType(FieldType);
8216 Array;
8217 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8218 llvm::APInt ArraySize
8219 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8220 Size *= ArraySize;
8221 }
8222
Douglas Gregor45d3d712011-09-01 02:09:07 +00008223 // Take the address of the field references for "from" and "to". We
8224 // directly construct UnaryOperators here because semantic analysis
8225 // does not permit us to take the address of an xvalue.
8226 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8227 Context.getPointerType(From.get()->getType()),
8228 VK_RValue, OK_Ordinary, Loc);
8229 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8230 Context.getPointerType(To.get()->getType()),
8231 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008232
8233 bool NeedsCollectableMemCpy =
8234 (BaseType->isRecordType() &&
8235 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8236
8237 if (NeedsCollectableMemCpy) {
8238 if (!CollectableMemCpyRef) {
8239 // Create a reference to the __builtin_objc_memmove_collectable function.
8240 LookupResult R(*this,
8241 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8242 Loc, LookupOrdinaryName);
8243 LookupName(R, TUScope, true);
8244
8245 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8246 if (!CollectableMemCpy) {
8247 // Something went horribly wrong earlier, and we will have
8248 // complained about it.
8249 Invalid = true;
8250 continue;
8251 }
8252
8253 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
8254 CollectableMemCpy->getType(),
8255 VK_LValue, Loc, 0).take();
8256 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8257 }
8258 }
8259 // Create a reference to the __builtin_memcpy builtin function.
8260 else if (!BuiltinMemCpyRef) {
8261 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8262 LookupOrdinaryName);
8263 LookupName(R, TUScope, true);
8264
8265 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8266 if (!BuiltinMemCpy) {
8267 // Something went horribly wrong earlier, and we will have complained
8268 // about it.
8269 Invalid = true;
8270 continue;
8271 }
8272
8273 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
8274 BuiltinMemCpy->getType(),
8275 VK_LValue, Loc, 0).take();
8276 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8277 }
8278
8279 ASTOwningVector<Expr*> CallArgs(*this);
8280 CallArgs.push_back(To.takeAs<Expr>());
8281 CallArgs.push_back(From.takeAs<Expr>());
8282 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8283 ExprResult Call = ExprError();
8284 if (NeedsCollectableMemCpy)
8285 Call = ActOnCallExpr(/*Scope=*/0,
8286 CollectableMemCpyRef,
8287 Loc, move_arg(CallArgs),
8288 Loc);
8289 else
8290 Call = ActOnCallExpr(/*Scope=*/0,
8291 BuiltinMemCpyRef,
8292 Loc, move_arg(CallArgs),
8293 Loc);
8294
8295 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8296 Statements.push_back(Call.takeAs<Expr>());
8297 continue;
8298 }
8299
8300 // Build the move of this field.
8301 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8302 To.get(), From.get(),
8303 /*CopyingBaseSubobject=*/false,
8304 /*Copying=*/false);
8305 if (Move.isInvalid()) {
8306 Diag(CurrentLocation, diag::note_member_synthesized_at)
8307 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8308 MoveAssignOperator->setInvalidDecl();
8309 return;
8310 }
8311
8312 // Success! Record the copy.
8313 Statements.push_back(Move.takeAs<Stmt>());
8314 }
8315
8316 if (!Invalid) {
8317 // Add a "return *this;"
8318 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8319
8320 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8321 if (Return.isInvalid())
8322 Invalid = true;
8323 else {
8324 Statements.push_back(Return.takeAs<Stmt>());
8325
8326 if (Trap.hasErrorOccurred()) {
8327 Diag(CurrentLocation, diag::note_member_synthesized_at)
8328 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8329 Invalid = true;
8330 }
8331 }
8332 }
8333
8334 if (Invalid) {
8335 MoveAssignOperator->setInvalidDecl();
8336 return;
8337 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008338
8339 StmtResult Body;
8340 {
8341 CompoundScopeRAII CompoundScope(*this);
8342 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
8343 /*isStmtExpr=*/false);
8344 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8345 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008346 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8347
8348 if (ASTMutationListener *L = getASTMutationListener()) {
8349 L->CompletedImplicitDefinition(MoveAssignOperator);
8350 }
8351}
8352
Sean Hunt49634cf2011-05-13 06:10:58 +00008353std::pair<Sema::ImplicitExceptionSpecification, bool>
8354Sema::ComputeDefaultedCopyCtorExceptionSpecAndConst(CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008355 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00008356 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008357
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008358 // C++ [class.copy]p5:
8359 // The implicitly-declared copy constructor for a class X will
8360 // have the form
8361 //
8362 // X::X(const X&)
8363 //
8364 // if
Sean Huntc530d172011-06-10 04:44:37 +00008365 // FIXME: It ought to be possible to store this on the record.
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008366 bool HasConstCopyConstructor = true;
8367
8368 // -- each direct or virtual base class B of X has a copy
8369 // constructor whose first parameter is of type const B& or
8370 // const volatile B&, and
8371 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8372 BaseEnd = ClassDecl->bases_end();
8373 HasConstCopyConstructor && Base != BaseEnd;
8374 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008375 // Virtual bases are handled below.
8376 if (Base->isVirtual())
8377 continue;
8378
Douglas Gregor22584312010-07-02 23:41:54 +00008379 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008380 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008381 HasConstCopyConstructor &=
8382 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor598a8542010-07-01 18:27:03 +00008383 }
8384
8385 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8386 BaseEnd = ClassDecl->vbases_end();
8387 HasConstCopyConstructor && Base != BaseEnd;
8388 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008389 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008390 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008391 HasConstCopyConstructor &=
8392 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008393 }
8394
8395 // -- for all the nonstatic data members of X that are of a
8396 // class type M (or array thereof), each such class type
8397 // has a copy constructor whose first parameter is of type
8398 // const M& or const volatile M&.
8399 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8400 FieldEnd = ClassDecl->field_end();
8401 HasConstCopyConstructor && Field != FieldEnd;
8402 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008403 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008404 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00008405 HasConstCopyConstructor &=
8406 (bool)LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008407 }
8408 }
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008409 // Otherwise, the implicitly declared copy constructor will have
8410 // the form
8411 //
8412 // X::X(X&)
Sean Hunt49634cf2011-05-13 06:10:58 +00008413
Douglas Gregor0d405db2010-07-01 20:59:04 +00008414 // C++ [except.spec]p14:
8415 // An implicitly declared special member function (Clause 12) shall have an
8416 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008417 ImplicitExceptionSpecification ExceptSpec(*this);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008418 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
8419 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8420 BaseEnd = ClassDecl->bases_end();
8421 Base != BaseEnd;
8422 ++Base) {
8423 // Virtual bases are handled below.
8424 if (Base->isVirtual())
8425 continue;
8426
Douglas Gregor22584312010-07-02 23:41:54 +00008427 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008428 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008429 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008430 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008431 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008432 }
8433 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8434 BaseEnd = ClassDecl->vbases_end();
8435 Base != BaseEnd;
8436 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008437 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008438 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008439 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008440 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008441 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008442 }
8443 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8444 FieldEnd = ClassDecl->field_end();
8445 Field != FieldEnd;
8446 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008447 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008448 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8449 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008450 LookupCopyingConstructor(FieldClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008451 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008452 }
8453 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008454
Sean Hunt49634cf2011-05-13 06:10:58 +00008455 return std::make_pair(ExceptSpec, HasConstCopyConstructor);
8456}
8457
8458CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8459 CXXRecordDecl *ClassDecl) {
8460 // C++ [class.copy]p4:
8461 // If the class definition does not explicitly declare a copy
8462 // constructor, one is declared implicitly.
8463
Richard Smithe6975e92012-04-17 00:58:00 +00008464 ImplicitExceptionSpecification Spec(*this);
Sean Hunt49634cf2011-05-13 06:10:58 +00008465 bool Const;
8466 llvm::tie(Spec, Const) =
8467 ComputeDefaultedCopyCtorExceptionSpecAndConst(ClassDecl);
8468
8469 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8470 QualType ArgType = ClassType;
8471 if (Const)
8472 ArgType = ArgType.withConst();
8473 ArgType = Context.getLValueReferenceType(ArgType);
8474
8475 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8476
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008477 DeclarationName Name
8478 = Context.DeclarationNames.getCXXConstructorName(
8479 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008480 SourceLocation ClassLoc = ClassDecl->getLocation();
8481 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008482
8483 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008484 // member of its class.
8485 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
8486 Context, ClassDecl, ClassLoc, NameInfo,
8487 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8488 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8489 /*isConstexpr=*/ClassDecl->defaultedCopyConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008490 getLangOpts().CPlusPlus0x);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008491 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008492 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008493 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008494
Douglas Gregor22584312010-07-02 23:41:54 +00008495 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008496 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8497
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008498 // Add the parameter to the constructor.
8499 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008500 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008501 /*IdentifierInfo=*/0,
8502 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008503 SC_None,
8504 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008505 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008506
Douglas Gregor23c94db2010-07-02 17:43:08 +00008507 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008508 PushOnScopeChains(CopyConstructor, S, false);
8509 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008510
Nico Weberafcc96a2012-01-23 03:19:29 +00008511 // C++11 [class.copy]p8:
8512 // ... If the class definition does not explicitly declare a copy
8513 // constructor, there is no user-declared move constructor, and there is no
8514 // user-declared move assignment operator, a copy constructor is implicitly
8515 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008516 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008517 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008518
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008519 return CopyConstructor;
8520}
8521
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008522void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008523 CXXConstructorDecl *CopyConstructor) {
8524 assert((CopyConstructor->isDefaulted() &&
8525 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008526 !CopyConstructor->doesThisDeclarationHaveABody() &&
8527 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008528 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008529
Anders Carlsson63010a72010-04-23 16:24:12 +00008530 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008531 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008532
Douglas Gregor39957dc2010-05-01 15:04:51 +00008533 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008534 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008535
Sean Huntcbb67482011-01-08 20:30:50 +00008536 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008537 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008538 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008539 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008540 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008541 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008542 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008543 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8544 CopyConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008545 MultiStmtArg(*this, 0, 0),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008546 /*isStmtExpr=*/false)
8547 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008548 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008549 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008550
8551 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008552 if (ASTMutationListener *L = getASTMutationListener()) {
8553 L->CompletedImplicitDefinition(CopyConstructor);
8554 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008555}
8556
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008557Sema::ImplicitExceptionSpecification
8558Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
8559 // C++ [except.spec]p14:
8560 // An implicitly declared special member function (Clause 12) shall have an
8561 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008562 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008563 if (ClassDecl->isInvalidDecl())
8564 return ExceptSpec;
8565
8566 // Direct base-class constructors.
8567 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8568 BEnd = ClassDecl->bases_end();
8569 B != BEnd; ++B) {
8570 if (B->isVirtual()) // Handled below.
8571 continue;
8572
8573 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8574 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8575 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8576 // If this is a deleted function, add it anyway. This might be conformant
8577 // with the standard. This might not. I'm not sure. It might not matter.
8578 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008579 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008580 }
8581 }
8582
8583 // Virtual base-class constructors.
8584 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8585 BEnd = ClassDecl->vbases_end();
8586 B != BEnd; ++B) {
8587 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8588 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8589 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8590 // If this is a deleted function, add it anyway. This might be conformant
8591 // with the standard. This might not. I'm not sure. It might not matter.
8592 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008593 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008594 }
8595 }
8596
8597 // Field constructors.
8598 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8599 FEnd = ClassDecl->field_end();
8600 F != FEnd; ++F) {
Douglas Gregorf4853882011-11-28 20:03:15 +00008601 if (const RecordType *RecordTy
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008602 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
8603 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8604 CXXConstructorDecl *Constructor = LookupMovingConstructor(FieldRecDecl);
8605 // If this is a deleted function, add it anyway. This might be conformant
8606 // with the standard. This might not. I'm not sure. It might not matter.
8607 // In particular, the problem is that this function never gets called. It
8608 // might just be ill-formed because this function attempts to refer to
8609 // a deleted function here.
8610 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008611 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008612 }
8613 }
8614
8615 return ExceptSpec;
8616}
8617
8618CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8619 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008620 // C++11 [class.copy]p9:
8621 // If the definition of a class X does not explicitly declare a move
8622 // constructor, one will be implicitly declared as defaulted if and only if:
8623 //
8624 // - [first 4 bullets]
8625 assert(ClassDecl->needsImplicitMoveConstructor());
8626
8627 // [Checked after we build the declaration]
8628 // - the move assignment operator would not be implicitly defined as
8629 // deleted,
8630
8631 // [DR1402]:
8632 // - each of X's non-static data members and direct or virtual base classes
8633 // has a type that either has a move constructor or is trivially copyable.
8634 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8635 ClassDecl->setFailedImplicitMoveConstructor();
8636 return 0;
8637 }
8638
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008639 ImplicitExceptionSpecification Spec(
8640 ComputeDefaultedMoveCtorExceptionSpec(ClassDecl));
8641
8642 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8643 QualType ArgType = Context.getRValueReferenceType(ClassType);
8644
8645 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8646
8647 DeclarationName Name
8648 = Context.DeclarationNames.getCXXConstructorName(
8649 Context.getCanonicalType(ClassType));
8650 SourceLocation ClassLoc = ClassDecl->getLocation();
8651 DeclarationNameInfo NameInfo(Name, ClassLoc);
8652
8653 // C++0x [class.copy]p11:
8654 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008655 // member of its class.
8656 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
8657 Context, ClassDecl, ClassLoc, NameInfo,
8658 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8659 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8660 /*isConstexpr=*/ClassDecl->defaultedMoveConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008661 getLangOpts().CPlusPlus0x);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008662 MoveConstructor->setAccess(AS_public);
8663 MoveConstructor->setDefaulted();
8664 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008665
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008666 // Add the parameter to the constructor.
8667 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8668 ClassLoc, ClassLoc,
8669 /*IdentifierInfo=*/0,
8670 ArgType, /*TInfo=*/0,
8671 SC_None,
8672 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008673 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008674
8675 // C++0x [class.copy]p9:
8676 // If the definition of a class X does not explicitly declare a move
8677 // constructor, one will be implicitly declared as defaulted if and only if:
8678 // [...]
8679 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008680 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008681 // Cache this result so that we don't try to generate this over and over
8682 // on every lookup, leaking memory and wasting time.
8683 ClassDecl->setFailedImplicitMoveConstructor();
8684 return 0;
8685 }
8686
8687 // Note that we have declared this constructor.
8688 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8689
8690 if (Scope *S = getScopeForContext(ClassDecl))
8691 PushOnScopeChains(MoveConstructor, S, false);
8692 ClassDecl->addDecl(MoveConstructor);
8693
8694 return MoveConstructor;
8695}
8696
8697void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8698 CXXConstructorDecl *MoveConstructor) {
8699 assert((MoveConstructor->isDefaulted() &&
8700 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008701 !MoveConstructor->doesThisDeclarationHaveABody() &&
8702 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008703 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8704
8705 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8706 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8707
8708 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8709 DiagnosticErrorTrap Trap(Diags);
8710
8711 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8712 Trap.hasErrorOccurred()) {
8713 Diag(CurrentLocation, diag::note_member_synthesized_at)
8714 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8715 MoveConstructor->setInvalidDecl();
8716 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008717 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008718 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8719 MoveConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008720 MultiStmtArg(*this, 0, 0),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008721 /*isStmtExpr=*/false)
8722 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008723 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008724 }
8725
8726 MoveConstructor->setUsed();
8727
8728 if (ASTMutationListener *L = getASTMutationListener()) {
8729 L->CompletedImplicitDefinition(MoveConstructor);
8730 }
8731}
8732
Douglas Gregore4e68d42012-02-15 19:33:52 +00008733bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8734 return FD->isDeleted() &&
8735 (FD->isDefaulted() || FD->isImplicit()) &&
8736 isa<CXXMethodDecl>(FD);
8737}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008738
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008739/// \brief Mark the call operator of the given lambda closure type as "used".
8740static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8741 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008742 = cast<CXXMethodDecl>(
8743 *Lambda->lookup(
8744 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008745 CallOperator->setReferenced();
8746 CallOperator->setUsed();
8747}
8748
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008749void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8750 SourceLocation CurrentLocation,
8751 CXXConversionDecl *Conv)
8752{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008753 CXXRecordDecl *Lambda = Conv->getParent();
8754
8755 // Make sure that the lambda call operator is marked used.
8756 markLambdaCallOperatorUsed(*this, Lambda);
8757
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008758 Conv->setUsed();
8759
8760 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8761 DiagnosticErrorTrap Trap(Diags);
8762
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008763 // Return the address of the __invoke function.
8764 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8765 CXXMethodDecl *Invoke
8766 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8767 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8768 VK_LValue, Conv->getLocation()).take();
8769 assert(FunctionRef && "Can't refer to __invoke function?");
8770 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8771 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8772 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008773 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008774
8775 // Fill in the __invoke function with a dummy implementation. IR generation
8776 // will fill in the actual details.
8777 Invoke->setUsed();
8778 Invoke->setReferenced();
8779 Invoke->setBody(new (Context) CompoundStmt(Context, 0, 0, Conv->getLocation(),
8780 Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008781
8782 if (ASTMutationListener *L = getASTMutationListener()) {
8783 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008784 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008785 }
8786}
8787
8788void Sema::DefineImplicitLambdaToBlockPointerConversion(
8789 SourceLocation CurrentLocation,
8790 CXXConversionDecl *Conv)
8791{
8792 Conv->setUsed();
8793
8794 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8795 DiagnosticErrorTrap Trap(Diags);
8796
Douglas Gregorac1303e2012-02-22 05:02:47 +00008797 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008798 Expr *This = ActOnCXXThis(CurrentLocation).take();
8799 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008800
Eli Friedman23f02672012-03-01 04:01:32 +00008801 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8802 Conv->getLocation(),
8803 Conv, DerefThis);
8804
8805 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8806 // behavior. Note that only the general conversion function does this
8807 // (since it's unusable otherwise); in the case where we inline the
8808 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008809 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008810 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8811 CK_CopyAndAutoreleaseBlockObject,
8812 BuildBlock.get(), 0, VK_RValue);
8813
8814 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008815 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008816 Conv->setInvalidDecl();
8817 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008818 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008819
Douglas Gregorac1303e2012-02-22 05:02:47 +00008820 // Create the return statement that returns the block from the conversion
8821 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00008822 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00008823 if (Return.isInvalid()) {
8824 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
8825 Conv->setInvalidDecl();
8826 return;
8827 }
8828
8829 // Set the body of the conversion function.
8830 Stmt *ReturnS = Return.take();
8831 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
8832 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008833 Conv->getLocation()));
8834
Douglas Gregorac1303e2012-02-22 05:02:47 +00008835 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008836 if (ASTMutationListener *L = getASTMutationListener()) {
8837 L->CompletedImplicitDefinition(Conv);
8838 }
8839}
8840
Douglas Gregorf52757d2012-03-10 06:53:13 +00008841/// \brief Determine whether the given list arguments contains exactly one
8842/// "real" (non-default) argument.
8843static bool hasOneRealArgument(MultiExprArg Args) {
8844 switch (Args.size()) {
8845 case 0:
8846 return false;
8847
8848 default:
8849 if (!Args.get()[1]->isDefaultArgument())
8850 return false;
8851
8852 // fall through
8853 case 1:
8854 return !Args.get()[0]->isDefaultArgument();
8855 }
8856
8857 return false;
8858}
8859
John McCall60d7b3a2010-08-24 06:29:42 +00008860ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008861Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00008862 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00008863 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008864 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008865 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008866 unsigned ConstructKind,
8867 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008868 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00008869
Douglas Gregor2f599792010-04-02 18:24:57 +00008870 // C++0x [class.copy]p34:
8871 // When certain criteria are met, an implementation is allowed to
8872 // omit the copy/move construction of a class object, even if the
8873 // copy/move constructor and/or destructor for the object have
8874 // side effects. [...]
8875 // - when a temporary class object that has not been bound to a
8876 // reference (12.2) would be copied/moved to a class object
8877 // with the same cv-unqualified type, the copy/move operation
8878 // can be omitted by constructing the temporary object
8879 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00008880 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00008881 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Douglas Gregor2f599792010-04-02 18:24:57 +00008882 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00008883 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008884 }
Mike Stump1eb44332009-09-09 15:08:12 +00008885
8886 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008887 Elidable, move(ExprArgs), HadMultipleCandidates,
8888 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008889}
8890
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008891/// BuildCXXConstructExpr - Creates a complete call to a constructor,
8892/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00008893ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008894Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
8895 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00008896 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008897 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008898 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008899 unsigned ConstructKind,
8900 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00008901 unsigned NumExprs = ExprArgs.size();
8902 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00008903
Nick Lewycky909a70d2011-03-25 01:44:32 +00008904 for (specific_attr_iterator<NonNullAttr>
8905 i = Constructor->specific_attr_begin<NonNullAttr>(),
8906 e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
8907 const NonNullAttr *NonNull = *i;
8908 CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
8909 }
8910
Eli Friedman5f2987c2012-02-02 03:46:19 +00008911 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00008912 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008913 Constructor, Elidable, Exprs, NumExprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008914 HadMultipleCandidates, /*FIXME*/false,
8915 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008916 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
8917 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008918}
8919
Mike Stump1eb44332009-09-09 15:08:12 +00008920bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008921 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008922 MultiExprArg Exprs,
8923 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00008924 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00008925 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00008926 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008927 move(Exprs), HadMultipleCandidates, false,
8928 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00008929 if (TempResult.isInvalid())
8930 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00008931
Anders Carlssonda3f4e22009-08-25 05:12:04 +00008932 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00008933 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00008934 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00008935 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00008936 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00008937
Anders Carlssonfe2de492009-08-25 05:18:00 +00008938 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00008939}
8940
John McCall68c6c9a2010-02-02 09:10:11 +00008941void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008942 if (VD->isInvalidDecl()) return;
8943
John McCall68c6c9a2010-02-02 09:10:11 +00008944 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008945 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00008946 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008947 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00008948
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008949 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00008950 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008951 CheckDestructorAccess(VD->getLocation(), Destructor,
8952 PDiag(diag::err_access_dtor_var)
8953 << VD->getDeclName()
8954 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00008955 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00008956
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008957 if (!VD->hasGlobalStorage()) return;
8958
8959 // Emit warning for non-trivial dtor in global scope (a real global,
8960 // class-static, function-static).
8961 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
8962
8963 // TODO: this should be re-enabled for static locals by !CXAAtExit
8964 if (!VD->isStaticLocal())
8965 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008966}
8967
Douglas Gregor39da0b82009-09-09 23:08:42 +00008968/// \brief Given a constructor and the set of arguments provided for the
8969/// constructor, convert the arguments and add any required default arguments
8970/// to form a proper call to this constructor.
8971///
8972/// \returns true if an error occurred, false otherwise.
8973bool
8974Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
8975 MultiExprArg ArgsPtr,
8976 SourceLocation Loc,
Douglas Gregored878af2012-02-24 23:56:31 +00008977 ASTOwningVector<Expr*> &ConvertedArgs,
8978 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00008979 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
8980 unsigned NumArgs = ArgsPtr.size();
8981 Expr **Args = (Expr **)ArgsPtr.get();
8982
8983 const FunctionProtoType *Proto
8984 = Constructor->getType()->getAs<FunctionProtoType>();
8985 assert(Proto && "Constructor without a prototype?");
8986 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00008987
8988 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008989 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00008990 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008991 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00008992 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008993
8994 VariadicCallType CallType =
8995 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00008996 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008997 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
8998 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00008999 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009000 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009001
9002 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9003
9004 // FIXME: Missing call to CheckFunctionCall or equivalent
9005
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009006 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009007}
9008
Anders Carlsson20d45d22009-12-12 00:32:00 +00009009static inline bool
9010CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9011 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009012 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009013 if (isa<NamespaceDecl>(DC)) {
9014 return SemaRef.Diag(FnDecl->getLocation(),
9015 diag::err_operator_new_delete_declared_in_namespace)
9016 << FnDecl->getDeclName();
9017 }
9018
9019 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009020 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009021 return SemaRef.Diag(FnDecl->getLocation(),
9022 diag::err_operator_new_delete_declared_static)
9023 << FnDecl->getDeclName();
9024 }
9025
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009026 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009027}
9028
Anders Carlsson156c78e2009-12-13 17:53:43 +00009029static inline bool
9030CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9031 CanQualType ExpectedResultType,
9032 CanQualType ExpectedFirstParamType,
9033 unsigned DependentParamTypeDiag,
9034 unsigned InvalidParamTypeDiag) {
9035 QualType ResultType =
9036 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9037
9038 // Check that the result type is not dependent.
9039 if (ResultType->isDependentType())
9040 return SemaRef.Diag(FnDecl->getLocation(),
9041 diag::err_operator_new_delete_dependent_result_type)
9042 << FnDecl->getDeclName() << ExpectedResultType;
9043
9044 // Check that the result type is what we expect.
9045 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9046 return SemaRef.Diag(FnDecl->getLocation(),
9047 diag::err_operator_new_delete_invalid_result_type)
9048 << FnDecl->getDeclName() << ExpectedResultType;
9049
9050 // A function template must have at least 2 parameters.
9051 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9052 return SemaRef.Diag(FnDecl->getLocation(),
9053 diag::err_operator_new_delete_template_too_few_parameters)
9054 << FnDecl->getDeclName();
9055
9056 // The function decl must have at least 1 parameter.
9057 if (FnDecl->getNumParams() == 0)
9058 return SemaRef.Diag(FnDecl->getLocation(),
9059 diag::err_operator_new_delete_too_few_parameters)
9060 << FnDecl->getDeclName();
9061
9062 // Check the the first parameter type is not dependent.
9063 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9064 if (FirstParamType->isDependentType())
9065 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9066 << FnDecl->getDeclName() << ExpectedFirstParamType;
9067
9068 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009069 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009070 ExpectedFirstParamType)
9071 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9072 << FnDecl->getDeclName() << ExpectedFirstParamType;
9073
9074 return false;
9075}
9076
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009077static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009078CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009079 // C++ [basic.stc.dynamic.allocation]p1:
9080 // A program is ill-formed if an allocation function is declared in a
9081 // namespace scope other than global scope or declared static in global
9082 // scope.
9083 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9084 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009085
9086 CanQualType SizeTy =
9087 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9088
9089 // C++ [basic.stc.dynamic.allocation]p1:
9090 // The return type shall be void*. The first parameter shall have type
9091 // std::size_t.
9092 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9093 SizeTy,
9094 diag::err_operator_new_dependent_param_type,
9095 diag::err_operator_new_param_type))
9096 return true;
9097
9098 // C++ [basic.stc.dynamic.allocation]p1:
9099 // The first parameter shall not have an associated default argument.
9100 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009101 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009102 diag::err_operator_new_default_arg)
9103 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9104
9105 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009106}
9107
9108static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009109CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9110 // C++ [basic.stc.dynamic.deallocation]p1:
9111 // A program is ill-formed if deallocation functions are declared in a
9112 // namespace scope other than global scope or declared static in global
9113 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009114 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9115 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009116
9117 // C++ [basic.stc.dynamic.deallocation]p2:
9118 // Each deallocation function shall return void and its first parameter
9119 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009120 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9121 SemaRef.Context.VoidPtrTy,
9122 diag::err_operator_delete_dependent_param_type,
9123 diag::err_operator_delete_param_type))
9124 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009125
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009126 return false;
9127}
9128
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009129/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9130/// of this overloaded operator is well-formed. If so, returns false;
9131/// otherwise, emits appropriate diagnostics and returns true.
9132bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009133 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009134 "Expected an overloaded operator declaration");
9135
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009136 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9137
Mike Stump1eb44332009-09-09 15:08:12 +00009138 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009139 // The allocation and deallocation functions, operator new,
9140 // operator new[], operator delete and operator delete[], are
9141 // described completely in 3.7.3. The attributes and restrictions
9142 // found in the rest of this subclause do not apply to them unless
9143 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009144 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009145 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009146
Anders Carlssona3ccda52009-12-12 00:26:23 +00009147 if (Op == OO_New || Op == OO_Array_New)
9148 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009149
9150 // C++ [over.oper]p6:
9151 // An operator function shall either be a non-static member
9152 // function or be a non-member function and have at least one
9153 // parameter whose type is a class, a reference to a class, an
9154 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009155 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9156 if (MethodDecl->isStatic())
9157 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009158 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009159 } else {
9160 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009161 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9162 ParamEnd = FnDecl->param_end();
9163 Param != ParamEnd; ++Param) {
9164 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009165 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9166 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009167 ClassOrEnumParam = true;
9168 break;
9169 }
9170 }
9171
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009172 if (!ClassOrEnumParam)
9173 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009174 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009175 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009176 }
9177
9178 // C++ [over.oper]p8:
9179 // An operator function cannot have default arguments (8.3.6),
9180 // except where explicitly stated below.
9181 //
Mike Stump1eb44332009-09-09 15:08:12 +00009182 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009183 // (C++ [over.call]p1).
9184 if (Op != OO_Call) {
9185 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9186 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009187 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009188 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009189 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009190 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009191 }
9192 }
9193
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009194 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9195 { false, false, false }
9196#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9197 , { Unary, Binary, MemberOnly }
9198#include "clang/Basic/OperatorKinds.def"
9199 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009200
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009201 bool CanBeUnaryOperator = OperatorUses[Op][0];
9202 bool CanBeBinaryOperator = OperatorUses[Op][1];
9203 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009204
9205 // C++ [over.oper]p8:
9206 // [...] Operator functions cannot have more or fewer parameters
9207 // than the number required for the corresponding operator, as
9208 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009209 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009210 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009211 if (Op != OO_Call &&
9212 ((NumParams == 1 && !CanBeUnaryOperator) ||
9213 (NumParams == 2 && !CanBeBinaryOperator) ||
9214 (NumParams < 1) || (NumParams > 2))) {
9215 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009216 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009217 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009218 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009219 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009220 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009221 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009222 assert(CanBeBinaryOperator &&
9223 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009224 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009225 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009226
Chris Lattner416e46f2008-11-21 07:57:12 +00009227 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009228 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009229 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009230
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009231 // Overloaded operators other than operator() cannot be variadic.
9232 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009233 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009234 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009235 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009236 }
9237
9238 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009239 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9240 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009241 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009242 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009243 }
9244
9245 // C++ [over.inc]p1:
9246 // The user-defined function called operator++ implements the
9247 // prefix and postfix ++ operator. If this function is a member
9248 // function with no parameters, or a non-member function with one
9249 // parameter of class or enumeration type, it defines the prefix
9250 // increment operator ++ for objects of that type. If the function
9251 // is a member function with one parameter (which shall be of type
9252 // int) or a non-member function with two parameters (the second
9253 // of which shall be of type int), it defines the postfix
9254 // increment operator ++ for objects of that type.
9255 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9256 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9257 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009258 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009259 ParamIsInt = BT->getKind() == BuiltinType::Int;
9260
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009261 if (!ParamIsInt)
9262 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009263 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009264 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009265 }
9266
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009267 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009268}
Chris Lattner5a003a42008-12-17 07:09:26 +00009269
Sean Hunta6c058d2010-01-13 09:01:02 +00009270/// CheckLiteralOperatorDeclaration - Check whether the declaration
9271/// of this literal operator function is well-formed. If so, returns
9272/// false; otherwise, emits appropriate diagnostics and returns true.
9273bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009274 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009275 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9276 << FnDecl->getDeclName();
9277 return true;
9278 }
9279
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009280 if (FnDecl->isExternC()) {
9281 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9282 return true;
9283 }
9284
Sean Hunta6c058d2010-01-13 09:01:02 +00009285 bool Valid = false;
9286
Richard Smith36f5cfe2012-03-09 08:00:36 +00009287 // This might be the definition of a literal operator template.
9288 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9289 // This might be a specialization of a literal operator template.
9290 if (!TpDecl)
9291 TpDecl = FnDecl->getPrimaryTemplate();
9292
Sean Hunt216c2782010-04-07 23:11:06 +00009293 // template <char...> type operator "" name() is the only valid template
9294 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009295 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009296 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009297 // Must have only one template parameter
9298 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9299 if (Params->size() == 1) {
9300 NonTypeTemplateParmDecl *PmDecl =
9301 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009302
Sean Hunt216c2782010-04-07 23:11:06 +00009303 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009304 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9305 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9306 Valid = true;
9307 }
9308 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009309 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009310 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009311 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9312
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009313 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009314
Sean Hunt30019c02010-04-07 22:57:35 +00009315 // unsigned long long int, long double, and any character type are allowed
9316 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009317 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9318 Context.hasSameType(T, Context.LongDoubleTy) ||
9319 Context.hasSameType(T, Context.CharTy) ||
9320 Context.hasSameType(T, Context.WCharTy) ||
9321 Context.hasSameType(T, Context.Char16Ty) ||
9322 Context.hasSameType(T, Context.Char32Ty)) {
9323 if (++Param == FnDecl->param_end())
9324 Valid = true;
9325 goto FinishedParams;
9326 }
9327
Sean Hunt30019c02010-04-07 22:57:35 +00009328 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009329 const PointerType *PT = T->getAs<PointerType>();
9330 if (!PT)
9331 goto FinishedParams;
9332 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009333 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009334 goto FinishedParams;
9335 T = T.getUnqualifiedType();
9336
9337 // Move on to the second parameter;
9338 ++Param;
9339
9340 // If there is no second parameter, the first must be a const char *
9341 if (Param == FnDecl->param_end()) {
9342 if (Context.hasSameType(T, Context.CharTy))
9343 Valid = true;
9344 goto FinishedParams;
9345 }
9346
9347 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9348 // are allowed as the first parameter to a two-parameter function
9349 if (!(Context.hasSameType(T, Context.CharTy) ||
9350 Context.hasSameType(T, Context.WCharTy) ||
9351 Context.hasSameType(T, Context.Char16Ty) ||
9352 Context.hasSameType(T, Context.Char32Ty)))
9353 goto FinishedParams;
9354
9355 // The second and final parameter must be an std::size_t
9356 T = (*Param)->getType().getUnqualifiedType();
9357 if (Context.hasSameType(T, Context.getSizeType()) &&
9358 ++Param == FnDecl->param_end())
9359 Valid = true;
9360 }
9361
9362 // FIXME: This diagnostic is absolutely terrible.
9363FinishedParams:
9364 if (!Valid) {
9365 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9366 << FnDecl->getDeclName();
9367 return true;
9368 }
9369
Richard Smitha9e88b22012-03-09 08:16:22 +00009370 // A parameter-declaration-clause containing a default argument is not
9371 // equivalent to any of the permitted forms.
9372 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9373 ParamEnd = FnDecl->param_end();
9374 Param != ParamEnd; ++Param) {
9375 if ((*Param)->hasDefaultArg()) {
9376 Diag((*Param)->getDefaultArgRange().getBegin(),
9377 diag::err_literal_operator_default_argument)
9378 << (*Param)->getDefaultArgRange();
9379 break;
9380 }
9381 }
9382
Richard Smith2fb4ae32012-03-08 02:39:21 +00009383 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009384 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9385 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009386 // C++11 [usrlit.suffix]p1:
9387 // Literal suffix identifiers that do not start with an underscore
9388 // are reserved for future standardization.
9389 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009390 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009391
Sean Hunta6c058d2010-01-13 09:01:02 +00009392 return false;
9393}
9394
Douglas Gregor074149e2009-01-05 19:45:36 +00009395/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9396/// linkage specification, including the language and (if present)
9397/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9398/// the location of the language string literal, which is provided
9399/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9400/// the '{' brace. Otherwise, this linkage specification does not
9401/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009402Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9403 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009404 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009405 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009406 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009407 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009408 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009409 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009410 Language = LinkageSpecDecl::lang_cxx;
9411 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009412 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009413 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009414 }
Mike Stump1eb44332009-09-09 15:08:12 +00009415
Chris Lattnercc98eac2008-12-17 07:13:27 +00009416 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009417
Douglas Gregor074149e2009-01-05 19:45:36 +00009418 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009419 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009420 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009421 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009422 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009423}
9424
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009425/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009426/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9427/// valid, it's the position of the closing '}' brace in a linkage
9428/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009429Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009430 Decl *LinkageSpec,
9431 SourceLocation RBraceLoc) {
9432 if (LinkageSpec) {
9433 if (RBraceLoc.isValid()) {
9434 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9435 LSDecl->setRBraceLoc(RBraceLoc);
9436 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009437 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009438 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009439 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009440}
9441
Douglas Gregord308e622009-05-18 20:51:54 +00009442/// \brief Perform semantic analysis for the variable declaration that
9443/// occurs within a C++ catch clause, returning the newly-created
9444/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009445VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009446 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009447 SourceLocation StartLoc,
9448 SourceLocation Loc,
9449 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009450 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009451 QualType ExDeclType = TInfo->getType();
9452
Sebastian Redl4b07b292008-12-22 19:15:10 +00009453 // Arrays and functions decay.
9454 if (ExDeclType->isArrayType())
9455 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9456 else if (ExDeclType->isFunctionType())
9457 ExDeclType = Context.getPointerType(ExDeclType);
9458
9459 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9460 // The exception-declaration shall not denote a pointer or reference to an
9461 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009462 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009463 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009464 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009465 Invalid = true;
9466 }
Douglas Gregord308e622009-05-18 20:51:54 +00009467
Sebastian Redl4b07b292008-12-22 19:15:10 +00009468 QualType BaseType = ExDeclType;
9469 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009470 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009471 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009472 BaseType = Ptr->getPointeeType();
9473 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009474 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009475 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009476 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009477 BaseType = Ref->getPointeeType();
9478 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009479 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009480 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009481 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009482 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009483 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009484
Mike Stump1eb44332009-09-09 15:08:12 +00009485 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009486 RequireNonAbstractType(Loc, ExDeclType,
9487 diag::err_abstract_type_in_decl,
9488 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009489 Invalid = true;
9490
John McCall5a180392010-07-24 00:37:23 +00009491 // Only the non-fragile NeXT runtime currently supports C++ catches
9492 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009493 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009494 QualType T = ExDeclType;
9495 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9496 T = RT->getPointeeType();
9497
9498 if (T->isObjCObjectType()) {
9499 Diag(Loc, diag::err_objc_object_catch);
9500 Invalid = true;
9501 } else if (T->isObjCObjectPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00009502 if (!getLangOpts().ObjCNonFragileABI)
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009503 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009504 }
9505 }
9506
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009507 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9508 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009509 ExDecl->setExceptionVariable(true);
9510
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009511 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009512 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009513 Invalid = true;
9514
Douglas Gregorc41b8782011-07-06 18:14:43 +00009515 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009516 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009517 // C++ [except.handle]p16:
9518 // The object declared in an exception-declaration or, if the
9519 // exception-declaration does not specify a name, a temporary (12.2) is
9520 // copy-initialized (8.5) from the exception object. [...]
9521 // The object is destroyed when the handler exits, after the destruction
9522 // of any automatic objects initialized within the handler.
9523 //
9524 // We just pretend to initialize the object with itself, then make sure
9525 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009526 QualType initType = ExDeclType;
9527
9528 InitializedEntity entity =
9529 InitializedEntity::InitializeVariable(ExDecl);
9530 InitializationKind initKind =
9531 InitializationKind::CreateCopy(Loc, SourceLocation());
9532
9533 Expr *opaqueValue =
9534 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9535 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9536 ExprResult result = sequence.Perform(*this, entity, initKind,
9537 MultiExprArg(&opaqueValue, 1));
9538 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009539 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009540 else {
9541 // If the constructor used was non-trivial, set this as the
9542 // "initializer".
9543 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9544 if (!construct->getConstructor()->isTrivial()) {
9545 Expr *init = MaybeCreateExprWithCleanups(construct);
9546 ExDecl->setInit(init);
9547 }
9548
9549 // And make sure it's destructable.
9550 FinalizeVarWithDestructor(ExDecl, recordType);
9551 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009552 }
9553 }
9554
Douglas Gregord308e622009-05-18 20:51:54 +00009555 if (Invalid)
9556 ExDecl->setInvalidDecl();
9557
9558 return ExDecl;
9559}
9560
9561/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9562/// handler.
John McCalld226f652010-08-21 09:40:31 +00009563Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009564 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009565 bool Invalid = D.isInvalidType();
9566
9567 // Check for unexpanded parameter packs.
9568 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9569 UPPC_ExceptionType)) {
9570 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9571 D.getIdentifierLoc());
9572 Invalid = true;
9573 }
9574
Sebastian Redl4b07b292008-12-22 19:15:10 +00009575 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009576 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009577 LookupOrdinaryName,
9578 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009579 // The scope should be freshly made just for us. There is just no way
9580 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009581 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009582 if (PrevDecl->isTemplateParameter()) {
9583 // Maybe we will complain about the shadowed template parameter.
9584 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009585 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009586 }
9587 }
9588
Chris Lattnereaaebc72009-04-25 08:06:05 +00009589 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009590 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9591 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009592 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009593 }
9594
Douglas Gregor83cb9422010-09-09 17:09:21 +00009595 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009596 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009597 D.getIdentifierLoc(),
9598 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009599 if (Invalid)
9600 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009601
Sebastian Redl4b07b292008-12-22 19:15:10 +00009602 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009603 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009604 PushOnScopeChains(ExDecl, S);
9605 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009606 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009607
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009608 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009609 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009610}
Anders Carlssonfb311762009-03-14 00:25:26 +00009611
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009612Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009613 Expr *AssertExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009614 Expr *AssertMessageExpr_,
9615 SourceLocation RParenLoc) {
John McCall9ae2f072010-08-23 23:25:46 +00009616 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlssonfb311762009-03-14 00:25:26 +00009617
Anders Carlssonc3082412009-03-14 00:33:21 +00009618 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
Richard Smith282e7e62012-02-04 09:53:13 +00009619 // In a static_assert-declaration, the constant-expression shall be a
9620 // constant expression that can be contextually converted to bool.
9621 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9622 if (Converted.isInvalid())
9623 return 0;
9624
Richard Smithdaaefc52011-12-14 23:32:26 +00009625 llvm::APSInt Cond;
Richard Smith282e7e62012-02-04 09:53:13 +00009626 if (VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009627 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009628 /*AllowFold=*/false).isInvalid())
John McCalld226f652010-08-21 09:40:31 +00009629 return 0;
Anders Carlssonfb311762009-03-14 00:25:26 +00009630
Richard Smith0cc323c2012-03-05 23:20:05 +00009631 if (!Cond) {
9632 llvm::SmallString<256> MsgBuffer;
9633 llvm::raw_svector_ostream Msg(MsgBuffer);
9634 AssertMessage->printPretty(Msg, Context, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009635 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009636 << Msg.str() << AssertExpr->getSourceRange();
9637 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009638 }
Mike Stump1eb44332009-09-09 15:08:12 +00009639
Douglas Gregor399ad972010-12-15 23:55:21 +00009640 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9641 return 0;
9642
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009643 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
9644 AssertExpr, AssertMessage, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00009645
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009646 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009647 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009648}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009649
Douglas Gregor1d869352010-04-07 16:53:43 +00009650/// \brief Perform semantic analysis of the given friend type declaration.
9651///
9652/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009653FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9654 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009655 TypeSourceInfo *TSInfo) {
9656 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9657
9658 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009659 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009660
Richard Smith6b130222011-10-18 21:39:00 +00009661 // C++03 [class.friend]p2:
9662 // An elaborated-type-specifier shall be used in a friend declaration
9663 // for a class.*
9664 //
9665 // * The class-key of the elaborated-type-specifier is required.
9666 if (!ActiveTemplateInstantiations.empty()) {
9667 // Do not complain about the form of friend template types during
9668 // template instantiation; we will already have complained when the
9669 // template was declared.
9670 } else if (!T->isElaboratedTypeSpecifier()) {
9671 // If we evaluated the type to a record type, suggest putting
9672 // a tag in front.
9673 if (const RecordType *RT = T->getAs<RecordType>()) {
9674 RecordDecl *RD = RT->getDecl();
9675
9676 std::string InsertionText = std::string(" ") + RD->getKindName();
9677
9678 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009679 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009680 diag::warn_cxx98_compat_unelaborated_friend_type :
9681 diag::ext_unelaborated_friend_type)
9682 << (unsigned) RD->getTagKind()
9683 << T
9684 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9685 InsertionText);
9686 } else {
9687 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009688 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009689 diag::warn_cxx98_compat_nonclass_type_friend :
9690 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009691 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009692 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009693 }
Richard Smith6b130222011-10-18 21:39:00 +00009694 } else if (T->getAs<EnumType>()) {
9695 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009696 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009697 diag::warn_cxx98_compat_enum_friend :
9698 diag::ext_enum_friend)
9699 << T
9700 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009701 }
9702
Douglas Gregor06245bf2010-04-07 17:57:12 +00009703 // C++0x [class.friend]p3:
9704 // If the type specifier in a friend declaration designates a (possibly
9705 // cv-qualified) class type, that class is declared as a friend; otherwise,
9706 // the friend declaration is ignored.
9707
9708 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9709 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009710
Abramo Bagnara0216df82011-10-29 20:52:52 +00009711 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009712}
9713
John McCall9a34edb2010-10-19 01:40:49 +00009714/// Handle a friend tag declaration where the scope specifier was
9715/// templated.
9716Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9717 unsigned TagSpec, SourceLocation TagLoc,
9718 CXXScopeSpec &SS,
9719 IdentifierInfo *Name, SourceLocation NameLoc,
9720 AttributeList *Attr,
9721 MultiTemplateParamsArg TempParamLists) {
9722 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9723
9724 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009725 bool Invalid = false;
9726
9727 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009728 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
John McCall9a34edb2010-10-19 01:40:49 +00009729 TempParamLists.get(),
9730 TempParamLists.size(),
9731 /*friend*/ true,
9732 isExplicitSpecialization,
9733 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009734 if (TemplateParams->size() > 0) {
9735 // This is a declaration of a class template.
9736 if (Invalid)
9737 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009738
Eric Christopher4110e132011-07-21 05:34:24 +00009739 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9740 SS, Name, NameLoc, Attr,
9741 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009742 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009743 TempParamLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009744 (TemplateParameterList**) TempParamLists.release()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009745 } else {
9746 // The "template<>" header is extraneous.
9747 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9748 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9749 isExplicitSpecialization = true;
9750 }
9751 }
9752
9753 if (Invalid) return 0;
9754
John McCall9a34edb2010-10-19 01:40:49 +00009755 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009756 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCall9a34edb2010-10-19 01:40:49 +00009757 if (TempParamLists.get()[I]->size()) {
9758 isAllExplicitSpecializations = false;
9759 break;
9760 }
9761 }
9762
9763 // FIXME: don't ignore attributes.
9764
9765 // If it's explicit specializations all the way down, just forget
9766 // about the template header and build an appropriate non-templated
9767 // friend. TODO: for source fidelity, remember the headers.
9768 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009769 if (SS.isEmpty()) {
9770 bool Owned = false;
9771 bool IsDependent = false;
9772 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9773 Attr, AS_public,
9774 /*ModulePrivateLoc=*/SourceLocation(),
9775 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009776 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009777 /*ScopedEnumUsesClassTag=*/false,
9778 /*UnderlyingType=*/TypeResult());
9779 }
9780
Douglas Gregor2494dd02011-03-01 01:34:45 +00009781 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009782 ElaboratedTypeKeyword Keyword
9783 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009784 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009785 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009786 if (T.isNull())
9787 return 0;
9788
9789 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9790 if (isa<DependentNameType>(T)) {
9791 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009792 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009793 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009794 TL.setNameLoc(NameLoc);
9795 } else {
9796 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009797 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009798 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009799 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9800 }
9801
9802 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9803 TSI, FriendLoc);
9804 Friend->setAccess(AS_public);
9805 CurContext->addDecl(Friend);
9806 return Friend;
9807 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009808
9809 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9810
9811
John McCall9a34edb2010-10-19 01:40:49 +00009812
9813 // Handle the case of a templated-scope friend class. e.g.
9814 // template <class T> class A<T>::B;
9815 // FIXME: we don't support these right now.
9816 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
9817 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
9818 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9819 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009820 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009821 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +00009822 TL.setNameLoc(NameLoc);
9823
9824 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9825 TSI, FriendLoc);
9826 Friend->setAccess(AS_public);
9827 Friend->setUnsupportedFriend(true);
9828 CurContext->addDecl(Friend);
9829 return Friend;
9830}
9831
9832
John McCalldd4a3b02009-09-16 22:47:08 +00009833/// Handle a friend type declaration. This works in tandem with
9834/// ActOnTag.
9835///
9836/// Notes on friend class templates:
9837///
9838/// We generally treat friend class declarations as if they were
9839/// declaring a class. So, for example, the elaborated type specifier
9840/// in a friend declaration is required to obey the restrictions of a
9841/// class-head (i.e. no typedefs in the scope chain), template
9842/// parameters are required to match up with simple template-ids, &c.
9843/// However, unlike when declaring a template specialization, it's
9844/// okay to refer to a template specialization without an empty
9845/// template parameter declaration, e.g.
9846/// friend class A<T>::B<unsigned>;
9847/// We permit this as a special case; if there are any template
9848/// parameters present at all, require proper matching, i.e.
9849/// template <> template <class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +00009850Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +00009851 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009852 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +00009853
9854 assert(DS.isFriendSpecified());
9855 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9856
John McCalldd4a3b02009-09-16 22:47:08 +00009857 // Try to convert the decl specifier to a type. This works for
9858 // friend templates because ActOnTag never produces a ClassTemplateDecl
9859 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00009860 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00009861 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
9862 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00009863 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +00009864 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009865
Douglas Gregor6ccab972010-12-16 01:14:37 +00009866 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
9867 return 0;
9868
John McCalldd4a3b02009-09-16 22:47:08 +00009869 // This is definitely an error in C++98. It's probably meant to
9870 // be forbidden in C++0x, too, but the specification is just
9871 // poorly written.
9872 //
9873 // The problem is with declarations like the following:
9874 // template <T> friend A<T>::foo;
9875 // where deciding whether a class C is a friend or not now hinges
9876 // on whether there exists an instantiation of A that causes
9877 // 'foo' to equal C. There are restrictions on class-heads
9878 // (which we declare (by fiat) elaborated friend declarations to
9879 // be) that makes this tractable.
9880 //
9881 // FIXME: handle "template <> friend class A<T>;", which
9882 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00009883 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00009884 Diag(Loc, diag::err_tagless_friend_type_template)
9885 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00009886 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +00009887 }
Douglas Gregor1d869352010-04-07 16:53:43 +00009888
John McCall02cace72009-08-28 07:59:38 +00009889 // C++98 [class.friend]p1: A friend of a class is a function
9890 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00009891 // This is fixed in DR77, which just barely didn't make the C++03
9892 // deadline. It's also a very silly restriction that seriously
9893 // affects inner classes and which nobody else seems to implement;
9894 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00009895 //
9896 // But note that we could warn about it: it's always useless to
9897 // friend one of your own members (it's not, however, worthless to
9898 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00009899
John McCalldd4a3b02009-09-16 22:47:08 +00009900 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00009901 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00009902 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009903 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +00009904 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00009905 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00009906 DS.getFriendSpecLoc());
9907 else
Abramo Bagnara0216df82011-10-29 20:52:52 +00009908 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +00009909
9910 if (!D)
John McCalld226f652010-08-21 09:40:31 +00009911 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +00009912
John McCalldd4a3b02009-09-16 22:47:08 +00009913 D->setAccess(AS_public);
9914 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00009915
John McCalld226f652010-08-21 09:40:31 +00009916 return D;
John McCall02cace72009-08-28 07:59:38 +00009917}
9918
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009919Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +00009920 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00009921 const DeclSpec &DS = D.getDeclSpec();
9922
9923 assert(DS.isFriendSpecified());
9924 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9925
9926 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00009927 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +00009928
9929 // C++ [class.friend]p1
9930 // A friend of a class is a function or class....
9931 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00009932 // It *doesn't* see through dependent types, which is correct
9933 // according to [temp.arg.type]p3:
9934 // If a declaration acquires a function type through a
9935 // type dependent on a template-parameter and this causes
9936 // a declaration that does not use the syntactic form of a
9937 // function declarator to have a function type, the program
9938 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009939 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +00009940 Diag(Loc, diag::err_unexpected_friend);
9941
9942 // It might be worthwhile to try to recover by creating an
9943 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +00009944 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009945 }
9946
9947 // C++ [namespace.memdef]p3
9948 // - If a friend declaration in a non-local class first declares a
9949 // class or function, the friend class or function is a member
9950 // of the innermost enclosing namespace.
9951 // - The name of the friend is not found by simple name lookup
9952 // until a matching declaration is provided in that namespace
9953 // scope (either before or after the class declaration granting
9954 // friendship).
9955 // - If a friend function is called, its name may be found by the
9956 // name lookup that considers functions from namespaces and
9957 // classes associated with the types of the function arguments.
9958 // - When looking for a prior declaration of a class or a function
9959 // declared as a friend, scopes outside the innermost enclosing
9960 // namespace scope are not considered.
9961
John McCall337ec3d2010-10-12 23:13:28 +00009962 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00009963 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
9964 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +00009965 assert(Name);
9966
Douglas Gregor6ccab972010-12-16 01:14:37 +00009967 // Check for unexpanded parameter packs.
9968 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
9969 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
9970 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
9971 return 0;
9972
John McCall67d1a672009-08-06 02:15:43 +00009973 // The context we found the declaration in, or in which we should
9974 // create the declaration.
9975 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +00009976 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +00009977 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00009978 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00009979
John McCall337ec3d2010-10-12 23:13:28 +00009980 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +00009981
John McCall337ec3d2010-10-12 23:13:28 +00009982 // There are four cases here.
9983 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +00009984 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +00009985 // there as appropriate.
9986 // Recover from invalid scope qualifiers as if they just weren't there.
9987 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +00009988 // C++0x [namespace.memdef]p3:
9989 // If the name in a friend declaration is neither qualified nor
9990 // a template-id and the declaration is a function or an
9991 // elaborated-type-specifier, the lookup to determine whether
9992 // the entity has been previously declared shall not consider
9993 // any scopes outside the innermost enclosing namespace.
9994 // C++0x [class.friend]p11:
9995 // If a friend declaration appears in a local class and the name
9996 // specified is an unqualified name, a prior declaration is
9997 // looked up without considering scopes that are outside the
9998 // innermost enclosing non-class scope. For a friend function
9999 // declaration, if there is no prior declaration, the program is
10000 // ill-formed.
10001 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010002 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010003
John McCall29ae6e52010-10-13 05:45:15 +000010004 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010005 DC = CurContext;
10006 while (true) {
10007 // Skip class contexts. If someone can cite chapter and verse
10008 // for this behavior, that would be nice --- it's what GCC and
10009 // EDG do, and it seems like a reasonable intent, but the spec
10010 // really only says that checks for unqualified existing
10011 // declarations should stop at the nearest enclosing namespace,
10012 // not that they should only consider the nearest enclosing
10013 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010014 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010015 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010016
John McCall68263142009-11-18 22:49:29 +000010017 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010018
10019 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010020 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010021 break;
John McCall29ae6e52010-10-13 05:45:15 +000010022
John McCall8a407372010-10-14 22:22:28 +000010023 if (isTemplateId) {
10024 if (isa<TranslationUnitDecl>(DC)) break;
10025 } else {
10026 if (DC->isFileContext()) break;
10027 }
John McCall67d1a672009-08-06 02:15:43 +000010028 DC = DC->getParent();
10029 }
10030
10031 // C++ [class.friend]p1: A friend of a class is a function or
10032 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010033 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010034 // Most C++ 98 compilers do seem to give an error here, so
10035 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010036 if (!Previous.empty() && DC->Equals(CurContext))
10037 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010038 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010039 diag::warn_cxx98_compat_friend_is_member :
10040 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010041
John McCall380aaa42010-10-13 06:22:15 +000010042 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010043
Douglas Gregor883af832011-10-10 01:11:59 +000010044 // C++ [class.friend]p6:
10045 // A function can be defined in a friend declaration of a class if and
10046 // only if the class is a non-local class (9.8), the function name is
10047 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010048 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010049 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10050 }
10051
John McCall337ec3d2010-10-12 23:13:28 +000010052 // - There's a non-dependent scope specifier, in which case we
10053 // compute it and do a previous lookup there for a function
10054 // or function template.
10055 } else if (!SS.getScopeRep()->isDependent()) {
10056 DC = computeDeclContext(SS);
10057 if (!DC) return 0;
10058
10059 if (RequireCompleteDeclContext(SS, DC)) return 0;
10060
10061 LookupQualifiedName(Previous, DC);
10062
10063 // Ignore things found implicitly in the wrong scope.
10064 // TODO: better diagnostics for this case. Suggesting the right
10065 // qualified scope would be nice...
10066 LookupResult::Filter F = Previous.makeFilter();
10067 while (F.hasNext()) {
10068 NamedDecl *D = F.next();
10069 if (!DC->InEnclosingNamespaceSetOf(
10070 D->getDeclContext()->getRedeclContext()))
10071 F.erase();
10072 }
10073 F.done();
10074
10075 if (Previous.empty()) {
10076 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010077 Diag(Loc, diag::err_qualified_friend_not_found)
10078 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010079 return 0;
10080 }
10081
10082 // C++ [class.friend]p1: A friend of a class is a function or
10083 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010084 if (DC->Equals(CurContext))
10085 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010086 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010087 diag::warn_cxx98_compat_friend_is_member :
10088 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010089
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010090 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010091 // C++ [class.friend]p6:
10092 // A function can be defined in a friend declaration of a class if and
10093 // only if the class is a non-local class (9.8), the function name is
10094 // unqualified, and the function has namespace scope.
10095 SemaDiagnosticBuilder DB
10096 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10097
10098 DB << SS.getScopeRep();
10099 if (DC->isFileContext())
10100 DB << FixItHint::CreateRemoval(SS.getRange());
10101 SS.clear();
10102 }
John McCall337ec3d2010-10-12 23:13:28 +000010103
10104 // - There's a scope specifier that does not match any template
10105 // parameter lists, in which case we use some arbitrary context,
10106 // create a method or method template, and wait for instantiation.
10107 // - There's a scope specifier that does match some template
10108 // parameter lists, which we don't handle right now.
10109 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010110 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010111 // C++ [class.friend]p6:
10112 // A function can be defined in a friend declaration of a class if and
10113 // only if the class is a non-local class (9.8), the function name is
10114 // unqualified, and the function has namespace scope.
10115 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10116 << SS.getScopeRep();
10117 }
10118
John McCall337ec3d2010-10-12 23:13:28 +000010119 DC = CurContext;
10120 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010121 }
Douglas Gregor883af832011-10-10 01:11:59 +000010122
John McCall29ae6e52010-10-13 05:45:15 +000010123 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010124 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010125 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10126 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10127 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010128 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010129 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10130 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010131 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010132 }
John McCall67d1a672009-08-06 02:15:43 +000010133 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010134
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010135 // FIXME: This is an egregious hack to cope with cases where the scope stack
10136 // does not contain the declaration context, i.e., in an out-of-line
10137 // definition of a class.
10138 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10139 if (!DCScope) {
10140 FakeDCScope.setEntity(DC);
10141 DCScope = &FakeDCScope;
10142 }
10143
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010144 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010145 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
10146 move(TemplateParams), AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010147 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010148
Douglas Gregor182ddf02009-09-28 00:08:27 +000010149 assert(ND->getDeclContext() == DC);
10150 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010151
John McCallab88d972009-08-31 22:39:49 +000010152 // Add the function declaration to the appropriate lookup tables,
10153 // adjusting the redeclarations list as necessary. We don't
10154 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010155 //
John McCallab88d972009-08-31 22:39:49 +000010156 // Also update the scope-based lookup if the target context's
10157 // lookup context is in lexical scope.
10158 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010159 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010160 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010161 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010162 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010163 }
John McCall02cace72009-08-28 07:59:38 +000010164
10165 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010166 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010167 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010168 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010169 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010170
John McCall337ec3d2010-10-12 23:13:28 +000010171 if (ND->isInvalidDecl())
10172 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +000010173 else {
10174 FunctionDecl *FD;
10175 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10176 FD = FTD->getTemplatedDecl();
10177 else
10178 FD = cast<FunctionDecl>(ND);
10179
10180 // Mark templated-scope function declarations as unsupported.
10181 if (FD->getNumTemplateParameterLists())
10182 FrD->setUnsupportedFriend(true);
10183 }
John McCall337ec3d2010-10-12 23:13:28 +000010184
John McCalld226f652010-08-21 09:40:31 +000010185 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010186}
10187
John McCalld226f652010-08-21 09:40:31 +000010188void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10189 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010190
Sebastian Redl50de12f2009-03-24 22:27:57 +000010191 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10192 if (!Fn) {
10193 Diag(DelLoc, diag::err_deleted_non_function);
10194 return;
10195 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010196 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
Sebastian Redl50de12f2009-03-24 22:27:57 +000010197 Diag(DelLoc, diag::err_deleted_decl_not_first);
10198 Diag(Prev->getLocation(), diag::note_previous_declaration);
10199 // If the declaration wasn't the first, we delete the function anyway for
10200 // recovery.
10201 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010202 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010203
10204 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10205 if (!MD)
10206 return;
10207
10208 // A deleted special member function is trivial if the corresponding
10209 // implicitly-declared function would have been.
10210 switch (getSpecialMember(MD)) {
10211 case CXXInvalid:
10212 break;
10213 case CXXDefaultConstructor:
10214 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10215 break;
10216 case CXXCopyConstructor:
10217 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10218 break;
10219 case CXXMoveConstructor:
10220 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10221 break;
10222 case CXXCopyAssignment:
10223 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10224 break;
10225 case CXXMoveAssignment:
10226 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10227 break;
10228 case CXXDestructor:
10229 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10230 break;
10231 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010232}
Sebastian Redl13e88542009-04-27 21:33:24 +000010233
Sean Hunte4246a62011-05-12 06:15:49 +000010234void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10235 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10236
10237 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010238 if (MD->getParent()->isDependentType()) {
10239 MD->setDefaulted();
10240 MD->setExplicitlyDefaulted();
10241 return;
10242 }
10243
Sean Hunte4246a62011-05-12 06:15:49 +000010244 CXXSpecialMember Member = getSpecialMember(MD);
10245 if (Member == CXXInvalid) {
10246 Diag(DefaultLoc, diag::err_default_special_members);
10247 return;
10248 }
10249
10250 MD->setDefaulted();
10251 MD->setExplicitlyDefaulted();
10252
Sean Huntcd10dec2011-05-23 23:14:04 +000010253 // If this definition appears within the record, do the checking when
10254 // the record is complete.
10255 const FunctionDecl *Primary = MD;
10256 if (MD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
10257 // Find the uninstantiated declaration that actually had the '= default'
10258 // on it.
10259 MD->getTemplateInstantiationPattern()->isDefined(Primary);
10260
10261 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010262 return;
10263
10264 switch (Member) {
10265 case CXXDefaultConstructor: {
10266 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010267 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010268 if (!CD->isInvalidDecl())
10269 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10270 break;
10271 }
10272
10273 case CXXCopyConstructor: {
10274 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010275 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010276 if (!CD->isInvalidDecl())
10277 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010278 break;
10279 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010280
Sean Hunt2b188082011-05-14 05:23:28 +000010281 case CXXCopyAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010282 CheckExplicitlyDefaultedSpecialMember(MD);
Sean Hunt2b188082011-05-14 05:23:28 +000010283 if (!MD->isInvalidDecl())
10284 DefineImplicitCopyAssignment(DefaultLoc, MD);
10285 break;
10286 }
10287
Sean Huntcb45a0f2011-05-12 22:46:25 +000010288 case CXXDestructor: {
10289 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010290 CheckExplicitlyDefaultedSpecialMember(DD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010291 if (!DD->isInvalidDecl())
10292 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010293 break;
10294 }
10295
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010296 case CXXMoveConstructor: {
10297 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010298 CheckExplicitlyDefaultedSpecialMember(CD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010299 if (!CD->isInvalidDecl())
10300 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010301 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010302 }
Sean Hunt82713172011-05-25 23:16:36 +000010303
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010304 case CXXMoveAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010305 CheckExplicitlyDefaultedSpecialMember(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010306 if (!MD->isInvalidDecl())
10307 DefineImplicitMoveAssignment(DefaultLoc, MD);
10308 break;
10309 }
10310
10311 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010312 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010313 }
10314 } else {
10315 Diag(DefaultLoc, diag::err_default_special_members);
10316 }
10317}
10318
Sebastian Redl13e88542009-04-27 21:33:24 +000010319static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010320 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010321 Stmt *SubStmt = *CI;
10322 if (!SubStmt)
10323 continue;
10324 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010325 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010326 diag::err_return_in_constructor_handler);
10327 if (!isa<Expr>(SubStmt))
10328 SearchForReturnInStmt(Self, SubStmt);
10329 }
10330}
10331
10332void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10333 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10334 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10335 SearchForReturnInStmt(*this, Handler);
10336 }
10337}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010338
Mike Stump1eb44332009-09-09 15:08:12 +000010339bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010340 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010341 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10342 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010343
Chandler Carruth73857792010-02-15 11:53:20 +000010344 if (Context.hasSameType(NewTy, OldTy) ||
10345 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010346 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010347
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010348 // Check if the return types are covariant
10349 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010350
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010351 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010352 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10353 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010354 NewClassTy = NewPT->getPointeeType();
10355 OldClassTy = OldPT->getPointeeType();
10356 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010357 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10358 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10359 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10360 NewClassTy = NewRT->getPointeeType();
10361 OldClassTy = OldRT->getPointeeType();
10362 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010363 }
10364 }
Mike Stump1eb44332009-09-09 15:08:12 +000010365
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010366 // The return types aren't either both pointers or references to a class type.
10367 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010368 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010369 diag::err_different_return_type_for_overriding_virtual_function)
10370 << New->getDeclName() << NewTy << OldTy;
10371 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010372
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010373 return true;
10374 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010375
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010376 // C++ [class.virtual]p6:
10377 // If the return type of D::f differs from the return type of B::f, the
10378 // class type in the return type of D::f shall be complete at the point of
10379 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010380 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10381 if (!RT->isBeingDefined() &&
10382 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010383 diag::err_covariant_return_incomplete,
10384 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010385 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010386 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010387
Douglas Gregora4923eb2009-11-16 21:35:15 +000010388 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010389 // Check if the new class derives from the old class.
10390 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10391 Diag(New->getLocation(),
10392 diag::err_covariant_return_not_derived)
10393 << New->getDeclName() << NewTy << OldTy;
10394 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10395 return true;
10396 }
Mike Stump1eb44332009-09-09 15:08:12 +000010397
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010398 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010399 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010400 diag::err_covariant_return_inaccessible_base,
10401 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10402 // FIXME: Should this point to the return type?
10403 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010404 // FIXME: this note won't trigger for delayed access control
10405 // diagnostics, and it's impossible to get an undelayed error
10406 // here from access control during the original parse because
10407 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010408 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10409 return true;
10410 }
10411 }
Mike Stump1eb44332009-09-09 15:08:12 +000010412
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010413 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010414 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010415 Diag(New->getLocation(),
10416 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010417 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010418 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10419 return true;
10420 };
Mike Stump1eb44332009-09-09 15:08:12 +000010421
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010422
10423 // The new class type must have the same or less qualifiers as the old type.
10424 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10425 Diag(New->getLocation(),
10426 diag::err_covariant_return_type_class_type_more_qualified)
10427 << New->getDeclName() << NewTy << OldTy;
10428 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10429 return true;
10430 };
Mike Stump1eb44332009-09-09 15:08:12 +000010431
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010432 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010433}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010434
Douglas Gregor4ba31362009-12-01 17:24:26 +000010435/// \brief Mark the given method pure.
10436///
10437/// \param Method the method to be marked pure.
10438///
10439/// \param InitRange the source range that covers the "0" initializer.
10440bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010441 SourceLocation EndLoc = InitRange.getEnd();
10442 if (EndLoc.isValid())
10443 Method->setRangeEnd(EndLoc);
10444
Douglas Gregor4ba31362009-12-01 17:24:26 +000010445 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10446 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010447 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010448 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010449
10450 if (!Method->isInvalidDecl())
10451 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10452 << Method->getDeclName() << InitRange;
10453 return true;
10454}
10455
Douglas Gregor552e2992012-02-21 02:22:07 +000010456/// \brief Determine whether the given declaration is a static data member.
10457static bool isStaticDataMember(Decl *D) {
10458 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10459 if (!Var)
10460 return false;
10461
10462 return Var->isStaticDataMember();
10463}
John McCall731ad842009-12-19 09:28:58 +000010464/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10465/// an initializer for the out-of-line declaration 'Dcl'. The scope
10466/// is a fresh scope pushed for just this purpose.
10467///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010468/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10469/// static data member of class X, names should be looked up in the scope of
10470/// class X.
John McCalld226f652010-08-21 09:40:31 +000010471void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010472 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010473 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010474
John McCall731ad842009-12-19 09:28:58 +000010475 // We should only get called for declarations with scope specifiers, like:
10476 // int foo::bar;
10477 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010478 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010479
10480 // If we are parsing the initializer for a static data member, push a
10481 // new expression evaluation context that is associated with this static
10482 // data member.
10483 if (isStaticDataMember(D))
10484 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010485}
10486
10487/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010488/// initializer for the out-of-line declaration 'D'.
10489void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010490 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010491 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010492
Douglas Gregor552e2992012-02-21 02:22:07 +000010493 if (isStaticDataMember(D))
10494 PopExpressionEvaluationContext();
10495
John McCall731ad842009-12-19 09:28:58 +000010496 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010497 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010498}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010499
10500/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10501/// C++ if/switch/while/for statement.
10502/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010503DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010504 // C++ 6.4p2:
10505 // The declarator shall not specify a function or an array.
10506 // The type-specifier-seq shall not contain typedef and shall not declare a
10507 // new class or enumeration.
10508 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10509 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010510
10511 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010512 if (!Dcl)
10513 return true;
10514
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010515 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10516 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010517 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010518 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010519 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010520
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010521 return Dcl;
10522}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010523
Douglas Gregordfe65432011-07-28 19:11:31 +000010524void Sema::LoadExternalVTableUses() {
10525 if (!ExternalSource)
10526 return;
10527
10528 SmallVector<ExternalVTableUse, 4> VTables;
10529 ExternalSource->ReadUsedVTables(VTables);
10530 SmallVector<VTableUse, 4> NewUses;
10531 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10532 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10533 = VTablesUsed.find(VTables[I].Record);
10534 // Even if a definition wasn't required before, it may be required now.
10535 if (Pos != VTablesUsed.end()) {
10536 if (!Pos->second && VTables[I].DefinitionRequired)
10537 Pos->second = true;
10538 continue;
10539 }
10540
10541 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10542 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10543 }
10544
10545 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10546}
10547
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010548void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10549 bool DefinitionRequired) {
10550 // Ignore any vtable uses in unevaluated operands or for classes that do
10551 // not have a vtable.
10552 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10553 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010554 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010555 return;
10556
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010557 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010558 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010559 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10560 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10561 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10562 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010563 // If we already had an entry, check to see if we are promoting this vtable
10564 // to required a definition. If so, we need to reappend to the VTableUses
10565 // list, since we may have already processed the first entry.
10566 if (DefinitionRequired && !Pos.first->second) {
10567 Pos.first->second = true;
10568 } else {
10569 // Otherwise, we can early exit.
10570 return;
10571 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010572 }
10573
10574 // Local classes need to have their virtual members marked
10575 // immediately. For all other classes, we mark their virtual members
10576 // at the end of the translation unit.
10577 if (Class->isLocalClass())
10578 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010579 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010580 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010581}
10582
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010583bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010584 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010585 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010586 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010587
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010588 // Note: The VTableUses vector could grow as a result of marking
10589 // the members of a class as "used", so we check the size each
10590 // time through the loop and prefer indices (with are stable) to
10591 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010592 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010593 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010594 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010595 if (!Class)
10596 continue;
10597
10598 SourceLocation Loc = VTableUses[I].second;
10599
10600 // If this class has a key function, but that key function is
10601 // defined in another translation unit, we don't need to emit the
10602 // vtable even though we're using it.
10603 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010604 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010605 switch (KeyFunction->getTemplateSpecializationKind()) {
10606 case TSK_Undeclared:
10607 case TSK_ExplicitSpecialization:
10608 case TSK_ExplicitInstantiationDeclaration:
10609 // The key function is in another translation unit.
10610 continue;
10611
10612 case TSK_ExplicitInstantiationDefinition:
10613 case TSK_ImplicitInstantiation:
10614 // We will be instantiating the key function.
10615 break;
10616 }
10617 } else if (!KeyFunction) {
10618 // If we have a class with no key function that is the subject
10619 // of an explicit instantiation declaration, suppress the
10620 // vtable; it will live with the explicit instantiation
10621 // definition.
10622 bool IsExplicitInstantiationDeclaration
10623 = Class->getTemplateSpecializationKind()
10624 == TSK_ExplicitInstantiationDeclaration;
10625 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10626 REnd = Class->redecls_end();
10627 R != REnd; ++R) {
10628 TemplateSpecializationKind TSK
10629 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10630 if (TSK == TSK_ExplicitInstantiationDeclaration)
10631 IsExplicitInstantiationDeclaration = true;
10632 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10633 IsExplicitInstantiationDeclaration = false;
10634 break;
10635 }
10636 }
10637
10638 if (IsExplicitInstantiationDeclaration)
10639 continue;
10640 }
10641
10642 // Mark all of the virtual members of this class as referenced, so
10643 // that we can build a vtable. Then, tell the AST consumer that a
10644 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010645 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010646 MarkVirtualMembersReferenced(Loc, Class);
10647 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10648 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10649
10650 // Optionally warn if we're emitting a weak vtable.
10651 if (Class->getLinkage() == ExternalLinkage &&
10652 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010653 const FunctionDecl *KeyFunctionDef = 0;
10654 if (!KeyFunction ||
10655 (KeyFunction->hasBody(KeyFunctionDef) &&
10656 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010657 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10658 TSK_ExplicitInstantiationDefinition
10659 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10660 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010661 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010662 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010663 VTableUses.clear();
10664
Douglas Gregor78844032011-04-22 22:25:37 +000010665 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010666}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010667
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010668void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10669 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +000010670 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
10671 e = RD->method_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +000010672 CXXMethodDecl *MD = *i;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010673
10674 // C++ [basic.def.odr]p2:
10675 // [...] A virtual member function is used if it is not pure. [...]
10676 if (MD->isVirtual() && !MD->isPure())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010677 MarkFunctionReferenced(Loc, MD);
Anders Carlssond6a637f2009-12-07 08:24:59 +000010678 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010679
10680 // Only classes that have virtual bases need a VTT.
10681 if (RD->getNumVBases() == 0)
10682 return;
10683
10684 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10685 e = RD->bases_end(); i != e; ++i) {
10686 const CXXRecordDecl *Base =
10687 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010688 if (Base->getNumVBases() == 0)
10689 continue;
10690 MarkVirtualMembersReferenced(Loc, Base);
10691 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010692}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010693
10694/// SetIvarInitializers - This routine builds initialization ASTs for the
10695/// Objective-C implementation whose ivars need be initialized.
10696void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010697 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010698 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010699 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010700 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010701 CollectIvarsToConstructOrDestruct(OID, ivars);
10702 if (ivars.empty())
10703 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010704 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010705 for (unsigned i = 0; i < ivars.size(); i++) {
10706 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010707 if (Field->isInvalidDecl())
10708 continue;
10709
Sean Huntcbb67482011-01-08 20:30:50 +000010710 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010711 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10712 InitializationKind InitKind =
10713 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10714
10715 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010716 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010717 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010718 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010719 // Note, MemberInit could actually come back empty if no initialization
10720 // is required (e.g., because it would call a trivial default constructor)
10721 if (!MemberInit.get() || MemberInit.isInvalid())
10722 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010723
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010724 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010725 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10726 SourceLocation(),
10727 MemberInit.takeAs<Expr>(),
10728 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010729 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010730
10731 // Be sure that the destructor is accessible and is marked as referenced.
10732 if (const RecordType *RecordTy
10733 = Context.getBaseElementType(Field->getType())
10734 ->getAs<RecordType>()) {
10735 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010736 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010737 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010738 CheckDestructorAccess(Field->getLocation(), Destructor,
10739 PDiag(diag::err_access_dtor_ivar)
10740 << Context.getBaseElementType(Field->getType()));
10741 }
10742 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010743 }
10744 ObjCImplementation->setIvarInitializers(Context,
10745 AllToInit.data(), AllToInit.size());
10746 }
10747}
Sean Huntfe57eef2011-05-04 05:57:24 +000010748
Sean Huntebcbe1d2011-05-04 23:29:54 +000010749static
10750void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10751 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10752 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10753 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10754 Sema &S) {
10755 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10756 CE = Current.end();
10757 if (Ctor->isInvalidDecl())
10758 return;
10759
10760 const FunctionDecl *FNTarget = 0;
10761 CXXConstructorDecl *Target;
10762
10763 // We ignore the result here since if we don't have a body, Target will be
10764 // null below.
10765 (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
10766 Target
10767= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
10768
10769 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10770 // Avoid dereferencing a null pointer here.
10771 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10772
10773 if (!Current.insert(Canonical))
10774 return;
10775
10776 // We know that beyond here, we aren't chaining into a cycle.
10777 if (!Target || !Target->isDelegatingConstructor() ||
10778 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10779 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10780 Valid.insert(*CI);
10781 Current.clear();
10782 // We've hit a cycle.
10783 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
10784 Current.count(TCanonical)) {
10785 // If we haven't diagnosed this cycle yet, do so now.
10786 if (!Invalid.count(TCanonical)) {
10787 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000010788 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000010789 << Ctor;
10790
10791 // Don't add a note for a function delegating directo to itself.
10792 if (TCanonical != Canonical)
10793 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
10794
10795 CXXConstructorDecl *C = Target;
10796 while (C->getCanonicalDecl() != Canonical) {
10797 (void)C->getTargetConstructor()->hasBody(FNTarget);
10798 assert(FNTarget && "Ctor cycle through bodiless function");
10799
10800 C
10801 = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
10802 S.Diag(C->getLocation(), diag::note_which_delegates_to);
10803 }
10804 }
10805
10806 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10807 Invalid.insert(*CI);
10808 Current.clear();
10809 } else {
10810 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
10811 }
10812}
10813
10814
Sean Huntfe57eef2011-05-04 05:57:24 +000010815void Sema::CheckDelegatingCtorCycles() {
10816 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
10817
Sean Huntebcbe1d2011-05-04 23:29:54 +000010818 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10819 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000010820
Douglas Gregor0129b562011-07-27 21:57:17 +000010821 for (DelegatingCtorDeclsType::iterator
10822 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000010823 E = DelegatingCtorDecls.end();
10824 I != E; ++I) {
10825 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntfe57eef2011-05-04 05:57:24 +000010826 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010827
10828 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
10829 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000010830}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000010831
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010832namespace {
10833 /// \brief AST visitor that finds references to the 'this' expression.
10834 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
10835 Sema &S;
10836
10837 public:
10838 explicit FindCXXThisExpr(Sema &S) : S(S) { }
10839
10840 bool VisitCXXThisExpr(CXXThisExpr *E) {
10841 S.Diag(E->getLocation(), diag::err_this_static_member_func)
10842 << E->isImplicit();
10843 return false;
10844 }
10845 };
10846}
10847
10848bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
10849 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10850 if (!TSInfo)
10851 return false;
10852
10853 TypeLoc TL = TSInfo->getTypeLoc();
10854 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10855 if (!ProtoTL)
10856 return false;
10857
10858 // C++11 [expr.prim.general]p3:
10859 // [The expression this] shall not appear before the optional
10860 // cv-qualifier-seq and it shall not appear within the declaration of a
10861 // static member function (although its type and value category are defined
10862 // within a static member function as they are within a non-static member
10863 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000010864 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010865 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10866 FindCXXThisExpr Finder(*this);
10867
10868 // If the return type came after the cv-qualifier-seq, check it now.
10869 if (Proto->hasTrailingReturn() &&
10870 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
10871 return true;
10872
10873 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010874 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
10875 return true;
10876
10877 return checkThisInStaticMemberFunctionAttributes(Method);
10878}
10879
10880bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
10881 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10882 if (!TSInfo)
10883 return false;
10884
10885 TypeLoc TL = TSInfo->getTypeLoc();
10886 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10887 if (!ProtoTL)
10888 return false;
10889
10890 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10891 FindCXXThisExpr Finder(*this);
10892
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010893 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000010894 case EST_Uninstantiated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010895 case EST_BasicNoexcept:
10896 case EST_Delayed:
10897 case EST_DynamicNone:
10898 case EST_MSAny:
10899 case EST_None:
10900 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010901
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010902 case EST_ComputedNoexcept:
10903 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
10904 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010905
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010906 case EST_Dynamic:
10907 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010908 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010909 E != EEnd; ++E) {
10910 if (!Finder.TraverseType(*E))
10911 return true;
10912 }
10913 break;
10914 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010915
10916 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010917}
10918
10919bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
10920 FindCXXThisExpr Finder(*this);
10921
10922 // Check attributes.
10923 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
10924 A != AEnd; ++A) {
10925 // FIXME: This should be emitted by tblgen.
10926 Expr *Arg = 0;
10927 ArrayRef<Expr *> Args;
10928 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
10929 Arg = G->getArg();
10930 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
10931 Arg = G->getArg();
10932 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
10933 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
10934 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
10935 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
10936 else if (ExclusiveLockFunctionAttr *ELF
10937 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
10938 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
10939 else if (SharedLockFunctionAttr *SLF
10940 = dyn_cast<SharedLockFunctionAttr>(*A))
10941 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
10942 else if (ExclusiveTrylockFunctionAttr *ETLF
10943 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
10944 Arg = ETLF->getSuccessValue();
10945 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
10946 } else if (SharedTrylockFunctionAttr *STLF
10947 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
10948 Arg = STLF->getSuccessValue();
10949 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
10950 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
10951 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
10952 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
10953 Arg = LR->getArg();
10954 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
10955 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
10956 else if (ExclusiveLocksRequiredAttr *ELR
10957 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
10958 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
10959 else if (SharedLocksRequiredAttr *SLR
10960 = dyn_cast<SharedLocksRequiredAttr>(*A))
10961 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
10962
10963 if (Arg && !Finder.TraverseStmt(Arg))
10964 return true;
10965
10966 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
10967 if (!Finder.TraverseStmt(Args[I]))
10968 return true;
10969 }
10970 }
10971
10972 return false;
10973}
10974
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010975void
10976Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
10977 ArrayRef<ParsedType> DynamicExceptions,
10978 ArrayRef<SourceRange> DynamicExceptionRanges,
10979 Expr *NoexceptExpr,
10980 llvm::SmallVectorImpl<QualType> &Exceptions,
10981 FunctionProtoType::ExtProtoInfo &EPI) {
10982 Exceptions.clear();
10983 EPI.ExceptionSpecType = EST;
10984 if (EST == EST_Dynamic) {
10985 Exceptions.reserve(DynamicExceptions.size());
10986 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
10987 // FIXME: Preserve type source info.
10988 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
10989
10990 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
10991 collectUnexpandedParameterPacks(ET, Unexpanded);
10992 if (!Unexpanded.empty()) {
10993 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
10994 UPPC_ExceptionType,
10995 Unexpanded);
10996 continue;
10997 }
10998
10999 // Check that the type is valid for an exception spec, and
11000 // drop it if not.
11001 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11002 Exceptions.push_back(ET);
11003 }
11004 EPI.NumExceptions = Exceptions.size();
11005 EPI.Exceptions = Exceptions.data();
11006 return;
11007 }
11008
11009 if (EST == EST_ComputedNoexcept) {
11010 // If an error occurred, there's no expression here.
11011 if (NoexceptExpr) {
11012 assert((NoexceptExpr->isTypeDependent() ||
11013 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11014 Context.BoolTy) &&
11015 "Parser should have made sure that the expression is boolean");
11016 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11017 EPI.ExceptionSpecType = EST_BasicNoexcept;
11018 return;
11019 }
11020
11021 if (!NoexceptExpr->isValueDependent())
11022 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011023 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011024 /*AllowFold*/ false).take();
11025 EPI.NoexceptExpr = NoexceptExpr;
11026 }
11027 return;
11028 }
11029}
11030
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011031/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11032Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11033 // Implicitly declared functions (e.g. copy constructors) are
11034 // __host__ __device__
11035 if (D->isImplicit())
11036 return CFT_HostDevice;
11037
11038 if (D->hasAttr<CUDAGlobalAttr>())
11039 return CFT_Global;
11040
11041 if (D->hasAttr<CUDADeviceAttr>()) {
11042 if (D->hasAttr<CUDAHostAttr>())
11043 return CFT_HostDevice;
11044 else
11045 return CFT_Device;
11046 }
11047
11048 return CFT_Host;
11049}
11050
11051bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11052 CUDAFunctionTarget CalleeTarget) {
11053 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11054 // Callable from the device only."
11055 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11056 return true;
11057
11058 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11059 // Callable from the host only."
11060 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11061 // Callable from the host only."
11062 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11063 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11064 return true;
11065
11066 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11067 return true;
11068
11069 return false;
11070}