blob: 9143eb282ff719554b0ed65a58351627fe0d6d4f [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000026#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000027#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000028#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000029#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000030#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000031#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000032#include "clang/Sema/DeclSpec.h"
33#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000034#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000035#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000036#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000037#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000038#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000039#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000040
41using namespace clang;
42
Chris Lattner8123a952008-04-10 02:22:51 +000043//===----------------------------------------------------------------------===//
44// CheckDefaultArgumentVisitor
45//===----------------------------------------------------------------------===//
46
Chris Lattner9e979552008-04-12 23:52:44 +000047namespace {
48 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
49 /// the default argument of a parameter to determine whether it
50 /// contains any ill-formed subexpressions. For example, this will
51 /// diagnose the use of local variables or parameters within the
52 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000053 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000054 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000055 Expr *DefaultArg;
56 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000057
Chris Lattner9e979552008-04-12 23:52:44 +000058 public:
Mike Stump1eb44332009-09-09 15:08:12 +000059 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000060 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000061
Chris Lattner9e979552008-04-12 23:52:44 +000062 bool VisitExpr(Expr *Node);
63 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000064 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000065 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000066 };
Chris Lattner8123a952008-04-10 02:22:51 +000067
Chris Lattner9e979552008-04-12 23:52:44 +000068 /// VisitExpr - Visit all of the children of this expression.
69 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
70 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000071 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000072 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000073 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000074 }
75
Chris Lattner9e979552008-04-12 23:52:44 +000076 /// VisitDeclRefExpr - Visit a reference to a declaration, to
77 /// determine whether this declaration can be used in the default
78 /// argument expression.
79 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000080 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000081 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
82 // C++ [dcl.fct.default]p9
83 // Default arguments are evaluated each time the function is
84 // called. The order of evaluation of function arguments is
85 // unspecified. Consequently, parameters of a function shall not
86 // be used in default argument expressions, even if they are not
87 // evaluated. Parameters of a function declared before a default
88 // argument expression are in scope and can hide namespace and
89 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000090 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000091 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000092 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000093 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000094 // C++ [dcl.fct.default]p7
95 // Local variables shall not be used in default argument
96 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000097 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000098 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000099 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000100 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000101 }
Chris Lattner8123a952008-04-10 02:22:51 +0000102
Douglas Gregor3996f232008-11-04 13:41:56 +0000103 return false;
104 }
Chris Lattner9e979552008-04-12 23:52:44 +0000105
Douglas Gregor796da182008-11-04 14:32:21 +0000106 /// VisitCXXThisExpr - Visit a C++ "this" expression.
107 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
108 // C++ [dcl.fct.default]p8:
109 // The keyword this shall not be used in a default argument of a
110 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000111 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000112 diag::err_param_default_argument_references_this)
113 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000114 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000115
116 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
117 // C++11 [expr.lambda.prim]p13:
118 // A lambda-expression appearing in a default argument shall not
119 // implicitly or explicitly capture any entity.
120 if (Lambda->capture_begin() == Lambda->capture_end())
121 return false;
122
123 return S->Diag(Lambda->getLocStart(),
124 diag::err_lambda_capture_default_arg);
125 }
Chris Lattner8123a952008-04-10 02:22:51 +0000126}
127
Richard Smithe6975e92012-04-17 00:58:00 +0000128void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
129 CXXMethodDecl *Method) {
Richard Smith7a614d82011-06-11 17:19:42 +0000130 // If we have an MSAny or unknown spec already, don't bother.
131 if (!Method || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
Sean Hunt001cad92011-05-10 00:49:42 +0000132 return;
133
134 const FunctionProtoType *Proto
135 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000136 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
137 if (!Proto)
138 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000139
140 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
141
142 // If this function can throw any exceptions, make a note of that.
Richard Smith7a614d82011-06-11 17:19:42 +0000143 if (EST == EST_Delayed || EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000144 ClearExceptions();
145 ComputedEST = EST;
146 return;
147 }
148
Richard Smith7a614d82011-06-11 17:19:42 +0000149 // FIXME: If the call to this decl is using any of its default arguments, we
150 // need to search them for potentially-throwing calls.
151
Sean Hunt001cad92011-05-10 00:49:42 +0000152 // If this function has a basic noexcept, it doesn't affect the outcome.
153 if (EST == EST_BasicNoexcept)
154 return;
155
156 // If we have a throw-all spec at this point, ignore the function.
157 if (ComputedEST == EST_None)
158 return;
159
160 // If we're still at noexcept(true) and there's a nothrow() callee,
161 // change to that specification.
162 if (EST == EST_DynamicNone) {
163 if (ComputedEST == EST_BasicNoexcept)
164 ComputedEST = EST_DynamicNone;
165 return;
166 }
167
168 // Check out noexcept specs.
169 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000170 FunctionProtoType::NoexceptResult NR =
171 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000172 assert(NR != FunctionProtoType::NR_NoNoexcept &&
173 "Must have noexcept result for EST_ComputedNoexcept.");
174 assert(NR != FunctionProtoType::NR_Dependent &&
175 "Should not generate implicit declarations for dependent cases, "
176 "and don't know how to handle them anyway.");
177
178 // noexcept(false) -> no spec on the new function
179 if (NR == FunctionProtoType::NR_Throw) {
180 ClearExceptions();
181 ComputedEST = EST_None;
182 }
183 // noexcept(true) won't change anything either.
184 return;
185 }
186
187 assert(EST == EST_Dynamic && "EST case not considered earlier.");
188 assert(ComputedEST != EST_None &&
189 "Shouldn't collect exceptions when throw-all is guaranteed.");
190 ComputedEST = EST_Dynamic;
191 // Record the exceptions in this function's exception specification.
192 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
193 EEnd = Proto->exception_end();
194 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000195 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000196 Exceptions.push_back(*E);
197}
198
Richard Smith7a614d82011-06-11 17:19:42 +0000199void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
200 if (!E || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
201 return;
202
203 // FIXME:
204 //
205 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000206 // [An] implicit exception-specification specifies the type-id T if and
207 // only if T is allowed by the exception-specification of a function directly
208 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000209 // function it directly invokes allows all exceptions, and f shall allow no
210 // exceptions if every function it directly invokes allows no exceptions.
211 //
212 // Note in particular that if an implicit exception-specification is generated
213 // for a function containing a throw-expression, that specification can still
214 // be noexcept(true).
215 //
216 // Note also that 'directly invoked' is not defined in the standard, and there
217 // is no indication that we should only consider potentially-evaluated calls.
218 //
219 // Ultimately we should implement the intent of the standard: the exception
220 // specification should be the set of exceptions which can be thrown by the
221 // implicit definition. For now, we assume that any non-nothrow expression can
222 // throw any exception.
223
Richard Smithe6975e92012-04-17 00:58:00 +0000224 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000225 ComputedEST = EST_None;
226}
227
Anders Carlssoned961f92009-08-25 02:29:20 +0000228bool
John McCall9ae2f072010-08-23 23:25:46 +0000229Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000230 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000231 if (RequireCompleteType(Param->getLocation(), Param->getType(),
232 diag::err_typecheck_decl_incomplete_type)) {
233 Param->setInvalidDecl();
234 return true;
235 }
236
Anders Carlssoned961f92009-08-25 02:29:20 +0000237 // C++ [dcl.fct.default]p5
238 // A default argument expression is implicitly converted (clause
239 // 4) to the parameter type. The default argument expression has
240 // the same semantic constraints as the initializer expression in
241 // a declaration of a variable of the parameter type, using the
242 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000243 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
244 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000245 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
246 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000247 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCall60d7b3a2010-08-24 06:29:42 +0000248 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000249 MultiExprArg(*this, &Arg, 1));
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Chris Lattner3d1cee32008-04-08 05:04:30 +0000376// MergeCXXFunctionDecl - Merge two declarations of the same C++
377// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000378// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
Sean Hunt9ae60d52011-05-26 01:26:05 +0000520 } else if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(New)) {
521 CXXSpecialMember NewSM = getSpecialMember(Ctor),
522 OldSM = getSpecialMember(cast<CXXConstructorDecl>(Old));
523 if (NewSM != OldSM) {
524 Diag(NewParam->getLocation(),diag::warn_default_arg_makes_ctor_special)
525 << NewParam->getDefaultArgRange() << NewSM;
526 Diag(Old->getLocation(), diag::note_previous_declaration_special)
527 << OldSM;
528 }
Douglas Gregor6cc15182009-09-11 18:44:32 +0000529 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000530 }
531 }
532
Richard Smithff234882012-02-20 23:28:05 +0000533 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000534 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000535 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000536 if (New->isConstexpr() != Old->isConstexpr()) {
537 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
538 << New << New->isConstexpr();
539 Diag(Old->getLocation(), diag::note_previous_declaration);
540 Invalid = true;
541 }
542
Douglas Gregore13ad832010-02-12 07:32:17 +0000543 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000544 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000545
Douglas Gregorcda9c672009-02-16 17:45:42 +0000546 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000547}
548
Sebastian Redl60618fa2011-03-12 11:50:43 +0000549/// \brief Merge the exception specifications of two variable declarations.
550///
551/// This is called when there's a redeclaration of a VarDecl. The function
552/// checks if the redeclaration might have an exception specification and
553/// validates compatibility and merges the specs if necessary.
554void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
555 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000556 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000557 return;
558
559 assert(Context.hasSameType(New->getType(), Old->getType()) &&
560 "Should only be called if types are otherwise the same.");
561
562 QualType NewType = New->getType();
563 QualType OldType = Old->getType();
564
565 // We're only interested in pointers and references to functions, as well
566 // as pointers to member functions.
567 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
568 NewType = R->getPointeeType();
569 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
570 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
571 NewType = P->getPointeeType();
572 OldType = OldType->getAs<PointerType>()->getPointeeType();
573 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
574 NewType = M->getPointeeType();
575 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
576 }
577
578 if (!NewType->isFunctionProtoType())
579 return;
580
581 // There's lots of special cases for functions. For function pointers, system
582 // libraries are hopefully not as broken so that we don't need these
583 // workarounds.
584 if (CheckEquivalentExceptionSpec(
585 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
586 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
587 New->setInvalidDecl();
588 }
589}
590
Chris Lattner3d1cee32008-04-08 05:04:30 +0000591/// CheckCXXDefaultArguments - Verify that the default arguments for a
592/// function declaration are well-formed according to C++
593/// [dcl.fct.default].
594void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
595 unsigned NumParams = FD->getNumParams();
596 unsigned p;
597
Douglas Gregorc6889e72012-02-14 22:28:59 +0000598 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
599 isa<CXXMethodDecl>(FD) &&
600 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
601
Chris Lattner3d1cee32008-04-08 05:04:30 +0000602 // Find first parameter with a default argument
603 for (p = 0; p < NumParams; ++p) {
604 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000605 if (Param->hasDefaultArg()) {
606 // C++11 [expr.prim.lambda]p5:
607 // [...] Default arguments (8.3.6) shall not be specified in the
608 // parameter-declaration-clause of a lambda-declarator.
609 //
610 // FIXME: Core issue 974 strikes this sentence, we only provide an
611 // extension warning.
612 if (IsLambda)
613 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
614 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000615 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000616 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000617 }
618
619 // C++ [dcl.fct.default]p4:
620 // In a given function declaration, all parameters
621 // subsequent to a parameter with a default argument shall
622 // have default arguments supplied in this or previous
623 // declarations. A default argument shall not be redefined
624 // by a later declaration (not even to the same value).
625 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000626 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000627 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000628 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000629 if (Param->isInvalidDecl())
630 /* We already complained about this parameter. */;
631 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000632 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000633 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000634 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000635 else
Mike Stump1eb44332009-09-09 15:08:12 +0000636 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000637 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattner3d1cee32008-04-08 05:04:30 +0000639 LastMissingDefaultArg = p;
640 }
641 }
642
643 if (LastMissingDefaultArg > 0) {
644 // Some default arguments were missing. Clear out all of the
645 // default arguments up to (and including) the last missing
646 // default argument, so that we leave the function parameters
647 // in a semantically valid state.
648 for (p = 0; p <= LastMissingDefaultArg; ++p) {
649 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000650 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000651 Param->setDefaultArg(0);
652 }
653 }
654 }
655}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000656
Richard Smith9f569cc2011-10-01 02:31:28 +0000657// CheckConstexprParameterTypes - Check whether a function's parameter types
658// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000659// diagnostic and return false.
660static bool CheckConstexprParameterTypes(Sema &SemaRef,
661 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000662 unsigned ArgIndex = 0;
663 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
664 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
665 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
666 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
667 SourceLocation ParamLoc = PD->getLocation();
668 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000669 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000670 diag::err_constexpr_non_literal_param,
671 ArgIndex+1, PD->getSourceRange(),
672 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000673 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000674 }
675 return true;
676}
677
678// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
Richard Smith86c3ae42012-02-13 03:54:03 +0000679// the requirements of a constexpr function definition or a constexpr
680// constructor definition. If so, return true. If not, produce appropriate
681// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000682//
Richard Smith86c3ae42012-02-13 03:54:03 +0000683// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
684bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000685 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
686 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000687 // C++11 [dcl.constexpr]p4:
688 // The definition of a constexpr constructor shall satisfy the following
689 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000690 // - the class shall not have any virtual base classes;
Richard Smith35340502012-01-13 04:54:00 +0000691 const CXXRecordDecl *RD = MD->getParent();
Richard Smith9f569cc2011-10-01 02:31:28 +0000692 if (RD->getNumVBases()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000693 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
694 << isa<CXXConstructorDecl>(NewFD) << RD->isStruct()
695 << RD->getNumVBases();
696 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
697 E = RD->vbases_end(); I != E; ++I)
Daniel Dunbar96a00142012-03-09 18:35:03 +0000698 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000699 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000700 return false;
701 }
Richard Smith35340502012-01-13 04:54:00 +0000702 }
703
704 if (!isa<CXXConstructorDecl>(NewFD)) {
705 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000706 // The definition of a constexpr function shall satisfy the following
707 // constraints:
708 // - it shall not be virtual;
709 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
710 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000711 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000712
Richard Smith86c3ae42012-02-13 03:54:03 +0000713 // If it's not obvious why this function is virtual, find an overridden
714 // function which uses the 'virtual' keyword.
715 const CXXMethodDecl *WrittenVirtual = Method;
716 while (!WrittenVirtual->isVirtualAsWritten())
717 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
718 if (WrittenVirtual != Method)
719 Diag(WrittenVirtual->getLocation(),
720 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000721 return false;
722 }
723
724 // - its return type shall be a literal type;
725 QualType RT = NewFD->getResultType();
726 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000727 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000728 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000729 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000730 }
731
Richard Smith35340502012-01-13 04:54:00 +0000732 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000733 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000734 return false;
735
Richard Smith9f569cc2011-10-01 02:31:28 +0000736 return true;
737}
738
739/// Check the given declaration statement is legal within a constexpr function
740/// body. C++0x [dcl.constexpr]p3,p4.
741///
742/// \return true if the body is OK, false if we have diagnosed a problem.
743static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
744 DeclStmt *DS) {
745 // C++0x [dcl.constexpr]p3 and p4:
746 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
747 // contain only
748 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
749 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
750 switch ((*DclIt)->getKind()) {
751 case Decl::StaticAssert:
752 case Decl::Using:
753 case Decl::UsingShadow:
754 case Decl::UsingDirective:
755 case Decl::UnresolvedUsingTypename:
756 // - static_assert-declarations
757 // - using-declarations,
758 // - using-directives,
759 continue;
760
761 case Decl::Typedef:
762 case Decl::TypeAlias: {
763 // - typedef declarations and alias-declarations that do not define
764 // classes or enumerations,
765 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
766 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
767 // Don't allow variably-modified types in constexpr functions.
768 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
769 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
770 << TL.getSourceRange() << TL.getType()
771 << isa<CXXConstructorDecl>(Dcl);
772 return false;
773 }
774 continue;
775 }
776
777 case Decl::Enum:
778 case Decl::CXXRecord:
779 // As an extension, we allow the declaration (but not the definition) of
780 // classes and enumerations in all declarations, not just in typedef and
781 // alias declarations.
782 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
783 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
784 << isa<CXXConstructorDecl>(Dcl);
785 return false;
786 }
787 continue;
788
789 case Decl::Var:
790 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
791 << isa<CXXConstructorDecl>(Dcl);
792 return false;
793
794 default:
795 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
796 << isa<CXXConstructorDecl>(Dcl);
797 return false;
798 }
799 }
800
801 return true;
802}
803
804/// Check that the given field is initialized within a constexpr constructor.
805///
806/// \param Dcl The constexpr constructor being checked.
807/// \param Field The field being checked. This may be a member of an anonymous
808/// struct or union nested within the class being checked.
809/// \param Inits All declarations, including anonymous struct/union members and
810/// indirect members, for which any initialization was provided.
811/// \param Diagnosed Set to true if an error is produced.
812static void CheckConstexprCtorInitializer(Sema &SemaRef,
813 const FunctionDecl *Dcl,
814 FieldDecl *Field,
815 llvm::SmallSet<Decl*, 16> &Inits,
816 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000817 if (Field->isUnnamedBitfield())
818 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000819
820 if (Field->isAnonymousStructOrUnion() &&
821 Field->getType()->getAsCXXRecordDecl()->isEmpty())
822 return;
823
Richard Smith9f569cc2011-10-01 02:31:28 +0000824 if (!Inits.count(Field)) {
825 if (!Diagnosed) {
826 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
827 Diagnosed = true;
828 }
829 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
830 } else if (Field->isAnonymousStructOrUnion()) {
831 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
832 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
833 I != E; ++I)
834 // If an anonymous union contains an anonymous struct of which any member
835 // is initialized, all members must be initialized.
David Blaikie262bc182012-04-30 02:36:29 +0000836 if (!RD->isUnion() || Inits.count(&*I))
837 CheckConstexprCtorInitializer(SemaRef, Dcl, &*I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000838 }
839}
840
841/// Check the body for the given constexpr function declaration only contains
842/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
843///
844/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000845bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000846 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000847 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000848 // The definition of a constexpr function shall satisfy the following
849 // constraints: [...]
850 // - its function-body shall be = delete, = default, or a
851 // compound-statement
852 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000853 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000854 // In the definition of a constexpr constructor, [...]
855 // - its function-body shall not be a function-try-block;
856 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
857 << isa<CXXConstructorDecl>(Dcl);
858 return false;
859 }
860
861 // - its function-body shall be [...] a compound-statement that contains only
862 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
863
864 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
865 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
866 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
867 switch ((*BodyIt)->getStmtClass()) {
868 case Stmt::NullStmtClass:
869 // - null statements,
870 continue;
871
872 case Stmt::DeclStmtClass:
873 // - static_assert-declarations
874 // - using-declarations,
875 // - using-directives,
876 // - typedef declarations and alias-declarations that do not define
877 // classes or enumerations,
878 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
879 return false;
880 continue;
881
882 case Stmt::ReturnStmtClass:
883 // - and exactly one return statement;
884 if (isa<CXXConstructorDecl>(Dcl))
885 break;
886
887 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000888 continue;
889
890 default:
891 break;
892 }
893
894 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
895 << isa<CXXConstructorDecl>(Dcl);
896 return false;
897 }
898
899 if (const CXXConstructorDecl *Constructor
900 = dyn_cast<CXXConstructorDecl>(Dcl)) {
901 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000902 // DR1359:
903 // - every non-variant non-static data member and base class sub-object
904 // shall be initialized;
905 // - if the class is a non-empty union, or for each non-empty anonymous
906 // union member of a non-union class, exactly one non-static data member
907 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000908 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000909 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000910 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
911 return false;
912 }
Richard Smith6e433752011-10-10 16:38:04 +0000913 } else if (!Constructor->isDependentContext() &&
914 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000915 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
916
917 // Skip detailed checking if we have enough initializers, and we would
918 // allow at most one initializer per member.
919 bool AnyAnonStructUnionMembers = false;
920 unsigned Fields = 0;
921 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
922 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000923 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000924 AnyAnonStructUnionMembers = true;
925 break;
926 }
927 }
928 if (AnyAnonStructUnionMembers ||
929 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
930 // Check initialization of non-static data members. Base classes are
931 // always initialized so do not need to be checked. Dependent bases
932 // might not have initializers in the member initializer list.
933 llvm::SmallSet<Decl*, 16> Inits;
934 for (CXXConstructorDecl::init_const_iterator
935 I = Constructor->init_begin(), E = Constructor->init_end();
936 I != E; ++I) {
937 if (FieldDecl *FD = (*I)->getMember())
938 Inits.insert(FD);
939 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
940 Inits.insert(ID->chain_begin(), ID->chain_end());
941 }
942
943 bool Diagnosed = false;
944 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
945 E = RD->field_end(); I != E; ++I)
David Blaikie262bc182012-04-30 02:36:29 +0000946 CheckConstexprCtorInitializer(*this, Dcl, &*I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000947 if (Diagnosed)
948 return false;
949 }
950 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000951 } else {
952 if (ReturnStmts.empty()) {
953 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
954 return false;
955 }
956 if (ReturnStmts.size() > 1) {
957 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
958 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
959 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
960 return false;
961 }
962 }
963
Richard Smith5ba73e12012-02-04 00:33:54 +0000964 // C++11 [dcl.constexpr]p5:
965 // if no function argument values exist such that the function invocation
966 // substitution would produce a constant expression, the program is
967 // ill-formed; no diagnostic required.
968 // C++11 [dcl.constexpr]p3:
969 // - every constructor call and implicit conversion used in initializing the
970 // return value shall be one of those allowed in a constant expression.
971 // C++11 [dcl.constexpr]p4:
972 // - every constructor involved in initializing non-static data members and
973 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000974 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000975 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000976 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
977 << isa<CXXConstructorDecl>(Dcl);
978 for (size_t I = 0, N = Diags.size(); I != N; ++I)
979 Diag(Diags[I].first, Diags[I].second);
980 return false;
981 }
982
Richard Smith9f569cc2011-10-01 02:31:28 +0000983 return true;
984}
985
Douglas Gregorb48fe382008-10-31 09:07:45 +0000986/// isCurrentClassName - Determine whether the identifier II is the
987/// name of the class type currently being defined. In the case of
988/// nested classes, this will only return true if II is the name of
989/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000990bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
991 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000992 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000993
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000994 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000995 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000996 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000997 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
998 } else
999 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1000
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001001 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001002 return &II == CurDecl->getIdentifier();
1003 else
1004 return false;
1005}
1006
Mike Stump1eb44332009-09-09 15:08:12 +00001007/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001008///
1009/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1010/// and returns NULL otherwise.
1011CXXBaseSpecifier *
1012Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1013 SourceRange SpecifierRange,
1014 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001015 TypeSourceInfo *TInfo,
1016 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001017 QualType BaseType = TInfo->getType();
1018
Douglas Gregor2943aed2009-03-03 04:44:36 +00001019 // C++ [class.union]p1:
1020 // A union shall not have base classes.
1021 if (Class->isUnion()) {
1022 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1023 << SpecifierRange;
1024 return 0;
1025 }
1026
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001027 if (EllipsisLoc.isValid() &&
1028 !TInfo->getType()->containsUnexpandedParameterPack()) {
1029 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1030 << TInfo->getTypeLoc().getSourceRange();
1031 EllipsisLoc = SourceLocation();
1032 }
1033
Douglas Gregor2943aed2009-03-03 04:44:36 +00001034 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +00001035 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001036 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001037 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +00001038
1039 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001040
1041 // Base specifiers must be record types.
1042 if (!BaseType->isRecordType()) {
1043 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1044 return 0;
1045 }
1046
1047 // C++ [class.union]p1:
1048 // A union shall not be used as a base class.
1049 if (BaseType->isUnionType()) {
1050 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1051 return 0;
1052 }
1053
1054 // C++ [class.derived]p2:
1055 // The class-name in a base-specifier shall not be an incompletely
1056 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001057 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001058 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001059 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001060 return 0;
John McCall572fc622010-08-17 07:23:57 +00001061 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001062
Eli Friedman1d954f62009-08-15 21:55:26 +00001063 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001064 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001065 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001066 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001067 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001068 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1069 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001070
Anders Carlsson1d209272011-03-25 14:55:14 +00001071 // C++ [class]p3:
1072 // If a class is marked final and it appears as a base-type-specifier in
1073 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001074 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001075 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1076 << CXXBaseDecl->getDeclName();
1077 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1078 << CXXBaseDecl->getDeclName();
1079 return 0;
1080 }
1081
John McCall572fc622010-08-17 07:23:57 +00001082 if (BaseDecl->isInvalidDecl())
1083 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001084
1085 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001086 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001087 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001088 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001089}
1090
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001091/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1092/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001093/// example:
1094/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001095/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001096BaseResult
John McCalld226f652010-08-21 09:40:31 +00001097Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001098 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001099 ParsedType basetype, SourceLocation BaseLoc,
1100 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001101 if (!classdecl)
1102 return true;
1103
Douglas Gregor40808ce2009-03-09 23:48:35 +00001104 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001105 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001106 if (!Class)
1107 return true;
1108
Nick Lewycky56062202010-07-26 16:56:01 +00001109 TypeSourceInfo *TInfo = 0;
1110 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001111
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001112 if (EllipsisLoc.isInvalid() &&
1113 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001114 UPPC_BaseType))
1115 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001116
Douglas Gregor2943aed2009-03-03 04:44:36 +00001117 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001118 Virtual, Access, TInfo,
1119 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001120 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +00001121
Douglas Gregor2943aed2009-03-03 04:44:36 +00001122 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001123}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001124
Douglas Gregor2943aed2009-03-03 04:44:36 +00001125/// \brief Performs the actual work of attaching the given base class
1126/// specifiers to a C++ class.
1127bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1128 unsigned NumBases) {
1129 if (NumBases == 0)
1130 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001131
1132 // Used to keep track of which base types we have already seen, so
1133 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001134 // that the key is always the unqualified canonical type of the base
1135 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001136 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1137
1138 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001139 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001140 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001141 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001142 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001143 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001144 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001145
1146 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1147 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001148 // C++ [class.mi]p3:
1149 // A class shall not be specified as a direct base class of a
1150 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001151 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001152 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001153 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001154 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001155
1156 // Delete the duplicate base class specifier; we're going to
1157 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001158 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001159
1160 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001161 } else {
1162 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001163 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001164 Bases[NumGoodBases++] = Bases[idx];
Fariborz Jahanian91589022011-10-24 17:30:45 +00001165 if (const RecordType *Record = NewBaseType->getAs<RecordType>())
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001166 if (const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()))
1167 if (RD->hasAttr<WeakAttr>())
1168 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001169 }
1170 }
1171
1172 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001173 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001174
1175 // Delete the remaining (good) base class specifiers, since their
1176 // data has been copied into the CXXRecordDecl.
1177 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001178 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001179
1180 return Invalid;
1181}
1182
1183/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1184/// class, after checking whether there are any duplicate base
1185/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001186void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001187 unsigned NumBases) {
1188 if (!ClassDecl || !Bases || !NumBases)
1189 return;
1190
1191 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001192 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001193 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001194}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001195
John McCall3cb0ebd2010-03-10 03:28:59 +00001196static CXXRecordDecl *GetClassForType(QualType T) {
1197 if (const RecordType *RT = T->getAs<RecordType>())
1198 return cast<CXXRecordDecl>(RT->getDecl());
1199 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1200 return ICT->getDecl();
1201 else
1202 return 0;
1203}
1204
Douglas Gregora8f32e02009-10-06 17:59:45 +00001205/// \brief Determine whether the type \p Derived is a C++ class that is
1206/// derived from the type \p Base.
1207bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001208 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001209 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001210
1211 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1212 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001213 return false;
1214
John McCall3cb0ebd2010-03-10 03:28:59 +00001215 CXXRecordDecl *BaseRD = GetClassForType(Base);
1216 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001217 return false;
1218
John McCall86ff3082010-02-04 22:26:26 +00001219 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1220 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001221}
1222
1223/// \brief Determine whether the type \p Derived is a C++ class that is
1224/// derived from the type \p Base.
1225bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001226 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001227 return false;
1228
John McCall3cb0ebd2010-03-10 03:28:59 +00001229 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1230 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001231 return false;
1232
John McCall3cb0ebd2010-03-10 03:28:59 +00001233 CXXRecordDecl *BaseRD = GetClassForType(Base);
1234 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001235 return false;
1236
Douglas Gregora8f32e02009-10-06 17:59:45 +00001237 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1238}
1239
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001240void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001241 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001242 assert(BasePathArray.empty() && "Base path array must be empty!");
1243 assert(Paths.isRecordingPaths() && "Must record paths!");
1244
1245 const CXXBasePath &Path = Paths.front();
1246
1247 // We first go backward and check if we have a virtual base.
1248 // FIXME: It would be better if CXXBasePath had the base specifier for
1249 // the nearest virtual base.
1250 unsigned Start = 0;
1251 for (unsigned I = Path.size(); I != 0; --I) {
1252 if (Path[I - 1].Base->isVirtual()) {
1253 Start = I - 1;
1254 break;
1255 }
1256 }
1257
1258 // Now add all bases.
1259 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001260 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001261}
1262
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001263/// \brief Determine whether the given base path includes a virtual
1264/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001265bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1266 for (CXXCastPath::const_iterator B = BasePath.begin(),
1267 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001268 B != BEnd; ++B)
1269 if ((*B)->isVirtual())
1270 return true;
1271
1272 return false;
1273}
1274
Douglas Gregora8f32e02009-10-06 17:59:45 +00001275/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1276/// conversion (where Derived and Base are class types) is
1277/// well-formed, meaning that the conversion is unambiguous (and
1278/// that all of the base classes are accessible). Returns true
1279/// and emits a diagnostic if the code is ill-formed, returns false
1280/// otherwise. Loc is the location where this routine should point to
1281/// if there is an error, and Range is the source range to highlight
1282/// if there is an error.
1283bool
1284Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001285 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001286 unsigned AmbigiousBaseConvID,
1287 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001288 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001289 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001290 // First, determine whether the path from Derived to Base is
1291 // ambiguous. This is slightly more expensive than checking whether
1292 // the Derived to Base conversion exists, because here we need to
1293 // explore multiple paths to determine if there is an ambiguity.
1294 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1295 /*DetectVirtual=*/false);
1296 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1297 assert(DerivationOkay &&
1298 "Can only be used with a derived-to-base conversion");
1299 (void)DerivationOkay;
1300
1301 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001302 if (InaccessibleBaseID) {
1303 // Check that the base class can be accessed.
1304 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1305 InaccessibleBaseID)) {
1306 case AR_inaccessible:
1307 return true;
1308 case AR_accessible:
1309 case AR_dependent:
1310 case AR_delayed:
1311 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001312 }
John McCall6b2accb2010-02-10 09:31:12 +00001313 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001314
1315 // Build a base path if necessary.
1316 if (BasePath)
1317 BuildBasePathArray(Paths, *BasePath);
1318 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001319 }
1320
1321 // We know that the derived-to-base conversion is ambiguous, and
1322 // we're going to produce a diagnostic. Perform the derived-to-base
1323 // search just one more time to compute all of the possible paths so
1324 // that we can print them out. This is more expensive than any of
1325 // the previous derived-to-base checks we've done, but at this point
1326 // performance isn't as much of an issue.
1327 Paths.clear();
1328 Paths.setRecordingPaths(true);
1329 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1330 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1331 (void)StillOkay;
1332
1333 // Build up a textual representation of the ambiguous paths, e.g.,
1334 // D -> B -> A, that will be used to illustrate the ambiguous
1335 // conversions in the diagnostic. We only print one of the paths
1336 // to each base class subobject.
1337 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1338
1339 Diag(Loc, AmbigiousBaseConvID)
1340 << Derived << Base << PathDisplayStr << Range << Name;
1341 return true;
1342}
1343
1344bool
1345Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001346 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001347 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001348 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001349 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001350 IgnoreAccess ? 0
1351 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001352 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001353 Loc, Range, DeclarationName(),
1354 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001355}
1356
1357
1358/// @brief Builds a string representing ambiguous paths from a
1359/// specific derived class to different subobjects of the same base
1360/// class.
1361///
1362/// This function builds a string that can be used in error messages
1363/// to show the different paths that one can take through the
1364/// inheritance hierarchy to go from the derived class to different
1365/// subobjects of a base class. The result looks something like this:
1366/// @code
1367/// struct D -> struct B -> struct A
1368/// struct D -> struct C -> struct A
1369/// @endcode
1370std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1371 std::string PathDisplayStr;
1372 std::set<unsigned> DisplayedPaths;
1373 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1374 Path != Paths.end(); ++Path) {
1375 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1376 // We haven't displayed a path to this particular base
1377 // class subobject yet.
1378 PathDisplayStr += "\n ";
1379 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1380 for (CXXBasePath::const_iterator Element = Path->begin();
1381 Element != Path->end(); ++Element)
1382 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1383 }
1384 }
1385
1386 return PathDisplayStr;
1387}
1388
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001389//===----------------------------------------------------------------------===//
1390// C++ class member Handling
1391//===----------------------------------------------------------------------===//
1392
Abramo Bagnara6206d532010-06-05 05:09:32 +00001393/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001394bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1395 SourceLocation ASLoc,
1396 SourceLocation ColonLoc,
1397 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001398 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001399 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001400 ASLoc, ColonLoc);
1401 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001402 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001403}
1404
Anders Carlsson9e682d92011-01-20 05:57:14 +00001405/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001406void Sema::CheckOverrideControl(const Decl *D) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001407 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001408 if (!MD || !MD->isVirtual())
1409 return;
1410
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001411 if (MD->isDependentContext())
1412 return;
1413
Anders Carlsson9e682d92011-01-20 05:57:14 +00001414 // C++0x [class.virtual]p3:
1415 // If a virtual function is marked with the virt-specifier override and does
1416 // not override a member function of a base class,
1417 // the program is ill-formed.
1418 bool HasOverriddenMethods =
1419 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001420 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001421 Diag(MD->getLocation(),
Anders Carlsson9e682d92011-01-20 05:57:14 +00001422 diag::err_function_marked_override_not_overriding)
1423 << MD->getDeclName();
1424 return;
1425 }
1426}
1427
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001428/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
1429/// function overrides a virtual member function marked 'final', according to
1430/// C++0x [class.virtual]p3.
1431bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1432 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001433 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001434 return false;
1435
1436 Diag(New->getLocation(), diag::err_final_function_overridden)
1437 << New->getDeclName();
1438 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1439 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001440}
1441
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001442/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1443/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001444/// bitfield width if there is one, 'InitExpr' specifies the initializer if
1445/// one has been parsed, and 'HasDeferredInit' is true if an initializer is
1446/// present but parsing it has been deferred.
John McCalld226f652010-08-21 09:40:31 +00001447Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001448Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001449 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001450 Expr *BW, const VirtSpecifiers &VS,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001451 bool HasDeferredInit) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001452 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001453 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1454 DeclarationName Name = NameInfo.getName();
1455 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001456
1457 // For anonymous bitfields, the location should point to the type.
1458 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001459 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001460
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001461 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001462
John McCall4bde1e12010-06-04 08:34:12 +00001463 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001464 assert(!DS.isFriendSpecified());
1465
Richard Smith1ab0d902011-06-25 02:28:38 +00001466 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001467
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001468 // C++ 9.2p6: A member shall not be declared to have automatic storage
1469 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001470 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1471 // data members and cannot be applied to names declared const or static,
1472 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001473 switch (DS.getStorageClassSpec()) {
1474 case DeclSpec::SCS_unspecified:
1475 case DeclSpec::SCS_typedef:
1476 case DeclSpec::SCS_static:
1477 // FALL THROUGH.
1478 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001479 case DeclSpec::SCS_mutable:
1480 if (isFunc) {
1481 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001482 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001483 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001484 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Sebastian Redla11f42f2008-11-17 23:24:37 +00001486 // FIXME: It would be nicer if the keyword was ignored only for this
1487 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001488 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001489 }
1490 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001491 default:
1492 if (DS.getStorageClassSpecLoc().isValid())
1493 Diag(DS.getStorageClassSpecLoc(),
1494 diag::err_storageclass_invalid_for_member);
1495 else
1496 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1497 D.getMutableDeclSpec().ClearStorageClassSpecs();
1498 }
1499
Sebastian Redl669d5d72008-11-14 23:42:31 +00001500 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1501 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001502 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001503
1504 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001505 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001506 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001507
1508 // Data members must have identifiers for names.
1509 if (Name.getNameKind() != DeclarationName::Identifier) {
1510 Diag(Loc, diag::err_bad_variable_name)
1511 << Name;
1512 return 0;
1513 }
Douglas Gregor922fff22010-10-13 22:19:53 +00001514
Douglas Gregorf2503652011-09-21 14:40:46 +00001515 IdentifierInfo *II = Name.getAsIdentifierInfo();
1516
1517 // Member field could not be with "template" keyword.
1518 // So TemplateParameterLists should be empty in this case.
1519 if (TemplateParameterLists.size()) {
1520 TemplateParameterList* TemplateParams = TemplateParameterLists.get()[0];
1521 if (TemplateParams->size()) {
1522 // There is no such thing as a member field template.
1523 Diag(D.getIdentifierLoc(), diag::err_template_member)
1524 << II
1525 << SourceRange(TemplateParams->getTemplateLoc(),
1526 TemplateParams->getRAngleLoc());
1527 } else {
1528 // There is an extraneous 'template<>' for this member.
1529 Diag(TemplateParams->getTemplateLoc(),
1530 diag::err_template_member_noparams)
1531 << II
1532 << SourceRange(TemplateParams->getTemplateLoc(),
1533 TemplateParams->getRAngleLoc());
1534 }
1535 return 0;
1536 }
1537
Douglas Gregor922fff22010-10-13 22:19:53 +00001538 if (SS.isSet() && !SS.isInvalid()) {
1539 // The user provided a superfluous scope specifier inside a class
1540 // definition:
1541 //
1542 // class X {
1543 // int X::member;
1544 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001545 if (DeclContext *DC = computeDeclContext(SS, false))
1546 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001547 else
1548 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1549 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001550
Douglas Gregor922fff22010-10-13 22:19:53 +00001551 SS.clear();
1552 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001553
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001554 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smith7a614d82011-06-11 17:19:42 +00001555 HasDeferredInit, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001556 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001557 } else {
Richard Smith7a614d82011-06-11 17:19:42 +00001558 assert(!HasDeferredInit);
1559
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001560 Member = HandleDeclarator(S, D, move(TemplateParameterLists));
Chris Lattner6f8ce142009-03-05 23:03:49 +00001561 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001562 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001563 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001564
1565 // Non-instance-fields can't have a bitfield.
1566 if (BitWidth) {
1567 if (Member->isInvalidDecl()) {
1568 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001569 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001570 // C++ 9.6p3: A bit-field shall not be a static member.
1571 // "static member 'A' cannot be a bit-field"
1572 Diag(Loc, diag::err_static_not_bitfield)
1573 << Name << BitWidth->getSourceRange();
1574 } else if (isa<TypedefDecl>(Member)) {
1575 // "typedef member 'x' cannot be a bit-field"
1576 Diag(Loc, diag::err_typedef_not_bitfield)
1577 << Name << BitWidth->getSourceRange();
1578 } else {
1579 // A function typedef ("typedef int f(); f a;").
1580 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1581 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001582 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001583 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001584 }
Mike Stump1eb44332009-09-09 15:08:12 +00001585
Chris Lattner8b963ef2009-03-05 23:01:03 +00001586 BitWidth = 0;
1587 Member->setInvalidDecl();
1588 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001589
1590 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001591
Douglas Gregor37b372b2009-08-20 22:52:58 +00001592 // If we have declared a member function template, set the access of the
1593 // templated declaration as well.
1594 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1595 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001596 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001597
Anders Carlssonaae5af22011-01-20 04:34:22 +00001598 if (VS.isOverrideSpecified()) {
1599 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1600 if (!MD || !MD->isVirtual()) {
1601 Diag(Member->getLocStart(),
1602 diag::override_keyword_only_allowed_on_virtual_member_functions)
1603 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001604 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001605 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001606 }
1607 if (VS.isFinalSpecified()) {
1608 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1609 if (!MD || !MD->isVirtual()) {
1610 Diag(Member->getLocStart(),
1611 diag::override_keyword_only_allowed_on_virtual_member_functions)
1612 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001613 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001614 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001615 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001616
Douglas Gregorf5251602011-03-08 17:10:18 +00001617 if (VS.getLastLocation().isValid()) {
1618 // Update the end location of a method that has a virt-specifiers.
1619 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1620 MD->setRangeEnd(VS.getLastLocation());
1621 }
1622
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001623 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001624
Douglas Gregor10bd3682008-11-17 22:58:34 +00001625 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001626
John McCallb25b2952011-02-15 07:12:36 +00001627 if (isInstField)
Douglas Gregor44b43212008-12-11 16:49:14 +00001628 FieldCollector->Add(cast<FieldDecl>(Member));
John McCalld226f652010-08-21 09:40:31 +00001629 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001630}
1631
Richard Smith7a614d82011-06-11 17:19:42 +00001632/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001633/// in-class initializer for a non-static C++ class member, and after
1634/// instantiating an in-class initializer in a class template. Such actions
1635/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001636void
1637Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation EqualLoc,
1638 Expr *InitExpr) {
1639 FieldDecl *FD = cast<FieldDecl>(D);
1640
1641 if (!InitExpr) {
1642 FD->setInvalidDecl();
1643 FD->removeInClassInitializer();
1644 return;
1645 }
1646
Peter Collingbournefef21892011-10-23 18:59:44 +00001647 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1648 FD->setInvalidDecl();
1649 FD->removeInClassInitializer();
1650 return;
1651 }
1652
Richard Smith7a614d82011-06-11 17:19:42 +00001653 ExprResult Init = InitExpr;
1654 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001655 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001656 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001657 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1658 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001659 Expr **Inits = &InitExpr;
1660 unsigned NumInits = 1;
1661 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
1662 InitializationKind Kind = EqualLoc.isInvalid()
1663 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
1664 : InitializationKind::CreateCopy(InitExpr->getLocStart(), EqualLoc);
1665 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1666 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001667 if (Init.isInvalid()) {
1668 FD->setInvalidDecl();
1669 return;
1670 }
1671
1672 CheckImplicitConversions(Init.get(), EqualLoc);
1673 }
1674
1675 // C++0x [class.base.init]p7:
1676 // The initialization of each base and member constitutes a
1677 // full-expression.
1678 Init = MaybeCreateExprWithCleanups(Init);
1679 if (Init.isInvalid()) {
1680 FD->setInvalidDecl();
1681 return;
1682 }
1683
1684 InitExpr = Init.release();
1685
1686 FD->setInClassInitializer(InitExpr);
1687}
1688
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001689/// \brief Find the direct and/or virtual base specifiers that
1690/// correspond to the given base type, for use in base initialization
1691/// within a constructor.
1692static bool FindBaseInitializer(Sema &SemaRef,
1693 CXXRecordDecl *ClassDecl,
1694 QualType BaseType,
1695 const CXXBaseSpecifier *&DirectBaseSpec,
1696 const CXXBaseSpecifier *&VirtualBaseSpec) {
1697 // First, check for a direct base class.
1698 DirectBaseSpec = 0;
1699 for (CXXRecordDecl::base_class_const_iterator Base
1700 = ClassDecl->bases_begin();
1701 Base != ClassDecl->bases_end(); ++Base) {
1702 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1703 // We found a direct base of this type. That's what we're
1704 // initializing.
1705 DirectBaseSpec = &*Base;
1706 break;
1707 }
1708 }
1709
1710 // Check for a virtual base class.
1711 // FIXME: We might be able to short-circuit this if we know in advance that
1712 // there are no virtual bases.
1713 VirtualBaseSpec = 0;
1714 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1715 // We haven't found a base yet; search the class hierarchy for a
1716 // virtual base class.
1717 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1718 /*DetectVirtual=*/false);
1719 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1720 BaseType, Paths)) {
1721 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1722 Path != Paths.end(); ++Path) {
1723 if (Path->back().Base->isVirtual()) {
1724 VirtualBaseSpec = Path->back().Base;
1725 break;
1726 }
1727 }
1728 }
1729 }
1730
1731 return DirectBaseSpec || VirtualBaseSpec;
1732}
1733
Sebastian Redl6df65482011-09-24 17:48:25 +00001734/// \brief Handle a C++ member initializer using braced-init-list syntax.
1735MemInitResult
1736Sema::ActOnMemInitializer(Decl *ConstructorD,
1737 Scope *S,
1738 CXXScopeSpec &SS,
1739 IdentifierInfo *MemberOrBase,
1740 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001741 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001742 SourceLocation IdLoc,
1743 Expr *InitList,
1744 SourceLocation EllipsisLoc) {
1745 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001746 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001747 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001748}
1749
1750/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001751MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001752Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001753 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001754 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001755 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001756 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001757 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001758 SourceLocation IdLoc,
1759 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001760 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001761 SourceLocation RParenLoc,
1762 SourceLocation EllipsisLoc) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001763 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1764 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001765 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001766 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001767}
1768
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001769namespace {
1770
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001771// Callback to only accept typo corrections that can be a valid C++ member
1772// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001773class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1774 public:
1775 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1776 : ClassDecl(ClassDecl) {}
1777
1778 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1779 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1780 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1781 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1782 else
1783 return isa<TypeDecl>(ND);
1784 }
1785 return false;
1786 }
1787
1788 private:
1789 CXXRecordDecl *ClassDecl;
1790};
1791
1792}
1793
Sebastian Redl6df65482011-09-24 17:48:25 +00001794/// \brief Handle a C++ member initializer.
1795MemInitResult
1796Sema::BuildMemInitializer(Decl *ConstructorD,
1797 Scope *S,
1798 CXXScopeSpec &SS,
1799 IdentifierInfo *MemberOrBase,
1800 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001801 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001802 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001803 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001804 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001805 if (!ConstructorD)
1806 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001808 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001809
1810 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001811 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001812 if (!Constructor) {
1813 // The user wrote a constructor initializer on a function that is
1814 // not a C++ constructor. Ignore the error for now, because we may
1815 // have more member initializers coming; we'll diagnose it just
1816 // once in ActOnMemInitializers.
1817 return true;
1818 }
1819
1820 CXXRecordDecl *ClassDecl = Constructor->getParent();
1821
1822 // C++ [class.base.init]p2:
1823 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001824 // constructor's class and, if not found in that scope, are looked
1825 // up in the scope containing the constructor's definition.
1826 // [Note: if the constructor's class contains a member with the
1827 // same name as a direct or virtual base class of the class, a
1828 // mem-initializer-id naming the member or base class and composed
1829 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001830 // mem-initializer-id for the hidden base class may be specified
1831 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001832 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001833 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001834 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001835 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001836 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001837 ValueDecl *Member;
1838 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1839 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001840 if (EllipsisLoc.isValid())
1841 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001842 << MemberOrBase
1843 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001844
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001845 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001846 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001847 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001848 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001849 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001850 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001851 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001852
1853 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001854 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001855 } else if (DS.getTypeSpecType() == TST_decltype) {
1856 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001857 } else {
1858 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1859 LookupParsedName(R, S, &SS);
1860
1861 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1862 if (!TyD) {
1863 if (R.isAmbiguous()) return true;
1864
John McCallfd225442010-04-09 19:01:14 +00001865 // We don't want access-control diagnostics here.
1866 R.suppressDiagnostics();
1867
Douglas Gregor7a886e12010-01-19 06:46:48 +00001868 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1869 bool NotUnknownSpecialization = false;
1870 DeclContext *DC = computeDeclContext(SS, false);
1871 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1872 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1873
1874 if (!NotUnknownSpecialization) {
1875 // When the scope specifier can refer to a member of an unknown
1876 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001877 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1878 SS.getWithLocInContext(Context),
1879 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001880 if (BaseType.isNull())
1881 return true;
1882
Douglas Gregor7a886e12010-01-19 06:46:48 +00001883 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001884 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001885 }
1886 }
1887
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001888 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001889 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001890 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001891 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001892 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001893 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001894 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1895 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001896 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001897 // We have found a non-static data member with a similar
1898 // name to what was typed; complain and initialize that
1899 // member.
1900 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1901 << MemberOrBase << true << CorrectedQuotedStr
1902 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1903 Diag(Member->getLocation(), diag::note_previous_decl)
1904 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001905
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001906 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001907 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001908 const CXXBaseSpecifier *DirectBaseSpec;
1909 const CXXBaseSpecifier *VirtualBaseSpec;
1910 if (FindBaseInitializer(*this, ClassDecl,
1911 Context.getTypeDeclType(Type),
1912 DirectBaseSpec, VirtualBaseSpec)) {
1913 // We have found a direct or virtual base class with a
1914 // similar name to what was typed; complain and initialize
1915 // that base class.
1916 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001917 << MemberOrBase << false << CorrectedQuotedStr
1918 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001919
1920 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1921 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001922 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001923 diag::note_base_class_specified_here)
1924 << BaseSpec->getType()
1925 << BaseSpec->getSourceRange();
1926
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001927 TyD = Type;
1928 }
1929 }
1930 }
1931
Douglas Gregor7a886e12010-01-19 06:46:48 +00001932 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001933 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001934 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001935 return true;
1936 }
John McCall2b194412009-12-21 10:41:20 +00001937 }
1938
Douglas Gregor7a886e12010-01-19 06:46:48 +00001939 if (BaseType.isNull()) {
1940 BaseType = Context.getTypeDeclType(TyD);
1941 if (SS.isSet()) {
1942 NestedNameSpecifier *Qualifier =
1943 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001944
Douglas Gregor7a886e12010-01-19 06:46:48 +00001945 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001946 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001947 }
John McCall2b194412009-12-21 10:41:20 +00001948 }
1949 }
Mike Stump1eb44332009-09-09 15:08:12 +00001950
John McCalla93c9342009-12-07 02:54:59 +00001951 if (!TInfo)
1952 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001953
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001954 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001955}
1956
Chandler Carruth81c64772011-09-03 01:14:15 +00001957/// Checks a member initializer expression for cases where reference (or
1958/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00001959static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
1960 Expr *Init,
1961 SourceLocation IdLoc) {
1962 QualType MemberTy = Member->getType();
1963
1964 // We only handle pointers and references currently.
1965 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
1966 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
1967 return;
1968
1969 const bool IsPointer = MemberTy->isPointerType();
1970 if (IsPointer) {
1971 if (const UnaryOperator *Op
1972 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
1973 // The only case we're worried about with pointers requires taking the
1974 // address.
1975 if (Op->getOpcode() != UO_AddrOf)
1976 return;
1977
1978 Init = Op->getSubExpr();
1979 } else {
1980 // We only handle address-of expression initializers for pointers.
1981 return;
1982 }
1983 }
1984
Chandler Carruthbf3380a2011-09-03 02:21:57 +00001985 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
1986 // Taking the address of a temporary will be diagnosed as a hard error.
1987 if (IsPointer)
1988 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00001989
Chandler Carruthbf3380a2011-09-03 02:21:57 +00001990 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
1991 << Member << Init->getSourceRange();
1992 } else if (const DeclRefExpr *DRE
1993 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
1994 // We only warn when referring to a non-reference parameter declaration.
1995 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
1996 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00001997 return;
1998
1999 S.Diag(Init->getExprLoc(),
2000 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2001 : diag::warn_bind_ref_member_to_parameter)
2002 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002003 } else {
2004 // Other initializers are fine.
2005 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002006 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002007
2008 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2009 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002010}
2011
John McCallb4190042009-11-04 23:02:40 +00002012/// Checks an initializer expression for use of uninitialized fields, such as
2013/// containing the field that is being initialized. Returns true if there is an
2014/// uninitialized field was used an updates the SourceLocation parameter; false
2015/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00002016static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichet00eb3f92010-12-04 09:14:42 +00002017 const ValueDecl *LhsField,
Nick Lewycky43ad1822010-06-15 07:32:55 +00002018 SourceLocation *L) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002019 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
2020
Nick Lewycky43ad1822010-06-15 07:32:55 +00002021 if (isa<CallExpr>(S)) {
2022 // Do not descend into function calls or constructors, as the use
2023 // of an uninitialized field may be valid. One would have to inspect
2024 // the contents of the function/ctor to determine if it is safe or not.
2025 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
2026 // may be safe, depending on what the function/ctor does.
2027 return false;
2028 }
2029 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
2030 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002031
2032 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
2033 // The member expression points to a static data member.
2034 assert(VD->isStaticDataMember() &&
2035 "Member points to non-static data member!");
Nick Lewyckyedd59112010-10-06 18:37:39 +00002036 (void)VD;
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002037 return false;
2038 }
2039
2040 if (isa<EnumConstantDecl>(RhsField)) {
2041 // The member expression points to an enum.
2042 return false;
2043 }
2044
John McCallb4190042009-11-04 23:02:40 +00002045 if (RhsField == LhsField) {
2046 // Initializing a field with itself. Throw a warning.
2047 // But wait; there are exceptions!
2048 // Exception #1: The field may not belong to this record.
2049 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00002050 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00002051 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
2052 // Even though the field matches, it does not belong to this record.
2053 return false;
2054 }
2055 // None of the exceptions triggered; return true to indicate an
2056 // uninitialized field was used.
2057 *L = ME->getMemberLoc();
2058 return true;
2059 }
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002060 } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
Argyrios Kyrtzidisff8819b2010-09-21 10:47:20 +00002061 // sizeof/alignof doesn't reference contents, do not warn.
2062 return false;
2063 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
2064 // address-of doesn't reference contents (the pointer may be dereferenced
2065 // in the same expression but it would be rare; and weird).
2066 if (UOE->getOpcode() == UO_AddrOf)
2067 return false;
John McCallb4190042009-11-04 23:02:40 +00002068 }
John McCall7502c1d2011-02-13 04:07:26 +00002069 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewycky43ad1822010-06-15 07:32:55 +00002070 if (!*it) {
2071 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00002072 continue;
2073 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002074 if (InitExprContainsUninitializedFields(*it, LhsField, L))
2075 return true;
John McCallb4190042009-11-04 23:02:40 +00002076 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00002077 return false;
John McCallb4190042009-11-04 23:02:40 +00002078}
2079
John McCallf312b1e2010-08-26 23:41:50 +00002080MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002081Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002082 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002083 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2084 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2085 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002086 "Member must be a FieldDecl or IndirectFieldDecl");
2087
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002088 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002089 return true;
2090
Douglas Gregor464b2f02010-11-05 22:21:31 +00002091 if (Member->isInvalidDecl())
2092 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002093
John McCallb4190042009-11-04 23:02:40 +00002094 // Diagnose value-uses of fields to initialize themselves, e.g.
2095 // foo(foo)
2096 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002097 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002098 Expr **Args;
2099 unsigned NumArgs;
2100 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2101 Args = ParenList->getExprs();
2102 NumArgs = ParenList->getNumExprs();
2103 } else {
2104 InitListExpr *InitList = cast<InitListExpr>(Init);
2105 Args = InitList->getInits();
2106 NumArgs = InitList->getNumInits();
2107 }
2108 for (unsigned i = 0; i < NumArgs; ++i) {
John McCallb4190042009-11-04 23:02:40 +00002109 SourceLocation L;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002110 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
John McCallb4190042009-11-04 23:02:40 +00002111 // FIXME: Return true in the case when other fields are used before being
2112 // uninitialized. For example, let this field be the i'th field. When
2113 // initializing the i'th field, throw a warning if any of the >= i'th
2114 // fields are used, as they are not yet initialized.
2115 // Right now we are only handling the case where the i'th field uses
2116 // itself in its initializer.
2117 Diag(L, diag::warn_field_is_uninit);
2118 }
2119 }
2120
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002121 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002122
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002123 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002124 // Can't check initialization for a member of dependent type or when
2125 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002126 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002127 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002128 bool InitList = false;
2129 if (isa<InitListExpr>(Init)) {
2130 InitList = true;
2131 Args = &Init;
2132 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002133
2134 if (isStdInitializerList(Member->getType(), 0)) {
2135 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2136 << /*at end of ctor*/1 << InitRange;
2137 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002138 }
2139
Chandler Carruth894aed92010-12-06 09:23:57 +00002140 // Initialize the member.
2141 InitializedEntity MemberEntity =
2142 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2143 : InitializedEntity::InitializeMember(IndirectMember, 0);
2144 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002145 InitList ? InitializationKind::CreateDirectList(IdLoc)
2146 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2147 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002148
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002149 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2150 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
2151 MultiExprArg(*this, Args, NumArgs),
2152 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002153 if (MemberInit.isInvalid())
2154 return true;
2155
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002156 CheckImplicitConversions(MemberInit.get(),
2157 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002158
2159 // C++0x [class.base.init]p7:
2160 // The initialization of each base and member constitutes a
2161 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002162 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002163 if (MemberInit.isInvalid())
2164 return true;
2165
2166 // If we are in a dependent context, template instantiation will
2167 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002168 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002169 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2170 // of the information that we have about the member
2171 // initializer. However, deconstructing the ASTs is a dicey process,
2172 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002173 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002174 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002175 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002176 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002177 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2178 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002179 }
2180
Chandler Carruth894aed92010-12-06 09:23:57 +00002181 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002182 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2183 InitRange.getBegin(), Init,
2184 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002185 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002186 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2187 InitRange.getBegin(), Init,
2188 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002189 }
Eli Friedman59c04372009-07-29 19:44:27 +00002190}
2191
John McCallf312b1e2010-08-26 23:41:50 +00002192MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002193Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002194 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002195 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002196 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002197 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002198 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002199 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002200
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002201 bool InitList = true;
2202 Expr **Args = &Init;
2203 unsigned NumArgs = 1;
2204 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2205 InitList = false;
2206 Args = ParenList->getExprs();
2207 NumArgs = ParenList->getNumExprs();
2208 }
2209
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002210 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002211 // Initialize the object.
2212 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2213 QualType(ClassDecl->getTypeForDecl(), 0));
2214 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002215 InitList ? InitializationKind::CreateDirectList(NameLoc)
2216 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2217 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002218 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2219 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
2220 MultiExprArg(*this, Args,NumArgs),
2221 0);
Sean Hunt41717662011-02-26 19:13:13 +00002222 if (DelegationInit.isInvalid())
2223 return true;
2224
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002225 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2226 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002227
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002228 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002229
2230 // C++0x [class.base.init]p7:
2231 // The initialization of each base and member constitutes a
2232 // full-expression.
2233 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2234 if (DelegationInit.isInvalid())
2235 return true;
2236
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002237 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002238 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002239 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002240}
2241
2242MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002243Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002244 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002245 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002246 SourceLocation BaseLoc
2247 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002248
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002249 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2250 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2251 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2252
2253 // C++ [class.base.init]p2:
2254 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002255 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002256 // of that class, the mem-initializer is ill-formed. A
2257 // mem-initializer-list can initialize a base class using any
2258 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002259 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002260
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002261 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002262 if (EllipsisLoc.isValid()) {
2263 // This is a pack expansion.
2264 if (!BaseType->containsUnexpandedParameterPack()) {
2265 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002266 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002267
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002268 EllipsisLoc = SourceLocation();
2269 }
2270 } else {
2271 // Check for any unexpanded parameter packs.
2272 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2273 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002274
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002275 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002276 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002277 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002278
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002279 // Check for direct and virtual base classes.
2280 const CXXBaseSpecifier *DirectBaseSpec = 0;
2281 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2282 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002283 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2284 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002285 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002286
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002287 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2288 VirtualBaseSpec);
2289
2290 // C++ [base.class.init]p2:
2291 // Unless the mem-initializer-id names a nonstatic data member of the
2292 // constructor's class or a direct or virtual base of that class, the
2293 // mem-initializer is ill-formed.
2294 if (!DirectBaseSpec && !VirtualBaseSpec) {
2295 // If the class has any dependent bases, then it's possible that
2296 // one of those types will resolve to the same type as
2297 // BaseType. Therefore, just treat this as a dependent base
2298 // class initialization. FIXME: Should we try to check the
2299 // initialization anyway? It seems odd.
2300 if (ClassDecl->hasAnyDependentBases())
2301 Dependent = true;
2302 else
2303 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2304 << BaseType << Context.getTypeDeclType(ClassDecl)
2305 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2306 }
2307 }
2308
2309 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002310 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002311
Sebastian Redl6df65482011-09-24 17:48:25 +00002312 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2313 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002314 InitRange.getBegin(), Init,
2315 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002316 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002317
2318 // C++ [base.class.init]p2:
2319 // If a mem-initializer-id is ambiguous because it designates both
2320 // a direct non-virtual base class and an inherited virtual base
2321 // class, the mem-initializer is ill-formed.
2322 if (DirectBaseSpec && VirtualBaseSpec)
2323 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002324 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002325
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002326 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002327 if (!BaseSpec)
2328 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2329
2330 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002331 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002332 Expr **Args = &Init;
2333 unsigned NumArgs = 1;
2334 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002335 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002336 Args = ParenList->getExprs();
2337 NumArgs = ParenList->getNumExprs();
2338 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002339
2340 InitializedEntity BaseEntity =
2341 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2342 InitializationKind Kind =
2343 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2344 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2345 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002346 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2347 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
2348 MultiExprArg(*this, Args, NumArgs),
2349 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002350 if (BaseInit.isInvalid())
2351 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002352
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002353 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002354
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002355 // C++0x [class.base.init]p7:
2356 // The initialization of each base and member constitutes a
2357 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002358 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002359 if (BaseInit.isInvalid())
2360 return true;
2361
2362 // If we are in a dependent context, template instantiation will
2363 // perform this type-checking again. Just save the arguments that we
2364 // received in a ParenListExpr.
2365 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2366 // of the information that we have about the base
2367 // initializer. However, deconstructing the ASTs is a dicey process,
2368 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002369 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002370 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002371
Sean Huntcbb67482011-01-08 20:30:50 +00002372 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002373 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002374 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002375 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002376 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002377}
2378
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002379// Create a static_cast\<T&&>(expr).
2380static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2381 QualType ExprType = E->getType();
2382 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2383 SourceLocation ExprLoc = E->getLocStart();
2384 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2385 TargetType, ExprLoc);
2386
2387 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2388 SourceRange(ExprLoc, ExprLoc),
2389 E->getSourceRange()).take();
2390}
2391
Anders Carlssone5ef7402010-04-23 03:10:23 +00002392/// ImplicitInitializerKind - How an implicit base or member initializer should
2393/// initialize its base or member.
2394enum ImplicitInitializerKind {
2395 IIK_Default,
2396 IIK_Copy,
2397 IIK_Move
2398};
2399
Anders Carlssondefefd22010-04-23 02:00:02 +00002400static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002401BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002402 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002403 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002404 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002405 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002406 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002407 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2408 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002409
John McCall60d7b3a2010-08-24 06:29:42 +00002410 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002411
2412 switch (ImplicitInitKind) {
2413 case IIK_Default: {
2414 InitializationKind InitKind
2415 = InitializationKind::CreateDefault(Constructor->getLocation());
2416 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2417 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002418 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002419 break;
2420 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002421
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002422 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002423 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002424 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002425 ParmVarDecl *Param = Constructor->getParamDecl(0);
2426 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002427
Anders Carlssone5ef7402010-04-23 03:10:23 +00002428 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002429 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002430 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002431 Constructor->getLocation(), ParamType,
2432 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002433
Eli Friedman5f2987c2012-02-02 03:46:19 +00002434 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2435
Anders Carlssonc7957502010-04-24 22:02:54 +00002436 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002437 QualType ArgTy =
2438 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2439 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002440
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002441 if (Moving) {
2442 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2443 }
2444
John McCallf871d0c2010-08-07 06:22:56 +00002445 CXXCastPath BasePath;
2446 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002447 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2448 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002449 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002450 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002451
Anders Carlssone5ef7402010-04-23 03:10:23 +00002452 InitializationKind InitKind
2453 = InitializationKind::CreateDirect(Constructor->getLocation(),
2454 SourceLocation(), SourceLocation());
2455 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2456 &CopyCtorArg, 1);
2457 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002458 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002459 break;
2460 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002461 }
John McCall9ae2f072010-08-23 23:25:46 +00002462
Douglas Gregor53c374f2010-12-07 00:41:46 +00002463 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002464 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002465 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002466
Anders Carlssondefefd22010-04-23 02:00:02 +00002467 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002468 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002469 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2470 SourceLocation()),
2471 BaseSpec->isVirtual(),
2472 SourceLocation(),
2473 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002474 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002475 SourceLocation());
2476
Anders Carlssondefefd22010-04-23 02:00:02 +00002477 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002478}
2479
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002480static bool RefersToRValueRef(Expr *MemRef) {
2481 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2482 return Referenced->getType()->isRValueReferenceType();
2483}
2484
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002485static bool
2486BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002487 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002488 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002489 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002490 if (Field->isInvalidDecl())
2491 return true;
2492
Chandler Carruthf186b542010-06-29 23:50:44 +00002493 SourceLocation Loc = Constructor->getLocation();
2494
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002495 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2496 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002497 ParmVarDecl *Param = Constructor->getParamDecl(0);
2498 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002499
2500 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002501 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2502 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002503
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002504 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002505 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002506 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002507 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002508
Eli Friedman5f2987c2012-02-02 03:46:19 +00002509 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2510
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002511 if (Moving) {
2512 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2513 }
2514
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002515 // Build a reference to this field within the parameter.
2516 CXXScopeSpec SS;
2517 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2518 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002519 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2520 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002521 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002522 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002523 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002524 ParamType, Loc,
2525 /*IsArrow=*/false,
2526 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002527 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002528 /*FirstQualifierInScope=*/0,
2529 MemberLookup,
2530 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002531 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002532 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002533
2534 // C++11 [class.copy]p15:
2535 // - if a member m has rvalue reference type T&&, it is direct-initialized
2536 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002537 if (RefersToRValueRef(CtorArg.get())) {
2538 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002539 }
2540
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002541 // When the field we are copying is an array, create index variables for
2542 // each dimension of the array. We use these index variables to subscript
2543 // the source array, and other clients (e.g., CodeGen) will perform the
2544 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002545 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002546 QualType BaseType = Field->getType();
2547 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002548 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002549 while (const ConstantArrayType *Array
2550 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002551 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002552 // Create the iteration variable for this array index.
2553 IdentifierInfo *IterationVarName = 0;
2554 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002555 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002556 llvm::raw_svector_ostream OS(Str);
2557 OS << "__i" << IndexVariables.size();
2558 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2559 }
2560 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002561 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002562 IterationVarName, SizeType,
2563 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002564 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002565 IndexVariables.push_back(IterationVar);
2566
2567 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002568 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002569 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002570 assert(!IterationVarRef.isInvalid() &&
2571 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002572 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2573 assert(!IterationVarRef.isInvalid() &&
2574 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002575
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002576 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002577 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002578 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002579 Loc);
2580 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002581 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002582
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002583 BaseType = Array->getElementType();
2584 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002585
2586 // The array subscript expression is an lvalue, which is wrong for moving.
2587 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002588 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002589
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002590 // Construct the entity that we will be initializing. For an array, this
2591 // will be first element in the array, which may require several levels
2592 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002593 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002594 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002595 if (Indirect)
2596 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2597 else
2598 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002599 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2600 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2601 0,
2602 Entities.back()));
2603
2604 // Direct-initialize to use the copy constructor.
2605 InitializationKind InitKind =
2606 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2607
Sebastian Redl74e611a2011-09-04 18:14:28 +00002608 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002609 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002610 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002611
John McCall60d7b3a2010-08-24 06:29:42 +00002612 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002613 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002614 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002615 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002616 if (MemberInit.isInvalid())
2617 return true;
2618
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002619 if (Indirect) {
2620 assert(IndexVariables.size() == 0 &&
2621 "Indirect field improperly initialized");
2622 CXXMemberInit
2623 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2624 Loc, Loc,
2625 MemberInit.takeAs<Expr>(),
2626 Loc);
2627 } else
2628 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2629 Loc, MemberInit.takeAs<Expr>(),
2630 Loc,
2631 IndexVariables.data(),
2632 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002633 return false;
2634 }
2635
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002636 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2637
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002638 QualType FieldBaseElementType =
2639 SemaRef.Context.getBaseElementType(Field->getType());
2640
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002641 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002642 InitializedEntity InitEntity
2643 = Indirect? InitializedEntity::InitializeMember(Indirect)
2644 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002645 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002646 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002647
2648 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002649 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002650 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002651
Douglas Gregor53c374f2010-12-07 00:41:46 +00002652 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002653 if (MemberInit.isInvalid())
2654 return true;
2655
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002656 if (Indirect)
2657 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2658 Indirect, Loc,
2659 Loc,
2660 MemberInit.get(),
2661 Loc);
2662 else
2663 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2664 Field, Loc, Loc,
2665 MemberInit.get(),
2666 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002667 return false;
2668 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002669
Sean Hunt1f2f3842011-05-17 00:19:05 +00002670 if (!Field->getParent()->isUnion()) {
2671 if (FieldBaseElementType->isReferenceType()) {
2672 SemaRef.Diag(Constructor->getLocation(),
2673 diag::err_uninitialized_member_in_ctor)
2674 << (int)Constructor->isImplicit()
2675 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2676 << 0 << Field->getDeclName();
2677 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2678 return true;
2679 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002680
Sean Hunt1f2f3842011-05-17 00:19:05 +00002681 if (FieldBaseElementType.isConstQualified()) {
2682 SemaRef.Diag(Constructor->getLocation(),
2683 diag::err_uninitialized_member_in_ctor)
2684 << (int)Constructor->isImplicit()
2685 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2686 << 1 << Field->getDeclName();
2687 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2688 return true;
2689 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002690 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002691
David Blaikie4e4d0842012-03-11 07:00:24 +00002692 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002693 FieldBaseElementType->isObjCRetainableType() &&
2694 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2695 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
2696 // Instant objects:
2697 // Default-initialize Objective-C pointers to NULL.
2698 CXXMemberInit
2699 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2700 Loc, Loc,
2701 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2702 Loc);
2703 return false;
2704 }
2705
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002706 // Nothing to initialize.
2707 CXXMemberInit = 0;
2708 return false;
2709}
John McCallf1860e52010-05-20 23:23:51 +00002710
2711namespace {
2712struct BaseAndFieldInfo {
2713 Sema &S;
2714 CXXConstructorDecl *Ctor;
2715 bool AnyErrorsInInits;
2716 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002717 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002718 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002719
2720 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2721 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002722 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2723 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002724 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002725 else if (Generated && Ctor->isMoveConstructor())
2726 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002727 else
2728 IIK = IIK_Default;
2729 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002730
2731 bool isImplicitCopyOrMove() const {
2732 switch (IIK) {
2733 case IIK_Copy:
2734 case IIK_Move:
2735 return true;
2736
2737 case IIK_Default:
2738 return false;
2739 }
David Blaikie30263482012-01-20 21:50:17 +00002740
2741 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002742 }
John McCallf1860e52010-05-20 23:23:51 +00002743};
2744}
2745
Richard Smitha4950662011-09-19 13:34:43 +00002746/// \brief Determine whether the given indirect field declaration is somewhere
2747/// within an anonymous union.
2748static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2749 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2750 CEnd = F->chain_end();
2751 C != CEnd; ++C)
2752 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2753 if (Record->isUnion())
2754 return true;
2755
2756 return false;
2757}
2758
Douglas Gregorddb21472011-11-02 23:04:16 +00002759/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2760/// array type.
2761static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2762 if (T->isIncompleteArrayType())
2763 return true;
2764
2765 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2766 if (!ArrayT->getSize())
2767 return true;
2768
2769 T = ArrayT->getElementType();
2770 }
2771
2772 return false;
2773}
2774
Richard Smith7a614d82011-06-11 17:19:42 +00002775static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002776 FieldDecl *Field,
2777 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002778
Chandler Carruthe861c602010-06-30 02:59:29 +00002779 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00002780 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002781 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00002782 return false;
2783 }
2784
Richard Smith7a614d82011-06-11 17:19:42 +00002785 // C++0x [class.base.init]p8: if the entity is a non-static data member that
2786 // has a brace-or-equal-initializer, the entity is initialized as specified
2787 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002788 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002789 CXXCtorInitializer *Init;
2790 if (Indirect)
2791 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2792 SourceLocation(),
2793 SourceLocation(), 0,
2794 SourceLocation());
2795 else
2796 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2797 SourceLocation(),
2798 SourceLocation(), 0,
2799 SourceLocation());
2800 Info.AllToInit.push_back(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00002801 return false;
2802 }
2803
Richard Smithc115f632011-09-18 11:14:50 +00002804 // Don't build an implicit initializer for union members if none was
2805 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00002806 if (Field->getParent()->isUnion() ||
2807 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00002808 return false;
2809
Douglas Gregorddb21472011-11-02 23:04:16 +00002810 // Don't initialize incomplete or zero-length arrays.
2811 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2812 return false;
2813
John McCallf1860e52010-05-20 23:23:51 +00002814 // Don't try to build an implicit initializer if there were semantic
2815 // errors in any of the initializers (and therefore we might be
2816 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00002817 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00002818 return false;
2819
Sean Huntcbb67482011-01-08 20:30:50 +00002820 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002821 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2822 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00002823 return true;
John McCallf1860e52010-05-20 23:23:51 +00002824
Francois Pichet00eb3f92010-12-04 09:14:42 +00002825 if (Init)
2826 Info.AllToInit.push_back(Init);
2827
John McCallf1860e52010-05-20 23:23:51 +00002828 return false;
2829}
Sean Hunt059ce0d2011-05-01 07:04:31 +00002830
2831bool
2832Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2833 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00002834 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00002835 Constructor->setNumCtorInitializers(1);
2836 CXXCtorInitializer **initializer =
2837 new (Context) CXXCtorInitializer*[1];
2838 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2839 Constructor->setCtorInitializers(initializer);
2840
Sean Huntb76af9c2011-05-03 23:05:34 +00002841 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002842 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00002843 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2844 }
2845
Sean Huntc1598702011-05-05 00:05:47 +00002846 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00002847
Sean Hunt059ce0d2011-05-01 07:04:31 +00002848 return false;
2849}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002850
John McCallb77115d2011-06-17 00:18:42 +00002851bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2852 CXXCtorInitializer **Initializers,
2853 unsigned NumInitializers,
2854 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00002855 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002856 // Just store the initializers as written, they will be checked during
2857 // instantiation.
2858 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002859 Constructor->setNumCtorInitializers(NumInitializers);
2860 CXXCtorInitializer **baseOrMemberInitializers =
2861 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002862 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002863 NumInitializers * sizeof(CXXCtorInitializer*));
2864 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002865 }
2866
2867 return false;
2868 }
2869
John McCallf1860e52010-05-20 23:23:51 +00002870 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002871
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002872 // We need to build the initializer AST according to order of construction
2873 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002874 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002875 if (!ClassDecl)
2876 return true;
2877
Eli Friedman80c30da2009-11-09 19:20:36 +00002878 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002879
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002880 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002881 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002882
2883 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002884 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002885 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002886 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002887 }
2888
Anders Carlsson711f34a2010-04-21 19:52:01 +00002889 // Keep track of the direct virtual bases.
2890 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2891 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2892 E = ClassDecl->bases_end(); I != E; ++I) {
2893 if (I->isVirtual())
2894 DirectVBases.insert(I);
2895 }
2896
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002897 // Push virtual bases before others.
2898 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2899 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2900
Sean Huntcbb67482011-01-08 20:30:50 +00002901 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002902 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2903 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002904 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002905 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002906 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002907 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002908 VBase, IsInheritedVirtualBase,
2909 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002910 HadError = true;
2911 continue;
2912 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002913
John McCallf1860e52010-05-20 23:23:51 +00002914 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002915 }
2916 }
Mike Stump1eb44332009-09-09 15:08:12 +00002917
John McCallf1860e52010-05-20 23:23:51 +00002918 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002919 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2920 E = ClassDecl->bases_end(); Base != E; ++Base) {
2921 // Virtuals are in the virtual base list and already constructed.
2922 if (Base->isVirtual())
2923 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002924
Sean Huntcbb67482011-01-08 20:30:50 +00002925 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002926 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2927 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002928 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00002929 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002930 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002931 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00002932 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002933 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002934 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002935 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00002936
John McCallf1860e52010-05-20 23:23:51 +00002937 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002938 }
2939 }
Mike Stump1eb44332009-09-09 15:08:12 +00002940
John McCallf1860e52010-05-20 23:23:51 +00002941 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002942 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
2943 MemEnd = ClassDecl->decls_end();
2944 Mem != MemEnd; ++Mem) {
2945 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00002946 // C++ [class.bit]p2:
2947 // A declaration for a bit-field that omits the identifier declares an
2948 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
2949 // initialized.
2950 if (F->isUnnamedBitfield())
2951 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00002952
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002953 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002954 // handle anonymous struct/union fields based on their individual
2955 // indirect fields.
2956 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
2957 continue;
2958
2959 if (CollectFieldInitializer(*this, Info, F))
2960 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002961 continue;
2962 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002963
2964 // Beyond this point, we only consider default initialization.
2965 if (Info.IIK != IIK_Default)
2966 continue;
2967
2968 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
2969 if (F->getType()->isIncompleteArrayType()) {
2970 assert(ClassDecl->hasFlexibleArrayMember() &&
2971 "Incomplete array type is not valid");
2972 continue;
2973 }
2974
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002975 // Initialize each field of an anonymous struct individually.
2976 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
2977 HadError = true;
2978
2979 continue;
2980 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002981 }
Mike Stump1eb44332009-09-09 15:08:12 +00002982
John McCallf1860e52010-05-20 23:23:51 +00002983 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002984 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002985 Constructor->setNumCtorInitializers(NumInitializers);
2986 CXXCtorInitializer **baseOrMemberInitializers =
2987 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00002988 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00002989 NumInitializers * sizeof(CXXCtorInitializer*));
2990 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00002991
John McCallef027fe2010-03-16 21:39:52 +00002992 // Constructors implicitly reference the base and member
2993 // destructors.
2994 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
2995 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002996 }
Eli Friedman80c30da2009-11-09 19:20:36 +00002997
2998 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002999}
3000
Eli Friedman6347f422009-07-21 19:28:10 +00003001static void *GetKeyForTopLevelField(FieldDecl *Field) {
3002 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003003 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003004 if (RT->getDecl()->isAnonymousStructOrUnion())
3005 return static_cast<void *>(RT->getDecl());
3006 }
3007 return static_cast<void *>(Field);
3008}
3009
Anders Carlssonea356fb2010-04-02 05:42:15 +00003010static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003011 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003012}
3013
Anders Carlssonea356fb2010-04-02 05:42:15 +00003014static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003015 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003016 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003017 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003018
Eli Friedman6347f422009-07-21 19:28:10 +00003019 // For fields injected into the class via declaration of an anonymous union,
3020 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003021 FieldDecl *Field = Member->getAnyMember();
3022
John McCall3c3ccdb2010-04-10 09:28:51 +00003023 // If the field is a member of an anonymous struct or union, our key
3024 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003025 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003026 if (RD->isAnonymousStructOrUnion()) {
3027 while (true) {
3028 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3029 if (Parent->isAnonymousStructOrUnion())
3030 RD = Parent;
3031 else
3032 break;
3033 }
3034
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003035 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003036 }
Mike Stump1eb44332009-09-09 15:08:12 +00003037
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003038 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003039}
3040
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003041static void
3042DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003043 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003044 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003045 unsigned NumInits) {
3046 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003047 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003048
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003049 // Don't check initializers order unless the warning is enabled at the
3050 // location of at least one initializer.
3051 bool ShouldCheckOrder = false;
3052 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003053 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003054 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3055 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003056 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003057 ShouldCheckOrder = true;
3058 break;
3059 }
3060 }
3061 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003062 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003063
John McCalld6ca8da2010-04-10 07:37:23 +00003064 // Build the list of bases and members in the order that they'll
3065 // actually be initialized. The explicit initializers should be in
3066 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003067 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003068
Anders Carlsson071d6102010-04-02 03:38:04 +00003069 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3070
John McCalld6ca8da2010-04-10 07:37:23 +00003071 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003072 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003073 ClassDecl->vbases_begin(),
3074 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003075 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003076
John McCalld6ca8da2010-04-10 07:37:23 +00003077 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003078 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003079 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003080 if (Base->isVirtual())
3081 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003082 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003083 }
Mike Stump1eb44332009-09-09 15:08:12 +00003084
John McCalld6ca8da2010-04-10 07:37:23 +00003085 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003086 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003087 E = ClassDecl->field_end(); Field != E; ++Field) {
3088 if (Field->isUnnamedBitfield())
3089 continue;
3090
David Blaikie262bc182012-04-30 02:36:29 +00003091 IdealInitKeys.push_back(GetKeyForTopLevelField(&*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003092 }
3093
John McCalld6ca8da2010-04-10 07:37:23 +00003094 unsigned NumIdealInits = IdealInitKeys.size();
3095 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003096
Sean Huntcbb67482011-01-08 20:30:50 +00003097 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003098 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003099 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003100 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003101
3102 // Scan forward to try to find this initializer in the idealized
3103 // initializers list.
3104 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3105 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003106 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003107
3108 // If we didn't find this initializer, it must be because we
3109 // scanned past it on a previous iteration. That can only
3110 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003111 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003112 Sema::SemaDiagnosticBuilder D =
3113 SemaRef.Diag(PrevInit->getSourceLocation(),
3114 diag::warn_initializer_out_of_order);
3115
Francois Pichet00eb3f92010-12-04 09:14:42 +00003116 if (PrevInit->isAnyMemberInitializer())
3117 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003118 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003119 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003120
Francois Pichet00eb3f92010-12-04 09:14:42 +00003121 if (Init->isAnyMemberInitializer())
3122 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003123 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003124 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003125
3126 // Move back to the initializer's location in the ideal list.
3127 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3128 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003129 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003130
3131 assert(IdealIndex != NumIdealInits &&
3132 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003133 }
John McCalld6ca8da2010-04-10 07:37:23 +00003134
3135 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003136 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003137}
3138
John McCall3c3ccdb2010-04-10 09:28:51 +00003139namespace {
3140bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003141 CXXCtorInitializer *Init,
3142 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003143 if (!PrevInit) {
3144 PrevInit = Init;
3145 return false;
3146 }
3147
3148 if (FieldDecl *Field = Init->getMember())
3149 S.Diag(Init->getSourceLocation(),
3150 diag::err_multiple_mem_initialization)
3151 << Field->getDeclName()
3152 << Init->getSourceRange();
3153 else {
John McCallf4c73712011-01-19 06:33:43 +00003154 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003155 assert(BaseClass && "neither field nor base");
3156 S.Diag(Init->getSourceLocation(),
3157 diag::err_multiple_base_initialization)
3158 << QualType(BaseClass, 0)
3159 << Init->getSourceRange();
3160 }
3161 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3162 << 0 << PrevInit->getSourceRange();
3163
3164 return true;
3165}
3166
Sean Huntcbb67482011-01-08 20:30:50 +00003167typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003168typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3169
3170bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003171 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003172 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003173 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003174 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003175 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003176
3177 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003178 if (Parent->isUnion()) {
3179 UnionEntry &En = Unions[Parent];
3180 if (En.first && En.first != Child) {
3181 S.Diag(Init->getSourceLocation(),
3182 diag::err_multiple_mem_union_initialization)
3183 << Field->getDeclName()
3184 << Init->getSourceRange();
3185 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3186 << 0 << En.second->getSourceRange();
3187 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003188 }
3189 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003190 En.first = Child;
3191 En.second = Init;
3192 }
David Blaikie6fe29652011-11-17 06:01:57 +00003193 if (!Parent->isAnonymousStructOrUnion())
3194 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003195 }
3196
3197 Child = Parent;
3198 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003199 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003200
3201 return false;
3202}
3203}
3204
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003205/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003206void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003207 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003208 CXXCtorInitializer **meminits,
3209 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003210 bool AnyErrors) {
3211 if (!ConstructorDecl)
3212 return;
3213
3214 AdjustDeclIfTemplate(ConstructorDecl);
3215
3216 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003217 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003218
3219 if (!Constructor) {
3220 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3221 return;
3222 }
3223
Sean Huntcbb67482011-01-08 20:30:50 +00003224 CXXCtorInitializer **MemInits =
3225 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003226
3227 // Mapping for the duplicate initializers check.
3228 // For member initializers, this is keyed with a FieldDecl*.
3229 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003230 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003231
3232 // Mapping for the inconsistent anonymous-union initializers check.
3233 RedundantUnionMap MemberUnions;
3234
Anders Carlssonea356fb2010-04-02 05:42:15 +00003235 bool HadError = false;
3236 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003237 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003238
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003239 // Set the source order index.
3240 Init->setSourceOrder(i);
3241
Francois Pichet00eb3f92010-12-04 09:14:42 +00003242 if (Init->isAnyMemberInitializer()) {
3243 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003244 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3245 CheckRedundantUnionInit(*this, Init, MemberUnions))
3246 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003247 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003248 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3249 if (CheckRedundantInit(*this, Init, Members[Key]))
3250 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003251 } else {
3252 assert(Init->isDelegatingInitializer());
3253 // This must be the only initializer
3254 if (i != 0 || NumMemInits > 1) {
3255 Diag(MemInits[0]->getSourceLocation(),
3256 diag::err_delegating_initializer_alone)
3257 << MemInits[0]->getSourceRange();
3258 HadError = true;
Sean Hunt059ce0d2011-05-01 07:04:31 +00003259 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003260 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003261 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003262 // Return immediately as the initializer is set.
3263 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003264 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003265 }
3266
Anders Carlssonea356fb2010-04-02 05:42:15 +00003267 if (HadError)
3268 return;
3269
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003270 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003271
Sean Huntcbb67482011-01-08 20:30:50 +00003272 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003273}
3274
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003275void
John McCallef027fe2010-03-16 21:39:52 +00003276Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3277 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003278 // Ignore dependent contexts. Also ignore unions, since their members never
3279 // have destructors implicitly called.
3280 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003281 return;
John McCall58e6f342010-03-16 05:22:47 +00003282
3283 // FIXME: all the access-control diagnostics are positioned on the
3284 // field/base declaration. That's probably good; that said, the
3285 // user might reasonably want to know why the destructor is being
3286 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003287
Anders Carlsson9f853df2009-11-17 04:44:12 +00003288 // Non-static data members.
3289 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3290 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie262bc182012-04-30 02:36:29 +00003291 FieldDecl *Field = &*I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003292 if (Field->isInvalidDecl())
3293 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003294
3295 // Don't destroy incomplete or zero-length arrays.
3296 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3297 continue;
3298
Anders Carlsson9f853df2009-11-17 04:44:12 +00003299 QualType FieldType = Context.getBaseElementType(Field->getType());
3300
3301 const RecordType* RT = FieldType->getAs<RecordType>();
3302 if (!RT)
3303 continue;
3304
3305 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003306 if (FieldClassDecl->isInvalidDecl())
3307 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003308 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003309 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003310 // The destructor for an implicit anonymous union member is never invoked.
3311 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3312 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003313
Douglas Gregordb89f282010-07-01 22:47:18 +00003314 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003315 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003316 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003317 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003318 << Field->getDeclName()
3319 << FieldType);
3320
Eli Friedman5f2987c2012-02-02 03:46:19 +00003321 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003322 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003323 }
3324
John McCall58e6f342010-03-16 05:22:47 +00003325 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3326
Anders Carlsson9f853df2009-11-17 04:44:12 +00003327 // Bases.
3328 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3329 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003330 // Bases are always records in a well-formed non-dependent class.
3331 const RecordType *RT = Base->getType()->getAs<RecordType>();
3332
3333 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003334 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003335 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003336
John McCall58e6f342010-03-16 05:22:47 +00003337 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003338 // If our base class is invalid, we probably can't get its dtor anyway.
3339 if (BaseClassDecl->isInvalidDecl())
3340 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003341 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003342 continue;
John McCall58e6f342010-03-16 05:22:47 +00003343
Douglas Gregordb89f282010-07-01 22:47:18 +00003344 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003345 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003346
3347 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003348 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003349 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003350 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003351 << Base->getSourceRange(),
3352 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003353
Eli Friedman5f2987c2012-02-02 03:46:19 +00003354 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003355 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003356 }
3357
3358 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003359 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3360 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003361
3362 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003363 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003364
3365 // Ignore direct virtual bases.
3366 if (DirectVirtualBases.count(RT))
3367 continue;
3368
John McCall58e6f342010-03-16 05:22:47 +00003369 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003370 // If our base class is invalid, we probably can't get its dtor anyway.
3371 if (BaseClassDecl->isInvalidDecl())
3372 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003373 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003374 continue;
John McCall58e6f342010-03-16 05:22:47 +00003375
Douglas Gregordb89f282010-07-01 22:47:18 +00003376 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003377 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003378 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003379 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003380 << VBase->getType(),
3381 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003382
Eli Friedman5f2987c2012-02-02 03:46:19 +00003383 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003384 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003385 }
3386}
3387
John McCalld226f652010-08-21 09:40:31 +00003388void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003389 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003390 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003391
Mike Stump1eb44332009-09-09 15:08:12 +00003392 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003393 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003394 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003395}
3396
Mike Stump1eb44332009-09-09 15:08:12 +00003397bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003398 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003399 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3400 unsigned DiagID;
3401 AbstractDiagSelID SelID;
3402
3403 public:
3404 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3405 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3406
3407 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
3408 if (SelID == -1)
3409 S.Diag(Loc, DiagID) << T;
3410 else
3411 S.Diag(Loc, DiagID) << SelID << T;
3412 }
3413 } Diagnoser(DiagID, SelID);
3414
3415 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003416}
3417
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003418bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003419 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003420 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003421 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003422
Anders Carlsson11f21a02009-03-23 19:10:31 +00003423 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003424 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003425
Ted Kremenek6217b802009-07-29 21:53:49 +00003426 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003427 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003428 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003429 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003430
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003431 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003432 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003433 }
Mike Stump1eb44332009-09-09 15:08:12 +00003434
Ted Kremenek6217b802009-07-29 21:53:49 +00003435 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003436 if (!RT)
3437 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003438
John McCall86ff3082010-02-04 22:26:26 +00003439 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003440
John McCall94c3b562010-08-18 09:41:07 +00003441 // We can't answer whether something is abstract until it has a
3442 // definition. If it's currently being defined, we'll walk back
3443 // over all the declarations when we have a full definition.
3444 const CXXRecordDecl *Def = RD->getDefinition();
3445 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003446 return false;
3447
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003448 if (!RD->isAbstract())
3449 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003450
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003451 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003452 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003453
John McCall94c3b562010-08-18 09:41:07 +00003454 return true;
3455}
3456
3457void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3458 // Check if we've already emitted the list of pure virtual functions
3459 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003460 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003461 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003462
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003463 CXXFinalOverriderMap FinalOverriders;
3464 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003465
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003466 // Keep a set of seen pure methods so we won't diagnose the same method
3467 // more than once.
3468 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3469
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003470 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3471 MEnd = FinalOverriders.end();
3472 M != MEnd;
3473 ++M) {
3474 for (OverridingMethods::iterator SO = M->second.begin(),
3475 SOEnd = M->second.end();
3476 SO != SOEnd; ++SO) {
3477 // C++ [class.abstract]p4:
3478 // A class is abstract if it contains or inherits at least one
3479 // pure virtual function for which the final overrider is pure
3480 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003481
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003482 //
3483 if (SO->second.size() != 1)
3484 continue;
3485
3486 if (!SO->second.front().Method->isPure())
3487 continue;
3488
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003489 if (!SeenPureMethods.insert(SO->second.front().Method))
3490 continue;
3491
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003492 Diag(SO->second.front().Method->getLocation(),
3493 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003494 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003495 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003496 }
3497
3498 if (!PureVirtualClassDiagSet)
3499 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3500 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003501}
3502
Anders Carlsson8211eff2009-03-24 01:19:16 +00003503namespace {
John McCall94c3b562010-08-18 09:41:07 +00003504struct AbstractUsageInfo {
3505 Sema &S;
3506 CXXRecordDecl *Record;
3507 CanQualType AbstractType;
3508 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003509
John McCall94c3b562010-08-18 09:41:07 +00003510 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3511 : S(S), Record(Record),
3512 AbstractType(S.Context.getCanonicalType(
3513 S.Context.getTypeDeclType(Record))),
3514 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003515
John McCall94c3b562010-08-18 09:41:07 +00003516 void DiagnoseAbstractType() {
3517 if (Invalid) return;
3518 S.DiagnoseAbstractType(Record);
3519 Invalid = true;
3520 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003521
John McCall94c3b562010-08-18 09:41:07 +00003522 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3523};
3524
3525struct CheckAbstractUsage {
3526 AbstractUsageInfo &Info;
3527 const NamedDecl *Ctx;
3528
3529 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3530 : Info(Info), Ctx(Ctx) {}
3531
3532 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3533 switch (TL.getTypeLocClass()) {
3534#define ABSTRACT_TYPELOC(CLASS, PARENT)
3535#define TYPELOC(CLASS, PARENT) \
3536 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3537#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003538 }
John McCall94c3b562010-08-18 09:41:07 +00003539 }
Mike Stump1eb44332009-09-09 15:08:12 +00003540
John McCall94c3b562010-08-18 09:41:07 +00003541 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3542 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3543 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003544 if (!TL.getArg(I))
3545 continue;
3546
John McCall94c3b562010-08-18 09:41:07 +00003547 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3548 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003549 }
John McCall94c3b562010-08-18 09:41:07 +00003550 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003551
John McCall94c3b562010-08-18 09:41:07 +00003552 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3553 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3554 }
Mike Stump1eb44332009-09-09 15:08:12 +00003555
John McCall94c3b562010-08-18 09:41:07 +00003556 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3557 // Visit the type parameters from a permissive context.
3558 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3559 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3560 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3561 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3562 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3563 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003564 }
John McCall94c3b562010-08-18 09:41:07 +00003565 }
Mike Stump1eb44332009-09-09 15:08:12 +00003566
John McCall94c3b562010-08-18 09:41:07 +00003567 // Visit pointee types from a permissive context.
3568#define CheckPolymorphic(Type) \
3569 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3570 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3571 }
3572 CheckPolymorphic(PointerTypeLoc)
3573 CheckPolymorphic(ReferenceTypeLoc)
3574 CheckPolymorphic(MemberPointerTypeLoc)
3575 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003576 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003577
John McCall94c3b562010-08-18 09:41:07 +00003578 /// Handle all the types we haven't given a more specific
3579 /// implementation for above.
3580 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3581 // Every other kind of type that we haven't called out already
3582 // that has an inner type is either (1) sugar or (2) contains that
3583 // inner type in some way as a subobject.
3584 if (TypeLoc Next = TL.getNextTypeLoc())
3585 return Visit(Next, Sel);
3586
3587 // If there's no inner type and we're in a permissive context,
3588 // don't diagnose.
3589 if (Sel == Sema::AbstractNone) return;
3590
3591 // Check whether the type matches the abstract type.
3592 QualType T = TL.getType();
3593 if (T->isArrayType()) {
3594 Sel = Sema::AbstractArrayType;
3595 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003596 }
John McCall94c3b562010-08-18 09:41:07 +00003597 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3598 if (CT != Info.AbstractType) return;
3599
3600 // It matched; do some magic.
3601 if (Sel == Sema::AbstractArrayType) {
3602 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3603 << T << TL.getSourceRange();
3604 } else {
3605 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3606 << Sel << T << TL.getSourceRange();
3607 }
3608 Info.DiagnoseAbstractType();
3609 }
3610};
3611
3612void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3613 Sema::AbstractDiagSelID Sel) {
3614 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3615}
3616
3617}
3618
3619/// Check for invalid uses of an abstract type in a method declaration.
3620static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3621 CXXMethodDecl *MD) {
3622 // No need to do the check on definitions, which require that
3623 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003624 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003625 return;
3626
3627 // For safety's sake, just ignore it if we don't have type source
3628 // information. This should never happen for non-implicit methods,
3629 // but...
3630 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3631 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3632}
3633
3634/// Check for invalid uses of an abstract type within a class definition.
3635static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3636 CXXRecordDecl *RD) {
3637 for (CXXRecordDecl::decl_iterator
3638 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3639 Decl *D = *I;
3640 if (D->isImplicit()) continue;
3641
3642 // Methods and method templates.
3643 if (isa<CXXMethodDecl>(D)) {
3644 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3645 } else if (isa<FunctionTemplateDecl>(D)) {
3646 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3647 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3648
3649 // Fields and static variables.
3650 } else if (isa<FieldDecl>(D)) {
3651 FieldDecl *FD = cast<FieldDecl>(D);
3652 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3653 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3654 } else if (isa<VarDecl>(D)) {
3655 VarDecl *VD = cast<VarDecl>(D);
3656 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3657 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3658
3659 // Nested classes and class templates.
3660 } else if (isa<CXXRecordDecl>(D)) {
3661 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3662 } else if (isa<ClassTemplateDecl>(D)) {
3663 CheckAbstractClassUsage(Info,
3664 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3665 }
3666 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003667}
3668
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003669/// \brief Perform semantic checks on a class definition that has been
3670/// completing, introducing implicitly-declared members, checking for
3671/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003672void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003673 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003674 return;
3675
John McCall94c3b562010-08-18 09:41:07 +00003676 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3677 AbstractUsageInfo Info(*this, Record);
3678 CheckAbstractClassUsage(Info, Record);
3679 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003680
3681 // If this is not an aggregate type and has no user-declared constructor,
3682 // complain about any non-static data members of reference or const scalar
3683 // type, since they will never get initializers.
3684 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003685 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3686 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003687 bool Complained = false;
3688 for (RecordDecl::field_iterator F = Record->field_begin(),
3689 FEnd = Record->field_end();
3690 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003691 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003692 continue;
3693
Douglas Gregor325e5932010-04-15 00:00:53 +00003694 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003695 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003696 if (!Complained) {
3697 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3698 << Record->getTagKind() << Record;
3699 Complained = true;
3700 }
3701
3702 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3703 << F->getType()->isReferenceType()
3704 << F->getDeclName();
3705 }
3706 }
3707 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003708
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003709 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003710 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003711
3712 if (Record->getIdentifier()) {
3713 // C++ [class.mem]p13:
3714 // If T is the name of a class, then each of the following shall have a
3715 // name different from T:
3716 // - every member of every anonymous union that is a member of class T.
3717 //
3718 // C++ [class.mem]p14:
3719 // In addition, if class T has a user-declared constructor (12.1), every
3720 // non-static data member of class T shall have a name different from T.
3721 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003722 R.first != R.second; ++R.first) {
3723 NamedDecl *D = *R.first;
3724 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3725 isa<IndirectFieldDecl>(D)) {
3726 Diag(D->getLocation(), diag::err_member_name_of_class)
3727 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003728 break;
3729 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003730 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003731 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003732
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003733 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003734 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003735 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003736 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003737 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3738 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3739 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003740
3741 // See if a method overloads virtual methods in a base
3742 /// class without overriding any.
3743 if (!Record->isDependentType()) {
3744 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3745 MEnd = Record->method_end();
3746 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003747 if (!M->isStatic())
3748 DiagnoseHiddenVirtualMethods(Record, &*M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003749 }
3750 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003751
Richard Smith9f569cc2011-10-01 02:31:28 +00003752 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3753 // function that is not a constructor declares that member function to be
3754 // const. [...] The class of which that function is a member shall be
3755 // a literal type.
3756 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003757 // If the class has virtual bases, any constexpr members will already have
3758 // been diagnosed by the checks performed on the member declaration, so
3759 // suppress this (less useful) diagnostic.
3760 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3761 !Record->isLiteral() && !Record->getNumVBases()) {
3762 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3763 MEnd = Record->method_end();
3764 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003765 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003766 switch (Record->getTemplateSpecializationKind()) {
3767 case TSK_ImplicitInstantiation:
3768 case TSK_ExplicitInstantiationDeclaration:
3769 case TSK_ExplicitInstantiationDefinition:
3770 // If a template instantiates to a non-literal type, but its members
3771 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003772 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003773 continue;
3774
3775 case TSK_Undeclared:
3776 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003777 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003778 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003779 break;
3780 }
3781
3782 // Only produce one error per class.
3783 break;
3784 }
3785 }
3786 }
3787
Sebastian Redlf677ea32011-02-05 19:23:19 +00003788 // Declare inherited constructors. We do this eagerly here because:
3789 // - The standard requires an eager diagnostic for conflicting inherited
3790 // constructors from different classes.
3791 // - The lazy declaration of the other implicit constructors is so as to not
3792 // waste space and performance on classes that are not meant to be
3793 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3794 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003795 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003796
Sean Hunteb88ae52011-05-23 21:07:59 +00003797 if (!Record->isDependentType())
3798 CheckExplicitlyDefaultedMethods(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003799}
3800
3801void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003802 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3803 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003804 MI != ME; ++MI)
3805 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
3806 CheckExplicitlyDefaultedSpecialMember(&*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003807}
3808
Richard Smith3003e1d2012-05-15 04:39:51 +00003809void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
3810 CXXRecordDecl *RD = MD->getParent();
3811 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00003812
Richard Smith3003e1d2012-05-15 04:39:51 +00003813 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
3814 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00003815
3816 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00003817 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00003818 bool First = MD == MD->getCanonicalDecl();
3819
3820 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00003821
3822 // C++11 [dcl.fct.def.default]p1:
3823 // A function that is explicitly defaulted shall
3824 // -- be a special member function (checked elsewhere),
3825 // -- have the same type (except for ref-qualifiers, and except that a
3826 // copy operation can take a non-const reference) as an implicit
3827 // declaration, and
3828 // -- not have default arguments.
3829 unsigned ExpectedParams = 1;
3830 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
3831 ExpectedParams = 0;
3832 if (MD->getNumParams() != ExpectedParams) {
3833 // This also checks for default arguments: a copy or move constructor with a
3834 // default argument is classified as a default constructor, and assignment
3835 // operations and destructors can't have default arguments.
3836 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
3837 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00003838 HadError = true;
3839 }
3840
Richard Smith3003e1d2012-05-15 04:39:51 +00003841 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00003842
Richard Smith3003e1d2012-05-15 04:39:51 +00003843 // Compute implicit exception specification, argument constness, constexpr
3844 // and triviality.
Richard Smithe6975e92012-04-17 00:58:00 +00003845 ImplicitExceptionSpecification Spec(*this);
Richard Smith3003e1d2012-05-15 04:39:51 +00003846 bool Const = false;
3847 bool Constexpr = false;
3848 bool Trivial;
3849 switch (CSM) {
3850 case CXXDefaultConstructor:
3851 Spec = ComputeDefaultedDefaultCtorExceptionSpec(RD);
3852 if (Spec.isDelayed())
3853 // Exception specification depends on some deferred part of the class.
3854 // We'll try again when the class's definition has been fully processed.
3855 return;
3856 Constexpr = RD->defaultedDefaultConstructorIsConstexpr();
3857 Trivial = RD->hasTrivialDefaultConstructor();
3858 break;
3859 case CXXCopyConstructor:
3860 llvm::tie(Spec, Const) =
3861 ComputeDefaultedCopyCtorExceptionSpecAndConst(RD);
3862 Constexpr = RD->defaultedCopyConstructorIsConstexpr();
3863 Trivial = RD->hasTrivialCopyConstructor();
3864 break;
3865 case CXXCopyAssignment:
3866 llvm::tie(Spec, Const) =
3867 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(RD);
3868 Trivial = RD->hasTrivialCopyAssignment();
3869 break;
3870 case CXXMoveConstructor:
3871 Spec = ComputeDefaultedMoveCtorExceptionSpec(RD);
3872 Constexpr = RD->defaultedMoveConstructorIsConstexpr();
3873 Trivial = RD->hasTrivialMoveConstructor();
3874 break;
3875 case CXXMoveAssignment:
3876 Spec = ComputeDefaultedMoveAssignmentExceptionSpec(RD);
3877 Trivial = RD->hasTrivialMoveAssignment();
3878 break;
3879 case CXXDestructor:
3880 Spec = ComputeDefaultedDtorExceptionSpec(RD);
3881 Trivial = RD->hasTrivialDestructor();
3882 break;
3883 case CXXInvalid:
3884 llvm_unreachable("non-special member explicitly defaulted!");
3885 }
Sean Hunt2b188082011-05-14 05:23:28 +00003886
Richard Smith3003e1d2012-05-15 04:39:51 +00003887 QualType ReturnType = Context.VoidTy;
3888 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
3889 // Check for return type matching.
3890 ReturnType = Type->getResultType();
3891 QualType ExpectedReturnType =
3892 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
3893 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
3894 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
3895 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
3896 HadError = true;
3897 }
3898
3899 // A defaulted special member cannot have cv-qualifiers.
3900 if (Type->getTypeQuals()) {
3901 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
3902 << (CSM == CXXMoveAssignment);
3903 HadError = true;
3904 }
3905 }
3906
3907 // Check for parameter type matching.
3908 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
3909 if (ExpectedParams && ArgType->isReferenceType()) {
3910 // Argument must be reference to possibly-const T.
3911 QualType ReferentType = ArgType->getPointeeType();
3912
3913 if (ReferentType.isVolatileQualified()) {
3914 Diag(MD->getLocation(),
3915 diag::err_defaulted_special_member_volatile_param) << CSM;
3916 HadError = true;
3917 }
3918
3919 if (ReferentType.isConstQualified() && !Const) {
3920 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
3921 Diag(MD->getLocation(),
3922 diag::err_defaulted_special_member_copy_const_param)
3923 << (CSM == CXXCopyAssignment);
3924 // FIXME: Explain why this special member can't be const.
3925 } else {
3926 Diag(MD->getLocation(),
3927 diag::err_defaulted_special_member_move_const_param)
3928 << (CSM == CXXMoveAssignment);
3929 }
3930 HadError = true;
3931 }
3932
3933 // If a function is explicitly defaulted on its first declaration, it shall
3934 // have the same parameter type as if it had been implicitly declared.
3935 // (Presumably this is to prevent it from being trivial?)
3936 if (!ReferentType.isConstQualified() && Const && First)
3937 Diag(MD->getLocation(),
3938 diag::err_defaulted_special_member_copy_non_const_param)
3939 << (CSM == CXXCopyAssignment);
3940 } else if (ExpectedParams) {
3941 // A copy assignment operator can take its argument by value, but a
3942 // defaulted one cannot.
3943 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00003944 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00003945 HadError = true;
3946 }
Sean Huntbe631222011-05-17 20:44:43 +00003947
Richard Smith3003e1d2012-05-15 04:39:51 +00003948 // Rebuild the type with the implicit exception specification added.
3949 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
3950 Spec.getEPI(EPI);
3951 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
3952 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003953
Richard Smith61802452011-12-22 02:22:31 +00003954 // C++11 [dcl.fct.def.default]p2:
3955 // An explicitly-defaulted function may be declared constexpr only if it
3956 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00003957 // Do not apply this rule to members of class templates, since core issue 1358
3958 // makes such functions always instantiate to constexpr functions. For
3959 // non-constructors, this is checked elsewhere.
3960 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
3961 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
3962 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
3963 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00003964 }
3965 // and may have an explicit exception-specification only if it is compatible
3966 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00003967 if (Type->hasExceptionSpec() &&
3968 CheckEquivalentExceptionSpec(
3969 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
3970 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
3971 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00003972
3973 // If a function is explicitly defaulted on its first declaration,
3974 if (First) {
3975 // -- it is implicitly considered to be constexpr if the implicit
3976 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00003977 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00003978
Richard Smith3003e1d2012-05-15 04:39:51 +00003979 // -- it is implicitly considered to have the same exception-specification
3980 // as if it had been implicitly declared,
3981 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00003982
3983 // Such a function is also trivial if the implicitly-declared function
3984 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00003985 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003986 }
3987
Richard Smith3003e1d2012-05-15 04:39:51 +00003988 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003989 if (First) {
3990 MD->setDeletedAsWritten();
3991 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00003992 // C++11 [dcl.fct.def.default]p4:
3993 // [For a] user-provided explicitly-defaulted function [...] if such a
3994 // function is implicitly defined as deleted, the program is ill-formed.
3995 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
3996 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003997 }
3998 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003999
Richard Smith3003e1d2012-05-15 04:39:51 +00004000 if (HadError)
4001 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004002}
4003
Richard Smith7d5088a2012-02-18 02:02:13 +00004004namespace {
4005struct SpecialMemberDeletionInfo {
4006 Sema &S;
4007 CXXMethodDecl *MD;
4008 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004009 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004010
4011 // Properties of the special member, computed for convenience.
4012 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4013 SourceLocation Loc;
4014
4015 bool AllFieldsAreConst;
4016
4017 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004018 Sema::CXXSpecialMember CSM, bool Diagnose)
4019 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004020 IsConstructor(false), IsAssignment(false), IsMove(false),
4021 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4022 AllFieldsAreConst(true) {
4023 switch (CSM) {
4024 case Sema::CXXDefaultConstructor:
4025 case Sema::CXXCopyConstructor:
4026 IsConstructor = true;
4027 break;
4028 case Sema::CXXMoveConstructor:
4029 IsConstructor = true;
4030 IsMove = true;
4031 break;
4032 case Sema::CXXCopyAssignment:
4033 IsAssignment = true;
4034 break;
4035 case Sema::CXXMoveAssignment:
4036 IsAssignment = true;
4037 IsMove = true;
4038 break;
4039 case Sema::CXXDestructor:
4040 break;
4041 case Sema::CXXInvalid:
4042 llvm_unreachable("invalid special member kind");
4043 }
4044
4045 if (MD->getNumParams()) {
4046 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4047 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4048 }
4049 }
4050
4051 bool inUnion() const { return MD->getParent()->isUnion(); }
4052
4053 /// Look up the corresponding special member in the given class.
4054 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class) {
4055 unsigned TQ = MD->getTypeQualifiers();
4056 return S.LookupSpecialMember(Class, CSM, ConstArg, VolatileArg,
4057 MD->getRefQualifier() == RQ_RValue,
4058 TQ & Qualifiers::Const,
4059 TQ & Qualifiers::Volatile);
4060 }
4061
Richard Smith6c4c36c2012-03-30 20:53:28 +00004062 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004063
Richard Smith6c4c36c2012-03-30 20:53:28 +00004064 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004065 bool shouldDeleteForField(FieldDecl *FD);
4066 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004067
4068 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj);
4069 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4070 Sema::SpecialMemberOverloadResult *SMOR,
4071 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004072
4073 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004074};
4075}
4076
John McCall12d8d802012-04-09 20:53:23 +00004077/// Is the given special member inaccessible when used on the given
4078/// sub-object.
4079bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4080 CXXMethodDecl *target) {
4081 /// If we're operating on a base class, the object type is the
4082 /// type of this special member.
4083 QualType objectTy;
4084 AccessSpecifier access = target->getAccess();;
4085 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4086 objectTy = S.Context.getTypeDeclType(MD->getParent());
4087 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4088
4089 // If we're operating on a field, the object type is the type of the field.
4090 } else {
4091 objectTy = S.Context.getTypeDeclType(target->getParent());
4092 }
4093
4094 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4095}
4096
Richard Smith6c4c36c2012-03-30 20:53:28 +00004097/// Check whether we should delete a special member due to the implicit
4098/// definition containing a call to a special member of a subobject.
4099bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4100 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4101 bool IsDtorCallInCtor) {
4102 CXXMethodDecl *Decl = SMOR->getMethod();
4103 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4104
4105 int DiagKind = -1;
4106
4107 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4108 DiagKind = !Decl ? 0 : 1;
4109 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4110 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004111 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004112 DiagKind = 3;
4113 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4114 !Decl->isTrivial()) {
4115 // A member of a union must have a trivial corresponding special member.
4116 // As a weird special case, a destructor call from a union's constructor
4117 // must be accessible and non-deleted, but need not be trivial. Such a
4118 // destructor is never actually called, but is semantically checked as
4119 // if it were.
4120 DiagKind = 4;
4121 }
4122
4123 if (DiagKind == -1)
4124 return false;
4125
4126 if (Diagnose) {
4127 if (Field) {
4128 S.Diag(Field->getLocation(),
4129 diag::note_deleted_special_member_class_subobject)
4130 << CSM << MD->getParent() << /*IsField*/true
4131 << Field << DiagKind << IsDtorCallInCtor;
4132 } else {
4133 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4134 S.Diag(Base->getLocStart(),
4135 diag::note_deleted_special_member_class_subobject)
4136 << CSM << MD->getParent() << /*IsField*/false
4137 << Base->getType() << DiagKind << IsDtorCallInCtor;
4138 }
4139
4140 if (DiagKind == 1)
4141 S.NoteDeletedFunction(Decl);
4142 // FIXME: Explain inaccessibility if DiagKind == 3.
4143 }
4144
4145 return true;
4146}
4147
Richard Smith9a561d52012-02-26 09:11:52 +00004148/// Check whether we should delete a special member function due to having a
4149/// direct or virtual base class or static data member of class type M.
4150bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith6c4c36c2012-03-30 20:53:28 +00004151 CXXRecordDecl *Class, Subobject Subobj) {
4152 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004153
4154 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004155 // -- any direct or virtual base class, or non-static data member with no
4156 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004157 // either M has no default constructor or overload resolution as applied
4158 // to M's default constructor results in an ambiguity or in a function
4159 // that is deleted or inaccessible
4160 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4161 // -- a direct or virtual base class B that cannot be copied/moved because
4162 // overload resolution, as applied to B's corresponding special member,
4163 // results in an ambiguity or a function that is deleted or inaccessible
4164 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004165 // C++11 [class.dtor]p5:
4166 // -- any direct or virtual base class [...] has a type with a destructor
4167 // that is deleted or inaccessible
4168 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004169 Field && Field->hasInClassInitializer()) &&
4170 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class), false))
4171 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004172
Richard Smith6c4c36c2012-03-30 20:53:28 +00004173 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4174 // -- any direct or virtual base class or non-static data member has a
4175 // type with a destructor that is deleted or inaccessible
4176 if (IsConstructor) {
4177 Sema::SpecialMemberOverloadResult *SMOR =
4178 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4179 false, false, false, false, false);
4180 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4181 return true;
4182 }
4183
Richard Smith9a561d52012-02-26 09:11:52 +00004184 return false;
4185}
4186
4187/// Check whether we should delete a special member function due to the class
4188/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004189bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004190 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
4191 return shouldDeleteForClassSubobject(BaseClass, Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004192}
4193
4194/// Check whether we should delete a special member function due to the class
4195/// having a particular non-static data member.
4196bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4197 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4198 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4199
4200 if (CSM == Sema::CXXDefaultConstructor) {
4201 // For a default constructor, all references must be initialized in-class
4202 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004203 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4204 if (Diagnose)
4205 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4206 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004207 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004208 }
Richard Smith79363f52012-02-27 06:07:25 +00004209 // C++11 [class.ctor]p5: any non-variant non-static data member of
4210 // const-qualified type (or array thereof) with no
4211 // brace-or-equal-initializer does not have a user-provided default
4212 // constructor.
4213 if (!inUnion() && FieldType.isConstQualified() &&
4214 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004215 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4216 if (Diagnose)
4217 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004218 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004219 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004220 }
4221
4222 if (inUnion() && !FieldType.isConstQualified())
4223 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004224 } else if (CSM == Sema::CXXCopyConstructor) {
4225 // For a copy constructor, data members must not be of rvalue reference
4226 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004227 if (FieldType->isRValueReferenceType()) {
4228 if (Diagnose)
4229 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4230 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004231 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004232 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004233 } else if (IsAssignment) {
4234 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004235 if (FieldType->isReferenceType()) {
4236 if (Diagnose)
4237 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4238 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004239 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004240 }
4241 if (!FieldRecord && FieldType.isConstQualified()) {
4242 // C++11 [class.copy]p23:
4243 // -- a non-static data member of const non-class type (or array thereof)
4244 if (Diagnose)
4245 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004246 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004247 return true;
4248 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004249 }
4250
4251 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004252 // Some additional restrictions exist on the variant members.
4253 if (!inUnion() && FieldRecord->isUnion() &&
4254 FieldRecord->isAnonymousStructOrUnion()) {
4255 bool AllVariantFieldsAreConst = true;
4256
Richard Smithdf8dc862012-03-29 19:00:10 +00004257 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004258 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4259 UE = FieldRecord->field_end();
4260 UI != UE; ++UI) {
4261 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004262
4263 if (!UnionFieldType.isConstQualified())
4264 AllVariantFieldsAreConst = false;
4265
Richard Smith9a561d52012-02-26 09:11:52 +00004266 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4267 if (UnionFieldRecord &&
David Blaikie262bc182012-04-30 02:36:29 +00004268 shouldDeleteForClassSubobject(UnionFieldRecord, &*UI))
Richard Smith9a561d52012-02-26 09:11:52 +00004269 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004270 }
4271
4272 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004273 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004274 FieldRecord->field_begin() != FieldRecord->field_end()) {
4275 if (Diagnose)
4276 S.Diag(FieldRecord->getLocation(),
4277 diag::note_deleted_default_ctor_all_const)
4278 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004279 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004280 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004281
Richard Smithdf8dc862012-03-29 19:00:10 +00004282 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004283 // This is technically non-conformant, but sanity demands it.
4284 return false;
4285 }
4286
Richard Smithdf8dc862012-03-29 19:00:10 +00004287 if (shouldDeleteForClassSubobject(FieldRecord, FD))
4288 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004289 }
4290
4291 return false;
4292}
4293
4294/// C++11 [class.ctor] p5:
4295/// A defaulted default constructor for a class X is defined as deleted if
4296/// X is a union and all of its variant members are of const-qualified type.
4297bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004298 // This is a silly definition, because it gives an empty union a deleted
4299 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004300 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4301 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4302 if (Diagnose)
4303 S.Diag(MD->getParent()->getLocation(),
4304 diag::note_deleted_default_ctor_all_const)
4305 << MD->getParent() << /*not anonymous union*/0;
4306 return true;
4307 }
4308 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004309}
4310
4311/// Determine whether a defaulted special member function should be defined as
4312/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4313/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004314bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4315 bool Diagnose) {
Sean Hunte16da072011-10-10 06:18:57 +00004316 assert(!MD->isInvalidDecl());
4317 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004318 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004319 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004320 return false;
4321
Richard Smith7d5088a2012-02-18 02:02:13 +00004322 // C++11 [expr.lambda.prim]p19:
4323 // The closure type associated with a lambda-expression has a
4324 // deleted (8.4.3) default constructor and a deleted copy
4325 // assignment operator.
4326 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004327 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4328 if (Diagnose)
4329 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004330 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004331 }
4332
Richard Smith5bdaac52012-04-02 20:59:25 +00004333 // For an anonymous struct or union, the copy and assignment special members
4334 // will never be used, so skip the check. For an anonymous union declared at
4335 // namespace scope, the constructor and destructor are used.
4336 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4337 RD->isAnonymousStructOrUnion())
4338 return false;
4339
Richard Smith6c4c36c2012-03-30 20:53:28 +00004340 // C++11 [class.copy]p7, p18:
4341 // If the class definition declares a move constructor or move assignment
4342 // operator, an implicitly declared copy constructor or copy assignment
4343 // operator is defined as deleted.
4344 if (MD->isImplicit() &&
4345 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4346 CXXMethodDecl *UserDeclaredMove = 0;
4347
4348 // In Microsoft mode, a user-declared move only causes the deletion of the
4349 // corresponding copy operation, not both copy operations.
4350 if (RD->hasUserDeclaredMoveConstructor() &&
4351 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4352 if (!Diagnose) return true;
4353 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004354 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004355 } else if (RD->hasUserDeclaredMoveAssignment() &&
4356 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4357 if (!Diagnose) return true;
4358 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004359 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004360 }
4361
4362 if (UserDeclaredMove) {
4363 Diag(UserDeclaredMove->getLocation(),
4364 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004365 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004366 << UserDeclaredMove->isMoveAssignmentOperator();
4367 return true;
4368 }
4369 }
Sean Hunte16da072011-10-10 06:18:57 +00004370
Richard Smith5bdaac52012-04-02 20:59:25 +00004371 // Do access control from the special member function
4372 ContextRAII MethodContext(*this, MD);
4373
Richard Smith9a561d52012-02-26 09:11:52 +00004374 // C++11 [class.dtor]p5:
4375 // -- for a virtual destructor, lookup of the non-array deallocation function
4376 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004377 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004378 FunctionDecl *OperatorDelete = 0;
4379 DeclarationName Name =
4380 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4381 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004382 OperatorDelete, false)) {
4383 if (Diagnose)
4384 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004385 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004386 }
Richard Smith9a561d52012-02-26 09:11:52 +00004387 }
4388
Richard Smith6c4c36c2012-03-30 20:53:28 +00004389 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004390
Sean Huntcdee3fe2011-05-11 22:34:38 +00004391 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004392 BE = RD->bases_end(); BI != BE; ++BI)
4393 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004394 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004395 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004396
4397 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004398 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004399 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004400 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004401
4402 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004403 FE = RD->field_end(); FI != FE; ++FI)
4404 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie262bc182012-04-30 02:36:29 +00004405 SMI.shouldDeleteForField(&*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004406 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004407
Richard Smith7d5088a2012-02-18 02:02:13 +00004408 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004409 return true;
4410
4411 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004412}
4413
4414/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004415namespace {
4416 struct FindHiddenVirtualMethodData {
4417 Sema *S;
4418 CXXMethodDecl *Method;
4419 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004420 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004421 };
4422}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004423
4424/// \brief Member lookup function that determines whether a given C++
4425/// method overloads virtual methods in a base class without overriding any,
4426/// to be used with CXXRecordDecl::lookupInBases().
4427static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4428 CXXBasePath &Path,
4429 void *UserData) {
4430 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4431
4432 FindHiddenVirtualMethodData &Data
4433 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4434
4435 DeclarationName Name = Data.Method->getDeclName();
4436 assert(Name.getNameKind() == DeclarationName::Identifier);
4437
4438 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004439 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004440 for (Path.Decls = BaseRecord->lookup(Name);
4441 Path.Decls.first != Path.Decls.second;
4442 ++Path.Decls.first) {
4443 NamedDecl *D = *Path.Decls.first;
4444 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004445 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004446 foundSameNameMethod = true;
4447 // Interested only in hidden virtual methods.
4448 if (!MD->isVirtual())
4449 continue;
4450 // If the method we are checking overrides a method from its base
4451 // don't warn about the other overloaded methods.
4452 if (!Data.S->IsOverload(Data.Method, MD, false))
4453 return true;
4454 // Collect the overload only if its hidden.
4455 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4456 overloadedMethods.push_back(MD);
4457 }
4458 }
4459
4460 if (foundSameNameMethod)
4461 Data.OverloadedMethods.append(overloadedMethods.begin(),
4462 overloadedMethods.end());
4463 return foundSameNameMethod;
4464}
4465
4466/// \brief See if a method overloads virtual methods in a base class without
4467/// overriding any.
4468void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4469 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004470 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004471 return;
4472 if (MD->getDeclName().getNameKind() != DeclarationName::Identifier)
4473 return;
4474
4475 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4476 /*bool RecordPaths=*/false,
4477 /*bool DetectVirtual=*/false);
4478 FindHiddenVirtualMethodData Data;
4479 Data.Method = MD;
4480 Data.S = this;
4481
4482 // Keep the base methods that were overriden or introduced in the subclass
4483 // by 'using' in a set. A base method not in this set is hidden.
4484 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4485 res.first != res.second; ++res.first) {
4486 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4487 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4488 E = MD->end_overridden_methods();
4489 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004490 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004491 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4492 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004493 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004494 }
4495
4496 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4497 !Data.OverloadedMethods.empty()) {
4498 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4499 << MD << (Data.OverloadedMethods.size() > 1);
4500
4501 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4502 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4503 Diag(overloadedMD->getLocation(),
4504 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4505 }
4506 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004507}
4508
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004509void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004510 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004511 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004512 SourceLocation RBrac,
4513 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004514 if (!TagDecl)
4515 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004516
Douglas Gregor42af25f2009-05-11 19:58:34 +00004517 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004518
David Blaikie77b6de02011-09-22 02:58:26 +00004519 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004520 // strict aliasing violation!
4521 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004522 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004523
Douglas Gregor23c94db2010-07-02 17:43:08 +00004524 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004525 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004526}
4527
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004528/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4529/// special functions, such as the default constructor, copy
4530/// constructor, or destructor, to the given C++ class (C++
4531/// [special]p1). This routine can only be executed just before the
4532/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004533void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004534 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004535 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004536
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004537 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004538 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004539
David Blaikie4e4d0842012-03-11 07:00:24 +00004540 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004541 ++ASTContext::NumImplicitMoveConstructors;
4542
Douglas Gregora376d102010-07-02 21:50:04 +00004543 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4544 ++ASTContext::NumImplicitCopyAssignmentOperators;
4545
4546 // If we have a dynamic class, then the copy assignment operator may be
4547 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4548 // it shows up in the right place in the vtable and that we diagnose
4549 // problems with the implicit exception specification.
4550 if (ClassDecl->isDynamicClass())
4551 DeclareImplicitCopyAssignment(ClassDecl);
4552 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004553
Richard Smith1c931be2012-04-02 18:40:40 +00004554 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004555 ++ASTContext::NumImplicitMoveAssignmentOperators;
4556
4557 // Likewise for the move assignment operator.
4558 if (ClassDecl->isDynamicClass())
4559 DeclareImplicitMoveAssignment(ClassDecl);
4560 }
4561
Douglas Gregor4923aa22010-07-02 20:37:36 +00004562 if (!ClassDecl->hasUserDeclaredDestructor()) {
4563 ++ASTContext::NumImplicitDestructors;
4564
4565 // If we have a dynamic class, then the destructor may be virtual, so we
4566 // have to declare the destructor immediately. This ensures that, e.g., it
4567 // shows up in the right place in the vtable and that we diagnose problems
4568 // with the implicit exception specification.
4569 if (ClassDecl->isDynamicClass())
4570 DeclareImplicitDestructor(ClassDecl);
4571 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004572}
4573
Francois Pichet8387e2a2011-04-22 22:18:13 +00004574void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4575 if (!D)
4576 return;
4577
4578 int NumParamList = D->getNumTemplateParameterLists();
4579 for (int i = 0; i < NumParamList; i++) {
4580 TemplateParameterList* Params = D->getTemplateParameterList(i);
4581 for (TemplateParameterList::iterator Param = Params->begin(),
4582 ParamEnd = Params->end();
4583 Param != ParamEnd; ++Param) {
4584 NamedDecl *Named = cast<NamedDecl>(*Param);
4585 if (Named->getDeclName()) {
4586 S->AddDecl(Named);
4587 IdResolver.AddDecl(Named);
4588 }
4589 }
4590 }
4591}
4592
John McCalld226f652010-08-21 09:40:31 +00004593void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004594 if (!D)
4595 return;
4596
4597 TemplateParameterList *Params = 0;
4598 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4599 Params = Template->getTemplateParameters();
4600 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4601 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4602 Params = PartialSpec->getTemplateParameters();
4603 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004604 return;
4605
Douglas Gregor6569d682009-05-27 23:11:45 +00004606 for (TemplateParameterList::iterator Param = Params->begin(),
4607 ParamEnd = Params->end();
4608 Param != ParamEnd; ++Param) {
4609 NamedDecl *Named = cast<NamedDecl>(*Param);
4610 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004611 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004612 IdResolver.AddDecl(Named);
4613 }
4614 }
4615}
4616
John McCalld226f652010-08-21 09:40:31 +00004617void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004618 if (!RecordD) return;
4619 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004620 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004621 PushDeclContext(S, Record);
4622}
4623
John McCalld226f652010-08-21 09:40:31 +00004624void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004625 if (!RecordD) return;
4626 PopDeclContext();
4627}
4628
Douglas Gregor72b505b2008-12-16 21:30:33 +00004629/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4630/// parsing a top-level (non-nested) C++ class, and we are now
4631/// parsing those parts of the given Method declaration that could
4632/// not be parsed earlier (C++ [class.mem]p2), such as default
4633/// arguments. This action should enter the scope of the given
4634/// Method declaration as if we had just parsed the qualified method
4635/// name. However, it should not bring the parameters into scope;
4636/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004637void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004638}
4639
4640/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4641/// C++ method declaration. We're (re-)introducing the given
4642/// function parameter into scope for use in parsing later parts of
4643/// the method declaration. For example, we could see an
4644/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004645void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004646 if (!ParamD)
4647 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004648
John McCalld226f652010-08-21 09:40:31 +00004649 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004650
4651 // If this parameter has an unparsed default argument, clear it out
4652 // to make way for the parsed default argument.
4653 if (Param->hasUnparsedDefaultArg())
4654 Param->setDefaultArg(0);
4655
John McCalld226f652010-08-21 09:40:31 +00004656 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004657 if (Param->getDeclName())
4658 IdResolver.AddDecl(Param);
4659}
4660
4661/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4662/// processing the delayed method declaration for Method. The method
4663/// declaration is now considered finished. There may be a separate
4664/// ActOnStartOfFunctionDef action later (not necessarily
4665/// immediately!) for this method, if it was also defined inside the
4666/// class body.
John McCalld226f652010-08-21 09:40:31 +00004667void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004668 if (!MethodD)
4669 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004670
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004671 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004672
John McCalld226f652010-08-21 09:40:31 +00004673 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004674
4675 // Now that we have our default arguments, check the constructor
4676 // again. It could produce additional diagnostics or affect whether
4677 // the class has implicitly-declared destructors, among other
4678 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004679 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4680 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004681
4682 // Check the default arguments, which we may have added.
4683 if (!Method->isInvalidDecl())
4684 CheckCXXDefaultArguments(Method);
4685}
4686
Douglas Gregor42a552f2008-11-05 20:51:48 +00004687/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004688/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004689/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004690/// emit diagnostics and set the invalid bit to true. In any case, the type
4691/// will be updated to reflect a well-formed type for the constructor and
4692/// returned.
4693QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004694 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004695 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004696
4697 // C++ [class.ctor]p3:
4698 // A constructor shall not be virtual (10.3) or static (9.4). A
4699 // constructor can be invoked for a const, volatile or const
4700 // volatile object. A constructor shall not be declared const,
4701 // volatile, or const volatile (9.3.2).
4702 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004703 if (!D.isInvalidType())
4704 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4705 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4706 << SourceRange(D.getIdentifierLoc());
4707 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004708 }
John McCalld931b082010-08-26 03:08:43 +00004709 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004710 if (!D.isInvalidType())
4711 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4712 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4713 << SourceRange(D.getIdentifierLoc());
4714 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004715 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004716 }
Mike Stump1eb44332009-09-09 15:08:12 +00004717
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004718 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004719 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004720 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004721 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4722 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004723 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004724 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4725 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004726 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004727 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4728 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004729 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004730 }
Mike Stump1eb44332009-09-09 15:08:12 +00004731
Douglas Gregorc938c162011-01-26 05:01:58 +00004732 // C++0x [class.ctor]p4:
4733 // A constructor shall not be declared with a ref-qualifier.
4734 if (FTI.hasRefQualifier()) {
4735 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4736 << FTI.RefQualifierIsLValueRef
4737 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4738 D.setInvalidType();
4739 }
4740
Douglas Gregor42a552f2008-11-05 20:51:48 +00004741 // Rebuild the function type "R" without any type qualifiers (in
4742 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004743 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004744 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004745 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4746 return R;
4747
4748 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4749 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004750 EPI.RefQualifier = RQ_None;
4751
Chris Lattner65401802009-04-25 08:28:21 +00004752 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00004753 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004754}
4755
Douglas Gregor72b505b2008-12-16 21:30:33 +00004756/// CheckConstructor - Checks a fully-formed constructor for
4757/// well-formedness, issuing any diagnostics required. Returns true if
4758/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00004759void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00004760 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00004761 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
4762 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00004763 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004764
4765 // C++ [class.copy]p3:
4766 // A declaration of a constructor for a class X is ill-formed if
4767 // its first parameter is of type (optionally cv-qualified) X and
4768 // either there are no other parameters or else all other
4769 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00004770 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00004771 ((Constructor->getNumParams() == 1) ||
4772 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00004773 Constructor->getParamDecl(1)->hasDefaultArg())) &&
4774 Constructor->getTemplateSpecializationKind()
4775 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004776 QualType ParamType = Constructor->getParamDecl(0)->getType();
4777 QualType ClassTy = Context.getTagDeclType(ClassDecl);
4778 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00004779 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004780 const char *ConstRef
4781 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
4782 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00004783 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00004784 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00004785
4786 // FIXME: Rather that making the constructor invalid, we should endeavor
4787 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00004788 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004789 }
4790 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00004791}
4792
John McCall15442822010-08-04 01:04:25 +00004793/// CheckDestructor - Checks a fully-formed destructor definition for
4794/// well-formedness, issuing any diagnostics required. Returns true
4795/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004796bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00004797 CXXRecordDecl *RD = Destructor->getParent();
4798
4799 if (Destructor->isVirtual()) {
4800 SourceLocation Loc;
4801
4802 if (!Destructor->isImplicit())
4803 Loc = Destructor->getLocation();
4804 else
4805 Loc = RD->getLocation();
4806
4807 // If we have a virtual destructor, look up the deallocation function
4808 FunctionDecl *OperatorDelete = 0;
4809 DeclarationName Name =
4810 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00004811 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00004812 return true;
John McCall5efd91a2010-07-03 18:33:00 +00004813
Eli Friedman5f2987c2012-02-02 03:46:19 +00004814 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00004815
4816 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00004817 }
Anders Carlsson37909802009-11-30 21:24:50 +00004818
4819 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00004820}
4821
Mike Stump1eb44332009-09-09 15:08:12 +00004822static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004823FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
4824 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
4825 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00004826 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004827}
4828
Douglas Gregor42a552f2008-11-05 20:51:48 +00004829/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
4830/// the well-formednes of the destructor declarator @p D with type @p
4831/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004832/// emit diagnostics and set the declarator to invalid. Even if this happens,
4833/// will be updated to reflect a well-formed type for the destructor and
4834/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00004835QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004836 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004837 // C++ [class.dtor]p1:
4838 // [...] A typedef-name that names a class is a class-name
4839 // (7.1.3); however, a typedef-name that names a class shall not
4840 // be used as the identifier in the declarator for a destructor
4841 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004842 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00004843 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00004844 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00004845 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00004846 else if (const TemplateSpecializationType *TST =
4847 DeclaratorType->getAs<TemplateSpecializationType>())
4848 if (TST->isTypeAlias())
4849 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
4850 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004851
4852 // C++ [class.dtor]p2:
4853 // A destructor is used to destroy objects of its class type. A
4854 // destructor takes no parameters, and no return type can be
4855 // specified for it (not even void). The address of a destructor
4856 // shall not be taken. A destructor shall not be static. A
4857 // destructor can be invoked for a const, volatile or const
4858 // volatile object. A destructor shall not be declared const,
4859 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00004860 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004861 if (!D.isInvalidType())
4862 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
4863 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00004864 << SourceRange(D.getIdentifierLoc())
4865 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
4866
John McCalld931b082010-08-26 03:08:43 +00004867 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004868 }
Chris Lattner65401802009-04-25 08:28:21 +00004869 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004870 // Destructors don't have return types, but the parser will
4871 // happily parse something like:
4872 //
4873 // class X {
4874 // float ~X();
4875 // };
4876 //
4877 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004878 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
4879 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4880 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00004881 }
Mike Stump1eb44332009-09-09 15:08:12 +00004882
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004883 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004884 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00004885 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004886 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4887 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004888 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004889 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4890 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004891 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004892 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4893 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00004894 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004895 }
4896
Douglas Gregorc938c162011-01-26 05:01:58 +00004897 // C++0x [class.dtor]p2:
4898 // A destructor shall not be declared with a ref-qualifier.
4899 if (FTI.hasRefQualifier()) {
4900 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
4901 << FTI.RefQualifierIsLValueRef
4902 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4903 D.setInvalidType();
4904 }
4905
Douglas Gregor42a552f2008-11-05 20:51:48 +00004906 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00004907 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004908 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
4909
4910 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00004911 FTI.freeArgs();
4912 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004913 }
4914
Mike Stump1eb44332009-09-09 15:08:12 +00004915 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00004916 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004917 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00004918 D.setInvalidType();
4919 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00004920
4921 // Rebuild the function type "R" without any type qualifiers or
4922 // parameters (in case any of the errors above fired) and with
4923 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00004924 // types.
John McCalle23cf432010-12-14 08:05:40 +00004925 if (!D.isInvalidType())
4926 return R;
4927
Douglas Gregord92ec472010-07-01 05:10:53 +00004928 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004929 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4930 EPI.Variadic = false;
4931 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004932 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00004933 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004934}
4935
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004936/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
4937/// well-formednes of the conversion function declarator @p D with
4938/// type @p R. If there are any errors in the declarator, this routine
4939/// will emit diagnostics and return true. Otherwise, it will return
4940/// false. Either way, the type @p R will be updated to reflect a
4941/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00004942void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00004943 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004944 // C++ [class.conv.fct]p1:
4945 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00004946 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00004947 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00004948 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00004949 if (!D.isInvalidType())
4950 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
4951 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4952 << SourceRange(D.getIdentifierLoc());
4953 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004954 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004955 }
John McCalla3f81372010-04-13 00:04:31 +00004956
4957 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
4958
Chris Lattner6e475012009-04-25 08:35:12 +00004959 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004960 // Conversion functions don't have return types, but the parser will
4961 // happily parse something like:
4962 //
4963 // class X {
4964 // float operator bool();
4965 // };
4966 //
4967 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004968 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
4969 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4970 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00004971 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004972 }
4973
John McCalla3f81372010-04-13 00:04:31 +00004974 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
4975
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004976 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00004977 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004978 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
4979
4980 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004981 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00004982 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00004983 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004984 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00004985 D.setInvalidType();
4986 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004987
John McCalla3f81372010-04-13 00:04:31 +00004988 // Diagnose "&operator bool()" and other such nonsense. This
4989 // is actually a gcc extension which we don't support.
4990 if (Proto->getResultType() != ConvType) {
4991 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
4992 << Proto->getResultType();
4993 D.setInvalidType();
4994 ConvType = Proto->getResultType();
4995 }
4996
Douglas Gregor2f1bc522008-11-07 20:08:42 +00004997 // C++ [class.conv.fct]p4:
4998 // The conversion-type-id shall not represent a function type nor
4999 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005000 if (ConvType->isArrayType()) {
5001 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5002 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005003 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005004 } else if (ConvType->isFunctionType()) {
5005 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5006 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005007 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005008 }
5009
5010 // Rebuild the function type "R" without any parameters (in case any
5011 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005012 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005013 if (D.isInvalidType())
5014 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005015
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005016 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005017 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005018 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005019 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005020 diag::warn_cxx98_compat_explicit_conversion_functions :
5021 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005022 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005023}
5024
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005025/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5026/// the declaration of the given C++ conversion function. This routine
5027/// is responsible for recording the conversion function in the C++
5028/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005029Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005030 assert(Conversion && "Expected to receive a conversion function declaration");
5031
Douglas Gregor9d350972008-12-12 08:25:50 +00005032 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005033
5034 // Make sure we aren't redeclaring the conversion function.
5035 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005036
5037 // C++ [class.conv.fct]p1:
5038 // [...] A conversion function is never used to convert a
5039 // (possibly cv-qualified) object to the (possibly cv-qualified)
5040 // same object type (or a reference to it), to a (possibly
5041 // cv-qualified) base class of that type (or a reference to it),
5042 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005043 // FIXME: Suppress this warning if the conversion function ends up being a
5044 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005045 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005046 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005047 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005048 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005049 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5050 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005051 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005052 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005053 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5054 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005055 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005056 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005057 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005058 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005059 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005060 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005061 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005062 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005063 }
5064
Douglas Gregore80622f2010-09-29 04:25:11 +00005065 if (FunctionTemplateDecl *ConversionTemplate
5066 = Conversion->getDescribedFunctionTemplate())
5067 return ConversionTemplate;
5068
John McCalld226f652010-08-21 09:40:31 +00005069 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005070}
5071
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005072//===----------------------------------------------------------------------===//
5073// Namespace Handling
5074//===----------------------------------------------------------------------===//
5075
John McCallea318642010-08-26 09:15:37 +00005076
5077
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005078/// ActOnStartNamespaceDef - This is called at the start of a namespace
5079/// definition.
John McCalld226f652010-08-21 09:40:31 +00005080Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005081 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005082 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005083 SourceLocation IdentLoc,
5084 IdentifierInfo *II,
5085 SourceLocation LBrace,
5086 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005087 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5088 // For anonymous namespace, take the location of the left brace.
5089 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005090 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005091 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005092 bool IsStd = false;
5093 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005094 Scope *DeclRegionScope = NamespcScope->getParent();
5095
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005096 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005097 if (II) {
5098 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005099 // The identifier in an original-namespace-definition shall not
5100 // have been previously defined in the declarative region in
5101 // which the original-namespace-definition appears. The
5102 // identifier in an original-namespace-definition is the name of
5103 // the namespace. Subsequently in that declarative region, it is
5104 // treated as an original-namespace-name.
5105 //
5106 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005107 // look through using directives, just look for any ordinary names.
5108
5109 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005110 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5111 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005112 NamedDecl *PrevDecl = 0;
5113 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005114 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005115 R.first != R.second; ++R.first) {
5116 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5117 PrevDecl = *R.first;
5118 break;
5119 }
5120 }
5121
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005122 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5123
5124 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005125 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005126 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005127 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005128 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005129 // The user probably just forgot the 'inline', so suggest that it
5130 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005131 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005132 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5133 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005134 Diag(Loc, diag::err_inline_namespace_mismatch)
5135 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005136 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005137 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5138
5139 IsInline = PrevNS->isInline();
5140 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005141 } else if (PrevDecl) {
5142 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005143 Diag(Loc, diag::err_redefinition_different_kind)
5144 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005145 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005146 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005147 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005148 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005149 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005150 // This is the first "real" definition of the namespace "std", so update
5151 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005152 PrevNS = getStdNamespace();
5153 IsStd = true;
5154 AddToKnown = !IsInline;
5155 } else {
5156 // We've seen this namespace for the first time.
5157 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005158 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005159 } else {
John McCall9aeed322009-10-01 00:25:31 +00005160 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005161
5162 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005163 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005164 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005165 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005166 } else {
5167 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005168 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005169 }
5170
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005171 if (PrevNS && IsInline != PrevNS->isInline()) {
5172 // inline-ness must match
5173 Diag(Loc, diag::err_inline_namespace_mismatch)
5174 << IsInline;
5175 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005176
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005177 // Recover by ignoring the new namespace's inline status.
5178 IsInline = PrevNS->isInline();
5179 }
5180 }
5181
5182 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5183 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005184 if (IsInvalid)
5185 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005186
5187 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005188
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005189 // FIXME: Should we be merging attributes?
5190 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005191 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005192
5193 if (IsStd)
5194 StdNamespace = Namespc;
5195 if (AddToKnown)
5196 KnownNamespaces[Namespc] = false;
5197
5198 if (II) {
5199 PushOnScopeChains(Namespc, DeclRegionScope);
5200 } else {
5201 // Link the anonymous namespace into its parent.
5202 DeclContext *Parent = CurContext->getRedeclContext();
5203 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5204 TU->setAnonymousNamespace(Namespc);
5205 } else {
5206 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005207 }
John McCall9aeed322009-10-01 00:25:31 +00005208
Douglas Gregora4181472010-03-24 00:46:35 +00005209 CurContext->addDecl(Namespc);
5210
John McCall9aeed322009-10-01 00:25:31 +00005211 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5212 // behaves as if it were replaced by
5213 // namespace unique { /* empty body */ }
5214 // using namespace unique;
5215 // namespace unique { namespace-body }
5216 // where all occurrences of 'unique' in a translation unit are
5217 // replaced by the same identifier and this identifier differs
5218 // from all other identifiers in the entire program.
5219
5220 // We just create the namespace with an empty name and then add an
5221 // implicit using declaration, just like the standard suggests.
5222 //
5223 // CodeGen enforces the "universally unique" aspect by giving all
5224 // declarations semantically contained within an anonymous
5225 // namespace internal linkage.
5226
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005227 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005228 UsingDirectiveDecl* UD
5229 = UsingDirectiveDecl::Create(Context, CurContext,
5230 /* 'using' */ LBrace,
5231 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005232 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005233 /* identifier */ SourceLocation(),
5234 Namespc,
5235 /* Ancestor */ CurContext);
5236 UD->setImplicit();
5237 CurContext->addDecl(UD);
5238 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005239 }
5240
5241 // Although we could have an invalid decl (i.e. the namespace name is a
5242 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005243 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5244 // for the namespace has the declarations that showed up in that particular
5245 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005246 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005247 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005248}
5249
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005250/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5251/// is a namespace alias, returns the namespace it points to.
5252static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5253 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5254 return AD->getNamespace();
5255 return dyn_cast_or_null<NamespaceDecl>(D);
5256}
5257
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005258/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5259/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005260void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005261 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5262 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005263 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005264 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005265 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005266 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005267}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005268
John McCall384aff82010-08-25 07:42:41 +00005269CXXRecordDecl *Sema::getStdBadAlloc() const {
5270 return cast_or_null<CXXRecordDecl>(
5271 StdBadAlloc.get(Context.getExternalSource()));
5272}
5273
5274NamespaceDecl *Sema::getStdNamespace() const {
5275 return cast_or_null<NamespaceDecl>(
5276 StdNamespace.get(Context.getExternalSource()));
5277}
5278
Douglas Gregor66992202010-06-29 17:53:46 +00005279/// \brief Retrieve the special "std" namespace, which may require us to
5280/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005281NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005282 if (!StdNamespace) {
5283 // The "std" namespace has not yet been defined, so build one implicitly.
5284 StdNamespace = NamespaceDecl::Create(Context,
5285 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005286 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005287 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005288 &PP.getIdentifierTable().get("std"),
5289 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005290 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005291 }
5292
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005293 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005294}
5295
Sebastian Redl395e04d2012-01-17 22:49:33 +00005296bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005297 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005298 "Looking for std::initializer_list outside of C++.");
5299
5300 // We're looking for implicit instantiations of
5301 // template <typename E> class std::initializer_list.
5302
5303 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5304 return false;
5305
Sebastian Redl84760e32012-01-17 22:49:58 +00005306 ClassTemplateDecl *Template = 0;
5307 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005308
Sebastian Redl84760e32012-01-17 22:49:58 +00005309 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005310
Sebastian Redl84760e32012-01-17 22:49:58 +00005311 ClassTemplateSpecializationDecl *Specialization =
5312 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5313 if (!Specialization)
5314 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005315
Sebastian Redl84760e32012-01-17 22:49:58 +00005316 Template = Specialization->getSpecializedTemplate();
5317 Arguments = Specialization->getTemplateArgs().data();
5318 } else if (const TemplateSpecializationType *TST =
5319 Ty->getAs<TemplateSpecializationType>()) {
5320 Template = dyn_cast_or_null<ClassTemplateDecl>(
5321 TST->getTemplateName().getAsTemplateDecl());
5322 Arguments = TST->getArgs();
5323 }
5324 if (!Template)
5325 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005326
5327 if (!StdInitializerList) {
5328 // Haven't recognized std::initializer_list yet, maybe this is it.
5329 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5330 if (TemplateClass->getIdentifier() !=
5331 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005332 !getStdNamespace()->InEnclosingNamespaceSetOf(
5333 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005334 return false;
5335 // This is a template called std::initializer_list, but is it the right
5336 // template?
5337 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005338 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005339 return false;
5340 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5341 return false;
5342
5343 // It's the right template.
5344 StdInitializerList = Template;
5345 }
5346
5347 if (Template != StdInitializerList)
5348 return false;
5349
5350 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005351 if (Element)
5352 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005353 return true;
5354}
5355
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005356static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5357 NamespaceDecl *Std = S.getStdNamespace();
5358 if (!Std) {
5359 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5360 return 0;
5361 }
5362
5363 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5364 Loc, Sema::LookupOrdinaryName);
5365 if (!S.LookupQualifiedName(Result, Std)) {
5366 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5367 return 0;
5368 }
5369 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5370 if (!Template) {
5371 Result.suppressDiagnostics();
5372 // We found something weird. Complain about the first thing we found.
5373 NamedDecl *Found = *Result.begin();
5374 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5375 return 0;
5376 }
5377
5378 // We found some template called std::initializer_list. Now verify that it's
5379 // correct.
5380 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005381 if (Params->getMinRequiredArguments() != 1 ||
5382 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005383 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5384 return 0;
5385 }
5386
5387 return Template;
5388}
5389
5390QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5391 if (!StdInitializerList) {
5392 StdInitializerList = LookupStdInitializerList(*this, Loc);
5393 if (!StdInitializerList)
5394 return QualType();
5395 }
5396
5397 TemplateArgumentListInfo Args(Loc, Loc);
5398 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5399 Context.getTrivialTypeSourceInfo(Element,
5400 Loc)));
5401 return Context.getCanonicalType(
5402 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5403}
5404
Sebastian Redl98d36062012-01-17 22:50:14 +00005405bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5406 // C++ [dcl.init.list]p2:
5407 // A constructor is an initializer-list constructor if its first parameter
5408 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5409 // std::initializer_list<E> for some type E, and either there are no other
5410 // parameters or else all other parameters have default arguments.
5411 if (Ctor->getNumParams() < 1 ||
5412 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5413 return false;
5414
5415 QualType ArgType = Ctor->getParamDecl(0)->getType();
5416 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5417 ArgType = RT->getPointeeType().getUnqualifiedType();
5418
5419 return isStdInitializerList(ArgType, 0);
5420}
5421
Douglas Gregor9172aa62011-03-26 22:25:30 +00005422/// \brief Determine whether a using statement is in a context where it will be
5423/// apply in all contexts.
5424static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5425 switch (CurContext->getDeclKind()) {
5426 case Decl::TranslationUnit:
5427 return true;
5428 case Decl::LinkageSpec:
5429 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5430 default:
5431 return false;
5432 }
5433}
5434
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005435namespace {
5436
5437// Callback to only accept typo corrections that are namespaces.
5438class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5439 public:
5440 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5441 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5442 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5443 }
5444 return false;
5445 }
5446};
5447
5448}
5449
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005450static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5451 CXXScopeSpec &SS,
5452 SourceLocation IdentLoc,
5453 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005454 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005455 R.clear();
5456 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005457 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005458 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005459 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5460 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005461 if (DeclContext *DC = S.computeDeclContext(SS, false))
5462 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5463 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5464 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5465 else
5466 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5467 << Ident << CorrectedQuotedStr
5468 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005469
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005470 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5471 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005472
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005473 R.addDecl(Corrected.getCorrectionDecl());
5474 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005475 }
5476 return false;
5477}
5478
John McCalld226f652010-08-21 09:40:31 +00005479Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005480 SourceLocation UsingLoc,
5481 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005482 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005483 SourceLocation IdentLoc,
5484 IdentifierInfo *NamespcName,
5485 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005486 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5487 assert(NamespcName && "Invalid NamespcName.");
5488 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005489
5490 // This can only happen along a recovery path.
5491 while (S->getFlags() & Scope::TemplateParamScope)
5492 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005493 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005494
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005495 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005496 NestedNameSpecifier *Qualifier = 0;
5497 if (SS.isSet())
5498 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5499
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005500 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005501 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5502 LookupParsedName(R, S, &SS);
5503 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005504 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005505
Douglas Gregor66992202010-06-29 17:53:46 +00005506 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005507 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005508 // Allow "using namespace std;" or "using namespace ::std;" even if
5509 // "std" hasn't been defined yet, for GCC compatibility.
5510 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5511 NamespcName->isStr("std")) {
5512 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005513 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005514 R.resolveKind();
5515 }
5516 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005517 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005518 }
5519
John McCallf36e02d2009-10-09 21:13:30 +00005520 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005521 NamedDecl *Named = R.getFoundDecl();
5522 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5523 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005524 // C++ [namespace.udir]p1:
5525 // A using-directive specifies that the names in the nominated
5526 // namespace can be used in the scope in which the
5527 // using-directive appears after the using-directive. During
5528 // unqualified name lookup (3.4.1), the names appear as if they
5529 // were declared in the nearest enclosing namespace which
5530 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005531 // namespace. [Note: in this context, "contains" means "contains
5532 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005533
5534 // Find enclosing context containing both using-directive and
5535 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005536 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005537 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5538 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5539 CommonAncestor = CommonAncestor->getParent();
5540
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005541 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005542 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005543 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005544
Douglas Gregor9172aa62011-03-26 22:25:30 +00005545 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005546 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005547 Diag(IdentLoc, diag::warn_using_directive_in_header);
5548 }
5549
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005550 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005551 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005552 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005553 }
5554
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005555 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005556 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005557}
5558
5559void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005560 // If the scope has an associated entity and the using directive is at
5561 // namespace or translation unit scope, add the UsingDirectiveDecl into
5562 // its lookup structure so qualified name lookup can find it.
5563 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5564 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005565 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005566 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005567 // Otherwise, it is at block sope. The using-directives will affect lookup
5568 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005569 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005570}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005571
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005572
John McCalld226f652010-08-21 09:40:31 +00005573Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005574 AccessSpecifier AS,
5575 bool HasUsingKeyword,
5576 SourceLocation UsingLoc,
5577 CXXScopeSpec &SS,
5578 UnqualifiedId &Name,
5579 AttributeList *AttrList,
5580 bool IsTypeName,
5581 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005582 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005583
Douglas Gregor12c118a2009-11-04 16:30:06 +00005584 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005585 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005586 case UnqualifiedId::IK_Identifier:
5587 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005588 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005589 case UnqualifiedId::IK_ConversionFunctionId:
5590 break;
5591
5592 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005593 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005594 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005595 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005596 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005597 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5598 // instead once inheriting constructors work.
5599 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005600 diag::err_using_decl_constructor)
5601 << SS.getRange();
5602
David Blaikie4e4d0842012-03-11 07:00:24 +00005603 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005604
John McCalld226f652010-08-21 09:40:31 +00005605 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005606
5607 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005608 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005609 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005610 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005611
5612 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005613 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005614 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005615 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005616 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005617
5618 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5619 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005620 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005621 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005622
John McCall60fa3cf2009-12-11 02:10:03 +00005623 // Warn about using declarations.
5624 // TODO: store that the declaration was written without 'using' and
5625 // talk about access decls instead of using decls in the
5626 // diagnostics.
5627 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005628 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005629
5630 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005631 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005632 }
5633
Douglas Gregor56c04582010-12-16 00:46:58 +00005634 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5635 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5636 return 0;
5637
John McCall9488ea12009-11-17 05:59:44 +00005638 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005639 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005640 /* IsInstantiation */ false,
5641 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005642 if (UD)
5643 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005644
John McCalld226f652010-08-21 09:40:31 +00005645 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005646}
5647
Douglas Gregor09acc982010-07-07 23:08:52 +00005648/// \brief Determine whether a using declaration considers the given
5649/// declarations as "equivalent", e.g., if they are redeclarations of
5650/// the same entity or are both typedefs of the same type.
5651static bool
5652IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5653 bool &SuppressRedeclaration) {
5654 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5655 SuppressRedeclaration = false;
5656 return true;
5657 }
5658
Richard Smith162e1c12011-04-15 14:24:37 +00005659 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5660 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005661 SuppressRedeclaration = true;
5662 return Context.hasSameType(TD1->getUnderlyingType(),
5663 TD2->getUnderlyingType());
5664 }
5665
5666 return false;
5667}
5668
5669
John McCall9f54ad42009-12-10 09:41:52 +00005670/// Determines whether to create a using shadow decl for a particular
5671/// decl, given the set of decls existing prior to this using lookup.
5672bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5673 const LookupResult &Previous) {
5674 // Diagnose finding a decl which is not from a base class of the
5675 // current class. We do this now because there are cases where this
5676 // function will silently decide not to build a shadow decl, which
5677 // will pre-empt further diagnostics.
5678 //
5679 // We don't need to do this in C++0x because we do the check once on
5680 // the qualifier.
5681 //
5682 // FIXME: diagnose the following if we care enough:
5683 // struct A { int foo; };
5684 // struct B : A { using A::foo; };
5685 // template <class T> struct C : A {};
5686 // template <class T> struct D : C<T> { using B::foo; } // <---
5687 // This is invalid (during instantiation) in C++03 because B::foo
5688 // resolves to the using decl in B, which is not a base class of D<T>.
5689 // We can't diagnose it immediately because C<T> is an unknown
5690 // specialization. The UsingShadowDecl in D<T> then points directly
5691 // to A::foo, which will look well-formed when we instantiate.
5692 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005693 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005694 DeclContext *OrigDC = Orig->getDeclContext();
5695
5696 // Handle enums and anonymous structs.
5697 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5698 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5699 while (OrigRec->isAnonymousStructOrUnion())
5700 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5701
5702 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5703 if (OrigDC == CurContext) {
5704 Diag(Using->getLocation(),
5705 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005706 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005707 Diag(Orig->getLocation(), diag::note_using_decl_target);
5708 return true;
5709 }
5710
Douglas Gregordc355712011-02-25 00:36:19 +00005711 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005712 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005713 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005714 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005715 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005716 Diag(Orig->getLocation(), diag::note_using_decl_target);
5717 return true;
5718 }
5719 }
5720
5721 if (Previous.empty()) return false;
5722
5723 NamedDecl *Target = Orig;
5724 if (isa<UsingShadowDecl>(Target))
5725 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5726
John McCalld7533ec2009-12-11 02:33:26 +00005727 // If the target happens to be one of the previous declarations, we
5728 // don't have a conflict.
5729 //
5730 // FIXME: but we might be increasing its access, in which case we
5731 // should redeclare it.
5732 NamedDecl *NonTag = 0, *Tag = 0;
5733 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5734 I != E; ++I) {
5735 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005736 bool Result;
5737 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5738 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005739
5740 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5741 }
5742
John McCall9f54ad42009-12-10 09:41:52 +00005743 if (Target->isFunctionOrFunctionTemplate()) {
5744 FunctionDecl *FD;
5745 if (isa<FunctionTemplateDecl>(Target))
5746 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5747 else
5748 FD = cast<FunctionDecl>(Target);
5749
5750 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00005751 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00005752 case Ovl_Overload:
5753 return false;
5754
5755 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00005756 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005757 break;
5758
5759 // We found a decl with the exact signature.
5760 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00005761 // If we're in a record, we want to hide the target, so we
5762 // return true (without a diagnostic) to tell the caller not to
5763 // build a shadow decl.
5764 if (CurContext->isRecord())
5765 return true;
5766
5767 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00005768 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005769 break;
5770 }
5771
5772 Diag(Target->getLocation(), diag::note_using_decl_target);
5773 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
5774 return true;
5775 }
5776
5777 // Target is not a function.
5778
John McCall9f54ad42009-12-10 09:41:52 +00005779 if (isa<TagDecl>(Target)) {
5780 // No conflict between a tag and a non-tag.
5781 if (!Tag) return false;
5782
John McCall41ce66f2009-12-10 19:51:03 +00005783 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005784 Diag(Target->getLocation(), diag::note_using_decl_target);
5785 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
5786 return true;
5787 }
5788
5789 // No conflict between a tag and a non-tag.
5790 if (!NonTag) return false;
5791
John McCall41ce66f2009-12-10 19:51:03 +00005792 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005793 Diag(Target->getLocation(), diag::note_using_decl_target);
5794 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
5795 return true;
5796}
5797
John McCall9488ea12009-11-17 05:59:44 +00005798/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00005799UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00005800 UsingDecl *UD,
5801 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00005802
5803 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00005804 NamedDecl *Target = Orig;
5805 if (isa<UsingShadowDecl>(Target)) {
5806 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5807 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00005808 }
5809
5810 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00005811 = UsingShadowDecl::Create(Context, CurContext,
5812 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00005813 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00005814
5815 Shadow->setAccess(UD->getAccess());
5816 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
5817 Shadow->setInvalidDecl();
5818
John McCall9488ea12009-11-17 05:59:44 +00005819 if (S)
John McCall604e7f12009-12-08 07:46:18 +00005820 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00005821 else
John McCall604e7f12009-12-08 07:46:18 +00005822 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00005823
John McCall604e7f12009-12-08 07:46:18 +00005824
John McCall9f54ad42009-12-10 09:41:52 +00005825 return Shadow;
5826}
John McCall604e7f12009-12-08 07:46:18 +00005827
John McCall9f54ad42009-12-10 09:41:52 +00005828/// Hides a using shadow declaration. This is required by the current
5829/// using-decl implementation when a resolvable using declaration in a
5830/// class is followed by a declaration which would hide or override
5831/// one or more of the using decl's targets; for example:
5832///
5833/// struct Base { void foo(int); };
5834/// struct Derived : Base {
5835/// using Base::foo;
5836/// void foo(int);
5837/// };
5838///
5839/// The governing language is C++03 [namespace.udecl]p12:
5840///
5841/// When a using-declaration brings names from a base class into a
5842/// derived class scope, member functions in the derived class
5843/// override and/or hide member functions with the same name and
5844/// parameter types in a base class (rather than conflicting).
5845///
5846/// There are two ways to implement this:
5847/// (1) optimistically create shadow decls when they're not hidden
5848/// by existing declarations, or
5849/// (2) don't create any shadow decls (or at least don't make them
5850/// visible) until we've fully parsed/instantiated the class.
5851/// The problem with (1) is that we might have to retroactively remove
5852/// a shadow decl, which requires several O(n) operations because the
5853/// decl structures are (very reasonably) not designed for removal.
5854/// (2) avoids this but is very fiddly and phase-dependent.
5855void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00005856 if (Shadow->getDeclName().getNameKind() ==
5857 DeclarationName::CXXConversionFunctionName)
5858 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
5859
John McCall9f54ad42009-12-10 09:41:52 +00005860 // Remove it from the DeclContext...
5861 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005862
John McCall9f54ad42009-12-10 09:41:52 +00005863 // ...and the scope, if applicable...
5864 if (S) {
John McCalld226f652010-08-21 09:40:31 +00005865 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00005866 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00005867 }
5868
John McCall9f54ad42009-12-10 09:41:52 +00005869 // ...and the using decl.
5870 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
5871
5872 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00005873 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00005874}
5875
John McCall7ba107a2009-11-18 02:36:19 +00005876/// Builds a using declaration.
5877///
5878/// \param IsInstantiation - Whether this call arises from an
5879/// instantiation of an unresolved using declaration. We treat
5880/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00005881NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
5882 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005883 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005884 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00005885 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005886 bool IsInstantiation,
5887 bool IsTypeName,
5888 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00005889 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005890 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00005891 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00005892
Anders Carlsson550b14b2009-08-28 05:49:21 +00005893 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00005894
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005895 if (SS.isEmpty()) {
5896 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00005897 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005898 }
Mike Stump1eb44332009-09-09 15:08:12 +00005899
John McCall9f54ad42009-12-10 09:41:52 +00005900 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005901 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00005902 ForRedeclaration);
5903 Previous.setHideTags(false);
5904 if (S) {
5905 LookupName(Previous, S);
5906
5907 // It is really dumb that we have to do this.
5908 LookupResult::Filter F = Previous.makeFilter();
5909 while (F.hasNext()) {
5910 NamedDecl *D = F.next();
5911 if (!isDeclInScope(D, CurContext, S))
5912 F.erase();
5913 }
5914 F.done();
5915 } else {
5916 assert(IsInstantiation && "no scope in non-instantiation");
5917 assert(CurContext->isRecord() && "scope not record in instantiation");
5918 LookupQualifiedName(Previous, CurContext);
5919 }
5920
John McCall9f54ad42009-12-10 09:41:52 +00005921 // Check for invalid redeclarations.
5922 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
5923 return 0;
5924
5925 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00005926 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
5927 return 0;
5928
John McCallaf8e6ed2009-11-12 03:15:40 +00005929 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00005930 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00005931 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00005932 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00005933 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00005934 // FIXME: not all declaration name kinds are legal here
5935 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
5936 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00005937 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005938 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00005939 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00005940 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
5941 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00005942 }
John McCalled976492009-12-04 22:46:56 +00005943 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00005944 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
5945 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00005946 }
John McCalled976492009-12-04 22:46:56 +00005947 D->setAccess(AS);
5948 CurContext->addDecl(D);
5949
5950 if (!LookupContext) return D;
5951 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00005952
John McCall77bb1aa2010-05-01 00:40:08 +00005953 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00005954 UD->setInvalidDecl();
5955 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00005956 }
5957
Richard Smithc5a89a12012-04-02 01:30:27 +00005958 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00005959 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00005960 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00005961 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00005962 return UD;
5963 }
5964
5965 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00005966
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005967 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00005968
John McCall604e7f12009-12-08 07:46:18 +00005969 // Unlike most lookups, we don't always want to hide tag
5970 // declarations: tag names are visible through the using declaration
5971 // even if hidden by ordinary names, *except* in a dependent context
5972 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00005973 if (!IsInstantiation)
5974 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00005975
John McCallb9abd8722012-04-07 03:04:20 +00005976 // For the purposes of this lookup, we have a base object type
5977 // equal to that of the current context.
5978 if (CurContext->isRecord()) {
5979 R.setBaseObjectType(
5980 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
5981 }
5982
John McCalla24dc2e2009-11-17 02:14:36 +00005983 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00005984
John McCallf36e02d2009-10-09 21:13:30 +00005985 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00005986 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005987 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00005988 UD->setInvalidDecl();
5989 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005990 }
5991
John McCalled976492009-12-04 22:46:56 +00005992 if (R.isAmbiguous()) {
5993 UD->setInvalidDecl();
5994 return UD;
5995 }
Mike Stump1eb44332009-09-09 15:08:12 +00005996
John McCall7ba107a2009-11-18 02:36:19 +00005997 if (IsTypeName) {
5998 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00005999 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006000 Diag(IdentLoc, diag::err_using_typename_non_type);
6001 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6002 Diag((*I)->getUnderlyingDecl()->getLocation(),
6003 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006004 UD->setInvalidDecl();
6005 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006006 }
6007 } else {
6008 // If we asked for a non-typename and we got a type, error out,
6009 // but only if this is an instantiation of an unresolved using
6010 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006011 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006012 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6013 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006014 UD->setInvalidDecl();
6015 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006016 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006017 }
6018
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006019 // C++0x N2914 [namespace.udecl]p6:
6020 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006021 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006022 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6023 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006024 UD->setInvalidDecl();
6025 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006026 }
Mike Stump1eb44332009-09-09 15:08:12 +00006027
John McCall9f54ad42009-12-10 09:41:52 +00006028 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6029 if (!CheckUsingShadowDecl(UD, *I, Previous))
6030 BuildUsingShadowDecl(S, UD, *I);
6031 }
John McCall9488ea12009-11-17 05:59:44 +00006032
6033 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006034}
6035
Sebastian Redlf677ea32011-02-05 19:23:19 +00006036/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006037bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6038 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006039
Douglas Gregordc355712011-02-25 00:36:19 +00006040 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006041 assert(SourceType &&
6042 "Using decl naming constructor doesn't have type in scope spec.");
6043 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6044
6045 // Check whether the named type is a direct base class.
6046 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6047 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6048 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6049 BaseIt != BaseE; ++BaseIt) {
6050 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6051 if (CanonicalSourceType == BaseType)
6052 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006053 if (BaseIt->getType()->isDependentType())
6054 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006055 }
6056
6057 if (BaseIt == BaseE) {
6058 // Did not find SourceType in the bases.
6059 Diag(UD->getUsingLocation(),
6060 diag::err_using_decl_constructor_not_in_direct_base)
6061 << UD->getNameInfo().getSourceRange()
6062 << QualType(SourceType, 0) << TargetClass;
6063 return true;
6064 }
6065
Richard Smithc5a89a12012-04-02 01:30:27 +00006066 if (!CurContext->isDependentContext())
6067 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006068
6069 return false;
6070}
6071
John McCall9f54ad42009-12-10 09:41:52 +00006072/// Checks that the given using declaration is not an invalid
6073/// redeclaration. Note that this is checking only for the using decl
6074/// itself, not for any ill-formedness among the UsingShadowDecls.
6075bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6076 bool isTypeName,
6077 const CXXScopeSpec &SS,
6078 SourceLocation NameLoc,
6079 const LookupResult &Prev) {
6080 // C++03 [namespace.udecl]p8:
6081 // C++0x [namespace.udecl]p10:
6082 // A using-declaration is a declaration and can therefore be used
6083 // repeatedly where (and only where) multiple declarations are
6084 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006085 //
John McCall8a726212010-11-29 18:01:58 +00006086 // That's in non-member contexts.
6087 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006088 return false;
6089
6090 NestedNameSpecifier *Qual
6091 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6092
6093 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6094 NamedDecl *D = *I;
6095
6096 bool DTypename;
6097 NestedNameSpecifier *DQual;
6098 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6099 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006100 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006101 } else if (UnresolvedUsingValueDecl *UD
6102 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6103 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006104 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006105 } else if (UnresolvedUsingTypenameDecl *UD
6106 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6107 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006108 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006109 } else continue;
6110
6111 // using decls differ if one says 'typename' and the other doesn't.
6112 // FIXME: non-dependent using decls?
6113 if (isTypeName != DTypename) continue;
6114
6115 // using decls differ if they name different scopes (but note that
6116 // template instantiation can cause this check to trigger when it
6117 // didn't before instantiation).
6118 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6119 Context.getCanonicalNestedNameSpecifier(DQual))
6120 continue;
6121
6122 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006123 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006124 return true;
6125 }
6126
6127 return false;
6128}
6129
John McCall604e7f12009-12-08 07:46:18 +00006130
John McCalled976492009-12-04 22:46:56 +00006131/// Checks that the given nested-name qualifier used in a using decl
6132/// in the current context is appropriately related to the current
6133/// scope. If an error is found, diagnoses it and returns true.
6134bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6135 const CXXScopeSpec &SS,
6136 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006137 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006138
John McCall604e7f12009-12-08 07:46:18 +00006139 if (!CurContext->isRecord()) {
6140 // C++03 [namespace.udecl]p3:
6141 // C++0x [namespace.udecl]p8:
6142 // A using-declaration for a class member shall be a member-declaration.
6143
6144 // If we weren't able to compute a valid scope, it must be a
6145 // dependent class scope.
6146 if (!NamedContext || NamedContext->isRecord()) {
6147 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6148 << SS.getRange();
6149 return true;
6150 }
6151
6152 // Otherwise, everything is known to be fine.
6153 return false;
6154 }
6155
6156 // The current scope is a record.
6157
6158 // If the named context is dependent, we can't decide much.
6159 if (!NamedContext) {
6160 // FIXME: in C++0x, we can diagnose if we can prove that the
6161 // nested-name-specifier does not refer to a base class, which is
6162 // still possible in some cases.
6163
6164 // Otherwise we have to conservatively report that things might be
6165 // okay.
6166 return false;
6167 }
6168
6169 if (!NamedContext->isRecord()) {
6170 // Ideally this would point at the last name in the specifier,
6171 // but we don't have that level of source info.
6172 Diag(SS.getRange().getBegin(),
6173 diag::err_using_decl_nested_name_specifier_is_not_class)
6174 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6175 return true;
6176 }
6177
Douglas Gregor6fb07292010-12-21 07:41:49 +00006178 if (!NamedContext->isDependentContext() &&
6179 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6180 return true;
6181
David Blaikie4e4d0842012-03-11 07:00:24 +00006182 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006183 // C++0x [namespace.udecl]p3:
6184 // In a using-declaration used as a member-declaration, the
6185 // nested-name-specifier shall name a base class of the class
6186 // being defined.
6187
6188 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6189 cast<CXXRecordDecl>(NamedContext))) {
6190 if (CurContext == NamedContext) {
6191 Diag(NameLoc,
6192 diag::err_using_decl_nested_name_specifier_is_current_class)
6193 << SS.getRange();
6194 return true;
6195 }
6196
6197 Diag(SS.getRange().getBegin(),
6198 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6199 << (NestedNameSpecifier*) SS.getScopeRep()
6200 << cast<CXXRecordDecl>(CurContext)
6201 << SS.getRange();
6202 return true;
6203 }
6204
6205 return false;
6206 }
6207
6208 // C++03 [namespace.udecl]p4:
6209 // A using-declaration used as a member-declaration shall refer
6210 // to a member of a base class of the class being defined [etc.].
6211
6212 // Salient point: SS doesn't have to name a base class as long as
6213 // lookup only finds members from base classes. Therefore we can
6214 // diagnose here only if we can prove that that can't happen,
6215 // i.e. if the class hierarchies provably don't intersect.
6216
6217 // TODO: it would be nice if "definitely valid" results were cached
6218 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6219 // need to be repeated.
6220
6221 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006222 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006223
6224 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6225 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6226 Data->Bases.insert(Base);
6227 return true;
6228 }
6229
6230 bool hasDependentBases(const CXXRecordDecl *Class) {
6231 return !Class->forallBases(collect, this);
6232 }
6233
6234 /// Returns true if the base is dependent or is one of the
6235 /// accumulated base classes.
6236 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6237 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6238 return !Data->Bases.count(Base);
6239 }
6240
6241 bool mightShareBases(const CXXRecordDecl *Class) {
6242 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6243 }
6244 };
6245
6246 UserData Data;
6247
6248 // Returns false if we find a dependent base.
6249 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6250 return false;
6251
6252 // Returns false if the class has a dependent base or if it or one
6253 // of its bases is present in the base set of the current context.
6254 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6255 return false;
6256
6257 Diag(SS.getRange().getBegin(),
6258 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6259 << (NestedNameSpecifier*) SS.getScopeRep()
6260 << cast<CXXRecordDecl>(CurContext)
6261 << SS.getRange();
6262
6263 return true;
John McCalled976492009-12-04 22:46:56 +00006264}
6265
Richard Smith162e1c12011-04-15 14:24:37 +00006266Decl *Sema::ActOnAliasDeclaration(Scope *S,
6267 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006268 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006269 SourceLocation UsingLoc,
6270 UnqualifiedId &Name,
6271 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006272 // Skip up to the relevant declaration scope.
6273 while (S->getFlags() & Scope::TemplateParamScope)
6274 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006275 assert((S->getFlags() & Scope::DeclScope) &&
6276 "got alias-declaration outside of declaration scope");
6277
6278 if (Type.isInvalid())
6279 return 0;
6280
6281 bool Invalid = false;
6282 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6283 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006284 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006285
6286 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6287 return 0;
6288
6289 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006290 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006291 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006292 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6293 TInfo->getTypeLoc().getBeginLoc());
6294 }
Richard Smith162e1c12011-04-15 14:24:37 +00006295
6296 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6297 LookupName(Previous, S);
6298
6299 // Warn about shadowing the name of a template parameter.
6300 if (Previous.isSingleResult() &&
6301 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006302 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006303 Previous.clear();
6304 }
6305
6306 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6307 "name in alias declaration must be an identifier");
6308 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6309 Name.StartLocation,
6310 Name.Identifier, TInfo);
6311
6312 NewTD->setAccess(AS);
6313
6314 if (Invalid)
6315 NewTD->setInvalidDecl();
6316
Richard Smith3e4c6c42011-05-05 21:57:07 +00006317 CheckTypedefForVariablyModifiedType(S, NewTD);
6318 Invalid |= NewTD->isInvalidDecl();
6319
Richard Smith162e1c12011-04-15 14:24:37 +00006320 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006321
6322 NamedDecl *NewND;
6323 if (TemplateParamLists.size()) {
6324 TypeAliasTemplateDecl *OldDecl = 0;
6325 TemplateParameterList *OldTemplateParams = 0;
6326
6327 if (TemplateParamLists.size() != 1) {
6328 Diag(UsingLoc, diag::err_alias_template_extra_headers)
6329 << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
6330 TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
6331 }
6332 TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
6333
6334 // Only consider previous declarations in the same scope.
6335 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6336 /*ExplicitInstantiationOrSpecialization*/false);
6337 if (!Previous.empty()) {
6338 Redeclaration = true;
6339
6340 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6341 if (!OldDecl && !Invalid) {
6342 Diag(UsingLoc, diag::err_redefinition_different_kind)
6343 << Name.Identifier;
6344
6345 NamedDecl *OldD = Previous.getRepresentativeDecl();
6346 if (OldD->getLocation().isValid())
6347 Diag(OldD->getLocation(), diag::note_previous_definition);
6348
6349 Invalid = true;
6350 }
6351
6352 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6353 if (TemplateParameterListsAreEqual(TemplateParams,
6354 OldDecl->getTemplateParameters(),
6355 /*Complain=*/true,
6356 TPL_TemplateMatch))
6357 OldTemplateParams = OldDecl->getTemplateParameters();
6358 else
6359 Invalid = true;
6360
6361 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6362 if (!Invalid &&
6363 !Context.hasSameType(OldTD->getUnderlyingType(),
6364 NewTD->getUnderlyingType())) {
6365 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6366 // but we can't reasonably accept it.
6367 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6368 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6369 if (OldTD->getLocation().isValid())
6370 Diag(OldTD->getLocation(), diag::note_previous_definition);
6371 Invalid = true;
6372 }
6373 }
6374 }
6375
6376 // Merge any previous default template arguments into our parameters,
6377 // and check the parameter list.
6378 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6379 TPC_TypeAliasTemplate))
6380 return 0;
6381
6382 TypeAliasTemplateDecl *NewDecl =
6383 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6384 Name.Identifier, TemplateParams,
6385 NewTD);
6386
6387 NewDecl->setAccess(AS);
6388
6389 if (Invalid)
6390 NewDecl->setInvalidDecl();
6391 else if (OldDecl)
6392 NewDecl->setPreviousDeclaration(OldDecl);
6393
6394 NewND = NewDecl;
6395 } else {
6396 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6397 NewND = NewTD;
6398 }
Richard Smith162e1c12011-04-15 14:24:37 +00006399
6400 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006401 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006402
Richard Smith3e4c6c42011-05-05 21:57:07 +00006403 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006404}
6405
John McCalld226f652010-08-21 09:40:31 +00006406Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006407 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006408 SourceLocation AliasLoc,
6409 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006410 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006411 SourceLocation IdentLoc,
6412 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006413
Anders Carlsson81c85c42009-03-28 23:53:49 +00006414 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006415 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6416 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006417
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006418 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006419 NamedDecl *PrevDecl
6420 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6421 ForRedeclaration);
6422 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6423 PrevDecl = 0;
6424
6425 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006426 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006427 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006428 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006429 // FIXME: At some point, we'll want to create the (redundant)
6430 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006431 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006432 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006433 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006434 }
Mike Stump1eb44332009-09-09 15:08:12 +00006435
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006436 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6437 diag::err_redefinition_different_kind;
6438 Diag(AliasLoc, DiagID) << Alias;
6439 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006440 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006441 }
6442
John McCalla24dc2e2009-11-17 02:14:36 +00006443 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006444 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006445
John McCallf36e02d2009-10-09 21:13:30 +00006446 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006447 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006448 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006449 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006450 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006451 }
Mike Stump1eb44332009-09-09 15:08:12 +00006452
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006453 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006454 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006455 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006456 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006457
John McCall3dbd3d52010-02-16 06:53:13 +00006458 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006459 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006460}
6461
Douglas Gregor39957dc2010-05-01 15:04:51 +00006462namespace {
6463 /// \brief Scoped object used to handle the state changes required in Sema
6464 /// to implicitly define the body of a C++ member function;
6465 class ImplicitlyDefinedFunctionScope {
6466 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006467 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006468
6469 public:
6470 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006471 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006472 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006473 S.PushFunctionScope();
6474 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6475 }
6476
6477 ~ImplicitlyDefinedFunctionScope() {
6478 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006479 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006480 }
6481 };
6482}
6483
Sean Hunt001cad92011-05-10 00:49:42 +00006484Sema::ImplicitExceptionSpecification
6485Sema::ComputeDefaultedDefaultCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006486 // C++ [except.spec]p14:
6487 // An implicitly declared special member function (Clause 12) shall have an
6488 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006489 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006490 if (ClassDecl->isInvalidDecl())
6491 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006492
Sebastian Redl60618fa2011-03-12 11:50:43 +00006493 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006494 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6495 BEnd = ClassDecl->bases_end();
6496 B != BEnd; ++B) {
6497 if (B->isVirtual()) // Handled below.
6498 continue;
6499
Douglas Gregor18274032010-07-03 00:47:00 +00006500 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6501 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006502 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6503 // If this is a deleted function, add it anyway. This might be conformant
6504 // with the standard. This might not. I'm not sure. It might not matter.
6505 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006506 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006507 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006508 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006509
6510 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006511 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6512 BEnd = ClassDecl->vbases_end();
6513 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006514 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6515 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006516 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6517 // If this is a deleted function, add it anyway. This might be conformant
6518 // with the standard. This might not. I'm not sure. It might not matter.
6519 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006520 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006521 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006522 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006523
6524 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006525 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6526 FEnd = ClassDecl->field_end();
6527 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006528 if (F->hasInClassInitializer()) {
6529 if (Expr *E = F->getInClassInitializer())
6530 ExceptSpec.CalledExpr(E);
6531 else if (!F->isInvalidDecl())
6532 ExceptSpec.SetDelayed();
6533 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006534 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006535 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6536 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6537 // If this is a deleted function, add it anyway. This might be conformant
6538 // with the standard. This might not. I'm not sure. It might not matter.
6539 // In particular, the problem is that this function never gets called. It
6540 // might just be ill-formed because this function attempts to refer to
6541 // a deleted function here.
6542 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006543 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006544 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006545 }
John McCalle23cf432010-12-14 08:05:40 +00006546
Sean Hunt001cad92011-05-10 00:49:42 +00006547 return ExceptSpec;
6548}
6549
6550CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6551 CXXRecordDecl *ClassDecl) {
6552 // C++ [class.ctor]p5:
6553 // A default constructor for a class X is a constructor of class X
6554 // that can be called without an argument. If there is no
6555 // user-declared constructor for class X, a default constructor is
6556 // implicitly declared. An implicitly-declared default constructor
6557 // is an inline public member of its class.
6558 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6559 "Should not build implicit default constructor!");
6560
6561 ImplicitExceptionSpecification Spec =
6562 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6563 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00006564
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006565 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006566 CanQualType ClassType
6567 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006568 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006569 DeclarationName Name
6570 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006571 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006572 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
6573 Context, ClassDecl, ClassLoc, NameInfo,
6574 Context.getFunctionType(Context.VoidTy, 0, 0, EPI), /*TInfo=*/0,
6575 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
6576 /*isConstexpr=*/ClassDecl->defaultedDefaultConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00006577 getLangOpts().CPlusPlus0x);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006578 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006579 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006580 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006581 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00006582
6583 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006584 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6585
Douglas Gregor23c94db2010-07-02 17:43:08 +00006586 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006587 PushOnScopeChains(DefaultCon, S, false);
6588 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006589
Sean Hunte16da072011-10-10 06:18:57 +00006590 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006591 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006592
Douglas Gregor32df23e2010-07-01 22:02:46 +00006593 return DefaultCon;
6594}
6595
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006596void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6597 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006598 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006599 !Constructor->doesThisDeclarationHaveABody() &&
6600 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006601 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006602
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006603 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006604 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006605
Douglas Gregor39957dc2010-05-01 15:04:51 +00006606 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006607 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006608 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006609 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006610 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006611 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006612 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006613 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006614 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006615
6616 SourceLocation Loc = Constructor->getLocation();
6617 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
6618
6619 Constructor->setUsed();
6620 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006621
6622 if (ASTMutationListener *L = getASTMutationListener()) {
6623 L->CompletedImplicitDefinition(Constructor);
6624 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006625}
6626
Richard Smith7a614d82011-06-11 17:19:42 +00006627/// Get any existing defaulted default constructor for the given class. Do not
6628/// implicitly define one if it does not exist.
6629static CXXConstructorDecl *getDefaultedDefaultConstructorUnsafe(Sema &Self,
6630 CXXRecordDecl *D) {
6631 ASTContext &Context = Self.Context;
6632 QualType ClassType = Context.getTypeDeclType(D);
6633 DeclarationName ConstructorName
6634 = Context.DeclarationNames.getCXXConstructorName(
6635 Context.getCanonicalType(ClassType.getUnqualifiedType()));
6636
6637 DeclContext::lookup_const_iterator Con, ConEnd;
6638 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
6639 Con != ConEnd; ++Con) {
6640 // A function template cannot be defaulted.
6641 if (isa<FunctionTemplateDecl>(*Con))
6642 continue;
6643
6644 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
6645 if (Constructor->isDefaultConstructor())
6646 return Constructor->isDefaulted() ? Constructor : 0;
6647 }
6648 return 0;
6649}
6650
6651void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6652 if (!D) return;
6653 AdjustDeclIfTemplate(D);
6654
6655 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
6656 CXXConstructorDecl *CtorDecl
6657 = getDefaultedDefaultConstructorUnsafe(*this, ClassDecl);
6658
6659 if (!CtorDecl) return;
6660
6661 // Compute the exception specification for the default constructor.
6662 const FunctionProtoType *CtorTy =
6663 CtorDecl->getType()->castAs<FunctionProtoType>();
6664 if (CtorTy->getExceptionSpecType() == EST_Delayed) {
Richard Smithe6975e92012-04-17 00:58:00 +00006665 // FIXME: Don't do this unless the exception spec is needed.
Richard Smith7a614d82011-06-11 17:19:42 +00006666 ImplicitExceptionSpecification Spec =
6667 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
6668 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6669 assert(EPI.ExceptionSpecType != EST_Delayed);
6670
6671 CtorDecl->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6672 }
6673
6674 // If the default constructor is explicitly defaulted, checking the exception
6675 // specification is deferred until now.
6676 if (!CtorDecl->isInvalidDecl() && CtorDecl->isExplicitlyDefaulted() &&
6677 !ClassDecl->isDependentType())
Richard Smith3003e1d2012-05-15 04:39:51 +00006678 CheckExplicitlyDefaultedSpecialMember(CtorDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006679}
6680
Sebastian Redlf677ea32011-02-05 19:23:19 +00006681void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6682 // We start with an initial pass over the base classes to collect those that
6683 // inherit constructors from. If there are none, we can forgo all further
6684 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006685 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006686 BasesVector BasesToInheritFrom;
6687 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6688 BaseE = ClassDecl->bases_end();
6689 BaseIt != BaseE; ++BaseIt) {
6690 if (BaseIt->getInheritConstructors()) {
6691 QualType Base = BaseIt->getType();
6692 if (Base->isDependentType()) {
6693 // If we inherit constructors from anything that is dependent, just
6694 // abort processing altogether. We'll get another chance for the
6695 // instantiations.
6696 return;
6697 }
6698 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6699 }
6700 }
6701 if (BasesToInheritFrom.empty())
6702 return;
6703
6704 // Now collect the constructors that we already have in the current class.
6705 // Those take precedence over inherited constructors.
6706 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6707 // unless there is a user-declared constructor with the same signature in
6708 // the class where the using-declaration appears.
6709 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6710 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6711 CtorE = ClassDecl->ctor_end();
6712 CtorIt != CtorE; ++CtorIt) {
6713 ExistingConstructors.insert(
6714 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6715 }
6716
Sebastian Redlf677ea32011-02-05 19:23:19 +00006717 DeclarationName CreatedCtorName =
6718 Context.DeclarationNames.getCXXConstructorName(
6719 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6720
6721 // Now comes the true work.
6722 // First, we keep a map from constructor types to the base that introduced
6723 // them. Needed for finding conflicting constructors. We also keep the
6724 // actually inserted declarations in there, for pretty diagnostics.
6725 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6726 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6727 ConstructorToSourceMap InheritedConstructors;
6728 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6729 BaseE = BasesToInheritFrom.end();
6730 BaseIt != BaseE; ++BaseIt) {
6731 const RecordType *Base = *BaseIt;
6732 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6733 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6734 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6735 CtorE = BaseDecl->ctor_end();
6736 CtorIt != CtorE; ++CtorIt) {
6737 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006738 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006739 DeclarationName Name =
6740 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006741 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6742 LookupQualifiedName(Result, CurContext);
6743 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006744 SourceLocation UsingLoc = UD ? UD->getLocation() :
6745 ClassDecl->getLocation();
6746
6747 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6748 // from the class X named in the using-declaration consists of actual
6749 // constructors and notional constructors that result from the
6750 // transformation of defaulted parameters as follows:
6751 // - all non-template default constructors of X, and
6752 // - for each non-template constructor of X that has at least one
6753 // parameter with a default argument, the set of constructors that
6754 // results from omitting any ellipsis parameter specification and
6755 // successively omitting parameters with a default argument from the
6756 // end of the parameter-type-list.
David Blaikie262bc182012-04-30 02:36:29 +00006757 CXXConstructorDecl *BaseCtor = &*CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006758 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6759 const FunctionProtoType *BaseCtorType =
6760 BaseCtor->getType()->getAs<FunctionProtoType>();
6761
6762 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6763 maxParams = BaseCtor->getNumParams();
6764 params <= maxParams; ++params) {
6765 // Skip default constructors. They're never inherited.
6766 if (params == 0)
6767 continue;
6768 // Skip copy and move constructors for the same reason.
6769 if (CanBeCopyOrMove && params == 1)
6770 continue;
6771
6772 // Build up a function type for this particular constructor.
6773 // FIXME: The working paper does not consider that the exception spec
6774 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00006775 // source. This code doesn't yet, either. When it does, this code will
6776 // need to be delayed until after exception specifications and in-class
6777 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006778 const Type *NewCtorType;
6779 if (params == maxParams)
6780 NewCtorType = BaseCtorType;
6781 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006782 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006783 for (unsigned i = 0; i < params; ++i) {
6784 Args.push_back(BaseCtorType->getArgType(i));
6785 }
6786 FunctionProtoType::ExtProtoInfo ExtInfo =
6787 BaseCtorType->getExtProtoInfo();
6788 ExtInfo.Variadic = false;
6789 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
6790 Args.data(), params, ExtInfo)
6791 .getTypePtr();
6792 }
6793 const Type *CanonicalNewCtorType =
6794 Context.getCanonicalType(NewCtorType);
6795
6796 // Now that we have the type, first check if the class already has a
6797 // constructor with this signature.
6798 if (ExistingConstructors.count(CanonicalNewCtorType))
6799 continue;
6800
6801 // Then we check if we have already declared an inherited constructor
6802 // with this signature.
6803 std::pair<ConstructorToSourceMap::iterator, bool> result =
6804 InheritedConstructors.insert(std::make_pair(
6805 CanonicalNewCtorType,
6806 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
6807 if (!result.second) {
6808 // Already in the map. If it came from a different class, that's an
6809 // error. Not if it's from the same.
6810 CanQualType PreviousBase = result.first->second.first;
6811 if (CanonicalBase != PreviousBase) {
6812 const CXXConstructorDecl *PrevCtor = result.first->second.second;
6813 const CXXConstructorDecl *PrevBaseCtor =
6814 PrevCtor->getInheritedConstructor();
6815 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
6816
6817 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
6818 Diag(BaseCtor->getLocation(),
6819 diag::note_using_decl_constructor_conflict_current_ctor);
6820 Diag(PrevBaseCtor->getLocation(),
6821 diag::note_using_decl_constructor_conflict_previous_ctor);
6822 Diag(PrevCtor->getLocation(),
6823 diag::note_using_decl_constructor_conflict_previous_using);
6824 }
6825 continue;
6826 }
6827
6828 // OK, we're there, now add the constructor.
6829 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006830 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00006831 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
6832 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006833 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
6834 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006835 /*ImplicitlyDeclared=*/true,
6836 // FIXME: Due to a defect in the standard, we treat inherited
6837 // constructors as constexpr even if that makes them ill-formed.
6838 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00006839 NewCtor->setAccess(BaseCtor->getAccess());
6840
6841 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006842 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006843 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006844 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
6845 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00006846 /*IdentifierInfo=*/0,
6847 BaseCtorType->getArgType(i),
6848 /*TInfo=*/0, SC_None,
6849 SC_None, /*DefaultArg=*/0));
6850 }
David Blaikie4278c652011-09-21 18:16:56 +00006851 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006852 NewCtor->setInheritedConstructor(BaseCtor);
6853
Sebastian Redlf677ea32011-02-05 19:23:19 +00006854 ClassDecl->addDecl(NewCtor);
6855 result.first->second.second = NewCtor;
6856 }
6857 }
6858 }
6859}
6860
Sean Huntcb45a0f2011-05-12 22:46:25 +00006861Sema::ImplicitExceptionSpecification
6862Sema::ComputeDefaultedDtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006863 // C++ [except.spec]p14:
6864 // An implicitly declared special member function (Clause 12) shall have
6865 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00006866 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006867 if (ClassDecl->isInvalidDecl())
6868 return ExceptSpec;
6869
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006870 // Direct base-class destructors.
6871 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6872 BEnd = ClassDecl->bases_end();
6873 B != BEnd; ++B) {
6874 if (B->isVirtual()) // Handled below.
6875 continue;
6876
6877 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006878 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006879 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006880 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006881
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006882 // Virtual base-class destructors.
6883 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6884 BEnd = ClassDecl->vbases_end();
6885 B != BEnd; ++B) {
6886 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006887 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006888 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006889 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00006890
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006891 // Field destructors.
6892 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6893 FEnd = ClassDecl->field_end();
6894 F != FEnd; ++F) {
6895 if (const RecordType *RecordTy
6896 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00006897 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00006898 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006899 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006900
Sean Huntcb45a0f2011-05-12 22:46:25 +00006901 return ExceptSpec;
6902}
6903
6904CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
6905 // C++ [class.dtor]p2:
6906 // If a class has no user-declared destructor, a destructor is
6907 // declared implicitly. An implicitly-declared destructor is an
6908 // inline public member of its class.
6909
6910 ImplicitExceptionSpecification Spec =
Sebastian Redl0ee33912011-05-19 05:13:44 +00006911 ComputeDefaultedDtorExceptionSpec(ClassDecl);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006912 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6913
Douglas Gregor4923aa22010-07-02 20:37:36 +00006914 // Create the actual destructor declaration.
John McCalle23cf432010-12-14 08:05:40 +00006915 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Sebastian Redl60618fa2011-03-12 11:50:43 +00006916
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006917 CanQualType ClassType
6918 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006919 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006920 DeclarationName Name
6921 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006922 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006923 CXXDestructorDecl *Destructor
Sebastian Redl60618fa2011-03-12 11:50:43 +00006924 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
6925 /*isInline=*/true,
6926 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006927 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00006928 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006929 Destructor->setImplicit();
6930 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00006931
6932 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00006933 ++ASTContext::NumImplicitDestructorsDeclared;
6934
6935 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00006936 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00006937 PushOnScopeChains(Destructor, S, false);
6938 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006939
6940 // This could be uniqued if it ever proves significant.
6941 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Sean Huntcb45a0f2011-05-12 22:46:25 +00006942
Richard Smith9a561d52012-02-26 09:11:52 +00006943 AddOverriddenMethods(ClassDecl, Destructor);
6944
Richard Smith7d5088a2012-02-18 02:02:13 +00006945 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00006946 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00006947
Douglas Gregorfabd43a2010-07-01 19:09:28 +00006948 return Destructor;
6949}
6950
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006951void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00006952 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00006953 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00006954 !Destructor->doesThisDeclarationHaveABody() &&
6955 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006956 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00006957 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006958 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006959
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006960 if (Destructor->isInvalidDecl())
6961 return;
6962
Douglas Gregor39957dc2010-05-01 15:04:51 +00006963 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006964
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006965 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00006966 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
6967 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00006968
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006969 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006970 Diag(CurrentLocation, diag::note_member_synthesized_at)
6971 << CXXDestructor << Context.getTagDeclType(ClassDecl);
6972
6973 Destructor->setInvalidDecl();
6974 return;
6975 }
6976
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006977 SourceLocation Loc = Destructor->getLocation();
6978 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00006979 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006980 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006981 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006982
6983 if (ASTMutationListener *L = getASTMutationListener()) {
6984 L->CompletedImplicitDefinition(Destructor);
6985 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006986}
6987
Richard Smitha4156b82012-04-21 18:42:51 +00006988/// \brief Perform any semantic analysis which needs to be delayed until all
6989/// pending class member declarations have been parsed.
6990void Sema::ActOnFinishCXXMemberDecls() {
6991 // Now we have parsed all exception specifications, determine the implicit
6992 // exception specifications for destructors.
6993 for (unsigned i = 0, e = DelayedDestructorExceptionSpecs.size();
6994 i != e; ++i) {
6995 CXXDestructorDecl *Dtor = DelayedDestructorExceptionSpecs[i];
6996 AdjustDestructorExceptionSpec(Dtor->getParent(), Dtor, true);
6997 }
6998 DelayedDestructorExceptionSpecs.clear();
6999
7000 // Perform any deferred checking of exception specifications for virtual
7001 // destructors.
7002 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7003 i != e; ++i) {
7004 const CXXDestructorDecl *Dtor =
7005 DelayedDestructorExceptionSpecChecks[i].first;
7006 assert(!Dtor->getParent()->isDependentType() &&
7007 "Should not ever add destructors of templates into the list.");
7008 CheckOverridingFunctionExceptionSpec(Dtor,
7009 DelayedDestructorExceptionSpecChecks[i].second);
7010 }
7011 DelayedDestructorExceptionSpecChecks.clear();
7012}
7013
Sebastian Redl0ee33912011-05-19 05:13:44 +00007014void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *classDecl,
Richard Smitha4156b82012-04-21 18:42:51 +00007015 CXXDestructorDecl *destructor,
7016 bool WasDelayed) {
Sebastian Redl0ee33912011-05-19 05:13:44 +00007017 // C++11 [class.dtor]p3:
7018 // A declaration of a destructor that does not have an exception-
7019 // specification is implicitly considered to have the same exception-
7020 // specification as an implicit declaration.
7021 const FunctionProtoType *dtorType = destructor->getType()->
7022 getAs<FunctionProtoType>();
Richard Smitha4156b82012-04-21 18:42:51 +00007023 if (!WasDelayed && dtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007024 return;
7025
7026 ImplicitExceptionSpecification exceptSpec =
7027 ComputeDefaultedDtorExceptionSpec(classDecl);
7028
Chandler Carruth3f224b22011-09-20 04:55:26 +00007029 // Replace the destructor's type, building off the existing one. Fortunately,
7030 // the only thing of interest in the destructor type is its extended info.
7031 // The return and arguments are fixed.
7032 FunctionProtoType::ExtProtoInfo epi = dtorType->getExtProtoInfo();
Sebastian Redl0ee33912011-05-19 05:13:44 +00007033 epi.ExceptionSpecType = exceptSpec.getExceptionSpecType();
7034 epi.NumExceptions = exceptSpec.size();
7035 epi.Exceptions = exceptSpec.data();
7036 QualType ty = Context.getFunctionType(Context.VoidTy, 0, 0, epi);
7037
7038 destructor->setType(ty);
7039
Richard Smitha4156b82012-04-21 18:42:51 +00007040 // If we can't compute the exception specification for this destructor yet
7041 // (because it depends on an exception specification which we have not parsed
7042 // yet), make a note that we need to try again when the class is complete.
7043 if (epi.ExceptionSpecType == EST_Delayed) {
7044 assert(!WasDelayed && "couldn't compute destructor exception spec");
7045 DelayedDestructorExceptionSpecs.push_back(destructor);
7046 }
7047
Sebastian Redl0ee33912011-05-19 05:13:44 +00007048 // FIXME: If the destructor has a body that could throw, and the newly created
7049 // spec doesn't allow exceptions, we should emit a warning, because this
7050 // change in behavior can break conforming C++03 programs at runtime.
7051 // However, we don't have a body yet, so it needs to be done somewhere else.
7052}
7053
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007054/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007055/// \c To.
7056///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007057/// This routine is used to copy/move the members of a class with an
7058/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007059/// copied are arrays, this routine builds for loops to copy them.
7060///
7061/// \param S The Sema object used for type-checking.
7062///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007063/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007064///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007065/// \param T The type of the expressions being copied/moved. Both expressions
7066/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007067///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007068/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007069///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007070/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007071///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007072/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007073/// Otherwise, it's a non-static member subobject.
7074///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007075/// \param Copying Whether we're copying or moving.
7076///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007077/// \param Depth Internal parameter recording the depth of the recursion.
7078///
7079/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007080static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007081BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007082 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007083 bool CopyingBaseSubobject, bool Copying,
7084 unsigned Depth = 0) {
7085 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007086 // Each subobject is assigned in the manner appropriate to its type:
7087 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007088 // - if the subobject is of class type, as if by a call to operator= with
7089 // the subobject as the object expression and the corresponding
7090 // subobject of x as a single function argument (as if by explicit
7091 // qualification; that is, ignoring any possible virtual overriding
7092 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007093 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7094 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7095
7096 // Look for operator=.
7097 DeclarationName Name
7098 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7099 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7100 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7101
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007102 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007103 LookupResult::Filter F = OpLookup.makeFilter();
7104 while (F.hasNext()) {
7105 NamedDecl *D = F.next();
7106 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007107 if (Method->isCopyAssignmentOperator() ||
7108 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007109 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007110
Douglas Gregor06a9f362010-05-01 20:49:11 +00007111 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007112 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007113 F.done();
7114
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007115 // Suppress the protected check (C++ [class.protected]) for each of the
7116 // assignment operators we found. This strange dance is required when
7117 // we're assigning via a base classes's copy-assignment operator. To
7118 // ensure that we're getting the right base class subobject (without
7119 // ambiguities), we need to cast "this" to that subobject type; to
7120 // ensure that we don't go through the virtual call mechanism, we need
7121 // to qualify the operator= name with the base class (see below). However,
7122 // this means that if the base class has a protected copy assignment
7123 // operator, the protected member access check will fail. So, we
7124 // rewrite "protected" access to "public" access in this case, since we
7125 // know by construction that we're calling from a derived class.
7126 if (CopyingBaseSubobject) {
7127 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7128 L != LEnd; ++L) {
7129 if (L.getAccess() == AS_protected)
7130 L.setAccess(AS_public);
7131 }
7132 }
7133
Douglas Gregor06a9f362010-05-01 20:49:11 +00007134 // Create the nested-name-specifier that will be used to qualify the
7135 // reference to operator=; this is required to suppress the virtual
7136 // call mechanism.
7137 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007138 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007139 SS.MakeTrivial(S.Context,
7140 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007141 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007142 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007143
7144 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007145 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007146 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007147 /*TemplateKWLoc=*/SourceLocation(),
7148 /*FirstQualifierInScope=*/0,
7149 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007150 /*TemplateArgs=*/0,
7151 /*SuppressQualifierCheck=*/true);
7152 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007153 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007154
7155 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007156
John McCall60d7b3a2010-08-24 06:29:42 +00007157 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007158 OpEqualRef.takeAs<Expr>(),
7159 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007160 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007161 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007162
7163 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007164 }
John McCallb0207482010-03-16 06:11:48 +00007165
Douglas Gregor06a9f362010-05-01 20:49:11 +00007166 // - if the subobject is of scalar type, the built-in assignment
7167 // operator is used.
7168 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7169 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007170 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007171 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007172 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007173
7174 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007175 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007176
7177 // - if the subobject is an array, each element is assigned, in the
7178 // manner appropriate to the element type;
7179
7180 // Construct a loop over the array bounds, e.g.,
7181 //
7182 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7183 //
7184 // that will copy each of the array elements.
7185 QualType SizeType = S.Context.getSizeType();
7186
7187 // Create the iteration variable.
7188 IdentifierInfo *IterationVarName = 0;
7189 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007190 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007191 llvm::raw_svector_ostream OS(Str);
7192 OS << "__i" << Depth;
7193 IterationVarName = &S.Context.Idents.get(OS.str());
7194 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007195 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007196 IterationVarName, SizeType,
7197 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007198 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007199
7200 // Initialize the iteration variable to zero.
7201 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007202 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007203
7204 // Create a reference to the iteration variable; we'll use this several
7205 // times throughout.
7206 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007207 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007208 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007209 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7210 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7211
Douglas Gregor06a9f362010-05-01 20:49:11 +00007212 // Create the DeclStmt that holds the iteration variable.
7213 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7214
7215 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007216 llvm::APInt Upper
7217 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007218 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007219 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007220 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7221 BO_NE, S.Context.BoolTy,
7222 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007223
7224 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007225 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007226 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7227 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007228
7229 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007230 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007231 IterationVarRefRVal,
7232 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007233 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007234 IterationVarRefRVal,
7235 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007236 if (!Copying) // Cast to rvalue
7237 From = CastForMoving(S, From);
7238
7239 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007240 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7241 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007242 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007243 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007244 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007245
7246 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007247 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007248 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007249 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007250 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007251}
7252
Sean Hunt30de05c2011-05-14 05:23:20 +00007253std::pair<Sema::ImplicitExceptionSpecification, bool>
7254Sema::ComputeDefaultedCopyAssignmentExceptionSpecAndConst(
7255 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007256 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00007257 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007258
Douglas Gregord3c35902010-07-01 16:36:15 +00007259 // C++ [class.copy]p10:
7260 // If the class definition does not explicitly declare a copy
7261 // assignment operator, one is declared implicitly.
7262 // The implicitly-defined copy assignment operator for a class X
7263 // will have the form
7264 //
7265 // X& X::operator=(const X&)
7266 //
7267 // if
7268 bool HasConstCopyAssignment = true;
7269
7270 // -- each direct base class B of X has a copy assignment operator
7271 // whose parameter is of type const B&, const volatile B& or B,
7272 // and
7273 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7274 BaseEnd = ClassDecl->bases_end();
7275 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007276 // We'll handle this below
7277 if (LangOpts.CPlusPlus0x && Base->isVirtual())
7278 continue;
7279
Douglas Gregord3c35902010-07-01 16:36:15 +00007280 assert(!Base->getType()->isDependentType() &&
7281 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007282 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007283 HasConstCopyAssignment &=
7284 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7285 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007286 }
7287
Richard Smithebaf0e62011-10-18 20:49:44 +00007288 // In C++11, the above citation has "or virtual" added
Sean Hunt661c67a2011-06-21 23:42:56 +00007289 if (LangOpts.CPlusPlus0x) {
7290 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7291 BaseEnd = ClassDecl->vbases_end();
7292 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
7293 assert(!Base->getType()->isDependentType() &&
7294 "Cannot generate implicit members for class with dependent bases.");
7295 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smith704c8f72012-04-20 18:46:14 +00007296 HasConstCopyAssignment &=
7297 (bool)LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7298 false, 0);
Sean Hunt661c67a2011-06-21 23:42:56 +00007299 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007300 }
7301
7302 // -- for all the nonstatic data members of X that are of a class
7303 // type M (or array thereof), each such class type has a copy
7304 // assignment operator whose parameter is of type const M&,
7305 // const volatile M& or M.
7306 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7307 FieldEnd = ClassDecl->field_end();
7308 HasConstCopyAssignment && Field != FieldEnd;
7309 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007310 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007311 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00007312 HasConstCopyAssignment &=
7313 (bool)LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7314 false, 0);
Douglas Gregord3c35902010-07-01 16:36:15 +00007315 }
7316 }
7317
7318 // Otherwise, the implicitly declared copy assignment operator will
7319 // have the form
7320 //
7321 // X& X::operator=(X&)
Douglas Gregord3c35902010-07-01 16:36:15 +00007322
Douglas Gregorb87786f2010-07-01 17:48:08 +00007323 // C++ [except.spec]p14:
7324 // An implicitly declared special member function (Clause 12) shall have an
7325 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007326
7327 // It is unspecified whether or not an implicit copy assignment operator
7328 // attempts to deduplicate calls to assignment operators of virtual bases are
7329 // made. As such, this exception specification is effectively unspecified.
7330 // Based on a similar decision made for constness in C++0x, we're erring on
7331 // the side of assuming such calls to be made regardless of whether they
7332 // actually happen.
Richard Smithe6975e92012-04-17 00:58:00 +00007333 ImplicitExceptionSpecification ExceptSpec(*this);
Sean Hunt661c67a2011-06-21 23:42:56 +00007334 unsigned ArgQuals = HasConstCopyAssignment ? Qualifiers::Const : 0;
Douglas Gregorb87786f2010-07-01 17:48:08 +00007335 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7336 BaseEnd = ClassDecl->bases_end();
7337 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007338 if (Base->isVirtual())
7339 continue;
7340
Douglas Gregora376d102010-07-02 21:50:04 +00007341 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007342 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007343 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7344 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007345 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007346 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007347
7348 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7349 BaseEnd = ClassDecl->vbases_end();
7350 Base != BaseEnd; ++Base) {
7351 CXXRecordDecl *BaseClassDecl
7352 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7353 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7354 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007355 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007356 }
7357
Douglas Gregorb87786f2010-07-01 17:48:08 +00007358 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7359 FieldEnd = ClassDecl->field_end();
7360 Field != FieldEnd;
7361 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007362 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007363 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7364 if (CXXMethodDecl *CopyAssign =
7365 LookupCopyingAssignment(FieldClassDecl, ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007366 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007367 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007368 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007369
Sean Hunt30de05c2011-05-14 05:23:20 +00007370 return std::make_pair(ExceptSpec, HasConstCopyAssignment);
7371}
7372
7373CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7374 // Note: The following rules are largely analoguous to the copy
7375 // constructor rules. Note that virtual bases are not taken into account
7376 // for determining the argument type of the operator. Note also that
7377 // operators taking an object instead of a reference are allowed.
7378
Richard Smithe6975e92012-04-17 00:58:00 +00007379 ImplicitExceptionSpecification Spec(*this);
Sean Hunt30de05c2011-05-14 05:23:20 +00007380 bool Const;
7381 llvm::tie(Spec, Const) =
7382 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(ClassDecl);
7383
7384 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7385 QualType RetType = Context.getLValueReferenceType(ArgType);
7386 if (Const)
7387 ArgType = ArgType.withConst();
7388 ArgType = Context.getLValueReferenceType(ArgType);
7389
Douglas Gregord3c35902010-07-01 16:36:15 +00007390 // An implicitly-declared copy assignment operator is an inline public
7391 // member of its class.
Sean Hunt30de05c2011-05-14 05:23:20 +00007392 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Douglas Gregord3c35902010-07-01 16:36:15 +00007393 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007394 SourceLocation ClassLoc = ClassDecl->getLocation();
7395 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007396 CXXMethodDecl *CopyAssignment
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007397 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
John McCalle23cf432010-12-14 08:05:40 +00007398 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregord3c35902010-07-01 16:36:15 +00007399 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007400 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007401 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007402 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007403 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007404 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007405 CopyAssignment->setImplicit();
7406 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregord3c35902010-07-01 16:36:15 +00007407
7408 // Add the parameter to the operator.
7409 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007410 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007411 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007412 SC_None,
7413 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007414 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007415
Douglas Gregora376d102010-07-02 21:50:04 +00007416 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007417 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007418
Douglas Gregor23c94db2010-07-02 17:43:08 +00007419 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007420 PushOnScopeChains(CopyAssignment, S, false);
7421 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007422
Nico Weberafcc96a2012-01-23 03:19:29 +00007423 // C++0x [class.copy]p19:
7424 // .... If the class definition does not explicitly declare a copy
7425 // assignment operator, there is no user-declared move constructor, and
7426 // there is no user-declared move assignment operator, a copy assignment
7427 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007428 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007429 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007430
Douglas Gregord3c35902010-07-01 16:36:15 +00007431 AddOverriddenMethods(ClassDecl, CopyAssignment);
7432 return CopyAssignment;
7433}
7434
Douglas Gregor06a9f362010-05-01 20:49:11 +00007435void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7436 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007437 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007438 CopyAssignOperator->isOverloadedOperator() &&
7439 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007440 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7441 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007442 "DefineImplicitCopyAssignment called for wrong function");
7443
7444 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7445
7446 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7447 CopyAssignOperator->setInvalidDecl();
7448 return;
7449 }
7450
7451 CopyAssignOperator->setUsed();
7452
7453 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007454 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007455
7456 // C++0x [class.copy]p30:
7457 // The implicitly-defined or explicitly-defaulted copy assignment operator
7458 // for a non-union class X performs memberwise copy assignment of its
7459 // subobjects. The direct base classes of X are assigned first, in the
7460 // order of their declaration in the base-specifier-list, and then the
7461 // immediate non-static data members of X are assigned, in the order in
7462 // which they were declared in the class definition.
7463
7464 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00007465 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007466
7467 // The parameter for the "other" object, which we are copying from.
7468 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7469 Qualifiers OtherQuals = Other->getType().getQualifiers();
7470 QualType OtherRefType = Other->getType();
7471 if (const LValueReferenceType *OtherRef
7472 = OtherRefType->getAs<LValueReferenceType>()) {
7473 OtherRefType = OtherRef->getPointeeType();
7474 OtherQuals = OtherRefType.getQualifiers();
7475 }
7476
7477 // Our location for everything implicitly-generated.
7478 SourceLocation Loc = CopyAssignOperator->getLocation();
7479
7480 // Construct a reference to the "other" object. We'll be using this
7481 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007482 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007483 assert(OtherRef && "Reference to parameter cannot fail!");
7484
7485 // Construct the "this" pointer. We'll be using this throughout the generated
7486 // ASTs.
7487 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7488 assert(This && "Reference to this cannot fail!");
7489
7490 // Assign base classes.
7491 bool Invalid = false;
7492 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7493 E = ClassDecl->bases_end(); Base != E; ++Base) {
7494 // Form the assignment:
7495 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7496 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007497 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007498 Invalid = true;
7499 continue;
7500 }
7501
John McCallf871d0c2010-08-07 06:22:56 +00007502 CXXCastPath BasePath;
7503 BasePath.push_back(Base);
7504
Douglas Gregor06a9f362010-05-01 20:49:11 +00007505 // Construct the "from" expression, which is an implicit cast to the
7506 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007507 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007508 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7509 CK_UncheckedDerivedToBase,
7510 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007511
7512 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007513 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007514
7515 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007516 To = ImpCastExprToType(To.take(),
7517 Context.getCVRQualifiedType(BaseType,
7518 CopyAssignOperator->getTypeQualifiers()),
7519 CK_UncheckedDerivedToBase,
7520 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007521
7522 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007523 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007524 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007525 /*CopyingBaseSubobject=*/true,
7526 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007527 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007528 Diag(CurrentLocation, diag::note_member_synthesized_at)
7529 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7530 CopyAssignOperator->setInvalidDecl();
7531 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007532 }
7533
7534 // Success! Record the copy.
7535 Statements.push_back(Copy.takeAs<Expr>());
7536 }
7537
7538 // \brief Reference to the __builtin_memcpy function.
7539 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007540 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007541 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007542
7543 // Assign non-static members.
7544 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7545 FieldEnd = ClassDecl->field_end();
7546 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007547 if (Field->isUnnamedBitfield())
7548 continue;
7549
Douglas Gregor06a9f362010-05-01 20:49:11 +00007550 // Check for members of reference type; we can't copy those.
7551 if (Field->getType()->isReferenceType()) {
7552 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7553 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7554 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007555 Diag(CurrentLocation, diag::note_member_synthesized_at)
7556 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007557 Invalid = true;
7558 continue;
7559 }
7560
7561 // Check for members of const-qualified, non-class type.
7562 QualType BaseType = Context.getBaseElementType(Field->getType());
7563 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7564 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7565 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7566 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007567 Diag(CurrentLocation, diag::note_member_synthesized_at)
7568 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007569 Invalid = true;
7570 continue;
7571 }
John McCallb77115d2011-06-17 00:18:42 +00007572
7573 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007574 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7575 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007576
7577 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007578 if (FieldType->isIncompleteArrayType()) {
7579 assert(ClassDecl->hasFlexibleArrayMember() &&
7580 "Incomplete array type is not valid");
7581 continue;
7582 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007583
7584 // Build references to the field in the object we're copying from and to.
7585 CXXScopeSpec SS; // Intentionally empty
7586 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7587 LookupMemberName);
David Blaikie262bc182012-04-30 02:36:29 +00007588 MemberLookup.addDecl(&*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007589 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007590 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007591 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007592 SS, SourceLocation(), 0,
7593 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007594 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007595 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007596 SS, SourceLocation(), 0,
7597 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007598 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7599 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7600
7601 // If the field should be copied with __builtin_memcpy rather than via
7602 // explicit assignments, do so. This optimization only applies for arrays
7603 // of scalars and arrays of class type with trivial copy-assignment
7604 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007605 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007606 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007607 // Compute the size of the memory buffer to be copied.
7608 QualType SizeType = Context.getSizeType();
7609 llvm::APInt Size(Context.getTypeSize(SizeType),
7610 Context.getTypeSizeInChars(BaseType).getQuantity());
7611 for (const ConstantArrayType *Array
7612 = Context.getAsConstantArrayType(FieldType);
7613 Array;
7614 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007615 llvm::APInt ArraySize
7616 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007617 Size *= ArraySize;
7618 }
7619
7620 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007621 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7622 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007623
7624 bool NeedsCollectableMemCpy =
7625 (BaseType->isRecordType() &&
7626 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7627
7628 if (NeedsCollectableMemCpy) {
7629 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007630 // Create a reference to the __builtin_objc_memmove_collectable function.
7631 LookupResult R(*this,
7632 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007633 Loc, LookupOrdinaryName);
7634 LookupName(R, TUScope, true);
7635
7636 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7637 if (!CollectableMemCpy) {
7638 // Something went horribly wrong earlier, and we will have
7639 // complained about it.
7640 Invalid = true;
7641 continue;
7642 }
7643
7644 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
7645 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007646 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007647 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7648 }
7649 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007650 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007651 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007652 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7653 LookupOrdinaryName);
7654 LookupName(R, TUScope, true);
7655
7656 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7657 if (!BuiltinMemCpy) {
7658 // Something went horribly wrong earlier, and we will have complained
7659 // about it.
7660 Invalid = true;
7661 continue;
7662 }
7663
7664 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
7665 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007666 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007667 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7668 }
7669
John McCallca0408f2010-08-23 06:44:23 +00007670 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007671 CallArgs.push_back(To.takeAs<Expr>());
7672 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007673 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007674 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007675 if (NeedsCollectableMemCpy)
7676 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007677 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007678 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007679 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007680 else
7681 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007682 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007683 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007684 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007685
Douglas Gregor06a9f362010-05-01 20:49:11 +00007686 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7687 Statements.push_back(Call.takeAs<Expr>());
7688 continue;
7689 }
7690
7691 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007692 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007693 To.get(), From.get(),
7694 /*CopyingBaseSubobject=*/false,
7695 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007696 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007697 Diag(CurrentLocation, diag::note_member_synthesized_at)
7698 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7699 CopyAssignOperator->setInvalidDecl();
7700 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007701 }
7702
7703 // Success! Record the copy.
7704 Statements.push_back(Copy.takeAs<Stmt>());
7705 }
7706
7707 if (!Invalid) {
7708 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007709 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007710
John McCall60d7b3a2010-08-24 06:29:42 +00007711 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007712 if (Return.isInvalid())
7713 Invalid = true;
7714 else {
7715 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007716
7717 if (Trap.hasErrorOccurred()) {
7718 Diag(CurrentLocation, diag::note_member_synthesized_at)
7719 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7720 Invalid = true;
7721 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007722 }
7723 }
7724
7725 if (Invalid) {
7726 CopyAssignOperator->setInvalidDecl();
7727 return;
7728 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007729
7730 StmtResult Body;
7731 {
7732 CompoundScopeRAII CompoundScope(*this);
7733 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
7734 /*isStmtExpr=*/false);
7735 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7736 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007737 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007738
7739 if (ASTMutationListener *L = getASTMutationListener()) {
7740 L->CompletedImplicitDefinition(CopyAssignOperator);
7741 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007742}
7743
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007744Sema::ImplicitExceptionSpecification
7745Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXRecordDecl *ClassDecl) {
Richard Smithe6975e92012-04-17 00:58:00 +00007746 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007747
7748 if (ClassDecl->isInvalidDecl())
7749 return ExceptSpec;
7750
7751 // C++0x [except.spec]p14:
7752 // An implicitly declared special member function (Clause 12) shall have an
7753 // exception-specification. [...]
7754
7755 // It is unspecified whether or not an implicit move assignment operator
7756 // attempts to deduplicate calls to assignment operators of virtual bases are
7757 // made. As such, this exception specification is effectively unspecified.
7758 // Based on a similar decision made for constness in C++0x, we're erring on
7759 // the side of assuming such calls to be made regardless of whether they
7760 // actually happen.
7761 // Note that a move constructor is not implicitly declared when there are
7762 // virtual bases, but it can still be user-declared and explicitly defaulted.
7763 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7764 BaseEnd = ClassDecl->bases_end();
7765 Base != BaseEnd; ++Base) {
7766 if (Base->isVirtual())
7767 continue;
7768
7769 CXXRecordDecl *BaseClassDecl
7770 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7771 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7772 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007773 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007774 }
7775
7776 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7777 BaseEnd = ClassDecl->vbases_end();
7778 Base != BaseEnd; ++Base) {
7779 CXXRecordDecl *BaseClassDecl
7780 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7781 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
7782 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007783 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007784 }
7785
7786 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7787 FieldEnd = ClassDecl->field_end();
7788 Field != FieldEnd;
7789 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007790 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007791 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7792 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(FieldClassDecl,
7793 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007794 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007795 }
7796 }
7797
7798 return ExceptSpec;
7799}
7800
Richard Smith1c931be2012-04-02 18:40:40 +00007801/// Determine whether the class type has any direct or indirect virtual base
7802/// classes which have a non-trivial move assignment operator.
7803static bool
7804hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
7805 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7806 BaseEnd = ClassDecl->vbases_end();
7807 Base != BaseEnd; ++Base) {
7808 CXXRecordDecl *BaseClass =
7809 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7810
7811 // Try to declare the move assignment. If it would be deleted, then the
7812 // class does not have a non-trivial move assignment.
7813 if (BaseClass->needsImplicitMoveAssignment())
7814 S.DeclareImplicitMoveAssignment(BaseClass);
7815
7816 // If the class has both a trivial move assignment and a non-trivial move
7817 // assignment, hasTrivialMoveAssignment() is false.
7818 if (BaseClass->hasDeclaredMoveAssignment() &&
7819 !BaseClass->hasTrivialMoveAssignment())
7820 return true;
7821 }
7822
7823 return false;
7824}
7825
7826/// Determine whether the given type either has a move constructor or is
7827/// trivially copyable.
7828static bool
7829hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
7830 Type = S.Context.getBaseElementType(Type);
7831
7832 // FIXME: Technically, non-trivially-copyable non-class types, such as
7833 // reference types, are supposed to return false here, but that appears
7834 // to be a standard defect.
7835 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00007836 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00007837 return true;
7838
7839 if (Type.isTriviallyCopyableType(S.Context))
7840 return true;
7841
7842 if (IsConstructor) {
7843 if (ClassDecl->needsImplicitMoveConstructor())
7844 S.DeclareImplicitMoveConstructor(ClassDecl);
7845 return ClassDecl->hasDeclaredMoveConstructor();
7846 }
7847
7848 if (ClassDecl->needsImplicitMoveAssignment())
7849 S.DeclareImplicitMoveAssignment(ClassDecl);
7850 return ClassDecl->hasDeclaredMoveAssignment();
7851}
7852
7853/// Determine whether all non-static data members and direct or virtual bases
7854/// of class \p ClassDecl have either a move operation, or are trivially
7855/// copyable.
7856static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
7857 bool IsConstructor) {
7858 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7859 BaseEnd = ClassDecl->bases_end();
7860 Base != BaseEnd; ++Base) {
7861 if (Base->isVirtual())
7862 continue;
7863
7864 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7865 return false;
7866 }
7867
7868 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7869 BaseEnd = ClassDecl->vbases_end();
7870 Base != BaseEnd; ++Base) {
7871 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
7872 return false;
7873 }
7874
7875 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7876 FieldEnd = ClassDecl->field_end();
7877 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007878 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00007879 return false;
7880 }
7881
7882 return true;
7883}
7884
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007885CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00007886 // C++11 [class.copy]p20:
7887 // If the definition of a class X does not explicitly declare a move
7888 // assignment operator, one will be implicitly declared as defaulted
7889 // if and only if:
7890 //
7891 // - [first 4 bullets]
7892 assert(ClassDecl->needsImplicitMoveAssignment());
7893
7894 // [Checked after we build the declaration]
7895 // - the move assignment operator would not be implicitly defined as
7896 // deleted,
7897
7898 // [DR1402]:
7899 // - X has no direct or indirect virtual base class with a non-trivial
7900 // move assignment operator, and
7901 // - each of X's non-static data members and direct or virtual base classes
7902 // has a type that either has a move assignment operator or is trivially
7903 // copyable.
7904 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
7905 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
7906 ClassDecl->setFailedImplicitMoveAssignment();
7907 return 0;
7908 }
7909
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007910 // Note: The following rules are largely analoguous to the move
7911 // constructor rules.
7912
7913 ImplicitExceptionSpecification Spec(
7914 ComputeDefaultedMoveAssignmentExceptionSpec(ClassDecl));
7915
7916 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7917 QualType RetType = Context.getLValueReferenceType(ArgType);
7918 ArgType = Context.getRValueReferenceType(ArgType);
7919
7920 // An implicitly-declared move assignment operator is an inline public
7921 // member of its class.
7922 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
7923 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7924 SourceLocation ClassLoc = ClassDecl->getLocation();
7925 DeclarationNameInfo NameInfo(Name, ClassLoc);
7926 CXXMethodDecl *MoveAssignment
7927 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7928 Context.getFunctionType(RetType, &ArgType, 1, EPI),
7929 /*TInfo=*/0, /*isStatic=*/false,
7930 /*StorageClassAsWritten=*/SC_None,
7931 /*isInline=*/true,
7932 /*isConstexpr=*/false,
7933 SourceLocation());
7934 MoveAssignment->setAccess(AS_public);
7935 MoveAssignment->setDefaulted();
7936 MoveAssignment->setImplicit();
7937 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
7938
7939 // Add the parameter to the operator.
7940 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
7941 ClassLoc, ClassLoc, /*Id=*/0,
7942 ArgType, /*TInfo=*/0,
7943 SC_None,
7944 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007945 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007946
7947 // Note that we have added this copy-assignment operator.
7948 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
7949
7950 // C++0x [class.copy]p9:
7951 // If the definition of a class X does not explicitly declare a move
7952 // assignment operator, one will be implicitly declared as defaulted if and
7953 // only if:
7954 // [...]
7955 // - the move assignment operator would not be implicitly defined as
7956 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00007957 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007958 // Cache this result so that we don't try to generate this over and over
7959 // on every lookup, leaking memory and wasting time.
7960 ClassDecl->setFailedImplicitMoveAssignment();
7961 return 0;
7962 }
7963
7964 if (Scope *S = getScopeForContext(ClassDecl))
7965 PushOnScopeChains(MoveAssignment, S, false);
7966 ClassDecl->addDecl(MoveAssignment);
7967
7968 AddOverriddenMethods(ClassDecl, MoveAssignment);
7969 return MoveAssignment;
7970}
7971
7972void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
7973 CXXMethodDecl *MoveAssignOperator) {
7974 assert((MoveAssignOperator->isDefaulted() &&
7975 MoveAssignOperator->isOverloadedOperator() &&
7976 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007977 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
7978 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007979 "DefineImplicitMoveAssignment called for wrong function");
7980
7981 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
7982
7983 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
7984 MoveAssignOperator->setInvalidDecl();
7985 return;
7986 }
7987
7988 MoveAssignOperator->setUsed();
7989
7990 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
7991 DiagnosticErrorTrap Trap(Diags);
7992
7993 // C++0x [class.copy]p28:
7994 // The implicitly-defined or move assignment operator for a non-union class
7995 // X performs memberwise move assignment of its subobjects. The direct base
7996 // classes of X are assigned first, in the order of their declaration in the
7997 // base-specifier-list, and then the immediate non-static data members of X
7998 // are assigned, in the order in which they were declared in the class
7999 // definition.
8000
8001 // The statements that form the synthesized function body.
8002 ASTOwningVector<Stmt*> Statements(*this);
8003
8004 // The parameter for the "other" object, which we are move from.
8005 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8006 QualType OtherRefType = Other->getType()->
8007 getAs<RValueReferenceType>()->getPointeeType();
8008 assert(OtherRefType.getQualifiers() == 0 &&
8009 "Bad argument type of defaulted move assignment");
8010
8011 // Our location for everything implicitly-generated.
8012 SourceLocation Loc = MoveAssignOperator->getLocation();
8013
8014 // Construct a reference to the "other" object. We'll be using this
8015 // throughout the generated ASTs.
8016 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8017 assert(OtherRef && "Reference to parameter cannot fail!");
8018 // Cast to rvalue.
8019 OtherRef = CastForMoving(*this, OtherRef);
8020
8021 // Construct the "this" pointer. We'll be using this throughout the generated
8022 // ASTs.
8023 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8024 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008025
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008026 // Assign base classes.
8027 bool Invalid = false;
8028 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8029 E = ClassDecl->bases_end(); Base != E; ++Base) {
8030 // Form the assignment:
8031 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8032 QualType BaseType = Base->getType().getUnqualifiedType();
8033 if (!BaseType->isRecordType()) {
8034 Invalid = true;
8035 continue;
8036 }
8037
8038 CXXCastPath BasePath;
8039 BasePath.push_back(Base);
8040
8041 // Construct the "from" expression, which is an implicit cast to the
8042 // appropriately-qualified base type.
8043 Expr *From = OtherRef;
8044 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008045 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008046
8047 // Dereference "this".
8048 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8049
8050 // Implicitly cast "this" to the appropriately-qualified base type.
8051 To = ImpCastExprToType(To.take(),
8052 Context.getCVRQualifiedType(BaseType,
8053 MoveAssignOperator->getTypeQualifiers()),
8054 CK_UncheckedDerivedToBase,
8055 VK_LValue, &BasePath);
8056
8057 // Build the move.
8058 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8059 To.get(), From,
8060 /*CopyingBaseSubobject=*/true,
8061 /*Copying=*/false);
8062 if (Move.isInvalid()) {
8063 Diag(CurrentLocation, diag::note_member_synthesized_at)
8064 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8065 MoveAssignOperator->setInvalidDecl();
8066 return;
8067 }
8068
8069 // Success! Record the move.
8070 Statements.push_back(Move.takeAs<Expr>());
8071 }
8072
8073 // \brief Reference to the __builtin_memcpy function.
8074 Expr *BuiltinMemCpyRef = 0;
8075 // \brief Reference to the __builtin_objc_memmove_collectable function.
8076 Expr *CollectableMemCpyRef = 0;
8077
8078 // Assign non-static members.
8079 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8080 FieldEnd = ClassDecl->field_end();
8081 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008082 if (Field->isUnnamedBitfield())
8083 continue;
8084
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008085 // Check for members of reference type; we can't move those.
8086 if (Field->getType()->isReferenceType()) {
8087 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8088 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8089 Diag(Field->getLocation(), diag::note_declared_at);
8090 Diag(CurrentLocation, diag::note_member_synthesized_at)
8091 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8092 Invalid = true;
8093 continue;
8094 }
8095
8096 // Check for members of const-qualified, non-class type.
8097 QualType BaseType = Context.getBaseElementType(Field->getType());
8098 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8099 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8100 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8101 Diag(Field->getLocation(), diag::note_declared_at);
8102 Diag(CurrentLocation, diag::note_member_synthesized_at)
8103 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8104 Invalid = true;
8105 continue;
8106 }
8107
8108 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008109 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8110 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008111
8112 QualType FieldType = Field->getType().getNonReferenceType();
8113 if (FieldType->isIncompleteArrayType()) {
8114 assert(ClassDecl->hasFlexibleArrayMember() &&
8115 "Incomplete array type is not valid");
8116 continue;
8117 }
8118
8119 // Build references to the field in the object we're copying from and to.
8120 CXXScopeSpec SS; // Intentionally empty
8121 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8122 LookupMemberName);
David Blaikie262bc182012-04-30 02:36:29 +00008123 MemberLookup.addDecl(&*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008124 MemberLookup.resolveKind();
8125 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8126 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008127 SS, SourceLocation(), 0,
8128 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008129 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8130 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008131 SS, SourceLocation(), 0,
8132 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008133 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8134 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8135
8136 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8137 "Member reference with rvalue base must be rvalue except for reference "
8138 "members, which aren't allowed for move assignment.");
8139
8140 // If the field should be copied with __builtin_memcpy rather than via
8141 // explicit assignments, do so. This optimization only applies for arrays
8142 // of scalars and arrays of class type with trivial move-assignment
8143 // operators.
8144 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8145 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8146 // Compute the size of the memory buffer to be copied.
8147 QualType SizeType = Context.getSizeType();
8148 llvm::APInt Size(Context.getTypeSize(SizeType),
8149 Context.getTypeSizeInChars(BaseType).getQuantity());
8150 for (const ConstantArrayType *Array
8151 = Context.getAsConstantArrayType(FieldType);
8152 Array;
8153 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8154 llvm::APInt ArraySize
8155 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8156 Size *= ArraySize;
8157 }
8158
Douglas Gregor45d3d712011-09-01 02:09:07 +00008159 // Take the address of the field references for "from" and "to". We
8160 // directly construct UnaryOperators here because semantic analysis
8161 // does not permit us to take the address of an xvalue.
8162 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8163 Context.getPointerType(From.get()->getType()),
8164 VK_RValue, OK_Ordinary, Loc);
8165 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8166 Context.getPointerType(To.get()->getType()),
8167 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008168
8169 bool NeedsCollectableMemCpy =
8170 (BaseType->isRecordType() &&
8171 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8172
8173 if (NeedsCollectableMemCpy) {
8174 if (!CollectableMemCpyRef) {
8175 // Create a reference to the __builtin_objc_memmove_collectable function.
8176 LookupResult R(*this,
8177 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8178 Loc, LookupOrdinaryName);
8179 LookupName(R, TUScope, true);
8180
8181 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8182 if (!CollectableMemCpy) {
8183 // Something went horribly wrong earlier, and we will have
8184 // complained about it.
8185 Invalid = true;
8186 continue;
8187 }
8188
8189 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
8190 CollectableMemCpy->getType(),
8191 VK_LValue, Loc, 0).take();
8192 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8193 }
8194 }
8195 // Create a reference to the __builtin_memcpy builtin function.
8196 else if (!BuiltinMemCpyRef) {
8197 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8198 LookupOrdinaryName);
8199 LookupName(R, TUScope, true);
8200
8201 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8202 if (!BuiltinMemCpy) {
8203 // Something went horribly wrong earlier, and we will have complained
8204 // about it.
8205 Invalid = true;
8206 continue;
8207 }
8208
8209 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
8210 BuiltinMemCpy->getType(),
8211 VK_LValue, Loc, 0).take();
8212 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8213 }
8214
8215 ASTOwningVector<Expr*> CallArgs(*this);
8216 CallArgs.push_back(To.takeAs<Expr>());
8217 CallArgs.push_back(From.takeAs<Expr>());
8218 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8219 ExprResult Call = ExprError();
8220 if (NeedsCollectableMemCpy)
8221 Call = ActOnCallExpr(/*Scope=*/0,
8222 CollectableMemCpyRef,
8223 Loc, move_arg(CallArgs),
8224 Loc);
8225 else
8226 Call = ActOnCallExpr(/*Scope=*/0,
8227 BuiltinMemCpyRef,
8228 Loc, move_arg(CallArgs),
8229 Loc);
8230
8231 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8232 Statements.push_back(Call.takeAs<Expr>());
8233 continue;
8234 }
8235
8236 // Build the move of this field.
8237 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8238 To.get(), From.get(),
8239 /*CopyingBaseSubobject=*/false,
8240 /*Copying=*/false);
8241 if (Move.isInvalid()) {
8242 Diag(CurrentLocation, diag::note_member_synthesized_at)
8243 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8244 MoveAssignOperator->setInvalidDecl();
8245 return;
8246 }
8247
8248 // Success! Record the copy.
8249 Statements.push_back(Move.takeAs<Stmt>());
8250 }
8251
8252 if (!Invalid) {
8253 // Add a "return *this;"
8254 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8255
8256 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8257 if (Return.isInvalid())
8258 Invalid = true;
8259 else {
8260 Statements.push_back(Return.takeAs<Stmt>());
8261
8262 if (Trap.hasErrorOccurred()) {
8263 Diag(CurrentLocation, diag::note_member_synthesized_at)
8264 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8265 Invalid = true;
8266 }
8267 }
8268 }
8269
8270 if (Invalid) {
8271 MoveAssignOperator->setInvalidDecl();
8272 return;
8273 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008274
8275 StmtResult Body;
8276 {
8277 CompoundScopeRAII CompoundScope(*this);
8278 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
8279 /*isStmtExpr=*/false);
8280 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8281 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008282 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8283
8284 if (ASTMutationListener *L = getASTMutationListener()) {
8285 L->CompletedImplicitDefinition(MoveAssignOperator);
8286 }
8287}
8288
Sean Hunt49634cf2011-05-13 06:10:58 +00008289std::pair<Sema::ImplicitExceptionSpecification, bool>
8290Sema::ComputeDefaultedCopyCtorExceptionSpecAndConst(CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008291 if (ClassDecl->isInvalidDecl())
Richard Smith3003e1d2012-05-15 04:39:51 +00008292 return std::make_pair(ImplicitExceptionSpecification(*this), true);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008293
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008294 // C++ [class.copy]p5:
8295 // The implicitly-declared copy constructor for a class X will
8296 // have the form
8297 //
8298 // X::X(const X&)
8299 //
8300 // if
Sean Huntc530d172011-06-10 04:44:37 +00008301 // FIXME: It ought to be possible to store this on the record.
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008302 bool HasConstCopyConstructor = true;
8303
8304 // -- each direct or virtual base class B of X has a copy
8305 // constructor whose first parameter is of type const B& or
8306 // const volatile B&, and
8307 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8308 BaseEnd = ClassDecl->bases_end();
8309 HasConstCopyConstructor && Base != BaseEnd;
8310 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008311 // Virtual bases are handled below.
8312 if (Base->isVirtual())
8313 continue;
8314
Douglas Gregor22584312010-07-02 23:41:54 +00008315 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008316 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008317 HasConstCopyConstructor &=
8318 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor598a8542010-07-01 18:27:03 +00008319 }
8320
8321 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8322 BaseEnd = ClassDecl->vbases_end();
8323 HasConstCopyConstructor && Base != BaseEnd;
8324 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008325 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008326 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smith704c8f72012-04-20 18:46:14 +00008327 HasConstCopyConstructor &=
8328 (bool)LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008329 }
8330
8331 // -- for all the nonstatic data members of X that are of a
8332 // class type M (or array thereof), each such class type
8333 // has a copy constructor whose first parameter is of type
8334 // const M& or const volatile M&.
8335 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8336 FieldEnd = ClassDecl->field_end();
8337 HasConstCopyConstructor && Field != FieldEnd;
8338 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008339 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008340 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith704c8f72012-04-20 18:46:14 +00008341 HasConstCopyConstructor &=
8342 (bool)LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008343 }
8344 }
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008345 // Otherwise, the implicitly declared copy constructor will have
8346 // the form
8347 //
8348 // X::X(X&)
Sean Hunt49634cf2011-05-13 06:10:58 +00008349
Douglas Gregor0d405db2010-07-01 20:59:04 +00008350 // C++ [except.spec]p14:
8351 // An implicitly declared special member function (Clause 12) shall have an
8352 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008353 ImplicitExceptionSpecification ExceptSpec(*this);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008354 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
8355 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8356 BaseEnd = ClassDecl->bases_end();
8357 Base != BaseEnd;
8358 ++Base) {
8359 // Virtual bases are handled below.
8360 if (Base->isVirtual())
8361 continue;
8362
Douglas Gregor22584312010-07-02 23:41:54 +00008363 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008364 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008365 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008366 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008367 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008368 }
8369 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8370 BaseEnd = ClassDecl->vbases_end();
8371 Base != BaseEnd;
8372 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008373 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008374 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008375 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008376 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008377 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008378 }
8379 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8380 FieldEnd = ClassDecl->field_end();
8381 Field != FieldEnd;
8382 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008383 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008384 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8385 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008386 LookupCopyingConstructor(FieldClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008387 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008388 }
8389 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008390
Sean Hunt49634cf2011-05-13 06:10:58 +00008391 return std::make_pair(ExceptSpec, HasConstCopyConstructor);
8392}
8393
8394CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8395 CXXRecordDecl *ClassDecl) {
8396 // C++ [class.copy]p4:
8397 // If the class definition does not explicitly declare a copy
8398 // constructor, one is declared implicitly.
8399
Richard Smithe6975e92012-04-17 00:58:00 +00008400 ImplicitExceptionSpecification Spec(*this);
Sean Hunt49634cf2011-05-13 06:10:58 +00008401 bool Const;
8402 llvm::tie(Spec, Const) =
8403 ComputeDefaultedCopyCtorExceptionSpecAndConst(ClassDecl);
8404
8405 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8406 QualType ArgType = ClassType;
8407 if (Const)
8408 ArgType = ArgType.withConst();
8409 ArgType = Context.getLValueReferenceType(ArgType);
8410
8411 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8412
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008413 DeclarationName Name
8414 = Context.DeclarationNames.getCXXConstructorName(
8415 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008416 SourceLocation ClassLoc = ClassDecl->getLocation();
8417 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008418
8419 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008420 // member of its class.
8421 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
8422 Context, ClassDecl, ClassLoc, NameInfo,
8423 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8424 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8425 /*isConstexpr=*/ClassDecl->defaultedCopyConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008426 getLangOpts().CPlusPlus0x);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008427 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008428 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008429 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008430
Douglas Gregor22584312010-07-02 23:41:54 +00008431 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008432 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8433
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008434 // Add the parameter to the constructor.
8435 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008436 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008437 /*IdentifierInfo=*/0,
8438 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008439 SC_None,
8440 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008441 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008442
Douglas Gregor23c94db2010-07-02 17:43:08 +00008443 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008444 PushOnScopeChains(CopyConstructor, S, false);
8445 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008446
Nico Weberafcc96a2012-01-23 03:19:29 +00008447 // C++11 [class.copy]p8:
8448 // ... If the class definition does not explicitly declare a copy
8449 // constructor, there is no user-declared move constructor, and there is no
8450 // user-declared move assignment operator, a copy constructor is implicitly
8451 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008452 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008453 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008454
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008455 return CopyConstructor;
8456}
8457
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008458void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008459 CXXConstructorDecl *CopyConstructor) {
8460 assert((CopyConstructor->isDefaulted() &&
8461 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008462 !CopyConstructor->doesThisDeclarationHaveABody() &&
8463 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008464 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008465
Anders Carlsson63010a72010-04-23 16:24:12 +00008466 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008467 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008468
Douglas Gregor39957dc2010-05-01 15:04:51 +00008469 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008470 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008471
Sean Huntcbb67482011-01-08 20:30:50 +00008472 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008473 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008474 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008475 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008476 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008477 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008478 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008479 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8480 CopyConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008481 MultiStmtArg(*this, 0, 0),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008482 /*isStmtExpr=*/false)
8483 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008484 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008485 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008486
8487 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008488 if (ASTMutationListener *L = getASTMutationListener()) {
8489 L->CompletedImplicitDefinition(CopyConstructor);
8490 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008491}
8492
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008493Sema::ImplicitExceptionSpecification
8494Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
8495 // C++ [except.spec]p14:
8496 // An implicitly declared special member function (Clause 12) shall have an
8497 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008498 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008499 if (ClassDecl->isInvalidDecl())
8500 return ExceptSpec;
8501
8502 // Direct base-class constructors.
8503 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8504 BEnd = ClassDecl->bases_end();
8505 B != BEnd; ++B) {
8506 if (B->isVirtual()) // Handled below.
8507 continue;
8508
8509 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8510 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8511 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8512 // If this is a deleted function, add it anyway. This might be conformant
8513 // with the standard. This might not. I'm not sure. It might not matter.
8514 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008515 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008516 }
8517 }
8518
8519 // Virtual base-class constructors.
8520 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8521 BEnd = ClassDecl->vbases_end();
8522 B != BEnd; ++B) {
8523 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8524 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8525 CXXConstructorDecl *Constructor = LookupMovingConstructor(BaseClassDecl);
8526 // If this is a deleted function, add it anyway. This might be conformant
8527 // with the standard. This might not. I'm not sure. It might not matter.
8528 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008529 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008530 }
8531 }
8532
8533 // Field constructors.
8534 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8535 FEnd = ClassDecl->field_end();
8536 F != FEnd; ++F) {
Douglas Gregorf4853882011-11-28 20:03:15 +00008537 if (const RecordType *RecordTy
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008538 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
8539 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8540 CXXConstructorDecl *Constructor = LookupMovingConstructor(FieldRecDecl);
8541 // If this is a deleted function, add it anyway. This might be conformant
8542 // with the standard. This might not. I'm not sure. It might not matter.
8543 // In particular, the problem is that this function never gets called. It
8544 // might just be ill-formed because this function attempts to refer to
8545 // a deleted function here.
8546 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008547 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008548 }
8549 }
8550
8551 return ExceptSpec;
8552}
8553
8554CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8555 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008556 // C++11 [class.copy]p9:
8557 // If the definition of a class X does not explicitly declare a move
8558 // constructor, one will be implicitly declared as defaulted if and only if:
8559 //
8560 // - [first 4 bullets]
8561 assert(ClassDecl->needsImplicitMoveConstructor());
8562
8563 // [Checked after we build the declaration]
8564 // - the move assignment operator would not be implicitly defined as
8565 // deleted,
8566
8567 // [DR1402]:
8568 // - each of X's non-static data members and direct or virtual base classes
8569 // has a type that either has a move constructor or is trivially copyable.
8570 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8571 ClassDecl->setFailedImplicitMoveConstructor();
8572 return 0;
8573 }
8574
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008575 ImplicitExceptionSpecification Spec(
8576 ComputeDefaultedMoveCtorExceptionSpec(ClassDecl));
8577
8578 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8579 QualType ArgType = Context.getRValueReferenceType(ClassType);
8580
8581 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
8582
8583 DeclarationName Name
8584 = Context.DeclarationNames.getCXXConstructorName(
8585 Context.getCanonicalType(ClassType));
8586 SourceLocation ClassLoc = ClassDecl->getLocation();
8587 DeclarationNameInfo NameInfo(Name, ClassLoc);
8588
8589 // C++0x [class.copy]p11:
8590 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008591 // member of its class.
8592 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
8593 Context, ClassDecl, ClassLoc, NameInfo,
8594 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI), /*TInfo=*/0,
8595 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
8596 /*isConstexpr=*/ClassDecl->defaultedMoveConstructorIsConstexpr() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008597 getLangOpts().CPlusPlus0x);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008598 MoveConstructor->setAccess(AS_public);
8599 MoveConstructor->setDefaulted();
8600 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008601
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008602 // Add the parameter to the constructor.
8603 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8604 ClassLoc, ClassLoc,
8605 /*IdentifierInfo=*/0,
8606 ArgType, /*TInfo=*/0,
8607 SC_None,
8608 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008609 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008610
8611 // C++0x [class.copy]p9:
8612 // If the definition of a class X does not explicitly declare a move
8613 // constructor, one will be implicitly declared as defaulted if and only if:
8614 // [...]
8615 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008616 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008617 // Cache this result so that we don't try to generate this over and over
8618 // on every lookup, leaking memory and wasting time.
8619 ClassDecl->setFailedImplicitMoveConstructor();
8620 return 0;
8621 }
8622
8623 // Note that we have declared this constructor.
8624 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8625
8626 if (Scope *S = getScopeForContext(ClassDecl))
8627 PushOnScopeChains(MoveConstructor, S, false);
8628 ClassDecl->addDecl(MoveConstructor);
8629
8630 return MoveConstructor;
8631}
8632
8633void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8634 CXXConstructorDecl *MoveConstructor) {
8635 assert((MoveConstructor->isDefaulted() &&
8636 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008637 !MoveConstructor->doesThisDeclarationHaveABody() &&
8638 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008639 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8640
8641 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8642 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8643
8644 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8645 DiagnosticErrorTrap Trap(Diags);
8646
8647 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8648 Trap.hasErrorOccurred()) {
8649 Diag(CurrentLocation, diag::note_member_synthesized_at)
8650 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8651 MoveConstructor->setInvalidDecl();
8652 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008653 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008654 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8655 MoveConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008656 MultiStmtArg(*this, 0, 0),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008657 /*isStmtExpr=*/false)
8658 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008659 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008660 }
8661
8662 MoveConstructor->setUsed();
8663
8664 if (ASTMutationListener *L = getASTMutationListener()) {
8665 L->CompletedImplicitDefinition(MoveConstructor);
8666 }
8667}
8668
Douglas Gregore4e68d42012-02-15 19:33:52 +00008669bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8670 return FD->isDeleted() &&
8671 (FD->isDefaulted() || FD->isImplicit()) &&
8672 isa<CXXMethodDecl>(FD);
8673}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008674
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008675/// \brief Mark the call operator of the given lambda closure type as "used".
8676static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8677 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008678 = cast<CXXMethodDecl>(
8679 *Lambda->lookup(
8680 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008681 CallOperator->setReferenced();
8682 CallOperator->setUsed();
8683}
8684
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008685void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8686 SourceLocation CurrentLocation,
8687 CXXConversionDecl *Conv)
8688{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008689 CXXRecordDecl *Lambda = Conv->getParent();
8690
8691 // Make sure that the lambda call operator is marked used.
8692 markLambdaCallOperatorUsed(*this, Lambda);
8693
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008694 Conv->setUsed();
8695
8696 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8697 DiagnosticErrorTrap Trap(Diags);
8698
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008699 // Return the address of the __invoke function.
8700 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8701 CXXMethodDecl *Invoke
8702 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8703 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8704 VK_LValue, Conv->getLocation()).take();
8705 assert(FunctionRef && "Can't refer to __invoke function?");
8706 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8707 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8708 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008709 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008710
8711 // Fill in the __invoke function with a dummy implementation. IR generation
8712 // will fill in the actual details.
8713 Invoke->setUsed();
8714 Invoke->setReferenced();
8715 Invoke->setBody(new (Context) CompoundStmt(Context, 0, 0, Conv->getLocation(),
8716 Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008717
8718 if (ASTMutationListener *L = getASTMutationListener()) {
8719 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008720 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008721 }
8722}
8723
8724void Sema::DefineImplicitLambdaToBlockPointerConversion(
8725 SourceLocation CurrentLocation,
8726 CXXConversionDecl *Conv)
8727{
8728 Conv->setUsed();
8729
8730 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8731 DiagnosticErrorTrap Trap(Diags);
8732
Douglas Gregorac1303e2012-02-22 05:02:47 +00008733 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008734 Expr *This = ActOnCXXThis(CurrentLocation).take();
8735 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008736
Eli Friedman23f02672012-03-01 04:01:32 +00008737 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8738 Conv->getLocation(),
8739 Conv, DerefThis);
8740
8741 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8742 // behavior. Note that only the general conversion function does this
8743 // (since it's unusable otherwise); in the case where we inline the
8744 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008745 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008746 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8747 CK_CopyAndAutoreleaseBlockObject,
8748 BuildBlock.get(), 0, VK_RValue);
8749
8750 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008751 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008752 Conv->setInvalidDecl();
8753 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008754 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008755
Douglas Gregorac1303e2012-02-22 05:02:47 +00008756 // Create the return statement that returns the block from the conversion
8757 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00008758 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00008759 if (Return.isInvalid()) {
8760 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
8761 Conv->setInvalidDecl();
8762 return;
8763 }
8764
8765 // Set the body of the conversion function.
8766 Stmt *ReturnS = Return.take();
8767 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
8768 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008769 Conv->getLocation()));
8770
Douglas Gregorac1303e2012-02-22 05:02:47 +00008771 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008772 if (ASTMutationListener *L = getASTMutationListener()) {
8773 L->CompletedImplicitDefinition(Conv);
8774 }
8775}
8776
Douglas Gregorf52757d2012-03-10 06:53:13 +00008777/// \brief Determine whether the given list arguments contains exactly one
8778/// "real" (non-default) argument.
8779static bool hasOneRealArgument(MultiExprArg Args) {
8780 switch (Args.size()) {
8781 case 0:
8782 return false;
8783
8784 default:
8785 if (!Args.get()[1]->isDefaultArgument())
8786 return false;
8787
8788 // fall through
8789 case 1:
8790 return !Args.get()[0]->isDefaultArgument();
8791 }
8792
8793 return false;
8794}
8795
John McCall60d7b3a2010-08-24 06:29:42 +00008796ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008797Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00008798 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00008799 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008800 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008801 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008802 unsigned ConstructKind,
8803 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008804 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00008805
Douglas Gregor2f599792010-04-02 18:24:57 +00008806 // C++0x [class.copy]p34:
8807 // When certain criteria are met, an implementation is allowed to
8808 // omit the copy/move construction of a class object, even if the
8809 // copy/move constructor and/or destructor for the object have
8810 // side effects. [...]
8811 // - when a temporary class object that has not been bound to a
8812 // reference (12.2) would be copied/moved to a class object
8813 // with the same cv-unqualified type, the copy/move operation
8814 // can be omitted by constructing the temporary object
8815 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00008816 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00008817 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Douglas Gregor2f599792010-04-02 18:24:57 +00008818 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00008819 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008820 }
Mike Stump1eb44332009-09-09 15:08:12 +00008821
8822 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008823 Elidable, move(ExprArgs), HadMultipleCandidates,
8824 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00008825}
8826
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008827/// BuildCXXConstructExpr - Creates a complete call to a constructor,
8828/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00008829ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00008830Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
8831 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00008832 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008833 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008834 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008835 unsigned ConstructKind,
8836 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00008837 unsigned NumExprs = ExprArgs.size();
8838 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00008839
Nick Lewycky909a70d2011-03-25 01:44:32 +00008840 for (specific_attr_iterator<NonNullAttr>
8841 i = Constructor->specific_attr_begin<NonNullAttr>(),
8842 e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
8843 const NonNullAttr *NonNull = *i;
8844 CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
8845 }
8846
Eli Friedman5f2987c2012-02-02 03:46:19 +00008847 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00008848 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008849 Constructor, Elidable, Exprs, NumExprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008850 HadMultipleCandidates, /*FIXME*/false,
8851 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00008852 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
8853 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008854}
8855
Mike Stump1eb44332009-09-09 15:08:12 +00008856bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00008857 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008858 MultiExprArg Exprs,
8859 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00008860 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00008861 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00008862 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00008863 move(Exprs), HadMultipleCandidates, false,
8864 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00008865 if (TempResult.isInvalid())
8866 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00008867
Anders Carlssonda3f4e22009-08-25 05:12:04 +00008868 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00008869 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00008870 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00008871 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00008872 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00008873
Anders Carlssonfe2de492009-08-25 05:18:00 +00008874 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00008875}
8876
John McCall68c6c9a2010-02-02 09:10:11 +00008877void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008878 if (VD->isInvalidDecl()) return;
8879
John McCall68c6c9a2010-02-02 09:10:11 +00008880 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008881 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00008882 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008883 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00008884
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008885 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00008886 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008887 CheckDestructorAccess(VD->getLocation(), Destructor,
8888 PDiag(diag::err_access_dtor_var)
8889 << VD->getDeclName()
8890 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00008891 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00008892
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00008893 if (!VD->hasGlobalStorage()) return;
8894
8895 // Emit warning for non-trivial dtor in global scope (a real global,
8896 // class-static, function-static).
8897 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
8898
8899 // TODO: this should be re-enabled for static locals by !CXAAtExit
8900 if (!VD->isStaticLocal())
8901 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00008902}
8903
Douglas Gregor39da0b82009-09-09 23:08:42 +00008904/// \brief Given a constructor and the set of arguments provided for the
8905/// constructor, convert the arguments and add any required default arguments
8906/// to form a proper call to this constructor.
8907///
8908/// \returns true if an error occurred, false otherwise.
8909bool
8910Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
8911 MultiExprArg ArgsPtr,
8912 SourceLocation Loc,
Douglas Gregored878af2012-02-24 23:56:31 +00008913 ASTOwningVector<Expr*> &ConvertedArgs,
8914 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00008915 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
8916 unsigned NumArgs = ArgsPtr.size();
8917 Expr **Args = (Expr **)ArgsPtr.get();
8918
8919 const FunctionProtoType *Proto
8920 = Constructor->getType()->getAs<FunctionProtoType>();
8921 assert(Proto && "Constructor without a prototype?");
8922 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00008923
8924 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008925 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00008926 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008927 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00008928 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008929
8930 VariadicCallType CallType =
8931 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00008932 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008933 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
8934 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00008935 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00008936 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00008937
8938 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
8939
8940 // FIXME: Missing call to CheckFunctionCall or equivalent
8941
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00008942 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00008943}
8944
Anders Carlsson20d45d22009-12-12 00:32:00 +00008945static inline bool
8946CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
8947 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00008948 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00008949 if (isa<NamespaceDecl>(DC)) {
8950 return SemaRef.Diag(FnDecl->getLocation(),
8951 diag::err_operator_new_delete_declared_in_namespace)
8952 << FnDecl->getDeclName();
8953 }
8954
8955 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00008956 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00008957 return SemaRef.Diag(FnDecl->getLocation(),
8958 diag::err_operator_new_delete_declared_static)
8959 << FnDecl->getDeclName();
8960 }
8961
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00008962 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00008963}
8964
Anders Carlsson156c78e2009-12-13 17:53:43 +00008965static inline bool
8966CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
8967 CanQualType ExpectedResultType,
8968 CanQualType ExpectedFirstParamType,
8969 unsigned DependentParamTypeDiag,
8970 unsigned InvalidParamTypeDiag) {
8971 QualType ResultType =
8972 FnDecl->getType()->getAs<FunctionType>()->getResultType();
8973
8974 // Check that the result type is not dependent.
8975 if (ResultType->isDependentType())
8976 return SemaRef.Diag(FnDecl->getLocation(),
8977 diag::err_operator_new_delete_dependent_result_type)
8978 << FnDecl->getDeclName() << ExpectedResultType;
8979
8980 // Check that the result type is what we expect.
8981 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
8982 return SemaRef.Diag(FnDecl->getLocation(),
8983 diag::err_operator_new_delete_invalid_result_type)
8984 << FnDecl->getDeclName() << ExpectedResultType;
8985
8986 // A function template must have at least 2 parameters.
8987 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
8988 return SemaRef.Diag(FnDecl->getLocation(),
8989 diag::err_operator_new_delete_template_too_few_parameters)
8990 << FnDecl->getDeclName();
8991
8992 // The function decl must have at least 1 parameter.
8993 if (FnDecl->getNumParams() == 0)
8994 return SemaRef.Diag(FnDecl->getLocation(),
8995 diag::err_operator_new_delete_too_few_parameters)
8996 << FnDecl->getDeclName();
8997
8998 // Check the the first parameter type is not dependent.
8999 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9000 if (FirstParamType->isDependentType())
9001 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9002 << FnDecl->getDeclName() << ExpectedFirstParamType;
9003
9004 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009005 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009006 ExpectedFirstParamType)
9007 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9008 << FnDecl->getDeclName() << ExpectedFirstParamType;
9009
9010 return false;
9011}
9012
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009013static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009014CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009015 // C++ [basic.stc.dynamic.allocation]p1:
9016 // A program is ill-formed if an allocation function is declared in a
9017 // namespace scope other than global scope or declared static in global
9018 // scope.
9019 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9020 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009021
9022 CanQualType SizeTy =
9023 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9024
9025 // C++ [basic.stc.dynamic.allocation]p1:
9026 // The return type shall be void*. The first parameter shall have type
9027 // std::size_t.
9028 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9029 SizeTy,
9030 diag::err_operator_new_dependent_param_type,
9031 diag::err_operator_new_param_type))
9032 return true;
9033
9034 // C++ [basic.stc.dynamic.allocation]p1:
9035 // The first parameter shall not have an associated default argument.
9036 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009037 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009038 diag::err_operator_new_default_arg)
9039 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9040
9041 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009042}
9043
9044static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009045CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9046 // C++ [basic.stc.dynamic.deallocation]p1:
9047 // A program is ill-formed if deallocation functions are declared in a
9048 // namespace scope other than global scope or declared static in global
9049 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009050 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9051 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009052
9053 // C++ [basic.stc.dynamic.deallocation]p2:
9054 // Each deallocation function shall return void and its first parameter
9055 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009056 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9057 SemaRef.Context.VoidPtrTy,
9058 diag::err_operator_delete_dependent_param_type,
9059 diag::err_operator_delete_param_type))
9060 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009061
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009062 return false;
9063}
9064
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009065/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9066/// of this overloaded operator is well-formed. If so, returns false;
9067/// otherwise, emits appropriate diagnostics and returns true.
9068bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009069 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009070 "Expected an overloaded operator declaration");
9071
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009072 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9073
Mike Stump1eb44332009-09-09 15:08:12 +00009074 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009075 // The allocation and deallocation functions, operator new,
9076 // operator new[], operator delete and operator delete[], are
9077 // described completely in 3.7.3. The attributes and restrictions
9078 // found in the rest of this subclause do not apply to them unless
9079 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009080 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009081 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009082
Anders Carlssona3ccda52009-12-12 00:26:23 +00009083 if (Op == OO_New || Op == OO_Array_New)
9084 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009085
9086 // C++ [over.oper]p6:
9087 // An operator function shall either be a non-static member
9088 // function or be a non-member function and have at least one
9089 // parameter whose type is a class, a reference to a class, an
9090 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009091 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9092 if (MethodDecl->isStatic())
9093 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009094 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009095 } else {
9096 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009097 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9098 ParamEnd = FnDecl->param_end();
9099 Param != ParamEnd; ++Param) {
9100 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009101 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9102 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009103 ClassOrEnumParam = true;
9104 break;
9105 }
9106 }
9107
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009108 if (!ClassOrEnumParam)
9109 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009110 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009111 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009112 }
9113
9114 // C++ [over.oper]p8:
9115 // An operator function cannot have default arguments (8.3.6),
9116 // except where explicitly stated below.
9117 //
Mike Stump1eb44332009-09-09 15:08:12 +00009118 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009119 // (C++ [over.call]p1).
9120 if (Op != OO_Call) {
9121 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9122 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009123 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009124 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009125 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009126 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009127 }
9128 }
9129
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009130 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9131 { false, false, false }
9132#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9133 , { Unary, Binary, MemberOnly }
9134#include "clang/Basic/OperatorKinds.def"
9135 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009136
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009137 bool CanBeUnaryOperator = OperatorUses[Op][0];
9138 bool CanBeBinaryOperator = OperatorUses[Op][1];
9139 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009140
9141 // C++ [over.oper]p8:
9142 // [...] Operator functions cannot have more or fewer parameters
9143 // than the number required for the corresponding operator, as
9144 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009145 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009146 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009147 if (Op != OO_Call &&
9148 ((NumParams == 1 && !CanBeUnaryOperator) ||
9149 (NumParams == 2 && !CanBeBinaryOperator) ||
9150 (NumParams < 1) || (NumParams > 2))) {
9151 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009152 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009153 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009154 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009155 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009156 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009157 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009158 assert(CanBeBinaryOperator &&
9159 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009160 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009161 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009162
Chris Lattner416e46f2008-11-21 07:57:12 +00009163 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009164 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009165 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009166
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009167 // Overloaded operators other than operator() cannot be variadic.
9168 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009169 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009170 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009171 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009172 }
9173
9174 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009175 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9176 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009177 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009178 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009179 }
9180
9181 // C++ [over.inc]p1:
9182 // The user-defined function called operator++ implements the
9183 // prefix and postfix ++ operator. If this function is a member
9184 // function with no parameters, or a non-member function with one
9185 // parameter of class or enumeration type, it defines the prefix
9186 // increment operator ++ for objects of that type. If the function
9187 // is a member function with one parameter (which shall be of type
9188 // int) or a non-member function with two parameters (the second
9189 // of which shall be of type int), it defines the postfix
9190 // increment operator ++ for objects of that type.
9191 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9192 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9193 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009194 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009195 ParamIsInt = BT->getKind() == BuiltinType::Int;
9196
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009197 if (!ParamIsInt)
9198 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009199 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009200 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009201 }
9202
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009203 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009204}
Chris Lattner5a003a42008-12-17 07:09:26 +00009205
Sean Hunta6c058d2010-01-13 09:01:02 +00009206/// CheckLiteralOperatorDeclaration - Check whether the declaration
9207/// of this literal operator function is well-formed. If so, returns
9208/// false; otherwise, emits appropriate diagnostics and returns true.
9209bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009210 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009211 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9212 << FnDecl->getDeclName();
9213 return true;
9214 }
9215
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009216 if (FnDecl->isExternC()) {
9217 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9218 return true;
9219 }
9220
Sean Hunta6c058d2010-01-13 09:01:02 +00009221 bool Valid = false;
9222
Richard Smith36f5cfe2012-03-09 08:00:36 +00009223 // This might be the definition of a literal operator template.
9224 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9225 // This might be a specialization of a literal operator template.
9226 if (!TpDecl)
9227 TpDecl = FnDecl->getPrimaryTemplate();
9228
Sean Hunt216c2782010-04-07 23:11:06 +00009229 // template <char...> type operator "" name() is the only valid template
9230 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009231 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009232 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009233 // Must have only one template parameter
9234 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9235 if (Params->size() == 1) {
9236 NonTypeTemplateParmDecl *PmDecl =
9237 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009238
Sean Hunt216c2782010-04-07 23:11:06 +00009239 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009240 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9241 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9242 Valid = true;
9243 }
9244 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009245 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009246 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009247 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9248
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009249 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009250
Sean Hunt30019c02010-04-07 22:57:35 +00009251 // unsigned long long int, long double, and any character type are allowed
9252 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009253 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9254 Context.hasSameType(T, Context.LongDoubleTy) ||
9255 Context.hasSameType(T, Context.CharTy) ||
9256 Context.hasSameType(T, Context.WCharTy) ||
9257 Context.hasSameType(T, Context.Char16Ty) ||
9258 Context.hasSameType(T, Context.Char32Ty)) {
9259 if (++Param == FnDecl->param_end())
9260 Valid = true;
9261 goto FinishedParams;
9262 }
9263
Sean Hunt30019c02010-04-07 22:57:35 +00009264 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009265 const PointerType *PT = T->getAs<PointerType>();
9266 if (!PT)
9267 goto FinishedParams;
9268 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009269 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009270 goto FinishedParams;
9271 T = T.getUnqualifiedType();
9272
9273 // Move on to the second parameter;
9274 ++Param;
9275
9276 // If there is no second parameter, the first must be a const char *
9277 if (Param == FnDecl->param_end()) {
9278 if (Context.hasSameType(T, Context.CharTy))
9279 Valid = true;
9280 goto FinishedParams;
9281 }
9282
9283 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9284 // are allowed as the first parameter to a two-parameter function
9285 if (!(Context.hasSameType(T, Context.CharTy) ||
9286 Context.hasSameType(T, Context.WCharTy) ||
9287 Context.hasSameType(T, Context.Char16Ty) ||
9288 Context.hasSameType(T, Context.Char32Ty)))
9289 goto FinishedParams;
9290
9291 // The second and final parameter must be an std::size_t
9292 T = (*Param)->getType().getUnqualifiedType();
9293 if (Context.hasSameType(T, Context.getSizeType()) &&
9294 ++Param == FnDecl->param_end())
9295 Valid = true;
9296 }
9297
9298 // FIXME: This diagnostic is absolutely terrible.
9299FinishedParams:
9300 if (!Valid) {
9301 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9302 << FnDecl->getDeclName();
9303 return true;
9304 }
9305
Richard Smitha9e88b22012-03-09 08:16:22 +00009306 // A parameter-declaration-clause containing a default argument is not
9307 // equivalent to any of the permitted forms.
9308 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9309 ParamEnd = FnDecl->param_end();
9310 Param != ParamEnd; ++Param) {
9311 if ((*Param)->hasDefaultArg()) {
9312 Diag((*Param)->getDefaultArgRange().getBegin(),
9313 diag::err_literal_operator_default_argument)
9314 << (*Param)->getDefaultArgRange();
9315 break;
9316 }
9317 }
9318
Richard Smith2fb4ae32012-03-08 02:39:21 +00009319 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009320 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9321 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009322 // C++11 [usrlit.suffix]p1:
9323 // Literal suffix identifiers that do not start with an underscore
9324 // are reserved for future standardization.
9325 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009326 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009327
Sean Hunta6c058d2010-01-13 09:01:02 +00009328 return false;
9329}
9330
Douglas Gregor074149e2009-01-05 19:45:36 +00009331/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9332/// linkage specification, including the language and (if present)
9333/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9334/// the location of the language string literal, which is provided
9335/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9336/// the '{' brace. Otherwise, this linkage specification does not
9337/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009338Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9339 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009340 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009341 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009342 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009343 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009344 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009345 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009346 Language = LinkageSpecDecl::lang_cxx;
9347 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009348 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009349 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009350 }
Mike Stump1eb44332009-09-09 15:08:12 +00009351
Chris Lattnercc98eac2008-12-17 07:13:27 +00009352 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009353
Douglas Gregor074149e2009-01-05 19:45:36 +00009354 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009355 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009356 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009357 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009358 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009359}
9360
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009361/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009362/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9363/// valid, it's the position of the closing '}' brace in a linkage
9364/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009365Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009366 Decl *LinkageSpec,
9367 SourceLocation RBraceLoc) {
9368 if (LinkageSpec) {
9369 if (RBraceLoc.isValid()) {
9370 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9371 LSDecl->setRBraceLoc(RBraceLoc);
9372 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009373 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009374 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009375 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009376}
9377
Douglas Gregord308e622009-05-18 20:51:54 +00009378/// \brief Perform semantic analysis for the variable declaration that
9379/// occurs within a C++ catch clause, returning the newly-created
9380/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009381VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009382 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009383 SourceLocation StartLoc,
9384 SourceLocation Loc,
9385 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009386 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009387 QualType ExDeclType = TInfo->getType();
9388
Sebastian Redl4b07b292008-12-22 19:15:10 +00009389 // Arrays and functions decay.
9390 if (ExDeclType->isArrayType())
9391 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9392 else if (ExDeclType->isFunctionType())
9393 ExDeclType = Context.getPointerType(ExDeclType);
9394
9395 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9396 // The exception-declaration shall not denote a pointer or reference to an
9397 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009398 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009399 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009400 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009401 Invalid = true;
9402 }
Douglas Gregord308e622009-05-18 20:51:54 +00009403
Sebastian Redl4b07b292008-12-22 19:15:10 +00009404 QualType BaseType = ExDeclType;
9405 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009406 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009407 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009408 BaseType = Ptr->getPointeeType();
9409 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009410 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009411 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009412 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009413 BaseType = Ref->getPointeeType();
9414 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009415 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009416 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009417 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009418 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009419 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009420
Mike Stump1eb44332009-09-09 15:08:12 +00009421 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009422 RequireNonAbstractType(Loc, ExDeclType,
9423 diag::err_abstract_type_in_decl,
9424 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009425 Invalid = true;
9426
John McCall5a180392010-07-24 00:37:23 +00009427 // Only the non-fragile NeXT runtime currently supports C++ catches
9428 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009429 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009430 QualType T = ExDeclType;
9431 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9432 T = RT->getPointeeType();
9433
9434 if (T->isObjCObjectType()) {
9435 Diag(Loc, diag::err_objc_object_catch);
9436 Invalid = true;
9437 } else if (T->isObjCObjectPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00009438 if (!getLangOpts().ObjCNonFragileABI)
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009439 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009440 }
9441 }
9442
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009443 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9444 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009445 ExDecl->setExceptionVariable(true);
9446
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009447 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009448 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009449 Invalid = true;
9450
Douglas Gregorc41b8782011-07-06 18:14:43 +00009451 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009452 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009453 // C++ [except.handle]p16:
9454 // The object declared in an exception-declaration or, if the
9455 // exception-declaration does not specify a name, a temporary (12.2) is
9456 // copy-initialized (8.5) from the exception object. [...]
9457 // The object is destroyed when the handler exits, after the destruction
9458 // of any automatic objects initialized within the handler.
9459 //
9460 // We just pretend to initialize the object with itself, then make sure
9461 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009462 QualType initType = ExDeclType;
9463
9464 InitializedEntity entity =
9465 InitializedEntity::InitializeVariable(ExDecl);
9466 InitializationKind initKind =
9467 InitializationKind::CreateCopy(Loc, SourceLocation());
9468
9469 Expr *opaqueValue =
9470 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9471 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9472 ExprResult result = sequence.Perform(*this, entity, initKind,
9473 MultiExprArg(&opaqueValue, 1));
9474 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009475 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009476 else {
9477 // If the constructor used was non-trivial, set this as the
9478 // "initializer".
9479 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9480 if (!construct->getConstructor()->isTrivial()) {
9481 Expr *init = MaybeCreateExprWithCleanups(construct);
9482 ExDecl->setInit(init);
9483 }
9484
9485 // And make sure it's destructable.
9486 FinalizeVarWithDestructor(ExDecl, recordType);
9487 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009488 }
9489 }
9490
Douglas Gregord308e622009-05-18 20:51:54 +00009491 if (Invalid)
9492 ExDecl->setInvalidDecl();
9493
9494 return ExDecl;
9495}
9496
9497/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9498/// handler.
John McCalld226f652010-08-21 09:40:31 +00009499Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009500 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009501 bool Invalid = D.isInvalidType();
9502
9503 // Check for unexpanded parameter packs.
9504 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9505 UPPC_ExceptionType)) {
9506 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9507 D.getIdentifierLoc());
9508 Invalid = true;
9509 }
9510
Sebastian Redl4b07b292008-12-22 19:15:10 +00009511 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009512 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009513 LookupOrdinaryName,
9514 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009515 // The scope should be freshly made just for us. There is just no way
9516 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009517 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009518 if (PrevDecl->isTemplateParameter()) {
9519 // Maybe we will complain about the shadowed template parameter.
9520 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009521 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009522 }
9523 }
9524
Chris Lattnereaaebc72009-04-25 08:06:05 +00009525 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009526 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9527 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009528 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009529 }
9530
Douglas Gregor83cb9422010-09-09 17:09:21 +00009531 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009532 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009533 D.getIdentifierLoc(),
9534 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009535 if (Invalid)
9536 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009537
Sebastian Redl4b07b292008-12-22 19:15:10 +00009538 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009539 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009540 PushOnScopeChains(ExDecl, S);
9541 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009542 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009543
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009544 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009545 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009546}
Anders Carlssonfb311762009-03-14 00:25:26 +00009547
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009548Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009549 Expr *AssertExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009550 Expr *AssertMessageExpr_,
9551 SourceLocation RParenLoc) {
John McCall9ae2f072010-08-23 23:25:46 +00009552 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlssonfb311762009-03-14 00:25:26 +00009553
Anders Carlssonc3082412009-03-14 00:33:21 +00009554 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
Richard Smith282e7e62012-02-04 09:53:13 +00009555 // In a static_assert-declaration, the constant-expression shall be a
9556 // constant expression that can be contextually converted to bool.
9557 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9558 if (Converted.isInvalid())
9559 return 0;
9560
Richard Smithdaaefc52011-12-14 23:32:26 +00009561 llvm::APSInt Cond;
Richard Smith282e7e62012-02-04 09:53:13 +00009562 if (VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009563 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009564 /*AllowFold=*/false).isInvalid())
John McCalld226f652010-08-21 09:40:31 +00009565 return 0;
Anders Carlssonfb311762009-03-14 00:25:26 +00009566
Richard Smith0cc323c2012-03-05 23:20:05 +00009567 if (!Cond) {
9568 llvm::SmallString<256> MsgBuffer;
9569 llvm::raw_svector_ostream Msg(MsgBuffer);
9570 AssertMessage->printPretty(Msg, Context, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009571 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009572 << Msg.str() << AssertExpr->getSourceRange();
9573 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009574 }
Mike Stump1eb44332009-09-09 15:08:12 +00009575
Douglas Gregor399ad972010-12-15 23:55:21 +00009576 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9577 return 0;
9578
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009579 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
9580 AssertExpr, AssertMessage, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00009581
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009582 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009583 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009584}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009585
Douglas Gregor1d869352010-04-07 16:53:43 +00009586/// \brief Perform semantic analysis of the given friend type declaration.
9587///
9588/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009589FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9590 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009591 TypeSourceInfo *TSInfo) {
9592 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9593
9594 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009595 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009596
Richard Smith6b130222011-10-18 21:39:00 +00009597 // C++03 [class.friend]p2:
9598 // An elaborated-type-specifier shall be used in a friend declaration
9599 // for a class.*
9600 //
9601 // * The class-key of the elaborated-type-specifier is required.
9602 if (!ActiveTemplateInstantiations.empty()) {
9603 // Do not complain about the form of friend template types during
9604 // template instantiation; we will already have complained when the
9605 // template was declared.
9606 } else if (!T->isElaboratedTypeSpecifier()) {
9607 // If we evaluated the type to a record type, suggest putting
9608 // a tag in front.
9609 if (const RecordType *RT = T->getAs<RecordType>()) {
9610 RecordDecl *RD = RT->getDecl();
9611
9612 std::string InsertionText = std::string(" ") + RD->getKindName();
9613
9614 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009615 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009616 diag::warn_cxx98_compat_unelaborated_friend_type :
9617 diag::ext_unelaborated_friend_type)
9618 << (unsigned) RD->getTagKind()
9619 << T
9620 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9621 InsertionText);
9622 } else {
9623 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009624 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009625 diag::warn_cxx98_compat_nonclass_type_friend :
9626 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009627 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009628 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009629 }
Richard Smith6b130222011-10-18 21:39:00 +00009630 } else if (T->getAs<EnumType>()) {
9631 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009632 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009633 diag::warn_cxx98_compat_enum_friend :
9634 diag::ext_enum_friend)
9635 << T
9636 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009637 }
9638
Douglas Gregor06245bf2010-04-07 17:57:12 +00009639 // C++0x [class.friend]p3:
9640 // If the type specifier in a friend declaration designates a (possibly
9641 // cv-qualified) class type, that class is declared as a friend; otherwise,
9642 // the friend declaration is ignored.
9643
9644 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9645 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009646
Abramo Bagnara0216df82011-10-29 20:52:52 +00009647 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009648}
9649
John McCall9a34edb2010-10-19 01:40:49 +00009650/// Handle a friend tag declaration where the scope specifier was
9651/// templated.
9652Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9653 unsigned TagSpec, SourceLocation TagLoc,
9654 CXXScopeSpec &SS,
9655 IdentifierInfo *Name, SourceLocation NameLoc,
9656 AttributeList *Attr,
9657 MultiTemplateParamsArg TempParamLists) {
9658 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9659
9660 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009661 bool Invalid = false;
9662
9663 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009664 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
John McCall9a34edb2010-10-19 01:40:49 +00009665 TempParamLists.get(),
9666 TempParamLists.size(),
9667 /*friend*/ true,
9668 isExplicitSpecialization,
9669 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009670 if (TemplateParams->size() > 0) {
9671 // This is a declaration of a class template.
9672 if (Invalid)
9673 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009674
Eric Christopher4110e132011-07-21 05:34:24 +00009675 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9676 SS, Name, NameLoc, Attr,
9677 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009678 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009679 TempParamLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009680 (TemplateParameterList**) TempParamLists.release()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009681 } else {
9682 // The "template<>" header is extraneous.
9683 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9684 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9685 isExplicitSpecialization = true;
9686 }
9687 }
9688
9689 if (Invalid) return 0;
9690
John McCall9a34edb2010-10-19 01:40:49 +00009691 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009692 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCall9a34edb2010-10-19 01:40:49 +00009693 if (TempParamLists.get()[I]->size()) {
9694 isAllExplicitSpecializations = false;
9695 break;
9696 }
9697 }
9698
9699 // FIXME: don't ignore attributes.
9700
9701 // If it's explicit specializations all the way down, just forget
9702 // about the template header and build an appropriate non-templated
9703 // friend. TODO: for source fidelity, remember the headers.
9704 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009705 if (SS.isEmpty()) {
9706 bool Owned = false;
9707 bool IsDependent = false;
9708 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9709 Attr, AS_public,
9710 /*ModulePrivateLoc=*/SourceLocation(),
9711 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009712 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009713 /*ScopedEnumUsesClassTag=*/false,
9714 /*UnderlyingType=*/TypeResult());
9715 }
9716
Douglas Gregor2494dd02011-03-01 01:34:45 +00009717 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009718 ElaboratedTypeKeyword Keyword
9719 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009720 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009721 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009722 if (T.isNull())
9723 return 0;
9724
9725 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9726 if (isa<DependentNameType>(T)) {
9727 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009728 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009729 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009730 TL.setNameLoc(NameLoc);
9731 } else {
9732 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009733 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009734 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009735 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9736 }
9737
9738 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9739 TSI, FriendLoc);
9740 Friend->setAccess(AS_public);
9741 CurContext->addDecl(Friend);
9742 return Friend;
9743 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009744
9745 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9746
9747
John McCall9a34edb2010-10-19 01:40:49 +00009748
9749 // Handle the case of a templated-scope friend class. e.g.
9750 // template <class T> class A<T>::B;
9751 // FIXME: we don't support these right now.
9752 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
9753 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
9754 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9755 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009756 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009757 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +00009758 TL.setNameLoc(NameLoc);
9759
9760 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9761 TSI, FriendLoc);
9762 Friend->setAccess(AS_public);
9763 Friend->setUnsupportedFriend(true);
9764 CurContext->addDecl(Friend);
9765 return Friend;
9766}
9767
9768
John McCalldd4a3b02009-09-16 22:47:08 +00009769/// Handle a friend type declaration. This works in tandem with
9770/// ActOnTag.
9771///
9772/// Notes on friend class templates:
9773///
9774/// We generally treat friend class declarations as if they were
9775/// declaring a class. So, for example, the elaborated type specifier
9776/// in a friend declaration is required to obey the restrictions of a
9777/// class-head (i.e. no typedefs in the scope chain), template
9778/// parameters are required to match up with simple template-ids, &c.
9779/// However, unlike when declaring a template specialization, it's
9780/// okay to refer to a template specialization without an empty
9781/// template parameter declaration, e.g.
9782/// friend class A<T>::B<unsigned>;
9783/// We permit this as a special case; if there are any template
9784/// parameters present at all, require proper matching, i.e.
9785/// template <> template <class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +00009786Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +00009787 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009788 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +00009789
9790 assert(DS.isFriendSpecified());
9791 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9792
John McCalldd4a3b02009-09-16 22:47:08 +00009793 // Try to convert the decl specifier to a type. This works for
9794 // friend templates because ActOnTag never produces a ClassTemplateDecl
9795 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00009796 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00009797 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
9798 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00009799 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +00009800 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009801
Douglas Gregor6ccab972010-12-16 01:14:37 +00009802 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
9803 return 0;
9804
John McCalldd4a3b02009-09-16 22:47:08 +00009805 // This is definitely an error in C++98. It's probably meant to
9806 // be forbidden in C++0x, too, but the specification is just
9807 // poorly written.
9808 //
9809 // The problem is with declarations like the following:
9810 // template <T> friend A<T>::foo;
9811 // where deciding whether a class C is a friend or not now hinges
9812 // on whether there exists an instantiation of A that causes
9813 // 'foo' to equal C. There are restrictions on class-heads
9814 // (which we declare (by fiat) elaborated friend declarations to
9815 // be) that makes this tractable.
9816 //
9817 // FIXME: handle "template <> friend class A<T>;", which
9818 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00009819 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00009820 Diag(Loc, diag::err_tagless_friend_type_template)
9821 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00009822 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +00009823 }
Douglas Gregor1d869352010-04-07 16:53:43 +00009824
John McCall02cace72009-08-28 07:59:38 +00009825 // C++98 [class.friend]p1: A friend of a class is a function
9826 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00009827 // This is fixed in DR77, which just barely didn't make the C++03
9828 // deadline. It's also a very silly restriction that seriously
9829 // affects inner classes and which nobody else seems to implement;
9830 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00009831 //
9832 // But note that we could warn about it: it's always useless to
9833 // friend one of your own members (it's not, however, worthless to
9834 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00009835
John McCalldd4a3b02009-09-16 22:47:08 +00009836 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00009837 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00009838 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009839 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +00009840 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00009841 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00009842 DS.getFriendSpecLoc());
9843 else
Abramo Bagnara0216df82011-10-29 20:52:52 +00009844 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +00009845
9846 if (!D)
John McCalld226f652010-08-21 09:40:31 +00009847 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +00009848
John McCalldd4a3b02009-09-16 22:47:08 +00009849 D->setAccess(AS_public);
9850 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00009851
John McCalld226f652010-08-21 09:40:31 +00009852 return D;
John McCall02cace72009-08-28 07:59:38 +00009853}
9854
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009855Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +00009856 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00009857 const DeclSpec &DS = D.getDeclSpec();
9858
9859 assert(DS.isFriendSpecified());
9860 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
9861
9862 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00009863 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +00009864
9865 // C++ [class.friend]p1
9866 // A friend of a class is a function or class....
9867 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00009868 // It *doesn't* see through dependent types, which is correct
9869 // according to [temp.arg.type]p3:
9870 // If a declaration acquires a function type through a
9871 // type dependent on a template-parameter and this causes
9872 // a declaration that does not use the syntactic form of a
9873 // function declarator to have a function type, the program
9874 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009875 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +00009876 Diag(Loc, diag::err_unexpected_friend);
9877
9878 // It might be worthwhile to try to recover by creating an
9879 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +00009880 return 0;
John McCall67d1a672009-08-06 02:15:43 +00009881 }
9882
9883 // C++ [namespace.memdef]p3
9884 // - If a friend declaration in a non-local class first declares a
9885 // class or function, the friend class or function is a member
9886 // of the innermost enclosing namespace.
9887 // - The name of the friend is not found by simple name lookup
9888 // until a matching declaration is provided in that namespace
9889 // scope (either before or after the class declaration granting
9890 // friendship).
9891 // - If a friend function is called, its name may be found by the
9892 // name lookup that considers functions from namespaces and
9893 // classes associated with the types of the function arguments.
9894 // - When looking for a prior declaration of a class or a function
9895 // declared as a friend, scopes outside the innermost enclosing
9896 // namespace scope are not considered.
9897
John McCall337ec3d2010-10-12 23:13:28 +00009898 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00009899 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
9900 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +00009901 assert(Name);
9902
Douglas Gregor6ccab972010-12-16 01:14:37 +00009903 // Check for unexpanded parameter packs.
9904 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
9905 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
9906 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
9907 return 0;
9908
John McCall67d1a672009-08-06 02:15:43 +00009909 // The context we found the declaration in, or in which we should
9910 // create the declaration.
9911 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +00009912 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +00009913 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00009914 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00009915
John McCall337ec3d2010-10-12 23:13:28 +00009916 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +00009917
John McCall337ec3d2010-10-12 23:13:28 +00009918 // There are four cases here.
9919 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +00009920 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +00009921 // there as appropriate.
9922 // Recover from invalid scope qualifiers as if they just weren't there.
9923 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +00009924 // C++0x [namespace.memdef]p3:
9925 // If the name in a friend declaration is neither qualified nor
9926 // a template-id and the declaration is a function or an
9927 // elaborated-type-specifier, the lookup to determine whether
9928 // the entity has been previously declared shall not consider
9929 // any scopes outside the innermost enclosing namespace.
9930 // C++0x [class.friend]p11:
9931 // If a friend declaration appears in a local class and the name
9932 // specified is an unqualified name, a prior declaration is
9933 // looked up without considering scopes that are outside the
9934 // innermost enclosing non-class scope. For a friend function
9935 // declaration, if there is no prior declaration, the program is
9936 // ill-formed.
9937 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +00009938 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +00009939
John McCall29ae6e52010-10-13 05:45:15 +00009940 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +00009941 DC = CurContext;
9942 while (true) {
9943 // Skip class contexts. If someone can cite chapter and verse
9944 // for this behavior, that would be nice --- it's what GCC and
9945 // EDG do, and it seems like a reasonable intent, but the spec
9946 // really only says that checks for unqualified existing
9947 // declarations should stop at the nearest enclosing namespace,
9948 // not that they should only consider the nearest enclosing
9949 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +00009950 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +00009951 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00009952
John McCall68263142009-11-18 22:49:29 +00009953 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00009954
9955 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +00009956 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00009957 break;
John McCall29ae6e52010-10-13 05:45:15 +00009958
John McCall8a407372010-10-14 22:22:28 +00009959 if (isTemplateId) {
9960 if (isa<TranslationUnitDecl>(DC)) break;
9961 } else {
9962 if (DC->isFileContext()) break;
9963 }
John McCall67d1a672009-08-06 02:15:43 +00009964 DC = DC->getParent();
9965 }
9966
9967 // C++ [class.friend]p1: A friend of a class is a function or
9968 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +00009969 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +00009970 // Most C++ 98 compilers do seem to give an error here, so
9971 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +00009972 if (!Previous.empty() && DC->Equals(CurContext))
9973 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009974 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00009975 diag::warn_cxx98_compat_friend_is_member :
9976 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +00009977
John McCall380aaa42010-10-13 06:22:15 +00009978 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +00009979
Douglas Gregor883af832011-10-10 01:11:59 +00009980 // C++ [class.friend]p6:
9981 // A function can be defined in a friend declaration of a class if and
9982 // only if the class is a non-local class (9.8), the function name is
9983 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00009984 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +00009985 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
9986 }
9987
John McCall337ec3d2010-10-12 23:13:28 +00009988 // - There's a non-dependent scope specifier, in which case we
9989 // compute it and do a previous lookup there for a function
9990 // or function template.
9991 } else if (!SS.getScopeRep()->isDependent()) {
9992 DC = computeDeclContext(SS);
9993 if (!DC) return 0;
9994
9995 if (RequireCompleteDeclContext(SS, DC)) return 0;
9996
9997 LookupQualifiedName(Previous, DC);
9998
9999 // Ignore things found implicitly in the wrong scope.
10000 // TODO: better diagnostics for this case. Suggesting the right
10001 // qualified scope would be nice...
10002 LookupResult::Filter F = Previous.makeFilter();
10003 while (F.hasNext()) {
10004 NamedDecl *D = F.next();
10005 if (!DC->InEnclosingNamespaceSetOf(
10006 D->getDeclContext()->getRedeclContext()))
10007 F.erase();
10008 }
10009 F.done();
10010
10011 if (Previous.empty()) {
10012 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010013 Diag(Loc, diag::err_qualified_friend_not_found)
10014 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010015 return 0;
10016 }
10017
10018 // C++ [class.friend]p1: A friend of a class is a function or
10019 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010020 if (DC->Equals(CurContext))
10021 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010022 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010023 diag::warn_cxx98_compat_friend_is_member :
10024 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010025
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010026 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010027 // C++ [class.friend]p6:
10028 // A function can be defined in a friend declaration of a class if and
10029 // only if the class is a non-local class (9.8), the function name is
10030 // unqualified, and the function has namespace scope.
10031 SemaDiagnosticBuilder DB
10032 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10033
10034 DB << SS.getScopeRep();
10035 if (DC->isFileContext())
10036 DB << FixItHint::CreateRemoval(SS.getRange());
10037 SS.clear();
10038 }
John McCall337ec3d2010-10-12 23:13:28 +000010039
10040 // - There's a scope specifier that does not match any template
10041 // parameter lists, in which case we use some arbitrary context,
10042 // create a method or method template, and wait for instantiation.
10043 // - There's a scope specifier that does match some template
10044 // parameter lists, which we don't handle right now.
10045 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010046 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010047 // C++ [class.friend]p6:
10048 // A function can be defined in a friend declaration of a class if and
10049 // only if the class is a non-local class (9.8), the function name is
10050 // unqualified, and the function has namespace scope.
10051 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10052 << SS.getScopeRep();
10053 }
10054
John McCall337ec3d2010-10-12 23:13:28 +000010055 DC = CurContext;
10056 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010057 }
Douglas Gregor883af832011-10-10 01:11:59 +000010058
John McCall29ae6e52010-10-13 05:45:15 +000010059 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010060 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010061 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10062 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10063 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010064 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010065 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10066 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010067 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010068 }
John McCall67d1a672009-08-06 02:15:43 +000010069 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010070
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010071 // FIXME: This is an egregious hack to cope with cases where the scope stack
10072 // does not contain the declaration context, i.e., in an out-of-line
10073 // definition of a class.
10074 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10075 if (!DCScope) {
10076 FakeDCScope.setEntity(DC);
10077 DCScope = &FakeDCScope;
10078 }
10079
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010080 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010081 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
10082 move(TemplateParams), AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010083 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010084
Douglas Gregor182ddf02009-09-28 00:08:27 +000010085 assert(ND->getDeclContext() == DC);
10086 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010087
John McCallab88d972009-08-31 22:39:49 +000010088 // Add the function declaration to the appropriate lookup tables,
10089 // adjusting the redeclarations list as necessary. We don't
10090 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010091 //
John McCallab88d972009-08-31 22:39:49 +000010092 // Also update the scope-based lookup if the target context's
10093 // lookup context is in lexical scope.
10094 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010095 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010096 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010097 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010098 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010099 }
John McCall02cace72009-08-28 07:59:38 +000010100
10101 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010102 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010103 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010104 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010105 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010106
John McCall337ec3d2010-10-12 23:13:28 +000010107 if (ND->isInvalidDecl())
10108 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +000010109 else {
10110 FunctionDecl *FD;
10111 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10112 FD = FTD->getTemplatedDecl();
10113 else
10114 FD = cast<FunctionDecl>(ND);
10115
10116 // Mark templated-scope function declarations as unsupported.
10117 if (FD->getNumTemplateParameterLists())
10118 FrD->setUnsupportedFriend(true);
10119 }
John McCall337ec3d2010-10-12 23:13:28 +000010120
John McCalld226f652010-08-21 09:40:31 +000010121 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010122}
10123
John McCalld226f652010-08-21 09:40:31 +000010124void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10125 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010126
Sebastian Redl50de12f2009-03-24 22:27:57 +000010127 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10128 if (!Fn) {
10129 Diag(DelLoc, diag::err_deleted_non_function);
10130 return;
10131 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010132 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
Sebastian Redl50de12f2009-03-24 22:27:57 +000010133 Diag(DelLoc, diag::err_deleted_decl_not_first);
10134 Diag(Prev->getLocation(), diag::note_previous_declaration);
10135 // If the declaration wasn't the first, we delete the function anyway for
10136 // recovery.
10137 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010138 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010139
10140 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10141 if (!MD)
10142 return;
10143
10144 // A deleted special member function is trivial if the corresponding
10145 // implicitly-declared function would have been.
10146 switch (getSpecialMember(MD)) {
10147 case CXXInvalid:
10148 break;
10149 case CXXDefaultConstructor:
10150 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10151 break;
10152 case CXXCopyConstructor:
10153 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10154 break;
10155 case CXXMoveConstructor:
10156 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10157 break;
10158 case CXXCopyAssignment:
10159 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10160 break;
10161 case CXXMoveAssignment:
10162 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10163 break;
10164 case CXXDestructor:
10165 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10166 break;
10167 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010168}
Sebastian Redl13e88542009-04-27 21:33:24 +000010169
Sean Hunte4246a62011-05-12 06:15:49 +000010170void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10171 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10172
10173 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010174 if (MD->getParent()->isDependentType()) {
10175 MD->setDefaulted();
10176 MD->setExplicitlyDefaulted();
10177 return;
10178 }
10179
Sean Hunte4246a62011-05-12 06:15:49 +000010180 CXXSpecialMember Member = getSpecialMember(MD);
10181 if (Member == CXXInvalid) {
10182 Diag(DefaultLoc, diag::err_default_special_members);
10183 return;
10184 }
10185
10186 MD->setDefaulted();
10187 MD->setExplicitlyDefaulted();
10188
Sean Huntcd10dec2011-05-23 23:14:04 +000010189 // If this definition appears within the record, do the checking when
10190 // the record is complete.
10191 const FunctionDecl *Primary = MD;
10192 if (MD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
10193 // Find the uninstantiated declaration that actually had the '= default'
10194 // on it.
10195 MD->getTemplateInstantiationPattern()->isDefined(Primary);
10196
10197 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010198 return;
10199
10200 switch (Member) {
10201 case CXXDefaultConstructor: {
10202 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010203 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010204 if (!CD->isInvalidDecl())
10205 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10206 break;
10207 }
10208
10209 case CXXCopyConstructor: {
10210 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010211 CheckExplicitlyDefaultedSpecialMember(CD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010212 if (!CD->isInvalidDecl())
10213 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010214 break;
10215 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010216
Sean Hunt2b188082011-05-14 05:23:28 +000010217 case CXXCopyAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010218 CheckExplicitlyDefaultedSpecialMember(MD);
Sean Hunt2b188082011-05-14 05:23:28 +000010219 if (!MD->isInvalidDecl())
10220 DefineImplicitCopyAssignment(DefaultLoc, MD);
10221 break;
10222 }
10223
Sean Huntcb45a0f2011-05-12 22:46:25 +000010224 case CXXDestructor: {
10225 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010226 CheckExplicitlyDefaultedSpecialMember(DD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010227 if (!DD->isInvalidDecl())
10228 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010229 break;
10230 }
10231
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010232 case CXXMoveConstructor: {
10233 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Richard Smith3003e1d2012-05-15 04:39:51 +000010234 CheckExplicitlyDefaultedSpecialMember(CD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010235 if (!CD->isInvalidDecl())
10236 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010237 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010238 }
Sean Hunt82713172011-05-25 23:16:36 +000010239
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010240 case CXXMoveAssignment: {
Richard Smith3003e1d2012-05-15 04:39:51 +000010241 CheckExplicitlyDefaultedSpecialMember(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010242 if (!MD->isInvalidDecl())
10243 DefineImplicitMoveAssignment(DefaultLoc, MD);
10244 break;
10245 }
10246
10247 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010248 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010249 }
10250 } else {
10251 Diag(DefaultLoc, diag::err_default_special_members);
10252 }
10253}
10254
Sebastian Redl13e88542009-04-27 21:33:24 +000010255static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010256 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010257 Stmt *SubStmt = *CI;
10258 if (!SubStmt)
10259 continue;
10260 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010261 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010262 diag::err_return_in_constructor_handler);
10263 if (!isa<Expr>(SubStmt))
10264 SearchForReturnInStmt(Self, SubStmt);
10265 }
10266}
10267
10268void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10269 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10270 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10271 SearchForReturnInStmt(*this, Handler);
10272 }
10273}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010274
Mike Stump1eb44332009-09-09 15:08:12 +000010275bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010276 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010277 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10278 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010279
Chandler Carruth73857792010-02-15 11:53:20 +000010280 if (Context.hasSameType(NewTy, OldTy) ||
10281 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010282 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010283
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010284 // Check if the return types are covariant
10285 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010286
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010287 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010288 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10289 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010290 NewClassTy = NewPT->getPointeeType();
10291 OldClassTy = OldPT->getPointeeType();
10292 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010293 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10294 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10295 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10296 NewClassTy = NewRT->getPointeeType();
10297 OldClassTy = OldRT->getPointeeType();
10298 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010299 }
10300 }
Mike Stump1eb44332009-09-09 15:08:12 +000010301
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010302 // The return types aren't either both pointers or references to a class type.
10303 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010304 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010305 diag::err_different_return_type_for_overriding_virtual_function)
10306 << New->getDeclName() << NewTy << OldTy;
10307 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010308
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010309 return true;
10310 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010311
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010312 // C++ [class.virtual]p6:
10313 // If the return type of D::f differs from the return type of B::f, the
10314 // class type in the return type of D::f shall be complete at the point of
10315 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010316 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10317 if (!RT->isBeingDefined() &&
10318 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010319 diag::err_covariant_return_incomplete,
10320 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010321 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010322 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010323
Douglas Gregora4923eb2009-11-16 21:35:15 +000010324 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010325 // Check if the new class derives from the old class.
10326 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10327 Diag(New->getLocation(),
10328 diag::err_covariant_return_not_derived)
10329 << New->getDeclName() << NewTy << OldTy;
10330 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10331 return true;
10332 }
Mike Stump1eb44332009-09-09 15:08:12 +000010333
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010334 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010335 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010336 diag::err_covariant_return_inaccessible_base,
10337 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10338 // FIXME: Should this point to the return type?
10339 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010340 // FIXME: this note won't trigger for delayed access control
10341 // diagnostics, and it's impossible to get an undelayed error
10342 // here from access control during the original parse because
10343 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010344 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10345 return true;
10346 }
10347 }
Mike Stump1eb44332009-09-09 15:08:12 +000010348
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010349 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010350 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010351 Diag(New->getLocation(),
10352 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010353 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010354 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10355 return true;
10356 };
Mike Stump1eb44332009-09-09 15:08:12 +000010357
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010358
10359 // The new class type must have the same or less qualifiers as the old type.
10360 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10361 Diag(New->getLocation(),
10362 diag::err_covariant_return_type_class_type_more_qualified)
10363 << New->getDeclName() << NewTy << OldTy;
10364 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10365 return true;
10366 };
Mike Stump1eb44332009-09-09 15:08:12 +000010367
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010368 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010369}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010370
Douglas Gregor4ba31362009-12-01 17:24:26 +000010371/// \brief Mark the given method pure.
10372///
10373/// \param Method the method to be marked pure.
10374///
10375/// \param InitRange the source range that covers the "0" initializer.
10376bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010377 SourceLocation EndLoc = InitRange.getEnd();
10378 if (EndLoc.isValid())
10379 Method->setRangeEnd(EndLoc);
10380
Douglas Gregor4ba31362009-12-01 17:24:26 +000010381 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10382 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010383 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010384 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010385
10386 if (!Method->isInvalidDecl())
10387 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10388 << Method->getDeclName() << InitRange;
10389 return true;
10390}
10391
Douglas Gregor552e2992012-02-21 02:22:07 +000010392/// \brief Determine whether the given declaration is a static data member.
10393static bool isStaticDataMember(Decl *D) {
10394 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10395 if (!Var)
10396 return false;
10397
10398 return Var->isStaticDataMember();
10399}
John McCall731ad842009-12-19 09:28:58 +000010400/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10401/// an initializer for the out-of-line declaration 'Dcl'. The scope
10402/// is a fresh scope pushed for just this purpose.
10403///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010404/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10405/// static data member of class X, names should be looked up in the scope of
10406/// class X.
John McCalld226f652010-08-21 09:40:31 +000010407void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010408 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010409 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010410
John McCall731ad842009-12-19 09:28:58 +000010411 // We should only get called for declarations with scope specifiers, like:
10412 // int foo::bar;
10413 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010414 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010415
10416 // If we are parsing the initializer for a static data member, push a
10417 // new expression evaluation context that is associated with this static
10418 // data member.
10419 if (isStaticDataMember(D))
10420 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010421}
10422
10423/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010424/// initializer for the out-of-line declaration 'D'.
10425void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010426 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010427 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010428
Douglas Gregor552e2992012-02-21 02:22:07 +000010429 if (isStaticDataMember(D))
10430 PopExpressionEvaluationContext();
10431
John McCall731ad842009-12-19 09:28:58 +000010432 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010433 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010434}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010435
10436/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10437/// C++ if/switch/while/for statement.
10438/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010439DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010440 // C++ 6.4p2:
10441 // The declarator shall not specify a function or an array.
10442 // The type-specifier-seq shall not contain typedef and shall not declare a
10443 // new class or enumeration.
10444 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10445 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010446
10447 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010448 if (!Dcl)
10449 return true;
10450
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010451 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10452 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010453 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010454 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010455 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010456
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010457 return Dcl;
10458}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010459
Douglas Gregordfe65432011-07-28 19:11:31 +000010460void Sema::LoadExternalVTableUses() {
10461 if (!ExternalSource)
10462 return;
10463
10464 SmallVector<ExternalVTableUse, 4> VTables;
10465 ExternalSource->ReadUsedVTables(VTables);
10466 SmallVector<VTableUse, 4> NewUses;
10467 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10468 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10469 = VTablesUsed.find(VTables[I].Record);
10470 // Even if a definition wasn't required before, it may be required now.
10471 if (Pos != VTablesUsed.end()) {
10472 if (!Pos->second && VTables[I].DefinitionRequired)
10473 Pos->second = true;
10474 continue;
10475 }
10476
10477 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10478 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10479 }
10480
10481 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10482}
10483
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010484void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10485 bool DefinitionRequired) {
10486 // Ignore any vtable uses in unevaluated operands or for classes that do
10487 // not have a vtable.
10488 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10489 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010490 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010491 return;
10492
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010493 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010494 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010495 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10496 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10497 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10498 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010499 // If we already had an entry, check to see if we are promoting this vtable
10500 // to required a definition. If so, we need to reappend to the VTableUses
10501 // list, since we may have already processed the first entry.
10502 if (DefinitionRequired && !Pos.first->second) {
10503 Pos.first->second = true;
10504 } else {
10505 // Otherwise, we can early exit.
10506 return;
10507 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010508 }
10509
10510 // Local classes need to have their virtual members marked
10511 // immediately. For all other classes, we mark their virtual members
10512 // at the end of the translation unit.
10513 if (Class->isLocalClass())
10514 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010515 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010516 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010517}
10518
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010519bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010520 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010521 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010522 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010523
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010524 // Note: The VTableUses vector could grow as a result of marking
10525 // the members of a class as "used", so we check the size each
10526 // time through the loop and prefer indices (with are stable) to
10527 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010528 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010529 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010530 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010531 if (!Class)
10532 continue;
10533
10534 SourceLocation Loc = VTableUses[I].second;
10535
10536 // If this class has a key function, but that key function is
10537 // defined in another translation unit, we don't need to emit the
10538 // vtable even though we're using it.
10539 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010540 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010541 switch (KeyFunction->getTemplateSpecializationKind()) {
10542 case TSK_Undeclared:
10543 case TSK_ExplicitSpecialization:
10544 case TSK_ExplicitInstantiationDeclaration:
10545 // The key function is in another translation unit.
10546 continue;
10547
10548 case TSK_ExplicitInstantiationDefinition:
10549 case TSK_ImplicitInstantiation:
10550 // We will be instantiating the key function.
10551 break;
10552 }
10553 } else if (!KeyFunction) {
10554 // If we have a class with no key function that is the subject
10555 // of an explicit instantiation declaration, suppress the
10556 // vtable; it will live with the explicit instantiation
10557 // definition.
10558 bool IsExplicitInstantiationDeclaration
10559 = Class->getTemplateSpecializationKind()
10560 == TSK_ExplicitInstantiationDeclaration;
10561 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10562 REnd = Class->redecls_end();
10563 R != REnd; ++R) {
10564 TemplateSpecializationKind TSK
10565 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10566 if (TSK == TSK_ExplicitInstantiationDeclaration)
10567 IsExplicitInstantiationDeclaration = true;
10568 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10569 IsExplicitInstantiationDeclaration = false;
10570 break;
10571 }
10572 }
10573
10574 if (IsExplicitInstantiationDeclaration)
10575 continue;
10576 }
10577
10578 // Mark all of the virtual members of this class as referenced, so
10579 // that we can build a vtable. Then, tell the AST consumer that a
10580 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010581 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010582 MarkVirtualMembersReferenced(Loc, Class);
10583 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10584 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10585
10586 // Optionally warn if we're emitting a weak vtable.
10587 if (Class->getLinkage() == ExternalLinkage &&
10588 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010589 const FunctionDecl *KeyFunctionDef = 0;
10590 if (!KeyFunction ||
10591 (KeyFunction->hasBody(KeyFunctionDef) &&
10592 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010593 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10594 TSK_ExplicitInstantiationDefinition
10595 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10596 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010597 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010598 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010599 VTableUses.clear();
10600
Douglas Gregor78844032011-04-22 22:25:37 +000010601 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010602}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010603
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010604void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10605 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +000010606 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
10607 e = RD->method_end(); i != e; ++i) {
David Blaikie262bc182012-04-30 02:36:29 +000010608 CXXMethodDecl *MD = &*i;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010609
10610 // C++ [basic.def.odr]p2:
10611 // [...] A virtual member function is used if it is not pure. [...]
10612 if (MD->isVirtual() && !MD->isPure())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010613 MarkFunctionReferenced(Loc, MD);
Anders Carlssond6a637f2009-12-07 08:24:59 +000010614 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010615
10616 // Only classes that have virtual bases need a VTT.
10617 if (RD->getNumVBases() == 0)
10618 return;
10619
10620 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10621 e = RD->bases_end(); i != e; ++i) {
10622 const CXXRecordDecl *Base =
10623 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010624 if (Base->getNumVBases() == 0)
10625 continue;
10626 MarkVirtualMembersReferenced(Loc, Base);
10627 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010628}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010629
10630/// SetIvarInitializers - This routine builds initialization ASTs for the
10631/// Objective-C implementation whose ivars need be initialized.
10632void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010633 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010634 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010635 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010636 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010637 CollectIvarsToConstructOrDestruct(OID, ivars);
10638 if (ivars.empty())
10639 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010640 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010641 for (unsigned i = 0; i < ivars.size(); i++) {
10642 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010643 if (Field->isInvalidDecl())
10644 continue;
10645
Sean Huntcbb67482011-01-08 20:30:50 +000010646 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010647 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10648 InitializationKind InitKind =
10649 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10650
10651 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010652 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010653 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010654 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010655 // Note, MemberInit could actually come back empty if no initialization
10656 // is required (e.g., because it would call a trivial default constructor)
10657 if (!MemberInit.get() || MemberInit.isInvalid())
10658 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010659
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010660 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010661 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10662 SourceLocation(),
10663 MemberInit.takeAs<Expr>(),
10664 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010665 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010666
10667 // Be sure that the destructor is accessible and is marked as referenced.
10668 if (const RecordType *RecordTy
10669 = Context.getBaseElementType(Field->getType())
10670 ->getAs<RecordType>()) {
10671 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010672 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010673 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010674 CheckDestructorAccess(Field->getLocation(), Destructor,
10675 PDiag(diag::err_access_dtor_ivar)
10676 << Context.getBaseElementType(Field->getType()));
10677 }
10678 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010679 }
10680 ObjCImplementation->setIvarInitializers(Context,
10681 AllToInit.data(), AllToInit.size());
10682 }
10683}
Sean Huntfe57eef2011-05-04 05:57:24 +000010684
Sean Huntebcbe1d2011-05-04 23:29:54 +000010685static
10686void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10687 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10688 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10689 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10690 Sema &S) {
10691 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10692 CE = Current.end();
10693 if (Ctor->isInvalidDecl())
10694 return;
10695
10696 const FunctionDecl *FNTarget = 0;
10697 CXXConstructorDecl *Target;
10698
10699 // We ignore the result here since if we don't have a body, Target will be
10700 // null below.
10701 (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
10702 Target
10703= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
10704
10705 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10706 // Avoid dereferencing a null pointer here.
10707 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10708
10709 if (!Current.insert(Canonical))
10710 return;
10711
10712 // We know that beyond here, we aren't chaining into a cycle.
10713 if (!Target || !Target->isDelegatingConstructor() ||
10714 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10715 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10716 Valid.insert(*CI);
10717 Current.clear();
10718 // We've hit a cycle.
10719 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
10720 Current.count(TCanonical)) {
10721 // If we haven't diagnosed this cycle yet, do so now.
10722 if (!Invalid.count(TCanonical)) {
10723 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000010724 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000010725 << Ctor;
10726
10727 // Don't add a note for a function delegating directo to itself.
10728 if (TCanonical != Canonical)
10729 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
10730
10731 CXXConstructorDecl *C = Target;
10732 while (C->getCanonicalDecl() != Canonical) {
10733 (void)C->getTargetConstructor()->hasBody(FNTarget);
10734 assert(FNTarget && "Ctor cycle through bodiless function");
10735
10736 C
10737 = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
10738 S.Diag(C->getLocation(), diag::note_which_delegates_to);
10739 }
10740 }
10741
10742 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10743 Invalid.insert(*CI);
10744 Current.clear();
10745 } else {
10746 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
10747 }
10748}
10749
10750
Sean Huntfe57eef2011-05-04 05:57:24 +000010751void Sema::CheckDelegatingCtorCycles() {
10752 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
10753
Sean Huntebcbe1d2011-05-04 23:29:54 +000010754 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10755 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000010756
Douglas Gregor0129b562011-07-27 21:57:17 +000010757 for (DelegatingCtorDeclsType::iterator
10758 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000010759 E = DelegatingCtorDecls.end();
10760 I != E; ++I) {
10761 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntfe57eef2011-05-04 05:57:24 +000010762 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010763
10764 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
10765 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000010766}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000010767
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010768namespace {
10769 /// \brief AST visitor that finds references to the 'this' expression.
10770 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
10771 Sema &S;
10772
10773 public:
10774 explicit FindCXXThisExpr(Sema &S) : S(S) { }
10775
10776 bool VisitCXXThisExpr(CXXThisExpr *E) {
10777 S.Diag(E->getLocation(), diag::err_this_static_member_func)
10778 << E->isImplicit();
10779 return false;
10780 }
10781 };
10782}
10783
10784bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
10785 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10786 if (!TSInfo)
10787 return false;
10788
10789 TypeLoc TL = TSInfo->getTypeLoc();
10790 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10791 if (!ProtoTL)
10792 return false;
10793
10794 // C++11 [expr.prim.general]p3:
10795 // [The expression this] shall not appear before the optional
10796 // cv-qualifier-seq and it shall not appear within the declaration of a
10797 // static member function (although its type and value category are defined
10798 // within a static member function as they are within a non-static member
10799 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000010800 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010801 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10802 FindCXXThisExpr Finder(*this);
10803
10804 // If the return type came after the cv-qualifier-seq, check it now.
10805 if (Proto->hasTrailingReturn() &&
10806 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
10807 return true;
10808
10809 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010810 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
10811 return true;
10812
10813 return checkThisInStaticMemberFunctionAttributes(Method);
10814}
10815
10816bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
10817 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
10818 if (!TSInfo)
10819 return false;
10820
10821 TypeLoc TL = TSInfo->getTypeLoc();
10822 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
10823 if (!ProtoTL)
10824 return false;
10825
10826 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
10827 FindCXXThisExpr Finder(*this);
10828
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010829 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000010830 case EST_Uninstantiated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010831 case EST_BasicNoexcept:
10832 case EST_Delayed:
10833 case EST_DynamicNone:
10834 case EST_MSAny:
10835 case EST_None:
10836 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010837
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010838 case EST_ComputedNoexcept:
10839 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
10840 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010841
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010842 case EST_Dynamic:
10843 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010844 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010845 E != EEnd; ++E) {
10846 if (!Finder.TraverseType(*E))
10847 return true;
10848 }
10849 break;
10850 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010851
10852 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010853}
10854
10855bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
10856 FindCXXThisExpr Finder(*this);
10857
10858 // Check attributes.
10859 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
10860 A != AEnd; ++A) {
10861 // FIXME: This should be emitted by tblgen.
10862 Expr *Arg = 0;
10863 ArrayRef<Expr *> Args;
10864 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
10865 Arg = G->getArg();
10866 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
10867 Arg = G->getArg();
10868 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
10869 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
10870 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
10871 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
10872 else if (ExclusiveLockFunctionAttr *ELF
10873 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
10874 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
10875 else if (SharedLockFunctionAttr *SLF
10876 = dyn_cast<SharedLockFunctionAttr>(*A))
10877 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
10878 else if (ExclusiveTrylockFunctionAttr *ETLF
10879 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
10880 Arg = ETLF->getSuccessValue();
10881 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
10882 } else if (SharedTrylockFunctionAttr *STLF
10883 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
10884 Arg = STLF->getSuccessValue();
10885 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
10886 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
10887 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
10888 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
10889 Arg = LR->getArg();
10890 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
10891 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
10892 else if (ExclusiveLocksRequiredAttr *ELR
10893 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
10894 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
10895 else if (SharedLocksRequiredAttr *SLR
10896 = dyn_cast<SharedLocksRequiredAttr>(*A))
10897 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
10898
10899 if (Arg && !Finder.TraverseStmt(Arg))
10900 return true;
10901
10902 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
10903 if (!Finder.TraverseStmt(Args[I]))
10904 return true;
10905 }
10906 }
10907
10908 return false;
10909}
10910
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010911void
10912Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
10913 ArrayRef<ParsedType> DynamicExceptions,
10914 ArrayRef<SourceRange> DynamicExceptionRanges,
10915 Expr *NoexceptExpr,
10916 llvm::SmallVectorImpl<QualType> &Exceptions,
10917 FunctionProtoType::ExtProtoInfo &EPI) {
10918 Exceptions.clear();
10919 EPI.ExceptionSpecType = EST;
10920 if (EST == EST_Dynamic) {
10921 Exceptions.reserve(DynamicExceptions.size());
10922 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
10923 // FIXME: Preserve type source info.
10924 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
10925
10926 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
10927 collectUnexpandedParameterPacks(ET, Unexpanded);
10928 if (!Unexpanded.empty()) {
10929 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
10930 UPPC_ExceptionType,
10931 Unexpanded);
10932 continue;
10933 }
10934
10935 // Check that the type is valid for an exception spec, and
10936 // drop it if not.
10937 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
10938 Exceptions.push_back(ET);
10939 }
10940 EPI.NumExceptions = Exceptions.size();
10941 EPI.Exceptions = Exceptions.data();
10942 return;
10943 }
10944
10945 if (EST == EST_ComputedNoexcept) {
10946 // If an error occurred, there's no expression here.
10947 if (NoexceptExpr) {
10948 assert((NoexceptExpr->isTypeDependent() ||
10949 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
10950 Context.BoolTy) &&
10951 "Parser should have made sure that the expression is boolean");
10952 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
10953 EPI.ExceptionSpecType = EST_BasicNoexcept;
10954 return;
10955 }
10956
10957 if (!NoexceptExpr->isValueDependent())
10958 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000010959 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000010960 /*AllowFold*/ false).take();
10961 EPI.NoexceptExpr = NoexceptExpr;
10962 }
10963 return;
10964 }
10965}
10966
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000010967/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
10968Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
10969 // Implicitly declared functions (e.g. copy constructors) are
10970 // __host__ __device__
10971 if (D->isImplicit())
10972 return CFT_HostDevice;
10973
10974 if (D->hasAttr<CUDAGlobalAttr>())
10975 return CFT_Global;
10976
10977 if (D->hasAttr<CUDADeviceAttr>()) {
10978 if (D->hasAttr<CUDAHostAttr>())
10979 return CFT_HostDevice;
10980 else
10981 return CFT_Device;
10982 }
10983
10984 return CFT_Host;
10985}
10986
10987bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
10988 CUDAFunctionTarget CalleeTarget) {
10989 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
10990 // Callable from the device only."
10991 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
10992 return true;
10993
10994 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
10995 // Callable from the host only."
10996 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
10997 // Callable from the host only."
10998 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
10999 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11000 return true;
11001
11002 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11003 return true;
11004
11005 return false;
11006}