blob: a8ddc51f3fac17a248c35244a3c9beca12ab0eef [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"
Richard Trieude5e75c2012-06-14 23:11:34 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000027#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000028#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000029#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000030#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000031#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000032#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000035#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000036#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000037#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
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
Craig Topper1a6eac82012-09-21 04:33:26 +0000376/// MergeCXXFunctionDecl - Merge two declarations of the same C++
377/// function, once we already know that they have the same
378/// 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 }
Joao Matos17d35c32012-08-31 22:18:20 +0000675 return true;
676}
677
678/// \brief Get diagnostic %select index for tag kind for
679/// record diagnostic message.
680/// WARNING: Indexes apply to particular diagnostics only!
681///
682/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000683static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000684 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000685 case TTK_Struct: return 0;
686 case TTK_Interface: return 1;
687 case TTK_Class: return 2;
688 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000689 }
Joao Matos17d35c32012-08-31 22:18:20 +0000690}
691
692// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
693// the requirements of a constexpr function definition or a constexpr
694// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000695// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000696//
Richard Smith86c3ae42012-02-13 03:54:03 +0000697// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
698bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000699 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
700 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000701 // C++11 [dcl.constexpr]p4:
702 // The definition of a constexpr constructor shall satisfy the following
703 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000704 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000705 const CXXRecordDecl *RD = MD->getParent();
706 if (RD->getNumVBases()) {
707 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
708 << isa<CXXConstructorDecl>(NewFD)
709 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
710 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
711 E = RD->vbases_end(); I != E; ++I)
712 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000713 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000714 return false;
715 }
Richard Smith35340502012-01-13 04:54:00 +0000716 }
717
718 if (!isa<CXXConstructorDecl>(NewFD)) {
719 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000720 // The definition of a constexpr function shall satisfy the following
721 // constraints:
722 // - it shall not be virtual;
723 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
724 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000725 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000726
Richard Smith86c3ae42012-02-13 03:54:03 +0000727 // If it's not obvious why this function is virtual, find an overridden
728 // function which uses the 'virtual' keyword.
729 const CXXMethodDecl *WrittenVirtual = Method;
730 while (!WrittenVirtual->isVirtualAsWritten())
731 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
732 if (WrittenVirtual != Method)
733 Diag(WrittenVirtual->getLocation(),
734 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000735 return false;
736 }
737
738 // - its return type shall be a literal type;
739 QualType RT = NewFD->getResultType();
740 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000741 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000742 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000743 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000744 }
745
Richard Smith35340502012-01-13 04:54:00 +0000746 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000747 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000748 return false;
749
Richard Smith9f569cc2011-10-01 02:31:28 +0000750 return true;
751}
752
753/// Check the given declaration statement is legal within a constexpr function
754/// body. C++0x [dcl.constexpr]p3,p4.
755///
756/// \return true if the body is OK, false if we have diagnosed a problem.
757static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
758 DeclStmt *DS) {
759 // C++0x [dcl.constexpr]p3 and p4:
760 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
761 // contain only
762 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
763 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
764 switch ((*DclIt)->getKind()) {
765 case Decl::StaticAssert:
766 case Decl::Using:
767 case Decl::UsingShadow:
768 case Decl::UsingDirective:
769 case Decl::UnresolvedUsingTypename:
770 // - static_assert-declarations
771 // - using-declarations,
772 // - using-directives,
773 continue;
774
775 case Decl::Typedef:
776 case Decl::TypeAlias: {
777 // - typedef declarations and alias-declarations that do not define
778 // classes or enumerations,
779 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
780 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
781 // Don't allow variably-modified types in constexpr functions.
782 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
783 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
784 << TL.getSourceRange() << TL.getType()
785 << isa<CXXConstructorDecl>(Dcl);
786 return false;
787 }
788 continue;
789 }
790
791 case Decl::Enum:
792 case Decl::CXXRecord:
793 // As an extension, we allow the declaration (but not the definition) of
794 // classes and enumerations in all declarations, not just in typedef and
795 // alias declarations.
796 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
797 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
798 << isa<CXXConstructorDecl>(Dcl);
799 return false;
800 }
801 continue;
802
803 case Decl::Var:
804 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
805 << isa<CXXConstructorDecl>(Dcl);
806 return false;
807
808 default:
809 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
810 << isa<CXXConstructorDecl>(Dcl);
811 return false;
812 }
813 }
814
815 return true;
816}
817
818/// Check that the given field is initialized within a constexpr constructor.
819///
820/// \param Dcl The constexpr constructor being checked.
821/// \param Field The field being checked. This may be a member of an anonymous
822/// struct or union nested within the class being checked.
823/// \param Inits All declarations, including anonymous struct/union members and
824/// indirect members, for which any initialization was provided.
825/// \param Diagnosed Set to true if an error is produced.
826static void CheckConstexprCtorInitializer(Sema &SemaRef,
827 const FunctionDecl *Dcl,
828 FieldDecl *Field,
829 llvm::SmallSet<Decl*, 16> &Inits,
830 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000831 if (Field->isUnnamedBitfield())
832 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000833
834 if (Field->isAnonymousStructOrUnion() &&
835 Field->getType()->getAsCXXRecordDecl()->isEmpty())
836 return;
837
Richard Smith9f569cc2011-10-01 02:31:28 +0000838 if (!Inits.count(Field)) {
839 if (!Diagnosed) {
840 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
841 Diagnosed = true;
842 }
843 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
844 } else if (Field->isAnonymousStructOrUnion()) {
845 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
846 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
847 I != E; ++I)
848 // If an anonymous union contains an anonymous struct of which any member
849 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000850 if (!RD->isUnion() || Inits.count(*I))
851 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000852 }
853}
854
855/// Check the body for the given constexpr function declaration only contains
856/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
857///
858/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000859bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000860 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000861 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000862 // The definition of a constexpr function shall satisfy the following
863 // constraints: [...]
864 // - its function-body shall be = delete, = default, or a
865 // compound-statement
866 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000867 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000868 // In the definition of a constexpr constructor, [...]
869 // - its function-body shall not be a function-try-block;
870 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
871 << isa<CXXConstructorDecl>(Dcl);
872 return false;
873 }
874
875 // - its function-body shall be [...] a compound-statement that contains only
876 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
877
878 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
879 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
880 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
881 switch ((*BodyIt)->getStmtClass()) {
882 case Stmt::NullStmtClass:
883 // - null statements,
884 continue;
885
886 case Stmt::DeclStmtClass:
887 // - static_assert-declarations
888 // - using-declarations,
889 // - using-directives,
890 // - typedef declarations and alias-declarations that do not define
891 // classes or enumerations,
892 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
893 return false;
894 continue;
895
896 case Stmt::ReturnStmtClass:
897 // - and exactly one return statement;
898 if (isa<CXXConstructorDecl>(Dcl))
899 break;
900
901 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000902 continue;
903
904 default:
905 break;
906 }
907
908 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
909 << isa<CXXConstructorDecl>(Dcl);
910 return false;
911 }
912
913 if (const CXXConstructorDecl *Constructor
914 = dyn_cast<CXXConstructorDecl>(Dcl)) {
915 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000916 // DR1359:
917 // - every non-variant non-static data member and base class sub-object
918 // shall be initialized;
919 // - if the class is a non-empty union, or for each non-empty anonymous
920 // union member of a non-union class, exactly one non-static data member
921 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000922 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000923 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000924 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
925 return false;
926 }
Richard Smith6e433752011-10-10 16:38:04 +0000927 } else if (!Constructor->isDependentContext() &&
928 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000929 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
930
931 // Skip detailed checking if we have enough initializers, and we would
932 // allow at most one initializer per member.
933 bool AnyAnonStructUnionMembers = false;
934 unsigned Fields = 0;
935 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
936 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000937 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000938 AnyAnonStructUnionMembers = true;
939 break;
940 }
941 }
942 if (AnyAnonStructUnionMembers ||
943 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
944 // Check initialization of non-static data members. Base classes are
945 // always initialized so do not need to be checked. Dependent bases
946 // might not have initializers in the member initializer list.
947 llvm::SmallSet<Decl*, 16> Inits;
948 for (CXXConstructorDecl::init_const_iterator
949 I = Constructor->init_begin(), E = Constructor->init_end();
950 I != E; ++I) {
951 if (FieldDecl *FD = (*I)->getMember())
952 Inits.insert(FD);
953 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
954 Inits.insert(ID->chain_begin(), ID->chain_end());
955 }
956
957 bool Diagnosed = false;
958 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
959 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000960 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000961 if (Diagnosed)
962 return false;
963 }
964 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000965 } else {
966 if (ReturnStmts.empty()) {
967 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
968 return false;
969 }
970 if (ReturnStmts.size() > 1) {
971 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
972 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
973 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
974 return false;
975 }
976 }
977
Richard Smith5ba73e12012-02-04 00:33:54 +0000978 // C++11 [dcl.constexpr]p5:
979 // if no function argument values exist such that the function invocation
980 // substitution would produce a constant expression, the program is
981 // ill-formed; no diagnostic required.
982 // C++11 [dcl.constexpr]p3:
983 // - every constructor call and implicit conversion used in initializing the
984 // return value shall be one of those allowed in a constant expression.
985 // C++11 [dcl.constexpr]p4:
986 // - every constructor involved in initializing non-static data members and
987 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000988 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000989 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000990 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
991 << isa<CXXConstructorDecl>(Dcl);
992 for (size_t I = 0, N = Diags.size(); I != N; ++I)
993 Diag(Diags[I].first, Diags[I].second);
994 return false;
995 }
996
Richard Smith9f569cc2011-10-01 02:31:28 +0000997 return true;
998}
999
Douglas Gregorb48fe382008-10-31 09:07:45 +00001000/// isCurrentClassName - Determine whether the identifier II is the
1001/// name of the class type currently being defined. In the case of
1002/// nested classes, this will only return true if II is the name of
1003/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001004bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1005 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001006 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001007
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001008 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001009 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001010 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001011 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1012 } else
1013 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1014
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001015 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001016 return &II == CurDecl->getIdentifier();
1017 else
1018 return false;
1019}
1020
Douglas Gregor229d47a2012-11-10 07:24:09 +00001021/// \brief Determine whether the given class is a base class of the given
1022/// class, including looking at dependent bases.
1023static bool findCircularInheritance(const CXXRecordDecl *Class,
1024 const CXXRecordDecl *Current) {
1025 SmallVector<const CXXRecordDecl*, 8> Queue;
1026
1027 Class = Class->getCanonicalDecl();
1028 while (true) {
1029 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1030 E = Current->bases_end();
1031 I != E; ++I) {
1032 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1033 if (!Base)
1034 continue;
1035
1036 Base = Base->getDefinition();
1037 if (!Base)
1038 continue;
1039
1040 if (Base->getCanonicalDecl() == Class)
1041 return true;
1042
1043 Queue.push_back(Base);
1044 }
1045
1046 if (Queue.empty())
1047 return false;
1048
1049 Current = Queue.back();
1050 Queue.pop_back();
1051 }
1052
1053 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001054}
1055
Mike Stump1eb44332009-09-09 15:08:12 +00001056/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001057///
1058/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1059/// and returns NULL otherwise.
1060CXXBaseSpecifier *
1061Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1062 SourceRange SpecifierRange,
1063 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001064 TypeSourceInfo *TInfo,
1065 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001066 QualType BaseType = TInfo->getType();
1067
Douglas Gregor2943aed2009-03-03 04:44:36 +00001068 // C++ [class.union]p1:
1069 // A union shall not have base classes.
1070 if (Class->isUnion()) {
1071 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1072 << SpecifierRange;
1073 return 0;
1074 }
1075
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001076 if (EllipsisLoc.isValid() &&
1077 !TInfo->getType()->containsUnexpandedParameterPack()) {
1078 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1079 << TInfo->getTypeLoc().getSourceRange();
1080 EllipsisLoc = SourceLocation();
1081 }
Douglas Gregord777e282012-11-10 01:18:17 +00001082
1083 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1084
1085 if (BaseType->isDependentType()) {
1086 // Make sure that we don't have circular inheritance among our dependent
1087 // bases. For non-dependent bases, the check for completeness below handles
1088 // this.
1089 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1090 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1091 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001092 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001093 Diag(BaseLoc, diag::err_circular_inheritance)
1094 << BaseType << Context.getTypeDeclType(Class);
1095
1096 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1097 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1098 << BaseType;
1099
1100 return 0;
1101 }
1102 }
1103
Mike Stump1eb44332009-09-09 15:08:12 +00001104 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001105 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001106 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001107 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001108
1109 // Base specifiers must be record types.
1110 if (!BaseType->isRecordType()) {
1111 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1112 return 0;
1113 }
1114
1115 // C++ [class.union]p1:
1116 // A union shall not be used as a base class.
1117 if (BaseType->isUnionType()) {
1118 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1119 return 0;
1120 }
1121
1122 // C++ [class.derived]p2:
1123 // The class-name in a base-specifier shall not be an incompletely
1124 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001125 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001126 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001127 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001128 return 0;
John McCall572fc622010-08-17 07:23:57 +00001129 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001130
Eli Friedman1d954f62009-08-15 21:55:26 +00001131 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001132 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001133 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001134 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001135 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001136 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1137 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001138
Anders Carlsson1d209272011-03-25 14:55:14 +00001139 // C++ [class]p3:
1140 // If a class is marked final and it appears as a base-type-specifier in
1141 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001142 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001143 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1144 << CXXBaseDecl->getDeclName();
1145 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1146 << CXXBaseDecl->getDeclName();
1147 return 0;
1148 }
1149
John McCall572fc622010-08-17 07:23:57 +00001150 if (BaseDecl->isInvalidDecl())
1151 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001152
1153 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001154 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001155 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001156 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001157}
1158
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001159/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1160/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001161/// example:
1162/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001163/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001164BaseResult
John McCalld226f652010-08-21 09:40:31 +00001165Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001166 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001167 ParsedType basetype, SourceLocation BaseLoc,
1168 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001169 if (!classdecl)
1170 return true;
1171
Douglas Gregor40808ce2009-03-09 23:48:35 +00001172 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001173 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001174 if (!Class)
1175 return true;
1176
Nick Lewycky56062202010-07-26 16:56:01 +00001177 TypeSourceInfo *TInfo = 0;
1178 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001179
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001180 if (EllipsisLoc.isInvalid() &&
1181 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001182 UPPC_BaseType))
1183 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001184
Douglas Gregor2943aed2009-03-03 04:44:36 +00001185 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001186 Virtual, Access, TInfo,
1187 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001188 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001189 else
1190 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001191
Douglas Gregor2943aed2009-03-03 04:44:36 +00001192 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001193}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001194
Douglas Gregor2943aed2009-03-03 04:44:36 +00001195/// \brief Performs the actual work of attaching the given base class
1196/// specifiers to a C++ class.
1197bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1198 unsigned NumBases) {
1199 if (NumBases == 0)
1200 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001201
1202 // Used to keep track of which base types we have already seen, so
1203 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001204 // that the key is always the unqualified canonical type of the base
1205 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001206 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1207
1208 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001209 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001210 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001211 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001212 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001213 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001214 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001215
1216 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1217 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001218 // C++ [class.mi]p3:
1219 // A class shall not be specified as a direct base class of a
1220 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001221 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001222 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001223 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001224 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001225
1226 // Delete the duplicate base class specifier; we're going to
1227 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001228 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001229
1230 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001231 } else {
1232 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001233 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001234 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001235 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1236 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1237 if (Class->isInterface() &&
1238 (!RD->isInterface() ||
1239 KnownBase->getAccessSpecifier() != AS_public)) {
1240 // The Microsoft extension __interface does not permit bases that
1241 // are not themselves public interfaces.
1242 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1243 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1244 << RD->getSourceRange();
1245 Invalid = true;
1246 }
1247 if (RD->hasAttr<WeakAttr>())
1248 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1249 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001250 }
1251 }
1252
1253 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001254 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001255
1256 // Delete the remaining (good) base class specifiers, since their
1257 // data has been copied into the CXXRecordDecl.
1258 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001259 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001260
1261 return Invalid;
1262}
1263
1264/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1265/// class, after checking whether there are any duplicate base
1266/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001267void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001268 unsigned NumBases) {
1269 if (!ClassDecl || !Bases || !NumBases)
1270 return;
1271
1272 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001273 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001274 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001275}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001276
John McCall3cb0ebd2010-03-10 03:28:59 +00001277static CXXRecordDecl *GetClassForType(QualType T) {
1278 if (const RecordType *RT = T->getAs<RecordType>())
1279 return cast<CXXRecordDecl>(RT->getDecl());
1280 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1281 return ICT->getDecl();
1282 else
1283 return 0;
1284}
1285
Douglas Gregora8f32e02009-10-06 17:59:45 +00001286/// \brief Determine whether the type \p Derived is a C++ class that is
1287/// derived from the type \p Base.
1288bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001289 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001290 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001291
1292 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1293 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001294 return false;
1295
John McCall3cb0ebd2010-03-10 03:28:59 +00001296 CXXRecordDecl *BaseRD = GetClassForType(Base);
1297 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001298 return false;
1299
John McCall86ff3082010-02-04 22:26:26 +00001300 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1301 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001302}
1303
1304/// \brief Determine whether the type \p Derived is a C++ class that is
1305/// derived from the type \p Base.
1306bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001307 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001308 return false;
1309
John McCall3cb0ebd2010-03-10 03:28:59 +00001310 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1311 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001312 return false;
1313
John McCall3cb0ebd2010-03-10 03:28:59 +00001314 CXXRecordDecl *BaseRD = GetClassForType(Base);
1315 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001316 return false;
1317
Douglas Gregora8f32e02009-10-06 17:59:45 +00001318 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1319}
1320
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001321void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001322 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001323 assert(BasePathArray.empty() && "Base path array must be empty!");
1324 assert(Paths.isRecordingPaths() && "Must record paths!");
1325
1326 const CXXBasePath &Path = Paths.front();
1327
1328 // We first go backward and check if we have a virtual base.
1329 // FIXME: It would be better if CXXBasePath had the base specifier for
1330 // the nearest virtual base.
1331 unsigned Start = 0;
1332 for (unsigned I = Path.size(); I != 0; --I) {
1333 if (Path[I - 1].Base->isVirtual()) {
1334 Start = I - 1;
1335 break;
1336 }
1337 }
1338
1339 // Now add all bases.
1340 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001341 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001342}
1343
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001344/// \brief Determine whether the given base path includes a virtual
1345/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001346bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1347 for (CXXCastPath::const_iterator B = BasePath.begin(),
1348 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001349 B != BEnd; ++B)
1350 if ((*B)->isVirtual())
1351 return true;
1352
1353 return false;
1354}
1355
Douglas Gregora8f32e02009-10-06 17:59:45 +00001356/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1357/// conversion (where Derived and Base are class types) is
1358/// well-formed, meaning that the conversion is unambiguous (and
1359/// that all of the base classes are accessible). Returns true
1360/// and emits a diagnostic if the code is ill-formed, returns false
1361/// otherwise. Loc is the location where this routine should point to
1362/// if there is an error, and Range is the source range to highlight
1363/// if there is an error.
1364bool
1365Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001366 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001367 unsigned AmbigiousBaseConvID,
1368 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001369 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001370 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001371 // First, determine whether the path from Derived to Base is
1372 // ambiguous. This is slightly more expensive than checking whether
1373 // the Derived to Base conversion exists, because here we need to
1374 // explore multiple paths to determine if there is an ambiguity.
1375 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1376 /*DetectVirtual=*/false);
1377 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1378 assert(DerivationOkay &&
1379 "Can only be used with a derived-to-base conversion");
1380 (void)DerivationOkay;
1381
1382 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001383 if (InaccessibleBaseID) {
1384 // Check that the base class can be accessed.
1385 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1386 InaccessibleBaseID)) {
1387 case AR_inaccessible:
1388 return true;
1389 case AR_accessible:
1390 case AR_dependent:
1391 case AR_delayed:
1392 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001393 }
John McCall6b2accb2010-02-10 09:31:12 +00001394 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001395
1396 // Build a base path if necessary.
1397 if (BasePath)
1398 BuildBasePathArray(Paths, *BasePath);
1399 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001400 }
1401
1402 // We know that the derived-to-base conversion is ambiguous, and
1403 // we're going to produce a diagnostic. Perform the derived-to-base
1404 // search just one more time to compute all of the possible paths so
1405 // that we can print them out. This is more expensive than any of
1406 // the previous derived-to-base checks we've done, but at this point
1407 // performance isn't as much of an issue.
1408 Paths.clear();
1409 Paths.setRecordingPaths(true);
1410 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1411 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1412 (void)StillOkay;
1413
1414 // Build up a textual representation of the ambiguous paths, e.g.,
1415 // D -> B -> A, that will be used to illustrate the ambiguous
1416 // conversions in the diagnostic. We only print one of the paths
1417 // to each base class subobject.
1418 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1419
1420 Diag(Loc, AmbigiousBaseConvID)
1421 << Derived << Base << PathDisplayStr << Range << Name;
1422 return true;
1423}
1424
1425bool
1426Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001427 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001428 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001429 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001430 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001431 IgnoreAccess ? 0
1432 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001433 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001434 Loc, Range, DeclarationName(),
1435 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001436}
1437
1438
1439/// @brief Builds a string representing ambiguous paths from a
1440/// specific derived class to different subobjects of the same base
1441/// class.
1442///
1443/// This function builds a string that can be used in error messages
1444/// to show the different paths that one can take through the
1445/// inheritance hierarchy to go from the derived class to different
1446/// subobjects of a base class. The result looks something like this:
1447/// @code
1448/// struct D -> struct B -> struct A
1449/// struct D -> struct C -> struct A
1450/// @endcode
1451std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1452 std::string PathDisplayStr;
1453 std::set<unsigned> DisplayedPaths;
1454 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1455 Path != Paths.end(); ++Path) {
1456 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1457 // We haven't displayed a path to this particular base
1458 // class subobject yet.
1459 PathDisplayStr += "\n ";
1460 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1461 for (CXXBasePath::const_iterator Element = Path->begin();
1462 Element != Path->end(); ++Element)
1463 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1464 }
1465 }
1466
1467 return PathDisplayStr;
1468}
1469
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001470//===----------------------------------------------------------------------===//
1471// C++ class member Handling
1472//===----------------------------------------------------------------------===//
1473
Abramo Bagnara6206d532010-06-05 05:09:32 +00001474/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001475bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1476 SourceLocation ASLoc,
1477 SourceLocation ColonLoc,
1478 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001479 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001480 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001481 ASLoc, ColonLoc);
1482 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001483 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001484}
1485
Richard Smitha4b39652012-08-06 03:25:17 +00001486/// CheckOverrideControl - Check C++11 override control semantics.
1487void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001488 if (D->isInvalidDecl())
1489 return;
1490
Chris Lattner5f9e2722011-07-23 10:55:15 +00001491 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001492
Richard Smitha4b39652012-08-06 03:25:17 +00001493 // Do we know which functions this declaration might be overriding?
1494 bool OverridesAreKnown = !MD ||
1495 (!MD->getParent()->hasAnyDependentBases() &&
1496 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001497
Richard Smitha4b39652012-08-06 03:25:17 +00001498 if (!MD || !MD->isVirtual()) {
1499 if (OverridesAreKnown) {
1500 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1501 Diag(OA->getLocation(),
1502 diag::override_keyword_only_allowed_on_virtual_member_functions)
1503 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1504 D->dropAttr<OverrideAttr>();
1505 }
1506 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1507 Diag(FA->getLocation(),
1508 diag::override_keyword_only_allowed_on_virtual_member_functions)
1509 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1510 D->dropAttr<FinalAttr>();
1511 }
1512 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001513 return;
1514 }
Richard Smitha4b39652012-08-06 03:25:17 +00001515
1516 if (!OverridesAreKnown)
1517 return;
1518
1519 // C++11 [class.virtual]p5:
1520 // If a virtual function is marked with the virt-specifier override and
1521 // does not override a member function of a base class, the program is
1522 // ill-formed.
1523 bool HasOverriddenMethods =
1524 MD->begin_overridden_methods() != MD->end_overridden_methods();
1525 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1526 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1527 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001528}
1529
Richard Smitha4b39652012-08-06 03:25:17 +00001530/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001531/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001532/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001533bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1534 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001535 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001536 return false;
1537
1538 Diag(New->getLocation(), diag::err_final_function_overridden)
1539 << New->getDeclName();
1540 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1541 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001542}
1543
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001544static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001545 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1546 // FIXME: Destruction of ObjC lifetime types has side-effects.
1547 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1548 return !RD->isCompleteDefinition() ||
1549 !RD->hasTrivialDefaultConstructor() ||
1550 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001551 return false;
1552}
1553
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001554/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1555/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001556/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001557/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1558/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001559Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001560Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001561 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001562 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001563 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001564 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001565 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1566 DeclarationName Name = NameInfo.getName();
1567 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001568
1569 // For anonymous bitfields, the location should point to the type.
1570 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001571 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001572
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001573 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001574
John McCall4bde1e12010-06-04 08:34:12 +00001575 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001576 assert(!DS.isFriendSpecified());
1577
Richard Smith1ab0d902011-06-25 02:28:38 +00001578 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001579
John McCalle402e722012-09-25 07:32:39 +00001580 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1581 // The Microsoft extension __interface only permits public member functions
1582 // and prohibits constructors, destructors, operators, non-public member
1583 // functions, static methods and data members.
1584 unsigned InvalidDecl;
1585 bool ShowDeclName = true;
1586 if (!isFunc)
1587 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1588 else if (AS != AS_public)
1589 InvalidDecl = 2;
1590 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1591 InvalidDecl = 3;
1592 else switch (Name.getNameKind()) {
1593 case DeclarationName::CXXConstructorName:
1594 InvalidDecl = 4;
1595 ShowDeclName = false;
1596 break;
1597
1598 case DeclarationName::CXXDestructorName:
1599 InvalidDecl = 5;
1600 ShowDeclName = false;
1601 break;
1602
1603 case DeclarationName::CXXOperatorName:
1604 case DeclarationName::CXXConversionFunctionName:
1605 InvalidDecl = 6;
1606 break;
1607
1608 default:
1609 InvalidDecl = 0;
1610 break;
1611 }
1612
1613 if (InvalidDecl) {
1614 if (ShowDeclName)
1615 Diag(Loc, diag::err_invalid_member_in_interface)
1616 << (InvalidDecl-1) << Name;
1617 else
1618 Diag(Loc, diag::err_invalid_member_in_interface)
1619 << (InvalidDecl-1) << "";
1620 return 0;
1621 }
1622 }
1623
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001624 // C++ 9.2p6: A member shall not be declared to have automatic storage
1625 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001626 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1627 // data members and cannot be applied to names declared const or static,
1628 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001629 switch (DS.getStorageClassSpec()) {
1630 case DeclSpec::SCS_unspecified:
1631 case DeclSpec::SCS_typedef:
1632 case DeclSpec::SCS_static:
1633 // FALL THROUGH.
1634 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001635 case DeclSpec::SCS_mutable:
1636 if (isFunc) {
1637 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001638 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001639 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001640 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Sebastian Redla11f42f2008-11-17 23:24:37 +00001642 // FIXME: It would be nicer if the keyword was ignored only for this
1643 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001644 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001645 }
1646 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001647 default:
1648 if (DS.getStorageClassSpecLoc().isValid())
1649 Diag(DS.getStorageClassSpecLoc(),
1650 diag::err_storageclass_invalid_for_member);
1651 else
1652 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1653 D.getMutableDeclSpec().ClearStorageClassSpecs();
1654 }
1655
Sebastian Redl669d5d72008-11-14 23:42:31 +00001656 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1657 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001658 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001659
1660 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001661 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001662 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001663
1664 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001665 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001666 Diag(Loc, diag::err_bad_variable_name)
1667 << Name;
1668 return 0;
1669 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001670
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001671 IdentifierInfo *II = Name.getAsIdentifierInfo();
1672
Douglas Gregorf2503652011-09-21 14:40:46 +00001673 // Member field could not be with "template" keyword.
1674 // So TemplateParameterLists should be empty in this case.
1675 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001676 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001677 if (TemplateParams->size()) {
1678 // There is no such thing as a member field template.
1679 Diag(D.getIdentifierLoc(), diag::err_template_member)
1680 << II
1681 << SourceRange(TemplateParams->getTemplateLoc(),
1682 TemplateParams->getRAngleLoc());
1683 } else {
1684 // There is an extraneous 'template<>' for this member.
1685 Diag(TemplateParams->getTemplateLoc(),
1686 diag::err_template_member_noparams)
1687 << II
1688 << SourceRange(TemplateParams->getTemplateLoc(),
1689 TemplateParams->getRAngleLoc());
1690 }
1691 return 0;
1692 }
1693
Douglas Gregor922fff22010-10-13 22:19:53 +00001694 if (SS.isSet() && !SS.isInvalid()) {
1695 // The user provided a superfluous scope specifier inside a class
1696 // definition:
1697 //
1698 // class X {
1699 // int X::member;
1700 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001701 if (DeclContext *DC = computeDeclContext(SS, false))
1702 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001703 else
1704 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1705 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001706
Douglas Gregor922fff22010-10-13 22:19:53 +00001707 SS.clear();
1708 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001709
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001710 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001711 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001712 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001713 } else {
Richard Smithca523302012-06-10 03:12:00 +00001714 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001715
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001716 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001717 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001718 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001719 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001720
1721 // Non-instance-fields can't have a bitfield.
1722 if (BitWidth) {
1723 if (Member->isInvalidDecl()) {
1724 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001725 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001726 // C++ 9.6p3: A bit-field shall not be a static member.
1727 // "static member 'A' cannot be a bit-field"
1728 Diag(Loc, diag::err_static_not_bitfield)
1729 << Name << BitWidth->getSourceRange();
1730 } else if (isa<TypedefDecl>(Member)) {
1731 // "typedef member 'x' cannot be a bit-field"
1732 Diag(Loc, diag::err_typedef_not_bitfield)
1733 << Name << BitWidth->getSourceRange();
1734 } else {
1735 // A function typedef ("typedef int f(); f a;").
1736 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1737 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001738 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001739 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001740 }
Mike Stump1eb44332009-09-09 15:08:12 +00001741
Chris Lattner8b963ef2009-03-05 23:01:03 +00001742 BitWidth = 0;
1743 Member->setInvalidDecl();
1744 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001745
1746 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001747
Douglas Gregor37b372b2009-08-20 22:52:58 +00001748 // If we have declared a member function template, set the access of the
1749 // templated declaration as well.
1750 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1751 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001752 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001753
Richard Smitha4b39652012-08-06 03:25:17 +00001754 if (VS.isOverrideSpecified())
1755 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1756 if (VS.isFinalSpecified())
1757 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001758
Douglas Gregorf5251602011-03-08 17:10:18 +00001759 if (VS.getLastLocation().isValid()) {
1760 // Update the end location of a method that has a virt-specifiers.
1761 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1762 MD->setRangeEnd(VS.getLastLocation());
1763 }
Richard Smitha4b39652012-08-06 03:25:17 +00001764
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001765 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001766
Douglas Gregor10bd3682008-11-17 22:58:34 +00001767 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001768
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001769 if (isInstField) {
1770 FieldDecl *FD = cast<FieldDecl>(Member);
1771 FieldCollector->Add(FD);
1772
1773 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1774 FD->getLocation())
1775 != DiagnosticsEngine::Ignored) {
1776 // Remember all explicit private FieldDecls that have a name, no side
1777 // effects and are not part of a dependent type declaration.
1778 if (!FD->isImplicit() && FD->getDeclName() &&
1779 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001780 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001781 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001782 !InitializationHasSideEffects(*FD))
1783 UnusedPrivateFields.insert(FD);
1784 }
1785 }
1786
John McCalld226f652010-08-21 09:40:31 +00001787 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001788}
1789
Hans Wennborg471f9852012-09-18 15:58:06 +00001790namespace {
1791 class UninitializedFieldVisitor
1792 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1793 Sema &S;
1794 ValueDecl *VD;
1795 public:
1796 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1797 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001798 S(S) {
1799 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(VD))
1800 this->VD = IFD->getAnonField();
1801 else
1802 this->VD = VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001803 }
1804
1805 void HandleExpr(Expr *E) {
1806 if (!E) return;
1807
1808 // Expressions like x(x) sometimes lack the surrounding expressions
1809 // but need to be checked anyways.
1810 HandleValue(E);
1811 Visit(E);
1812 }
1813
1814 void HandleValue(Expr *E) {
1815 E = E->IgnoreParens();
1816
1817 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1818 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001819 return;
1820
1821 // FieldME is the inner-most MemberExpr that is not an anonymous struct
1822 // or union.
1823 MemberExpr *FieldME = ME;
1824
Hans Wennborg471f9852012-09-18 15:58:06 +00001825 Expr *Base = E;
1826 while (isa<MemberExpr>(Base)) {
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001827 ME = cast<MemberExpr>(Base);
1828
1829 if (isa<VarDecl>(ME->getMemberDecl()))
1830 return;
1831
1832 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
1833 if (!FD->isAnonymousStructOrUnion())
1834 FieldME = ME;
1835
Hans Wennborg471f9852012-09-18 15:58:06 +00001836 Base = ME->getBase();
1837 }
1838
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001839 if (VD == FieldME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg471f9852012-09-18 15:58:06 +00001840 unsigned diag = VD->getType()->isReferenceType()
1841 ? diag::warn_reference_field_is_uninit
1842 : diag::warn_field_is_uninit;
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001843 S.Diag(FieldME->getExprLoc(), diag) << VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001844 }
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001845 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00001846 }
1847
1848 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1849 HandleValue(CO->getTrueExpr());
1850 HandleValue(CO->getFalseExpr());
1851 return;
1852 }
1853
1854 if (BinaryConditionalOperator *BCO =
1855 dyn_cast<BinaryConditionalOperator>(E)) {
1856 HandleValue(BCO->getCommon());
1857 HandleValue(BCO->getFalseExpr());
1858 return;
1859 }
1860
1861 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1862 switch (BO->getOpcode()) {
1863 default:
1864 return;
1865 case(BO_PtrMemD):
1866 case(BO_PtrMemI):
1867 HandleValue(BO->getLHS());
1868 return;
1869 case(BO_Comma):
1870 HandleValue(BO->getRHS());
1871 return;
1872 }
1873 }
1874 }
1875
1876 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1877 if (E->getCastKind() == CK_LValueToRValue)
1878 HandleValue(E->getSubExpr());
1879
1880 Inherited::VisitImplicitCastExpr(E);
1881 }
1882
1883 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1884 Expr *Callee = E->getCallee();
1885 if (isa<MemberExpr>(Callee))
1886 HandleValue(Callee);
1887
1888 Inherited::VisitCXXMemberCallExpr(E);
1889 }
1890 };
1891 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1892 ValueDecl *VD) {
1893 UninitializedFieldVisitor(S, VD).HandleExpr(E);
1894 }
1895} // namespace
1896
Richard Smith7a614d82011-06-11 17:19:42 +00001897/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001898/// in-class initializer for a non-static C++ class member, and after
1899/// instantiating an in-class initializer in a class template. Such actions
1900/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001901void
Richard Smithca523302012-06-10 03:12:00 +00001902Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001903 Expr *InitExpr) {
1904 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001905 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1906 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001907
1908 if (!InitExpr) {
1909 FD->setInvalidDecl();
1910 FD->removeInClassInitializer();
1911 return;
1912 }
1913
Peter Collingbournefef21892011-10-23 18:59:44 +00001914 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1915 FD->setInvalidDecl();
1916 FD->removeInClassInitializer();
1917 return;
1918 }
1919
Hans Wennborg471f9852012-09-18 15:58:06 +00001920 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1921 != DiagnosticsEngine::Ignored) {
1922 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1923 }
1924
Richard Smith7a614d82011-06-11 17:19:42 +00001925 ExprResult Init = InitExpr;
Douglas Gregordd084272012-09-14 04:20:37 +00001926 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent() &&
1927 !FD->getDeclContext()->isDependentContext()) {
1928 // Note: We don't type-check when we're in a dependent context, because
1929 // the initialization-substitution code does not properly handle direct
1930 // list initialization. We have the same hackaround for ctor-initializers.
Sebastian Redl772291a2012-02-19 16:31:05 +00001931 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001932 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001933 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1934 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001935 Expr **Inits = &InitExpr;
1936 unsigned NumInits = 1;
1937 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001938 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001939 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001940 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001941 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1942 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001943 if (Init.isInvalid()) {
1944 FD->setInvalidDecl();
1945 return;
1946 }
1947
Richard Smithca523302012-06-10 03:12:00 +00001948 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001949 }
1950
1951 // C++0x [class.base.init]p7:
1952 // The initialization of each base and member constitutes a
1953 // full-expression.
1954 Init = MaybeCreateExprWithCleanups(Init);
1955 if (Init.isInvalid()) {
1956 FD->setInvalidDecl();
1957 return;
1958 }
1959
1960 InitExpr = Init.release();
1961
1962 FD->setInClassInitializer(InitExpr);
1963}
1964
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001965/// \brief Find the direct and/or virtual base specifiers that
1966/// correspond to the given base type, for use in base initialization
1967/// within a constructor.
1968static bool FindBaseInitializer(Sema &SemaRef,
1969 CXXRecordDecl *ClassDecl,
1970 QualType BaseType,
1971 const CXXBaseSpecifier *&DirectBaseSpec,
1972 const CXXBaseSpecifier *&VirtualBaseSpec) {
1973 // First, check for a direct base class.
1974 DirectBaseSpec = 0;
1975 for (CXXRecordDecl::base_class_const_iterator Base
1976 = ClassDecl->bases_begin();
1977 Base != ClassDecl->bases_end(); ++Base) {
1978 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1979 // We found a direct base of this type. That's what we're
1980 // initializing.
1981 DirectBaseSpec = &*Base;
1982 break;
1983 }
1984 }
1985
1986 // Check for a virtual base class.
1987 // FIXME: We might be able to short-circuit this if we know in advance that
1988 // there are no virtual bases.
1989 VirtualBaseSpec = 0;
1990 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1991 // We haven't found a base yet; search the class hierarchy for a
1992 // virtual base class.
1993 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1994 /*DetectVirtual=*/false);
1995 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1996 BaseType, Paths)) {
1997 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1998 Path != Paths.end(); ++Path) {
1999 if (Path->back().Base->isVirtual()) {
2000 VirtualBaseSpec = Path->back().Base;
2001 break;
2002 }
2003 }
2004 }
2005 }
2006
2007 return DirectBaseSpec || VirtualBaseSpec;
2008}
2009
Sebastian Redl6df65482011-09-24 17:48:25 +00002010/// \brief Handle a C++ member initializer using braced-init-list syntax.
2011MemInitResult
2012Sema::ActOnMemInitializer(Decl *ConstructorD,
2013 Scope *S,
2014 CXXScopeSpec &SS,
2015 IdentifierInfo *MemberOrBase,
2016 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002017 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002018 SourceLocation IdLoc,
2019 Expr *InitList,
2020 SourceLocation EllipsisLoc) {
2021 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002022 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002023 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002024}
2025
2026/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002027MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002028Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002029 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002030 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002031 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002032 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002033 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002034 SourceLocation IdLoc,
2035 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002036 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002037 SourceLocation RParenLoc,
2038 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002039 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
2040 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002041 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002042 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002043 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002044}
2045
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002046namespace {
2047
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002048// Callback to only accept typo corrections that can be a valid C++ member
2049// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002050class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2051 public:
2052 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2053 : ClassDecl(ClassDecl) {}
2054
2055 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2056 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2057 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2058 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2059 else
2060 return isa<TypeDecl>(ND);
2061 }
2062 return false;
2063 }
2064
2065 private:
2066 CXXRecordDecl *ClassDecl;
2067};
2068
2069}
2070
Sebastian Redl6df65482011-09-24 17:48:25 +00002071/// \brief Handle a C++ member initializer.
2072MemInitResult
2073Sema::BuildMemInitializer(Decl *ConstructorD,
2074 Scope *S,
2075 CXXScopeSpec &SS,
2076 IdentifierInfo *MemberOrBase,
2077 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002078 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002079 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002080 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002081 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002082 if (!ConstructorD)
2083 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002084
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002085 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002086
2087 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002088 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002089 if (!Constructor) {
2090 // The user wrote a constructor initializer on a function that is
2091 // not a C++ constructor. Ignore the error for now, because we may
2092 // have more member initializers coming; we'll diagnose it just
2093 // once in ActOnMemInitializers.
2094 return true;
2095 }
2096
2097 CXXRecordDecl *ClassDecl = Constructor->getParent();
2098
2099 // C++ [class.base.init]p2:
2100 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002101 // constructor's class and, if not found in that scope, are looked
2102 // up in the scope containing the constructor's definition.
2103 // [Note: if the constructor's class contains a member with the
2104 // same name as a direct or virtual base class of the class, a
2105 // mem-initializer-id naming the member or base class and composed
2106 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002107 // mem-initializer-id for the hidden base class may be specified
2108 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002109 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002110 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002111 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002112 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00002113 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002114 ValueDecl *Member;
2115 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
2116 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002117 if (EllipsisLoc.isValid())
2118 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002119 << MemberOrBase
2120 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002121
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002122 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002123 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002124 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002125 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002126 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002127 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002128 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002129
2130 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002131 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002132 } else if (DS.getTypeSpecType() == TST_decltype) {
2133 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002134 } else {
2135 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2136 LookupParsedName(R, S, &SS);
2137
2138 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2139 if (!TyD) {
2140 if (R.isAmbiguous()) return true;
2141
John McCallfd225442010-04-09 19:01:14 +00002142 // We don't want access-control diagnostics here.
2143 R.suppressDiagnostics();
2144
Douglas Gregor7a886e12010-01-19 06:46:48 +00002145 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2146 bool NotUnknownSpecialization = false;
2147 DeclContext *DC = computeDeclContext(SS, false);
2148 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2149 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2150
2151 if (!NotUnknownSpecialization) {
2152 // When the scope specifier can refer to a member of an unknown
2153 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002154 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2155 SS.getWithLocInContext(Context),
2156 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002157 if (BaseType.isNull())
2158 return true;
2159
Douglas Gregor7a886e12010-01-19 06:46:48 +00002160 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002161 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002162 }
2163 }
2164
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002165 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002166 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002167 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002168 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002169 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002170 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002171 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2172 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002173 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002174 // We have found a non-static data member with a similar
2175 // name to what was typed; complain and initialize that
2176 // member.
2177 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2178 << MemberOrBase << true << CorrectedQuotedStr
2179 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2180 Diag(Member->getLocation(), diag::note_previous_decl)
2181 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002182
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002183 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002184 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002185 const CXXBaseSpecifier *DirectBaseSpec;
2186 const CXXBaseSpecifier *VirtualBaseSpec;
2187 if (FindBaseInitializer(*this, ClassDecl,
2188 Context.getTypeDeclType(Type),
2189 DirectBaseSpec, VirtualBaseSpec)) {
2190 // We have found a direct or virtual base class with a
2191 // similar name to what was typed; complain and initialize
2192 // that base class.
2193 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002194 << MemberOrBase << false << CorrectedQuotedStr
2195 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002196
2197 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2198 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002199 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002200 diag::note_base_class_specified_here)
2201 << BaseSpec->getType()
2202 << BaseSpec->getSourceRange();
2203
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002204 TyD = Type;
2205 }
2206 }
2207 }
2208
Douglas Gregor7a886e12010-01-19 06:46:48 +00002209 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002210 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002211 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002212 return true;
2213 }
John McCall2b194412009-12-21 10:41:20 +00002214 }
2215
Douglas Gregor7a886e12010-01-19 06:46:48 +00002216 if (BaseType.isNull()) {
2217 BaseType = Context.getTypeDeclType(TyD);
2218 if (SS.isSet()) {
2219 NestedNameSpecifier *Qualifier =
2220 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002221
Douglas Gregor7a886e12010-01-19 06:46:48 +00002222 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002223 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002224 }
John McCall2b194412009-12-21 10:41:20 +00002225 }
2226 }
Mike Stump1eb44332009-09-09 15:08:12 +00002227
John McCalla93c9342009-12-07 02:54:59 +00002228 if (!TInfo)
2229 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002230
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002231 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002232}
2233
Chandler Carruth81c64772011-09-03 01:14:15 +00002234/// Checks a member initializer expression for cases where reference (or
2235/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002236static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2237 Expr *Init,
2238 SourceLocation IdLoc) {
2239 QualType MemberTy = Member->getType();
2240
2241 // We only handle pointers and references currently.
2242 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2243 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2244 return;
2245
2246 const bool IsPointer = MemberTy->isPointerType();
2247 if (IsPointer) {
2248 if (const UnaryOperator *Op
2249 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2250 // The only case we're worried about with pointers requires taking the
2251 // address.
2252 if (Op->getOpcode() != UO_AddrOf)
2253 return;
2254
2255 Init = Op->getSubExpr();
2256 } else {
2257 // We only handle address-of expression initializers for pointers.
2258 return;
2259 }
2260 }
2261
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002262 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2263 // Taking the address of a temporary will be diagnosed as a hard error.
2264 if (IsPointer)
2265 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002266
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002267 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2268 << Member << Init->getSourceRange();
2269 } else if (const DeclRefExpr *DRE
2270 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2271 // We only warn when referring to a non-reference parameter declaration.
2272 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2273 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002274 return;
2275
2276 S.Diag(Init->getExprLoc(),
2277 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2278 : diag::warn_bind_ref_member_to_parameter)
2279 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002280 } else {
2281 // Other initializers are fine.
2282 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002283 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002284
2285 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2286 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002287}
2288
John McCallf312b1e2010-08-26 23:41:50 +00002289MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002290Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002291 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002292 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2293 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2294 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002295 "Member must be a FieldDecl or IndirectFieldDecl");
2296
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002297 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002298 return true;
2299
Douglas Gregor464b2f02010-11-05 22:21:31 +00002300 if (Member->isInvalidDecl())
2301 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002302
John McCallb4190042009-11-04 23:02:40 +00002303 // Diagnose value-uses of fields to initialize themselves, e.g.
2304 // foo(foo)
2305 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002306 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002307 Expr **Args;
2308 unsigned NumArgs;
2309 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2310 Args = ParenList->getExprs();
2311 NumArgs = ParenList->getNumExprs();
2312 } else {
2313 InitListExpr *InitList = cast<InitListExpr>(Init);
2314 Args = InitList->getInits();
2315 NumArgs = InitList->getNumInits();
2316 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002317
Richard Trieude5e75c2012-06-14 23:11:34 +00002318 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2319 != DiagnosticsEngine::Ignored)
2320 for (unsigned i = 0; i < NumArgs; ++i)
2321 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002322 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002323 // initializing the i'th field, throw a warning if any of the >= i'th
2324 // fields are used, as they are not yet initialized.
2325 // Right now we are only handling the case where the i'th field uses
2326 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002327 // Also need to take into account that some fields may be initialized by
2328 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002329 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002330
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002331 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002332
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002333 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002334 // Can't check initialization for a member of dependent type or when
2335 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002336 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002337 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002338 bool InitList = false;
2339 if (isa<InitListExpr>(Init)) {
2340 InitList = true;
2341 Args = &Init;
2342 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002343
2344 if (isStdInitializerList(Member->getType(), 0)) {
2345 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2346 << /*at end of ctor*/1 << InitRange;
2347 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002348 }
2349
Chandler Carruth894aed92010-12-06 09:23:57 +00002350 // Initialize the member.
2351 InitializedEntity MemberEntity =
2352 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2353 : InitializedEntity::InitializeMember(IndirectMember, 0);
2354 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002355 InitList ? InitializationKind::CreateDirectList(IdLoc)
2356 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2357 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002358
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002359 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2360 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002361 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002362 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002363 if (MemberInit.isInvalid())
2364 return true;
2365
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002366 CheckImplicitConversions(MemberInit.get(),
2367 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002368
2369 // C++0x [class.base.init]p7:
2370 // The initialization of each base and member constitutes a
2371 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002372 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002373 if (MemberInit.isInvalid())
2374 return true;
2375
2376 // If we are in a dependent context, template instantiation will
2377 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002378 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002379 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2380 // of the information that we have about the member
2381 // initializer. However, deconstructing the ASTs is a dicey process,
2382 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002383 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002384 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002385 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002386 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002387 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2388 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002389 }
2390
Chandler Carruth894aed92010-12-06 09:23:57 +00002391 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002392 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2393 InitRange.getBegin(), Init,
2394 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002395 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002396 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2397 InitRange.getBegin(), Init,
2398 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002399 }
Eli Friedman59c04372009-07-29 19:44:27 +00002400}
2401
John McCallf312b1e2010-08-26 23:41:50 +00002402MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002403Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002404 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002405 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002406 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002407 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002408 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002409 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002410
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002411 bool InitList = true;
2412 Expr **Args = &Init;
2413 unsigned NumArgs = 1;
2414 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2415 InitList = false;
2416 Args = ParenList->getExprs();
2417 NumArgs = ParenList->getNumExprs();
2418 }
2419
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002420 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002421 // Initialize the object.
2422 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2423 QualType(ClassDecl->getTypeForDecl(), 0));
2424 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002425 InitList ? InitializationKind::CreateDirectList(NameLoc)
2426 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2427 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002428 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2429 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002430 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002431 0);
Sean Hunt41717662011-02-26 19:13:13 +00002432 if (DelegationInit.isInvalid())
2433 return true;
2434
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002435 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2436 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002437
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002438 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002439
2440 // C++0x [class.base.init]p7:
2441 // The initialization of each base and member constitutes a
2442 // full-expression.
2443 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2444 if (DelegationInit.isInvalid())
2445 return true;
2446
Eli Friedmand21016f2012-05-19 23:35:23 +00002447 // If we are in a dependent context, template instantiation will
2448 // perform this type-checking again. Just save the arguments that we
2449 // received in a ParenListExpr.
2450 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2451 // of the information that we have about the base
2452 // initializer. However, deconstructing the ASTs is a dicey process,
2453 // and this approach is far more likely to get the corner cases right.
2454 if (CurContext->isDependentContext())
2455 DelegationInit = Owned(Init);
2456
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002457 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002458 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002459 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002460}
2461
2462MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002463Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002464 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002465 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002466 SourceLocation BaseLoc
2467 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002468
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002469 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2470 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2471 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2472
2473 // C++ [class.base.init]p2:
2474 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002475 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002476 // of that class, the mem-initializer is ill-formed. A
2477 // mem-initializer-list can initialize a base class using any
2478 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002479 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002480
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002481 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002482 if (EllipsisLoc.isValid()) {
2483 // This is a pack expansion.
2484 if (!BaseType->containsUnexpandedParameterPack()) {
2485 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002486 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002487
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002488 EllipsisLoc = SourceLocation();
2489 }
2490 } else {
2491 // Check for any unexpanded parameter packs.
2492 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2493 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002494
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002495 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002496 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002497 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002498
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002499 // Check for direct and virtual base classes.
2500 const CXXBaseSpecifier *DirectBaseSpec = 0;
2501 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2502 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002503 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2504 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002505 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002506
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002507 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2508 VirtualBaseSpec);
2509
2510 // C++ [base.class.init]p2:
2511 // Unless the mem-initializer-id names a nonstatic data member of the
2512 // constructor's class or a direct or virtual base of that class, the
2513 // mem-initializer is ill-formed.
2514 if (!DirectBaseSpec && !VirtualBaseSpec) {
2515 // If the class has any dependent bases, then it's possible that
2516 // one of those types will resolve to the same type as
2517 // BaseType. Therefore, just treat this as a dependent base
2518 // class initialization. FIXME: Should we try to check the
2519 // initialization anyway? It seems odd.
2520 if (ClassDecl->hasAnyDependentBases())
2521 Dependent = true;
2522 else
2523 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2524 << BaseType << Context.getTypeDeclType(ClassDecl)
2525 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2526 }
2527 }
2528
2529 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002530 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002531
Sebastian Redl6df65482011-09-24 17:48:25 +00002532 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2533 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002534 InitRange.getBegin(), Init,
2535 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002536 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002537
2538 // C++ [base.class.init]p2:
2539 // If a mem-initializer-id is ambiguous because it designates both
2540 // a direct non-virtual base class and an inherited virtual base
2541 // class, the mem-initializer is ill-formed.
2542 if (DirectBaseSpec && VirtualBaseSpec)
2543 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002544 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002545
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002546 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002547 if (!BaseSpec)
2548 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2549
2550 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002551 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002552 Expr **Args = &Init;
2553 unsigned NumArgs = 1;
2554 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002555 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002556 Args = ParenList->getExprs();
2557 NumArgs = ParenList->getNumExprs();
2558 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002559
2560 InitializedEntity BaseEntity =
2561 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2562 InitializationKind Kind =
2563 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2564 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2565 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002566 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2567 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002568 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002569 if (BaseInit.isInvalid())
2570 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002571
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002572 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002573
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002574 // C++0x [class.base.init]p7:
2575 // The initialization of each base and member constitutes a
2576 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002577 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002578 if (BaseInit.isInvalid())
2579 return true;
2580
2581 // If we are in a dependent context, template instantiation will
2582 // perform this type-checking again. Just save the arguments that we
2583 // received in a ParenListExpr.
2584 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2585 // of the information that we have about the base
2586 // initializer. However, deconstructing the ASTs is a dicey process,
2587 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002588 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002589 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002590
Sean Huntcbb67482011-01-08 20:30:50 +00002591 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002592 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002593 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002594 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002595 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002596}
2597
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002598// Create a static_cast\<T&&>(expr).
2599static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2600 QualType ExprType = E->getType();
2601 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2602 SourceLocation ExprLoc = E->getLocStart();
2603 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2604 TargetType, ExprLoc);
2605
2606 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2607 SourceRange(ExprLoc, ExprLoc),
2608 E->getSourceRange()).take();
2609}
2610
Anders Carlssone5ef7402010-04-23 03:10:23 +00002611/// ImplicitInitializerKind - How an implicit base or member initializer should
2612/// initialize its base or member.
2613enum ImplicitInitializerKind {
2614 IIK_Default,
2615 IIK_Copy,
2616 IIK_Move
2617};
2618
Anders Carlssondefefd22010-04-23 02:00:02 +00002619static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002620BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002621 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002622 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002623 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002624 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002625 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002626 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2627 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002628
John McCall60d7b3a2010-08-24 06:29:42 +00002629 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002630
2631 switch (ImplicitInitKind) {
2632 case IIK_Default: {
2633 InitializationKind InitKind
2634 = InitializationKind::CreateDefault(Constructor->getLocation());
2635 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002636 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002637 break;
2638 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002639
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002640 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002641 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002642 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002643 ParmVarDecl *Param = Constructor->getParamDecl(0);
2644 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002645
Anders Carlssone5ef7402010-04-23 03:10:23 +00002646 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002647 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002648 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002649 Constructor->getLocation(), ParamType,
2650 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002651
Eli Friedman5f2987c2012-02-02 03:46:19 +00002652 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2653
Anders Carlssonc7957502010-04-24 22:02:54 +00002654 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002655 QualType ArgTy =
2656 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2657 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002658
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002659 if (Moving) {
2660 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2661 }
2662
John McCallf871d0c2010-08-07 06:22:56 +00002663 CXXCastPath BasePath;
2664 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002665 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2666 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002667 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002668 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002669
Anders Carlssone5ef7402010-04-23 03:10:23 +00002670 InitializationKind InitKind
2671 = InitializationKind::CreateDirect(Constructor->getLocation(),
2672 SourceLocation(), SourceLocation());
2673 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2674 &CopyCtorArg, 1);
2675 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002676 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002677 break;
2678 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002679 }
John McCall9ae2f072010-08-23 23:25:46 +00002680
Douglas Gregor53c374f2010-12-07 00:41:46 +00002681 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002682 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002683 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002684
Anders Carlssondefefd22010-04-23 02:00:02 +00002685 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002686 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002687 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2688 SourceLocation()),
2689 BaseSpec->isVirtual(),
2690 SourceLocation(),
2691 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002692 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002693 SourceLocation());
2694
Anders Carlssondefefd22010-04-23 02:00:02 +00002695 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002696}
2697
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002698static bool RefersToRValueRef(Expr *MemRef) {
2699 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2700 return Referenced->getType()->isRValueReferenceType();
2701}
2702
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002703static bool
2704BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002705 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002706 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002707 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002708 if (Field->isInvalidDecl())
2709 return true;
2710
Chandler Carruthf186b542010-06-29 23:50:44 +00002711 SourceLocation Loc = Constructor->getLocation();
2712
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002713 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2714 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002715 ParmVarDecl *Param = Constructor->getParamDecl(0);
2716 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002717
2718 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002719 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2720 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002721
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002722 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002723 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002724 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002725 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002726
Eli Friedman5f2987c2012-02-02 03:46:19 +00002727 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2728
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002729 if (Moving) {
2730 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2731 }
2732
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002733 // Build a reference to this field within the parameter.
2734 CXXScopeSpec SS;
2735 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2736 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002737 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2738 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002739 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002740 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002741 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002742 ParamType, Loc,
2743 /*IsArrow=*/false,
2744 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002745 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002746 /*FirstQualifierInScope=*/0,
2747 MemberLookup,
2748 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002749 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002750 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002751
2752 // C++11 [class.copy]p15:
2753 // - if a member m has rvalue reference type T&&, it is direct-initialized
2754 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002755 if (RefersToRValueRef(CtorArg.get())) {
2756 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002757 }
2758
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002759 // When the field we are copying is an array, create index variables for
2760 // each dimension of the array. We use these index variables to subscript
2761 // the source array, and other clients (e.g., CodeGen) will perform the
2762 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002763 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002764 QualType BaseType = Field->getType();
2765 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002766 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002767 while (const ConstantArrayType *Array
2768 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002769 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002770 // Create the iteration variable for this array index.
2771 IdentifierInfo *IterationVarName = 0;
2772 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002773 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002774 llvm::raw_svector_ostream OS(Str);
2775 OS << "__i" << IndexVariables.size();
2776 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2777 }
2778 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002779 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002780 IterationVarName, SizeType,
2781 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002782 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002783 IndexVariables.push_back(IterationVar);
2784
2785 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002786 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002787 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002788 assert(!IterationVarRef.isInvalid() &&
2789 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002790 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2791 assert(!IterationVarRef.isInvalid() &&
2792 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002793
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002794 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002795 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002796 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002797 Loc);
2798 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002799 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002800
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002801 BaseType = Array->getElementType();
2802 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002803
2804 // The array subscript expression is an lvalue, which is wrong for moving.
2805 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002806 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002807
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002808 // Construct the entity that we will be initializing. For an array, this
2809 // will be first element in the array, which may require several levels
2810 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002811 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002812 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002813 if (Indirect)
2814 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2815 else
2816 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002817 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2818 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2819 0,
2820 Entities.back()));
2821
2822 // Direct-initialize to use the copy constructor.
2823 InitializationKind InitKind =
2824 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2825
Sebastian Redl74e611a2011-09-04 18:14:28 +00002826 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002827 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002828 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002829
John McCall60d7b3a2010-08-24 06:29:42 +00002830 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002831 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002832 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002833 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002834 if (MemberInit.isInvalid())
2835 return true;
2836
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002837 if (Indirect) {
2838 assert(IndexVariables.size() == 0 &&
2839 "Indirect field improperly initialized");
2840 CXXMemberInit
2841 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2842 Loc, Loc,
2843 MemberInit.takeAs<Expr>(),
2844 Loc);
2845 } else
2846 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2847 Loc, MemberInit.takeAs<Expr>(),
2848 Loc,
2849 IndexVariables.data(),
2850 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002851 return false;
2852 }
2853
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002854 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2855
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002856 QualType FieldBaseElementType =
2857 SemaRef.Context.getBaseElementType(Field->getType());
2858
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002859 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002860 InitializedEntity InitEntity
2861 = Indirect? InitializedEntity::InitializeMember(Indirect)
2862 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002863 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002864 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002865
2866 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002867 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002868 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002869
Douglas Gregor53c374f2010-12-07 00:41:46 +00002870 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002871 if (MemberInit.isInvalid())
2872 return true;
2873
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002874 if (Indirect)
2875 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2876 Indirect, Loc,
2877 Loc,
2878 MemberInit.get(),
2879 Loc);
2880 else
2881 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2882 Field, Loc, Loc,
2883 MemberInit.get(),
2884 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002885 return false;
2886 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002887
Sean Hunt1f2f3842011-05-17 00:19:05 +00002888 if (!Field->getParent()->isUnion()) {
2889 if (FieldBaseElementType->isReferenceType()) {
2890 SemaRef.Diag(Constructor->getLocation(),
2891 diag::err_uninitialized_member_in_ctor)
2892 << (int)Constructor->isImplicit()
2893 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2894 << 0 << Field->getDeclName();
2895 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2896 return true;
2897 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002898
Sean Hunt1f2f3842011-05-17 00:19:05 +00002899 if (FieldBaseElementType.isConstQualified()) {
2900 SemaRef.Diag(Constructor->getLocation(),
2901 diag::err_uninitialized_member_in_ctor)
2902 << (int)Constructor->isImplicit()
2903 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2904 << 1 << Field->getDeclName();
2905 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2906 return true;
2907 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002908 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002909
David Blaikie4e4d0842012-03-11 07:00:24 +00002910 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002911 FieldBaseElementType->isObjCRetainableType() &&
2912 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2913 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002914 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002915 // Default-initialize Objective-C pointers to NULL.
2916 CXXMemberInit
2917 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2918 Loc, Loc,
2919 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2920 Loc);
2921 return false;
2922 }
2923
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002924 // Nothing to initialize.
2925 CXXMemberInit = 0;
2926 return false;
2927}
John McCallf1860e52010-05-20 23:23:51 +00002928
2929namespace {
2930struct BaseAndFieldInfo {
2931 Sema &S;
2932 CXXConstructorDecl *Ctor;
2933 bool AnyErrorsInInits;
2934 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002935 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002936 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002937
2938 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2939 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002940 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2941 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002942 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002943 else if (Generated && Ctor->isMoveConstructor())
2944 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002945 else
2946 IIK = IIK_Default;
2947 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002948
2949 bool isImplicitCopyOrMove() const {
2950 switch (IIK) {
2951 case IIK_Copy:
2952 case IIK_Move:
2953 return true;
2954
2955 case IIK_Default:
2956 return false;
2957 }
David Blaikie30263482012-01-20 21:50:17 +00002958
2959 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002960 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002961
2962 bool addFieldInitializer(CXXCtorInitializer *Init) {
2963 AllToInit.push_back(Init);
2964
2965 // Check whether this initializer makes the field "used".
2966 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2967 S.UnusedPrivateFields.remove(Init->getAnyMember());
2968
2969 return false;
2970 }
John McCallf1860e52010-05-20 23:23:51 +00002971};
2972}
2973
Richard Smitha4950662011-09-19 13:34:43 +00002974/// \brief Determine whether the given indirect field declaration is somewhere
2975/// within an anonymous union.
2976static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2977 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2978 CEnd = F->chain_end();
2979 C != CEnd; ++C)
2980 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2981 if (Record->isUnion())
2982 return true;
2983
2984 return false;
2985}
2986
Douglas Gregorddb21472011-11-02 23:04:16 +00002987/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2988/// array type.
2989static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2990 if (T->isIncompleteArrayType())
2991 return true;
2992
2993 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2994 if (!ArrayT->getSize())
2995 return true;
2996
2997 T = ArrayT->getElementType();
2998 }
2999
3000 return false;
3001}
3002
Richard Smith7a614d82011-06-11 17:19:42 +00003003static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003004 FieldDecl *Field,
3005 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00003006
Chandler Carruthe861c602010-06-30 02:59:29 +00003007 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00003008 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
3009 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003010
Richard Smith0b8220a2012-08-07 21:30:42 +00003011 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00003012 // has a brace-or-equal-initializer, the entity is initialized as specified
3013 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003014 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003015 CXXCtorInitializer *Init;
3016 if (Indirect)
3017 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3018 SourceLocation(),
3019 SourceLocation(), 0,
3020 SourceLocation());
3021 else
3022 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3023 SourceLocation(),
3024 SourceLocation(), 0,
3025 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003026 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003027 }
3028
Richard Smithc115f632011-09-18 11:14:50 +00003029 // Don't build an implicit initializer for union members if none was
3030 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003031 if (Field->getParent()->isUnion() ||
3032 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003033 return false;
3034
Douglas Gregorddb21472011-11-02 23:04:16 +00003035 // Don't initialize incomplete or zero-length arrays.
3036 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3037 return false;
3038
John McCallf1860e52010-05-20 23:23:51 +00003039 // Don't try to build an implicit initializer if there were semantic
3040 // errors in any of the initializers (and therefore we might be
3041 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003042 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003043 return false;
3044
Sean Huntcbb67482011-01-08 20:30:50 +00003045 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003046 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3047 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003048 return true;
John McCallf1860e52010-05-20 23:23:51 +00003049
Richard Smith0b8220a2012-08-07 21:30:42 +00003050 if (!Init)
3051 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003052
Richard Smith0b8220a2012-08-07 21:30:42 +00003053 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003054}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003055
3056bool
3057Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3058 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003059 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003060 Constructor->setNumCtorInitializers(1);
3061 CXXCtorInitializer **initializer =
3062 new (Context) CXXCtorInitializer*[1];
3063 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3064 Constructor->setCtorInitializers(initializer);
3065
Sean Huntb76af9c2011-05-03 23:05:34 +00003066 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003067 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003068 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3069 }
3070
Sean Huntc1598702011-05-05 00:05:47 +00003071 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003072
Sean Hunt059ce0d2011-05-01 07:04:31 +00003073 return false;
3074}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003075
John McCallb77115d2011-06-17 00:18:42 +00003076bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3077 CXXCtorInitializer **Initializers,
3078 unsigned NumInitializers,
3079 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003080 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003081 // Just store the initializers as written, they will be checked during
3082 // instantiation.
3083 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003084 Constructor->setNumCtorInitializers(NumInitializers);
3085 CXXCtorInitializer **baseOrMemberInitializers =
3086 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003087 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00003088 NumInitializers * sizeof(CXXCtorInitializer*));
3089 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003090 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003091
3092 // Let template instantiation know whether we had errors.
3093 if (AnyErrors)
3094 Constructor->setInvalidDecl();
3095
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003096 return false;
3097 }
3098
John McCallf1860e52010-05-20 23:23:51 +00003099 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003100
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003101 // We need to build the initializer AST according to order of construction
3102 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003103 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003104 if (!ClassDecl)
3105 return true;
3106
Eli Friedman80c30da2009-11-09 19:20:36 +00003107 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003108
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003109 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003110 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003111
3112 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003113 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003114 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003115 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003116 }
3117
Anders Carlsson711f34a2010-04-21 19:52:01 +00003118 // Keep track of the direct virtual bases.
3119 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3120 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3121 E = ClassDecl->bases_end(); I != E; ++I) {
3122 if (I->isVirtual())
3123 DirectVBases.insert(I);
3124 }
3125
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003126 // Push virtual bases before others.
3127 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3128 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3129
Sean Huntcbb67482011-01-08 20:30:50 +00003130 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003131 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3132 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003133 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003134 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003135 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003136 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003137 VBase, IsInheritedVirtualBase,
3138 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003139 HadError = true;
3140 continue;
3141 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003142
John McCallf1860e52010-05-20 23:23:51 +00003143 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003144 }
3145 }
Mike Stump1eb44332009-09-09 15:08:12 +00003146
John McCallf1860e52010-05-20 23:23:51 +00003147 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003148 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3149 E = ClassDecl->bases_end(); Base != E; ++Base) {
3150 // Virtuals are in the virtual base list and already constructed.
3151 if (Base->isVirtual())
3152 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003153
Sean Huntcbb67482011-01-08 20:30:50 +00003154 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003155 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3156 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003157 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003158 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003159 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003160 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003161 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003162 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003163 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003164 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003165
John McCallf1860e52010-05-20 23:23:51 +00003166 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003167 }
3168 }
Mike Stump1eb44332009-09-09 15:08:12 +00003169
John McCallf1860e52010-05-20 23:23:51 +00003170 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003171 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3172 MemEnd = ClassDecl->decls_end();
3173 Mem != MemEnd; ++Mem) {
3174 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003175 // C++ [class.bit]p2:
3176 // A declaration for a bit-field that omits the identifier declares an
3177 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3178 // initialized.
3179 if (F->isUnnamedBitfield())
3180 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003181
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003182 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003183 // handle anonymous struct/union fields based on their individual
3184 // indirect fields.
3185 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3186 continue;
3187
3188 if (CollectFieldInitializer(*this, Info, F))
3189 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003190 continue;
3191 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003192
3193 // Beyond this point, we only consider default initialization.
3194 if (Info.IIK != IIK_Default)
3195 continue;
3196
3197 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3198 if (F->getType()->isIncompleteArrayType()) {
3199 assert(ClassDecl->hasFlexibleArrayMember() &&
3200 "Incomplete array type is not valid");
3201 continue;
3202 }
3203
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003204 // Initialize each field of an anonymous struct individually.
3205 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3206 HadError = true;
3207
3208 continue;
3209 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003210 }
Mike Stump1eb44332009-09-09 15:08:12 +00003211
John McCallf1860e52010-05-20 23:23:51 +00003212 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003213 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003214 Constructor->setNumCtorInitializers(NumInitializers);
3215 CXXCtorInitializer **baseOrMemberInitializers =
3216 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003217 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003218 NumInitializers * sizeof(CXXCtorInitializer*));
3219 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003220
John McCallef027fe2010-03-16 21:39:52 +00003221 // Constructors implicitly reference the base and member
3222 // destructors.
3223 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3224 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003225 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003226
3227 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003228}
3229
Eli Friedman6347f422009-07-21 19:28:10 +00003230static void *GetKeyForTopLevelField(FieldDecl *Field) {
3231 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003232 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003233 if (RT->getDecl()->isAnonymousStructOrUnion())
3234 return static_cast<void *>(RT->getDecl());
3235 }
3236 return static_cast<void *>(Field);
3237}
3238
Anders Carlssonea356fb2010-04-02 05:42:15 +00003239static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003240 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003241}
3242
Anders Carlssonea356fb2010-04-02 05:42:15 +00003243static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003244 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003245 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003246 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003247
Eli Friedman6347f422009-07-21 19:28:10 +00003248 // For fields injected into the class via declaration of an anonymous union,
3249 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003250 FieldDecl *Field = Member->getAnyMember();
3251
John McCall3c3ccdb2010-04-10 09:28:51 +00003252 // If the field is a member of an anonymous struct or union, our key
3253 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003254 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003255 if (RD->isAnonymousStructOrUnion()) {
3256 while (true) {
3257 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3258 if (Parent->isAnonymousStructOrUnion())
3259 RD = Parent;
3260 else
3261 break;
3262 }
3263
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003264 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003265 }
Mike Stump1eb44332009-09-09 15:08:12 +00003266
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003267 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003268}
3269
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003270static void
3271DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003272 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003273 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003274 unsigned NumInits) {
3275 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003276 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003277
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003278 // Don't check initializers order unless the warning is enabled at the
3279 // location of at least one initializer.
3280 bool ShouldCheckOrder = false;
3281 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003282 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003283 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3284 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003285 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003286 ShouldCheckOrder = true;
3287 break;
3288 }
3289 }
3290 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003291 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003292
John McCalld6ca8da2010-04-10 07:37:23 +00003293 // Build the list of bases and members in the order that they'll
3294 // actually be initialized. The explicit initializers should be in
3295 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003296 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003297
Anders Carlsson071d6102010-04-02 03:38:04 +00003298 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3299
John McCalld6ca8da2010-04-10 07:37:23 +00003300 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003301 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003302 ClassDecl->vbases_begin(),
3303 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003304 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003305
John McCalld6ca8da2010-04-10 07:37:23 +00003306 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003307 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003308 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003309 if (Base->isVirtual())
3310 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003311 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003312 }
Mike Stump1eb44332009-09-09 15:08:12 +00003313
John McCalld6ca8da2010-04-10 07:37:23 +00003314 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003315 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003316 E = ClassDecl->field_end(); Field != E; ++Field) {
3317 if (Field->isUnnamedBitfield())
3318 continue;
3319
David Blaikie581deb32012-06-06 20:45:41 +00003320 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003321 }
3322
John McCalld6ca8da2010-04-10 07:37:23 +00003323 unsigned NumIdealInits = IdealInitKeys.size();
3324 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003325
Sean Huntcbb67482011-01-08 20:30:50 +00003326 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003327 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003328 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003329 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003330
3331 // Scan forward to try to find this initializer in the idealized
3332 // initializers list.
3333 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3334 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003335 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003336
3337 // If we didn't find this initializer, it must be because we
3338 // scanned past it on a previous iteration. That can only
3339 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003340 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003341 Sema::SemaDiagnosticBuilder D =
3342 SemaRef.Diag(PrevInit->getSourceLocation(),
3343 diag::warn_initializer_out_of_order);
3344
Francois Pichet00eb3f92010-12-04 09:14:42 +00003345 if (PrevInit->isAnyMemberInitializer())
3346 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003347 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003348 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003349
Francois Pichet00eb3f92010-12-04 09:14:42 +00003350 if (Init->isAnyMemberInitializer())
3351 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003352 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003353 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003354
3355 // Move back to the initializer's location in the ideal list.
3356 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3357 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003358 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003359
3360 assert(IdealIndex != NumIdealInits &&
3361 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003362 }
John McCalld6ca8da2010-04-10 07:37:23 +00003363
3364 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003365 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003366}
3367
John McCall3c3ccdb2010-04-10 09:28:51 +00003368namespace {
3369bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003370 CXXCtorInitializer *Init,
3371 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003372 if (!PrevInit) {
3373 PrevInit = Init;
3374 return false;
3375 }
3376
3377 if (FieldDecl *Field = Init->getMember())
3378 S.Diag(Init->getSourceLocation(),
3379 diag::err_multiple_mem_initialization)
3380 << Field->getDeclName()
3381 << Init->getSourceRange();
3382 else {
John McCallf4c73712011-01-19 06:33:43 +00003383 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003384 assert(BaseClass && "neither field nor base");
3385 S.Diag(Init->getSourceLocation(),
3386 diag::err_multiple_base_initialization)
3387 << QualType(BaseClass, 0)
3388 << Init->getSourceRange();
3389 }
3390 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3391 << 0 << PrevInit->getSourceRange();
3392
3393 return true;
3394}
3395
Sean Huntcbb67482011-01-08 20:30:50 +00003396typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003397typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3398
3399bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003400 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003401 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003402 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003403 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003404 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003405
3406 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003407 if (Parent->isUnion()) {
3408 UnionEntry &En = Unions[Parent];
3409 if (En.first && En.first != Child) {
3410 S.Diag(Init->getSourceLocation(),
3411 diag::err_multiple_mem_union_initialization)
3412 << Field->getDeclName()
3413 << Init->getSourceRange();
3414 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3415 << 0 << En.second->getSourceRange();
3416 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003417 }
3418 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003419 En.first = Child;
3420 En.second = Init;
3421 }
David Blaikie6fe29652011-11-17 06:01:57 +00003422 if (!Parent->isAnonymousStructOrUnion())
3423 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003424 }
3425
3426 Child = Parent;
3427 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003428 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003429
3430 return false;
3431}
3432}
3433
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003434/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003435void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003436 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003437 CXXCtorInitializer **meminits,
3438 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003439 bool AnyErrors) {
3440 if (!ConstructorDecl)
3441 return;
3442
3443 AdjustDeclIfTemplate(ConstructorDecl);
3444
3445 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003446 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003447
3448 if (!Constructor) {
3449 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3450 return;
3451 }
3452
Sean Huntcbb67482011-01-08 20:30:50 +00003453 CXXCtorInitializer **MemInits =
3454 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003455
3456 // Mapping for the duplicate initializers check.
3457 // For member initializers, this is keyed with a FieldDecl*.
3458 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003459 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003460
3461 // Mapping for the inconsistent anonymous-union initializers check.
3462 RedundantUnionMap MemberUnions;
3463
Anders Carlssonea356fb2010-04-02 05:42:15 +00003464 bool HadError = false;
3465 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003466 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003467
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003468 // Set the source order index.
3469 Init->setSourceOrder(i);
3470
Francois Pichet00eb3f92010-12-04 09:14:42 +00003471 if (Init->isAnyMemberInitializer()) {
3472 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003473 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3474 CheckRedundantUnionInit(*this, Init, MemberUnions))
3475 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003476 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003477 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3478 if (CheckRedundantInit(*this, Init, Members[Key]))
3479 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003480 } else {
3481 assert(Init->isDelegatingInitializer());
3482 // This must be the only initializer
Richard Smitha6ddea62012-09-14 18:21:10 +00003483 if (NumMemInits != 1) {
3484 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003485 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003486 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003487 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003488 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003489 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003490 // Return immediately as the initializer is set.
3491 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003492 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003493 }
3494
Anders Carlssonea356fb2010-04-02 05:42:15 +00003495 if (HadError)
3496 return;
3497
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003498 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003499
Sean Huntcbb67482011-01-08 20:30:50 +00003500 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003501}
3502
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003503void
John McCallef027fe2010-03-16 21:39:52 +00003504Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3505 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003506 // Ignore dependent contexts. Also ignore unions, since their members never
3507 // have destructors implicitly called.
3508 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003509 return;
John McCall58e6f342010-03-16 05:22:47 +00003510
3511 // FIXME: all the access-control diagnostics are positioned on the
3512 // field/base declaration. That's probably good; that said, the
3513 // user might reasonably want to know why the destructor is being
3514 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003515
Anders Carlsson9f853df2009-11-17 04:44:12 +00003516 // Non-static data members.
3517 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3518 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003519 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003520 if (Field->isInvalidDecl())
3521 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003522
3523 // Don't destroy incomplete or zero-length arrays.
3524 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3525 continue;
3526
Anders Carlsson9f853df2009-11-17 04:44:12 +00003527 QualType FieldType = Context.getBaseElementType(Field->getType());
3528
3529 const RecordType* RT = FieldType->getAs<RecordType>();
3530 if (!RT)
3531 continue;
3532
3533 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003534 if (FieldClassDecl->isInvalidDecl())
3535 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003536 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003537 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003538 // The destructor for an implicit anonymous union member is never invoked.
3539 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3540 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003541
Douglas Gregordb89f282010-07-01 22:47:18 +00003542 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003543 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003544 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003545 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003546 << Field->getDeclName()
3547 << FieldType);
3548
Eli Friedman5f2987c2012-02-02 03:46:19 +00003549 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003550 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003551 }
3552
John McCall58e6f342010-03-16 05:22:47 +00003553 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3554
Anders Carlsson9f853df2009-11-17 04:44:12 +00003555 // Bases.
3556 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3557 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003558 // Bases are always records in a well-formed non-dependent class.
3559 const RecordType *RT = Base->getType()->getAs<RecordType>();
3560
3561 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003562 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003563 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003564
John McCall58e6f342010-03-16 05:22:47 +00003565 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003566 // If our base class is invalid, we probably can't get its dtor anyway.
3567 if (BaseClassDecl->isInvalidDecl())
3568 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003569 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003570 continue;
John McCall58e6f342010-03-16 05:22:47 +00003571
Douglas Gregordb89f282010-07-01 22:47:18 +00003572 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003573 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003574
3575 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003576 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003577 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003578 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003579 << Base->getSourceRange(),
3580 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003581
Eli Friedman5f2987c2012-02-02 03:46:19 +00003582 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003583 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003584 }
3585
3586 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003587 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3588 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003589
3590 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003591 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003592
3593 // Ignore direct virtual bases.
3594 if (DirectVirtualBases.count(RT))
3595 continue;
3596
John McCall58e6f342010-03-16 05:22:47 +00003597 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003598 // If our base class is invalid, we probably can't get its dtor anyway.
3599 if (BaseClassDecl->isInvalidDecl())
3600 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003601 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003602 continue;
John McCall58e6f342010-03-16 05:22:47 +00003603
Douglas Gregordb89f282010-07-01 22:47:18 +00003604 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003605 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003606 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003607 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003608 << VBase->getType(),
3609 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003610
Eli Friedman5f2987c2012-02-02 03:46:19 +00003611 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003612 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003613 }
3614}
3615
John McCalld226f652010-08-21 09:40:31 +00003616void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003617 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003618 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003619
Mike Stump1eb44332009-09-09 15:08:12 +00003620 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003621 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003622 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003623}
3624
Mike Stump1eb44332009-09-09 15:08:12 +00003625bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003626 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003627 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3628 unsigned DiagID;
3629 AbstractDiagSelID SelID;
3630
3631 public:
3632 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3633 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3634
3635 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003636 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003637 if (SelID == -1)
3638 S.Diag(Loc, DiagID) << T;
3639 else
3640 S.Diag(Loc, DiagID) << SelID << T;
3641 }
3642 } Diagnoser(DiagID, SelID);
3643
3644 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003645}
3646
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003647bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003648 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003649 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003650 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003651
Anders Carlsson11f21a02009-03-23 19:10:31 +00003652 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003653 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003654
Ted Kremenek6217b802009-07-29 21:53:49 +00003655 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003656 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003657 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003658 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003659
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003660 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003661 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003662 }
Mike Stump1eb44332009-09-09 15:08:12 +00003663
Ted Kremenek6217b802009-07-29 21:53:49 +00003664 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003665 if (!RT)
3666 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003667
John McCall86ff3082010-02-04 22:26:26 +00003668 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003669
John McCall94c3b562010-08-18 09:41:07 +00003670 // We can't answer whether something is abstract until it has a
3671 // definition. If it's currently being defined, we'll walk back
3672 // over all the declarations when we have a full definition.
3673 const CXXRecordDecl *Def = RD->getDefinition();
3674 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003675 return false;
3676
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003677 if (!RD->isAbstract())
3678 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003679
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003680 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003681 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003682
John McCall94c3b562010-08-18 09:41:07 +00003683 return true;
3684}
3685
3686void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3687 // Check if we've already emitted the list of pure virtual functions
3688 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003689 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003690 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003691
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003692 CXXFinalOverriderMap FinalOverriders;
3693 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003694
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003695 // Keep a set of seen pure methods so we won't diagnose the same method
3696 // more than once.
3697 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3698
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003699 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3700 MEnd = FinalOverriders.end();
3701 M != MEnd;
3702 ++M) {
3703 for (OverridingMethods::iterator SO = M->second.begin(),
3704 SOEnd = M->second.end();
3705 SO != SOEnd; ++SO) {
3706 // C++ [class.abstract]p4:
3707 // A class is abstract if it contains or inherits at least one
3708 // pure virtual function for which the final overrider is pure
3709 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003710
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003711 //
3712 if (SO->second.size() != 1)
3713 continue;
3714
3715 if (!SO->second.front().Method->isPure())
3716 continue;
3717
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003718 if (!SeenPureMethods.insert(SO->second.front().Method))
3719 continue;
3720
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003721 Diag(SO->second.front().Method->getLocation(),
3722 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003723 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003724 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003725 }
3726
3727 if (!PureVirtualClassDiagSet)
3728 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3729 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003730}
3731
Anders Carlsson8211eff2009-03-24 01:19:16 +00003732namespace {
John McCall94c3b562010-08-18 09:41:07 +00003733struct AbstractUsageInfo {
3734 Sema &S;
3735 CXXRecordDecl *Record;
3736 CanQualType AbstractType;
3737 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003738
John McCall94c3b562010-08-18 09:41:07 +00003739 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3740 : S(S), Record(Record),
3741 AbstractType(S.Context.getCanonicalType(
3742 S.Context.getTypeDeclType(Record))),
3743 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003744
John McCall94c3b562010-08-18 09:41:07 +00003745 void DiagnoseAbstractType() {
3746 if (Invalid) return;
3747 S.DiagnoseAbstractType(Record);
3748 Invalid = true;
3749 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003750
John McCall94c3b562010-08-18 09:41:07 +00003751 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3752};
3753
3754struct CheckAbstractUsage {
3755 AbstractUsageInfo &Info;
3756 const NamedDecl *Ctx;
3757
3758 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3759 : Info(Info), Ctx(Ctx) {}
3760
3761 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3762 switch (TL.getTypeLocClass()) {
3763#define ABSTRACT_TYPELOC(CLASS, PARENT)
3764#define TYPELOC(CLASS, PARENT) \
3765 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3766#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003767 }
John McCall94c3b562010-08-18 09:41:07 +00003768 }
Mike Stump1eb44332009-09-09 15:08:12 +00003769
John McCall94c3b562010-08-18 09:41:07 +00003770 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3771 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3772 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003773 if (!TL.getArg(I))
3774 continue;
3775
John McCall94c3b562010-08-18 09:41:07 +00003776 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3777 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003778 }
John McCall94c3b562010-08-18 09:41:07 +00003779 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003780
John McCall94c3b562010-08-18 09:41:07 +00003781 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3782 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3783 }
Mike Stump1eb44332009-09-09 15:08:12 +00003784
John McCall94c3b562010-08-18 09:41:07 +00003785 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3786 // Visit the type parameters from a permissive context.
3787 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3788 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3789 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3790 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3791 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3792 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003793 }
John McCall94c3b562010-08-18 09:41:07 +00003794 }
Mike Stump1eb44332009-09-09 15:08:12 +00003795
John McCall94c3b562010-08-18 09:41:07 +00003796 // Visit pointee types from a permissive context.
3797#define CheckPolymorphic(Type) \
3798 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3799 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3800 }
3801 CheckPolymorphic(PointerTypeLoc)
3802 CheckPolymorphic(ReferenceTypeLoc)
3803 CheckPolymorphic(MemberPointerTypeLoc)
3804 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003805 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003806
John McCall94c3b562010-08-18 09:41:07 +00003807 /// Handle all the types we haven't given a more specific
3808 /// implementation for above.
3809 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3810 // Every other kind of type that we haven't called out already
3811 // that has an inner type is either (1) sugar or (2) contains that
3812 // inner type in some way as a subobject.
3813 if (TypeLoc Next = TL.getNextTypeLoc())
3814 return Visit(Next, Sel);
3815
3816 // If there's no inner type and we're in a permissive context,
3817 // don't diagnose.
3818 if (Sel == Sema::AbstractNone) return;
3819
3820 // Check whether the type matches the abstract type.
3821 QualType T = TL.getType();
3822 if (T->isArrayType()) {
3823 Sel = Sema::AbstractArrayType;
3824 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003825 }
John McCall94c3b562010-08-18 09:41:07 +00003826 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3827 if (CT != Info.AbstractType) return;
3828
3829 // It matched; do some magic.
3830 if (Sel == Sema::AbstractArrayType) {
3831 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3832 << T << TL.getSourceRange();
3833 } else {
3834 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3835 << Sel << T << TL.getSourceRange();
3836 }
3837 Info.DiagnoseAbstractType();
3838 }
3839};
3840
3841void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3842 Sema::AbstractDiagSelID Sel) {
3843 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3844}
3845
3846}
3847
3848/// Check for invalid uses of an abstract type in a method declaration.
3849static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3850 CXXMethodDecl *MD) {
3851 // No need to do the check on definitions, which require that
3852 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003853 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003854 return;
3855
3856 // For safety's sake, just ignore it if we don't have type source
3857 // information. This should never happen for non-implicit methods,
3858 // but...
3859 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3860 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3861}
3862
3863/// Check for invalid uses of an abstract type within a class definition.
3864static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3865 CXXRecordDecl *RD) {
3866 for (CXXRecordDecl::decl_iterator
3867 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3868 Decl *D = *I;
3869 if (D->isImplicit()) continue;
3870
3871 // Methods and method templates.
3872 if (isa<CXXMethodDecl>(D)) {
3873 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3874 } else if (isa<FunctionTemplateDecl>(D)) {
3875 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3876 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3877
3878 // Fields and static variables.
3879 } else if (isa<FieldDecl>(D)) {
3880 FieldDecl *FD = cast<FieldDecl>(D);
3881 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3882 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3883 } else if (isa<VarDecl>(D)) {
3884 VarDecl *VD = cast<VarDecl>(D);
3885 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3886 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3887
3888 // Nested classes and class templates.
3889 } else if (isa<CXXRecordDecl>(D)) {
3890 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3891 } else if (isa<ClassTemplateDecl>(D)) {
3892 CheckAbstractClassUsage(Info,
3893 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3894 }
3895 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003896}
3897
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003898/// \brief Perform semantic checks on a class definition that has been
3899/// completing, introducing implicitly-declared members, checking for
3900/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003901void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003902 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003903 return;
3904
John McCall94c3b562010-08-18 09:41:07 +00003905 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3906 AbstractUsageInfo Info(*this, Record);
3907 CheckAbstractClassUsage(Info, Record);
3908 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003909
3910 // If this is not an aggregate type and has no user-declared constructor,
3911 // complain about any non-static data members of reference or const scalar
3912 // type, since they will never get initializers.
3913 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003914 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3915 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003916 bool Complained = false;
3917 for (RecordDecl::field_iterator F = Record->field_begin(),
3918 FEnd = Record->field_end();
3919 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003920 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003921 continue;
3922
Douglas Gregor325e5932010-04-15 00:00:53 +00003923 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003924 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003925 if (!Complained) {
3926 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3927 << Record->getTagKind() << Record;
3928 Complained = true;
3929 }
3930
3931 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3932 << F->getType()->isReferenceType()
3933 << F->getDeclName();
3934 }
3935 }
3936 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003937
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003938 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003939 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003940
3941 if (Record->getIdentifier()) {
3942 // C++ [class.mem]p13:
3943 // If T is the name of a class, then each of the following shall have a
3944 // name different from T:
3945 // - every member of every anonymous union that is a member of class T.
3946 //
3947 // C++ [class.mem]p14:
3948 // In addition, if class T has a user-declared constructor (12.1), every
3949 // non-static data member of class T shall have a name different from T.
3950 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003951 R.first != R.second; ++R.first) {
3952 NamedDecl *D = *R.first;
3953 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3954 isa<IndirectFieldDecl>(D)) {
3955 Diag(D->getLocation(), diag::err_member_name_of_class)
3956 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003957 break;
3958 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003959 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003960 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003961
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003962 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003963 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003964 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003965 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003966 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3967 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3968 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003969
David Blaikieb6b5b972012-09-21 03:21:07 +00003970 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3971 Diag(Record->getLocation(), diag::warn_abstract_final_class);
3972 DiagnoseAbstractType(Record);
3973 }
3974
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003975 // See if a method overloads virtual methods in a base
3976 /// class without overriding any.
3977 if (!Record->isDependentType()) {
3978 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3979 MEnd = Record->method_end();
3980 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003981 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003982 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003983 }
3984 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003985
Richard Smith9f569cc2011-10-01 02:31:28 +00003986 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3987 // function that is not a constructor declares that member function to be
3988 // const. [...] The class of which that function is a member shall be
3989 // a literal type.
3990 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003991 // If the class has virtual bases, any constexpr members will already have
3992 // been diagnosed by the checks performed on the member declaration, so
3993 // suppress this (less useful) diagnostic.
3994 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3995 !Record->isLiteral() && !Record->getNumVBases()) {
3996 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3997 MEnd = Record->method_end();
3998 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003999 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00004000 switch (Record->getTemplateSpecializationKind()) {
4001 case TSK_ImplicitInstantiation:
4002 case TSK_ExplicitInstantiationDeclaration:
4003 case TSK_ExplicitInstantiationDefinition:
4004 // If a template instantiates to a non-literal type, but its members
4005 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00004006 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00004007 continue;
4008
4009 case TSK_Undeclared:
4010 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00004011 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00004012 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00004013 break;
4014 }
4015
4016 // Only produce one error per class.
4017 break;
4018 }
4019 }
4020 }
4021
Sebastian Redlf677ea32011-02-05 19:23:19 +00004022 // Declare inherited constructors. We do this eagerly here because:
4023 // - The standard requires an eager diagnostic for conflicting inherited
4024 // constructors from different classes.
4025 // - The lazy declaration of the other implicit constructors is so as to not
4026 // waste space and performance on classes that are not meant to be
4027 // instantiated (e.g. meta-functions). This doesn't apply to classes that
4028 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004029 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004030}
4031
4032void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00004033 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
4034 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00004035 MI != ME; ++MI)
4036 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00004037 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00004038}
4039
Richard Smith7756afa2012-06-10 05:43:50 +00004040/// Is the special member function which would be selected to perform the
4041/// specified operation on the specified class type a constexpr constructor?
4042static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4043 Sema::CXXSpecialMember CSM,
4044 bool ConstArg) {
4045 Sema::SpecialMemberOverloadResult *SMOR =
4046 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4047 false, false, false, false);
4048 if (!SMOR || !SMOR->getMethod())
4049 // A constructor we wouldn't select can't be "involved in initializing"
4050 // anything.
4051 return true;
4052 return SMOR->getMethod()->isConstexpr();
4053}
4054
4055/// Determine whether the specified special member function would be constexpr
4056/// if it were implicitly defined.
4057static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4058 Sema::CXXSpecialMember CSM,
4059 bool ConstArg) {
4060 if (!S.getLangOpts().CPlusPlus0x)
4061 return false;
4062
4063 // C++11 [dcl.constexpr]p4:
4064 // In the definition of a constexpr constructor [...]
4065 switch (CSM) {
4066 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004067 // Since default constructor lookup is essentially trivial (and cannot
4068 // involve, for instance, template instantiation), we compute whether a
4069 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4070 //
4071 // This is important for performance; we need to know whether the default
4072 // constructor is constexpr to determine whether the type is a literal type.
4073 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4074
Richard Smith7756afa2012-06-10 05:43:50 +00004075 case Sema::CXXCopyConstructor:
4076 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004077 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004078 break;
4079
4080 case Sema::CXXCopyAssignment:
4081 case Sema::CXXMoveAssignment:
4082 case Sema::CXXDestructor:
4083 case Sema::CXXInvalid:
4084 return false;
4085 }
4086
4087 // -- if the class is a non-empty union, or for each non-empty anonymous
4088 // union member of a non-union class, exactly one non-static data member
4089 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004090 //
4091 // If we squint, this is guaranteed, since exactly one non-static data member
4092 // will be initialized (if the constructor isn't deleted), we just don't know
4093 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00004094 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004095 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004096
4097 // -- the class shall not have any virtual base classes;
4098 if (ClassDecl->getNumVBases())
4099 return false;
4100
4101 // -- every constructor involved in initializing [...] base class
4102 // sub-objects shall be a constexpr constructor;
4103 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4104 BEnd = ClassDecl->bases_end();
4105 B != BEnd; ++B) {
4106 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4107 if (!BaseType) continue;
4108
4109 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4110 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4111 return false;
4112 }
4113
4114 // -- every constructor involved in initializing non-static data members
4115 // [...] shall be a constexpr constructor;
4116 // -- every non-static data member and base class sub-object shall be
4117 // initialized
4118 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4119 FEnd = ClassDecl->field_end();
4120 F != FEnd; ++F) {
4121 if (F->isInvalidDecl())
4122 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004123 if (const RecordType *RecordTy =
4124 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004125 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4126 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4127 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004128 }
4129 }
4130
4131 // All OK, it's constexpr!
4132 return true;
4133}
4134
Richard Smithb9d0b762012-07-27 04:22:15 +00004135static Sema::ImplicitExceptionSpecification
4136computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4137 switch (S.getSpecialMember(MD)) {
4138 case Sema::CXXDefaultConstructor:
4139 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4140 case Sema::CXXCopyConstructor:
4141 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4142 case Sema::CXXCopyAssignment:
4143 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4144 case Sema::CXXMoveConstructor:
4145 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4146 case Sema::CXXMoveAssignment:
4147 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4148 case Sema::CXXDestructor:
4149 return S.ComputeDefaultedDtorExceptionSpec(MD);
4150 case Sema::CXXInvalid:
4151 break;
4152 }
4153 llvm_unreachable("only special members have implicit exception specs");
4154}
4155
Richard Smithdd25e802012-07-30 23:48:14 +00004156static void
4157updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4158 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4159 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4160 ExceptSpec.getEPI(EPI);
4161 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4162 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4163 FPT->getNumArgs(), EPI));
4164 FD->setType(QualType(NewFPT, 0));
4165}
4166
Richard Smithb9d0b762012-07-27 04:22:15 +00004167void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4168 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4169 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4170 return;
4171
Richard Smithdd25e802012-07-30 23:48:14 +00004172 // Evaluate the exception specification.
4173 ImplicitExceptionSpecification ExceptSpec =
4174 computeImplicitExceptionSpec(*this, Loc, MD);
4175
4176 // Update the type of the special member to use it.
4177 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4178
4179 // A user-provided destructor can be defined outside the class. When that
4180 // happens, be sure to update the exception specification on both
4181 // declarations.
4182 const FunctionProtoType *CanonicalFPT =
4183 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4184 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4185 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4186 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004187}
4188
4189static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4190static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4191
Richard Smith3003e1d2012-05-15 04:39:51 +00004192void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4193 CXXRecordDecl *RD = MD->getParent();
4194 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004195
Richard Smith3003e1d2012-05-15 04:39:51 +00004196 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4197 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004198
4199 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004200 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004201 bool First = MD == MD->getCanonicalDecl();
4202
4203 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004204
4205 // C++11 [dcl.fct.def.default]p1:
4206 // A function that is explicitly defaulted shall
4207 // -- be a special member function (checked elsewhere),
4208 // -- have the same type (except for ref-qualifiers, and except that a
4209 // copy operation can take a non-const reference) as an implicit
4210 // declaration, and
4211 // -- not have default arguments.
4212 unsigned ExpectedParams = 1;
4213 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4214 ExpectedParams = 0;
4215 if (MD->getNumParams() != ExpectedParams) {
4216 // This also checks for default arguments: a copy or move constructor with a
4217 // default argument is classified as a default constructor, and assignment
4218 // operations and destructors can't have default arguments.
4219 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4220 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004221 HadError = true;
4222 }
4223
Richard Smith3003e1d2012-05-15 04:39:51 +00004224 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004225
Richard Smithb9d0b762012-07-27 04:22:15 +00004226 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004227 bool CanHaveConstParam = false;
Axel Naumann8f411c32012-09-17 14:26:53 +00004228 bool Trivial = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004229 switch (CSM) {
4230 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004231 Trivial = RD->hasTrivialDefaultConstructor();
4232 break;
4233 case CXXCopyConstructor:
Richard Smithb9d0b762012-07-27 04:22:15 +00004234 CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004235 Trivial = RD->hasTrivialCopyConstructor();
4236 break;
4237 case CXXCopyAssignment:
Richard Smithb9d0b762012-07-27 04:22:15 +00004238 CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004239 Trivial = RD->hasTrivialCopyAssignment();
4240 break;
4241 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004242 Trivial = RD->hasTrivialMoveConstructor();
4243 break;
4244 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004245 Trivial = RD->hasTrivialMoveAssignment();
4246 break;
4247 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004248 Trivial = RD->hasTrivialDestructor();
4249 break;
4250 case CXXInvalid:
4251 llvm_unreachable("non-special member explicitly defaulted!");
4252 }
Sean Hunt2b188082011-05-14 05:23:28 +00004253
Richard Smith3003e1d2012-05-15 04:39:51 +00004254 QualType ReturnType = Context.VoidTy;
4255 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4256 // Check for return type matching.
4257 ReturnType = Type->getResultType();
4258 QualType ExpectedReturnType =
4259 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4260 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4261 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4262 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4263 HadError = true;
4264 }
4265
4266 // A defaulted special member cannot have cv-qualifiers.
4267 if (Type->getTypeQuals()) {
4268 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4269 << (CSM == CXXMoveAssignment);
4270 HadError = true;
4271 }
4272 }
4273
4274 // Check for parameter type matching.
4275 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004276 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004277 if (ExpectedParams && ArgType->isReferenceType()) {
4278 // Argument must be reference to possibly-const T.
4279 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004280 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004281
4282 if (ReferentType.isVolatileQualified()) {
4283 Diag(MD->getLocation(),
4284 diag::err_defaulted_special_member_volatile_param) << CSM;
4285 HadError = true;
4286 }
4287
Richard Smith7756afa2012-06-10 05:43:50 +00004288 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004289 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4290 Diag(MD->getLocation(),
4291 diag::err_defaulted_special_member_copy_const_param)
4292 << (CSM == CXXCopyAssignment);
4293 // FIXME: Explain why this special member can't be const.
4294 } else {
4295 Diag(MD->getLocation(),
4296 diag::err_defaulted_special_member_move_const_param)
4297 << (CSM == CXXMoveAssignment);
4298 }
4299 HadError = true;
4300 }
4301
4302 // If a function is explicitly defaulted on its first declaration, it shall
4303 // have the same parameter type as if it had been implicitly declared.
4304 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004305 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004306 Diag(MD->getLocation(),
4307 diag::err_defaulted_special_member_copy_non_const_param)
4308 << (CSM == CXXCopyAssignment);
4309 } else if (ExpectedParams) {
4310 // A copy assignment operator can take its argument by value, but a
4311 // defaulted one cannot.
4312 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004313 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004314 HadError = true;
4315 }
Sean Huntbe631222011-05-17 20:44:43 +00004316
Richard Smithb9d0b762012-07-27 04:22:15 +00004317 // Rebuild the type with the implicit exception specification added, if we
4318 // are going to need it.
4319 const FunctionProtoType *ImplicitType = 0;
4320 if (First || Type->hasExceptionSpec()) {
4321 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4322 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4323 ImplicitType = cast<FunctionProtoType>(
4324 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4325 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004326
Richard Smith61802452011-12-22 02:22:31 +00004327 // C++11 [dcl.fct.def.default]p2:
4328 // An explicitly-defaulted function may be declared constexpr only if it
4329 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004330 // Do not apply this rule to members of class templates, since core issue 1358
4331 // makes such functions always instantiate to constexpr functions. For
4332 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004333 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4334 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004335 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4336 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4337 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004338 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004339 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004340 }
4341 // and may have an explicit exception-specification only if it is compatible
4342 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004343 if (Type->hasExceptionSpec() &&
4344 CheckEquivalentExceptionSpec(
4345 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4346 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4347 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004348
4349 // If a function is explicitly defaulted on its first declaration,
4350 if (First) {
4351 // -- it is implicitly considered to be constexpr if the implicit
4352 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004353 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004354
Richard Smith3003e1d2012-05-15 04:39:51 +00004355 // -- it is implicitly considered to have the same exception-specification
4356 // as if it had been implicitly declared,
4357 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004358
4359 // Such a function is also trivial if the implicitly-declared function
4360 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004361 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004362 }
4363
Richard Smith3003e1d2012-05-15 04:39:51 +00004364 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004365 if (First) {
4366 MD->setDeletedAsWritten();
4367 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004368 // C++11 [dcl.fct.def.default]p4:
4369 // [For a] user-provided explicitly-defaulted function [...] if such a
4370 // function is implicitly defined as deleted, the program is ill-formed.
4371 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4372 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004373 }
4374 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004375
Richard Smith3003e1d2012-05-15 04:39:51 +00004376 if (HadError)
4377 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004378}
4379
Richard Smith7d5088a2012-02-18 02:02:13 +00004380namespace {
4381struct SpecialMemberDeletionInfo {
4382 Sema &S;
4383 CXXMethodDecl *MD;
4384 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004385 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004386
4387 // Properties of the special member, computed for convenience.
4388 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4389 SourceLocation Loc;
4390
4391 bool AllFieldsAreConst;
4392
4393 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004394 Sema::CXXSpecialMember CSM, bool Diagnose)
4395 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004396 IsConstructor(false), IsAssignment(false), IsMove(false),
4397 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4398 AllFieldsAreConst(true) {
4399 switch (CSM) {
4400 case Sema::CXXDefaultConstructor:
4401 case Sema::CXXCopyConstructor:
4402 IsConstructor = true;
4403 break;
4404 case Sema::CXXMoveConstructor:
4405 IsConstructor = true;
4406 IsMove = true;
4407 break;
4408 case Sema::CXXCopyAssignment:
4409 IsAssignment = true;
4410 break;
4411 case Sema::CXXMoveAssignment:
4412 IsAssignment = true;
4413 IsMove = true;
4414 break;
4415 case Sema::CXXDestructor:
4416 break;
4417 case Sema::CXXInvalid:
4418 llvm_unreachable("invalid special member kind");
4419 }
4420
4421 if (MD->getNumParams()) {
4422 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4423 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4424 }
4425 }
4426
4427 bool inUnion() const { return MD->getParent()->isUnion(); }
4428
4429 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004430 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4431 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004432 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004433 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4434 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4435 Quals = 0;
4436 return S.LookupSpecialMember(Class, CSM,
4437 ConstArg || (Quals & Qualifiers::Const),
4438 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004439 MD->getRefQualifier() == RQ_RValue,
4440 TQ & Qualifiers::Const,
4441 TQ & Qualifiers::Volatile);
4442 }
4443
Richard Smith6c4c36c2012-03-30 20:53:28 +00004444 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004445
Richard Smith6c4c36c2012-03-30 20:53:28 +00004446 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004447 bool shouldDeleteForField(FieldDecl *FD);
4448 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004449
Richard Smith517bb842012-07-18 03:51:16 +00004450 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4451 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004452 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4453 Sema::SpecialMemberOverloadResult *SMOR,
4454 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004455
4456 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004457};
4458}
4459
John McCall12d8d802012-04-09 20:53:23 +00004460/// Is the given special member inaccessible when used on the given
4461/// sub-object.
4462bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4463 CXXMethodDecl *target) {
4464 /// If we're operating on a base class, the object type is the
4465 /// type of this special member.
4466 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004467 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004468 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4469 objectTy = S.Context.getTypeDeclType(MD->getParent());
4470 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4471
4472 // If we're operating on a field, the object type is the type of the field.
4473 } else {
4474 objectTy = S.Context.getTypeDeclType(target->getParent());
4475 }
4476
4477 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4478}
4479
Richard Smith6c4c36c2012-03-30 20:53:28 +00004480/// Check whether we should delete a special member due to the implicit
4481/// definition containing a call to a special member of a subobject.
4482bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4483 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4484 bool IsDtorCallInCtor) {
4485 CXXMethodDecl *Decl = SMOR->getMethod();
4486 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4487
4488 int DiagKind = -1;
4489
4490 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4491 DiagKind = !Decl ? 0 : 1;
4492 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4493 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004494 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004495 DiagKind = 3;
4496 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4497 !Decl->isTrivial()) {
4498 // A member of a union must have a trivial corresponding special member.
4499 // As a weird special case, a destructor call from a union's constructor
4500 // must be accessible and non-deleted, but need not be trivial. Such a
4501 // destructor is never actually called, but is semantically checked as
4502 // if it were.
4503 DiagKind = 4;
4504 }
4505
4506 if (DiagKind == -1)
4507 return false;
4508
4509 if (Diagnose) {
4510 if (Field) {
4511 S.Diag(Field->getLocation(),
4512 diag::note_deleted_special_member_class_subobject)
4513 << CSM << MD->getParent() << /*IsField*/true
4514 << Field << DiagKind << IsDtorCallInCtor;
4515 } else {
4516 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4517 S.Diag(Base->getLocStart(),
4518 diag::note_deleted_special_member_class_subobject)
4519 << CSM << MD->getParent() << /*IsField*/false
4520 << Base->getType() << DiagKind << IsDtorCallInCtor;
4521 }
4522
4523 if (DiagKind == 1)
4524 S.NoteDeletedFunction(Decl);
4525 // FIXME: Explain inaccessibility if DiagKind == 3.
4526 }
4527
4528 return true;
4529}
4530
Richard Smith9a561d52012-02-26 09:11:52 +00004531/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004532/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004533bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004534 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004535 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004536
4537 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004538 // -- any direct or virtual base class, or non-static data member with no
4539 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004540 // either M has no default constructor or overload resolution as applied
4541 // to M's default constructor results in an ambiguity or in a function
4542 // that is deleted or inaccessible
4543 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4544 // -- a direct or virtual base class B that cannot be copied/moved because
4545 // overload resolution, as applied to B's corresponding special member,
4546 // results in an ambiguity or a function that is deleted or inaccessible
4547 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004548 // C++11 [class.dtor]p5:
4549 // -- any direct or virtual base class [...] has a type with a destructor
4550 // that is deleted or inaccessible
4551 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004552 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004553 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004554 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004555
Richard Smith6c4c36c2012-03-30 20:53:28 +00004556 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4557 // -- any direct or virtual base class or non-static data member has a
4558 // type with a destructor that is deleted or inaccessible
4559 if (IsConstructor) {
4560 Sema::SpecialMemberOverloadResult *SMOR =
4561 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4562 false, false, false, false, false);
4563 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4564 return true;
4565 }
4566
Richard Smith9a561d52012-02-26 09:11:52 +00004567 return false;
4568}
4569
4570/// Check whether we should delete a special member function due to the class
4571/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004572bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004573 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004574 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004575}
4576
4577/// Check whether we should delete a special member function due to the class
4578/// having a particular non-static data member.
4579bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4580 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4581 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4582
4583 if (CSM == Sema::CXXDefaultConstructor) {
4584 // For a default constructor, all references must be initialized in-class
4585 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004586 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4587 if (Diagnose)
4588 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4589 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004590 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004591 }
Richard Smith79363f52012-02-27 06:07:25 +00004592 // C++11 [class.ctor]p5: any non-variant non-static data member of
4593 // const-qualified type (or array thereof) with no
4594 // brace-or-equal-initializer does not have a user-provided default
4595 // constructor.
4596 if (!inUnion() && FieldType.isConstQualified() &&
4597 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004598 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4599 if (Diagnose)
4600 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004601 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004602 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004603 }
4604
4605 if (inUnion() && !FieldType.isConstQualified())
4606 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004607 } else if (CSM == Sema::CXXCopyConstructor) {
4608 // For a copy constructor, data members must not be of rvalue reference
4609 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004610 if (FieldType->isRValueReferenceType()) {
4611 if (Diagnose)
4612 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4613 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004614 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004615 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004616 } else if (IsAssignment) {
4617 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004618 if (FieldType->isReferenceType()) {
4619 if (Diagnose)
4620 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4621 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004622 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004623 }
4624 if (!FieldRecord && FieldType.isConstQualified()) {
4625 // C++11 [class.copy]p23:
4626 // -- a non-static data member of const non-class type (or array thereof)
4627 if (Diagnose)
4628 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004629 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004630 return true;
4631 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004632 }
4633
4634 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004635 // Some additional restrictions exist on the variant members.
4636 if (!inUnion() && FieldRecord->isUnion() &&
4637 FieldRecord->isAnonymousStructOrUnion()) {
4638 bool AllVariantFieldsAreConst = true;
4639
Richard Smithdf8dc862012-03-29 19:00:10 +00004640 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004641 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4642 UE = FieldRecord->field_end();
4643 UI != UE; ++UI) {
4644 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004645
4646 if (!UnionFieldType.isConstQualified())
4647 AllVariantFieldsAreConst = false;
4648
Richard Smith9a561d52012-02-26 09:11:52 +00004649 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4650 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004651 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4652 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004653 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004654 }
4655
4656 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004657 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004658 FieldRecord->field_begin() != FieldRecord->field_end()) {
4659 if (Diagnose)
4660 S.Diag(FieldRecord->getLocation(),
4661 diag::note_deleted_default_ctor_all_const)
4662 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004663 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004664 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004665
Richard Smithdf8dc862012-03-29 19:00:10 +00004666 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004667 // This is technically non-conformant, but sanity demands it.
4668 return false;
4669 }
4670
Richard Smith517bb842012-07-18 03:51:16 +00004671 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4672 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004673 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004674 }
4675
4676 return false;
4677}
4678
4679/// C++11 [class.ctor] p5:
4680/// A defaulted default constructor for a class X is defined as deleted if
4681/// X is a union and all of its variant members are of const-qualified type.
4682bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004683 // This is a silly definition, because it gives an empty union a deleted
4684 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004685 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4686 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4687 if (Diagnose)
4688 S.Diag(MD->getParent()->getLocation(),
4689 diag::note_deleted_default_ctor_all_const)
4690 << MD->getParent() << /*not anonymous union*/0;
4691 return true;
4692 }
4693 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004694}
4695
4696/// Determine whether a defaulted special member function should be defined as
4697/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4698/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004699bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4700 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004701 if (MD->isInvalidDecl())
4702 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004703 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004704 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004705 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004706 return false;
4707
Richard Smith7d5088a2012-02-18 02:02:13 +00004708 // C++11 [expr.lambda.prim]p19:
4709 // The closure type associated with a lambda-expression has a
4710 // deleted (8.4.3) default constructor and a deleted copy
4711 // assignment operator.
4712 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004713 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4714 if (Diagnose)
4715 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004716 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004717 }
4718
Richard Smith5bdaac52012-04-02 20:59:25 +00004719 // For an anonymous struct or union, the copy and assignment special members
4720 // will never be used, so skip the check. For an anonymous union declared at
4721 // namespace scope, the constructor and destructor are used.
4722 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4723 RD->isAnonymousStructOrUnion())
4724 return false;
4725
Richard Smith6c4c36c2012-03-30 20:53:28 +00004726 // C++11 [class.copy]p7, p18:
4727 // If the class definition declares a move constructor or move assignment
4728 // operator, an implicitly declared copy constructor or copy assignment
4729 // operator is defined as deleted.
4730 if (MD->isImplicit() &&
4731 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4732 CXXMethodDecl *UserDeclaredMove = 0;
4733
4734 // In Microsoft mode, a user-declared move only causes the deletion of the
4735 // corresponding copy operation, not both copy operations.
4736 if (RD->hasUserDeclaredMoveConstructor() &&
4737 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4738 if (!Diagnose) return true;
4739 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004740 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004741 } else if (RD->hasUserDeclaredMoveAssignment() &&
4742 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4743 if (!Diagnose) return true;
4744 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004745 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004746 }
4747
4748 if (UserDeclaredMove) {
4749 Diag(UserDeclaredMove->getLocation(),
4750 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004751 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004752 << UserDeclaredMove->isMoveAssignmentOperator();
4753 return true;
4754 }
4755 }
Sean Hunte16da072011-10-10 06:18:57 +00004756
Richard Smith5bdaac52012-04-02 20:59:25 +00004757 // Do access control from the special member function
4758 ContextRAII MethodContext(*this, MD);
4759
Richard Smith9a561d52012-02-26 09:11:52 +00004760 // C++11 [class.dtor]p5:
4761 // -- for a virtual destructor, lookup of the non-array deallocation function
4762 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004763 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004764 FunctionDecl *OperatorDelete = 0;
4765 DeclarationName Name =
4766 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4767 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004768 OperatorDelete, false)) {
4769 if (Diagnose)
4770 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004771 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004772 }
Richard Smith9a561d52012-02-26 09:11:52 +00004773 }
4774
Richard Smith6c4c36c2012-03-30 20:53:28 +00004775 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004776
Sean Huntcdee3fe2011-05-11 22:34:38 +00004777 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004778 BE = RD->bases_end(); BI != BE; ++BI)
4779 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004780 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004781 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004782
4783 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004784 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004785 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004786 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004787
4788 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004789 FE = RD->field_end(); FI != FE; ++FI)
4790 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004791 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004792 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004793
Richard Smith7d5088a2012-02-18 02:02:13 +00004794 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004795 return true;
4796
4797 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004798}
4799
4800/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004801namespace {
4802 struct FindHiddenVirtualMethodData {
4803 Sema *S;
4804 CXXMethodDecl *Method;
4805 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004806 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004807 };
4808}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004809
David Blaikie5f750682012-10-19 00:53:08 +00004810/// \brief Check whether any most overriden method from MD in Methods
4811static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
4812 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4813 if (MD->size_overridden_methods() == 0)
4814 return Methods.count(MD->getCanonicalDecl());
4815 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4816 E = MD->end_overridden_methods();
4817 I != E; ++I)
4818 if (CheckMostOverridenMethods(*I, Methods))
4819 return true;
4820 return false;
4821}
4822
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004823/// \brief Member lookup function that determines whether a given C++
4824/// method overloads virtual methods in a base class without overriding any,
4825/// to be used with CXXRecordDecl::lookupInBases().
4826static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4827 CXXBasePath &Path,
4828 void *UserData) {
4829 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4830
4831 FindHiddenVirtualMethodData &Data
4832 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4833
4834 DeclarationName Name = Data.Method->getDeclName();
4835 assert(Name.getNameKind() == DeclarationName::Identifier);
4836
4837 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004838 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004839 for (Path.Decls = BaseRecord->lookup(Name);
4840 Path.Decls.first != Path.Decls.second;
4841 ++Path.Decls.first) {
4842 NamedDecl *D = *Path.Decls.first;
4843 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004844 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004845 foundSameNameMethod = true;
4846 // Interested only in hidden virtual methods.
4847 if (!MD->isVirtual())
4848 continue;
4849 // If the method we are checking overrides a method from its base
4850 // don't warn about the other overloaded methods.
4851 if (!Data.S->IsOverload(Data.Method, MD, false))
4852 return true;
4853 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00004854 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004855 overloadedMethods.push_back(MD);
4856 }
4857 }
4858
4859 if (foundSameNameMethod)
4860 Data.OverloadedMethods.append(overloadedMethods.begin(),
4861 overloadedMethods.end());
4862 return foundSameNameMethod;
4863}
4864
David Blaikie5f750682012-10-19 00:53:08 +00004865/// \brief Add the most overriden methods from MD to Methods
4866static void AddMostOverridenMethods(const CXXMethodDecl *MD,
4867 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4868 if (MD->size_overridden_methods() == 0)
4869 Methods.insert(MD->getCanonicalDecl());
4870 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4871 E = MD->end_overridden_methods();
4872 I != E; ++I)
4873 AddMostOverridenMethods(*I, Methods);
4874}
4875
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004876/// \brief See if a method overloads virtual methods in a base class without
4877/// overriding any.
4878void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4879 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004880 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004881 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004882 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004883 return;
4884
4885 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4886 /*bool RecordPaths=*/false,
4887 /*bool DetectVirtual=*/false);
4888 FindHiddenVirtualMethodData Data;
4889 Data.Method = MD;
4890 Data.S = this;
4891
4892 // Keep the base methods that were overriden or introduced in the subclass
4893 // by 'using' in a set. A base method not in this set is hidden.
4894 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4895 res.first != res.second; ++res.first) {
David Blaikie5f750682012-10-19 00:53:08 +00004896 NamedDecl *ND = *res.first;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004897 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
David Blaikie5f750682012-10-19 00:53:08 +00004898 ND = shad->getTargetDecl();
4899 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
4900 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004901 }
4902
4903 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4904 !Data.OverloadedMethods.empty()) {
4905 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4906 << MD << (Data.OverloadedMethods.size() > 1);
4907
4908 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4909 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4910 Diag(overloadedMD->getLocation(),
4911 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4912 }
4913 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004914}
4915
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004916void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004917 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004918 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004919 SourceLocation RBrac,
4920 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004921 if (!TagDecl)
4922 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004923
Douglas Gregor42af25f2009-05-11 19:58:34 +00004924 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004925
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004926 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4927 if (l->getKind() != AttributeList::AT_Visibility)
4928 continue;
4929 l->setInvalid();
4930 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4931 l->getName();
4932 }
4933
David Blaikie77b6de02011-09-22 02:58:26 +00004934 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004935 // strict aliasing violation!
4936 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004937 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004938
Douglas Gregor23c94db2010-07-02 17:43:08 +00004939 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004940 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004941}
4942
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004943/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4944/// special functions, such as the default constructor, copy
4945/// constructor, or destructor, to the given C++ class (C++
4946/// [special]p1). This routine can only be executed just before the
4947/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004948void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004949 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004950 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004951
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004952 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004953 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004954
David Blaikie4e4d0842012-03-11 07:00:24 +00004955 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004956 ++ASTContext::NumImplicitMoveConstructors;
4957
Douglas Gregora376d102010-07-02 21:50:04 +00004958 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4959 ++ASTContext::NumImplicitCopyAssignmentOperators;
4960
4961 // If we have a dynamic class, then the copy assignment operator may be
4962 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4963 // it shows up in the right place in the vtable and that we diagnose
4964 // problems with the implicit exception specification.
4965 if (ClassDecl->isDynamicClass())
4966 DeclareImplicitCopyAssignment(ClassDecl);
4967 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004968
Richard Smith1c931be2012-04-02 18:40:40 +00004969 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004970 ++ASTContext::NumImplicitMoveAssignmentOperators;
4971
4972 // Likewise for the move assignment operator.
4973 if (ClassDecl->isDynamicClass())
4974 DeclareImplicitMoveAssignment(ClassDecl);
4975 }
4976
Douglas Gregor4923aa22010-07-02 20:37:36 +00004977 if (!ClassDecl->hasUserDeclaredDestructor()) {
4978 ++ASTContext::NumImplicitDestructors;
4979
4980 // If we have a dynamic class, then the destructor may be virtual, so we
4981 // have to declare the destructor immediately. This ensures that, e.g., it
4982 // shows up in the right place in the vtable and that we diagnose problems
4983 // with the implicit exception specification.
4984 if (ClassDecl->isDynamicClass())
4985 DeclareImplicitDestructor(ClassDecl);
4986 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004987}
4988
Francois Pichet8387e2a2011-04-22 22:18:13 +00004989void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4990 if (!D)
4991 return;
4992
4993 int NumParamList = D->getNumTemplateParameterLists();
4994 for (int i = 0; i < NumParamList; i++) {
4995 TemplateParameterList* Params = D->getTemplateParameterList(i);
4996 for (TemplateParameterList::iterator Param = Params->begin(),
4997 ParamEnd = Params->end();
4998 Param != ParamEnd; ++Param) {
4999 NamedDecl *Named = cast<NamedDecl>(*Param);
5000 if (Named->getDeclName()) {
5001 S->AddDecl(Named);
5002 IdResolver.AddDecl(Named);
5003 }
5004 }
5005 }
5006}
5007
John McCalld226f652010-08-21 09:40:31 +00005008void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005009 if (!D)
5010 return;
5011
5012 TemplateParameterList *Params = 0;
5013 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5014 Params = Template->getTemplateParameters();
5015 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5016 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5017 Params = PartialSpec->getTemplateParameters();
5018 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005019 return;
5020
Douglas Gregor6569d682009-05-27 23:11:45 +00005021 for (TemplateParameterList::iterator Param = Params->begin(),
5022 ParamEnd = Params->end();
5023 Param != ParamEnd; ++Param) {
5024 NamedDecl *Named = cast<NamedDecl>(*Param);
5025 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005026 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005027 IdResolver.AddDecl(Named);
5028 }
5029 }
5030}
5031
John McCalld226f652010-08-21 09:40:31 +00005032void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005033 if (!RecordD) return;
5034 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005035 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005036 PushDeclContext(S, Record);
5037}
5038
John McCalld226f652010-08-21 09:40:31 +00005039void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005040 if (!RecordD) return;
5041 PopDeclContext();
5042}
5043
Douglas Gregor72b505b2008-12-16 21:30:33 +00005044/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5045/// parsing a top-level (non-nested) C++ class, and we are now
5046/// parsing those parts of the given Method declaration that could
5047/// not be parsed earlier (C++ [class.mem]p2), such as default
5048/// arguments. This action should enter the scope of the given
5049/// Method declaration as if we had just parsed the qualified method
5050/// name. However, it should not bring the parameters into scope;
5051/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005052void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005053}
5054
5055/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5056/// C++ method declaration. We're (re-)introducing the given
5057/// function parameter into scope for use in parsing later parts of
5058/// the method declaration. For example, we could see an
5059/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005060void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005061 if (!ParamD)
5062 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005063
John McCalld226f652010-08-21 09:40:31 +00005064 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005065
5066 // If this parameter has an unparsed default argument, clear it out
5067 // to make way for the parsed default argument.
5068 if (Param->hasUnparsedDefaultArg())
5069 Param->setDefaultArg(0);
5070
John McCalld226f652010-08-21 09:40:31 +00005071 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005072 if (Param->getDeclName())
5073 IdResolver.AddDecl(Param);
5074}
5075
5076/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5077/// processing the delayed method declaration for Method. The method
5078/// declaration is now considered finished. There may be a separate
5079/// ActOnStartOfFunctionDef action later (not necessarily
5080/// immediately!) for this method, if it was also defined inside the
5081/// class body.
John McCalld226f652010-08-21 09:40:31 +00005082void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005083 if (!MethodD)
5084 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005085
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005086 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005087
John McCalld226f652010-08-21 09:40:31 +00005088 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005089
5090 // Now that we have our default arguments, check the constructor
5091 // again. It could produce additional diagnostics or affect whether
5092 // the class has implicitly-declared destructors, among other
5093 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005094 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5095 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005096
5097 // Check the default arguments, which we may have added.
5098 if (!Method->isInvalidDecl())
5099 CheckCXXDefaultArguments(Method);
5100}
5101
Douglas Gregor42a552f2008-11-05 20:51:48 +00005102/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005103/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005104/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005105/// emit diagnostics and set the invalid bit to true. In any case, the type
5106/// will be updated to reflect a well-formed type for the constructor and
5107/// returned.
5108QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005109 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005110 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005111
5112 // C++ [class.ctor]p3:
5113 // A constructor shall not be virtual (10.3) or static (9.4). A
5114 // constructor can be invoked for a const, volatile or const
5115 // volatile object. A constructor shall not be declared const,
5116 // volatile, or const volatile (9.3.2).
5117 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005118 if (!D.isInvalidType())
5119 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5120 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5121 << SourceRange(D.getIdentifierLoc());
5122 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005123 }
John McCalld931b082010-08-26 03:08:43 +00005124 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005125 if (!D.isInvalidType())
5126 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5127 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5128 << SourceRange(D.getIdentifierLoc());
5129 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005130 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005131 }
Mike Stump1eb44332009-09-09 15:08:12 +00005132
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005133 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005134 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005135 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005136 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5137 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005138 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005139 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5140 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005141 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005142 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5143 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005144 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005145 }
Mike Stump1eb44332009-09-09 15:08:12 +00005146
Douglas Gregorc938c162011-01-26 05:01:58 +00005147 // C++0x [class.ctor]p4:
5148 // A constructor shall not be declared with a ref-qualifier.
5149 if (FTI.hasRefQualifier()) {
5150 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5151 << FTI.RefQualifierIsLValueRef
5152 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5153 D.setInvalidType();
5154 }
5155
Douglas Gregor42a552f2008-11-05 20:51:48 +00005156 // Rebuild the function type "R" without any type qualifiers (in
5157 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005158 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005159 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005160 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5161 return R;
5162
5163 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5164 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005165 EPI.RefQualifier = RQ_None;
5166
Chris Lattner65401802009-04-25 08:28:21 +00005167 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005168 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005169}
5170
Douglas Gregor72b505b2008-12-16 21:30:33 +00005171/// CheckConstructor - Checks a fully-formed constructor for
5172/// well-formedness, issuing any diagnostics required. Returns true if
5173/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005174void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005175 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005176 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5177 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005178 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005179
5180 // C++ [class.copy]p3:
5181 // A declaration of a constructor for a class X is ill-formed if
5182 // its first parameter is of type (optionally cv-qualified) X and
5183 // either there are no other parameters or else all other
5184 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005185 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005186 ((Constructor->getNumParams() == 1) ||
5187 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005188 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5189 Constructor->getTemplateSpecializationKind()
5190 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005191 QualType ParamType = Constructor->getParamDecl(0)->getType();
5192 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5193 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005194 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005195 const char *ConstRef
5196 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5197 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005198 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005199 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005200
5201 // FIXME: Rather that making the constructor invalid, we should endeavor
5202 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005203 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005204 }
5205 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005206}
5207
John McCall15442822010-08-04 01:04:25 +00005208/// CheckDestructor - Checks a fully-formed destructor definition for
5209/// well-formedness, issuing any diagnostics required. Returns true
5210/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005211bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005212 CXXRecordDecl *RD = Destructor->getParent();
5213
5214 if (Destructor->isVirtual()) {
5215 SourceLocation Loc;
5216
5217 if (!Destructor->isImplicit())
5218 Loc = Destructor->getLocation();
5219 else
5220 Loc = RD->getLocation();
5221
5222 // If we have a virtual destructor, look up the deallocation function
5223 FunctionDecl *OperatorDelete = 0;
5224 DeclarationName Name =
5225 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005226 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005227 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005228
Eli Friedman5f2987c2012-02-02 03:46:19 +00005229 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005230
5231 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005232 }
Anders Carlsson37909802009-11-30 21:24:50 +00005233
5234 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005235}
5236
Mike Stump1eb44332009-09-09 15:08:12 +00005237static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005238FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5239 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5240 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005241 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005242}
5243
Douglas Gregor42a552f2008-11-05 20:51:48 +00005244/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5245/// the well-formednes of the destructor declarator @p D with type @p
5246/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005247/// emit diagnostics and set the declarator to invalid. Even if this happens,
5248/// will be updated to reflect a well-formed type for the destructor and
5249/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005250QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005251 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005252 // C++ [class.dtor]p1:
5253 // [...] A typedef-name that names a class is a class-name
5254 // (7.1.3); however, a typedef-name that names a class shall not
5255 // be used as the identifier in the declarator for a destructor
5256 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005257 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005258 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005259 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005260 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005261 else if (const TemplateSpecializationType *TST =
5262 DeclaratorType->getAs<TemplateSpecializationType>())
5263 if (TST->isTypeAlias())
5264 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5265 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005266
5267 // C++ [class.dtor]p2:
5268 // A destructor is used to destroy objects of its class type. A
5269 // destructor takes no parameters, and no return type can be
5270 // specified for it (not even void). The address of a destructor
5271 // shall not be taken. A destructor shall not be static. A
5272 // destructor can be invoked for a const, volatile or const
5273 // volatile object. A destructor shall not be declared const,
5274 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005275 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005276 if (!D.isInvalidType())
5277 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5278 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005279 << SourceRange(D.getIdentifierLoc())
5280 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5281
John McCalld931b082010-08-26 03:08:43 +00005282 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005283 }
Chris Lattner65401802009-04-25 08:28:21 +00005284 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005285 // Destructors don't have return types, but the parser will
5286 // happily parse something like:
5287 //
5288 // class X {
5289 // float ~X();
5290 // };
5291 //
5292 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005293 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5294 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5295 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005296 }
Mike Stump1eb44332009-09-09 15:08:12 +00005297
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005298 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005299 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005300 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005301 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5302 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005303 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005304 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5305 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005306 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005307 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5308 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005309 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005310 }
5311
Douglas Gregorc938c162011-01-26 05:01:58 +00005312 // C++0x [class.dtor]p2:
5313 // A destructor shall not be declared with a ref-qualifier.
5314 if (FTI.hasRefQualifier()) {
5315 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5316 << FTI.RefQualifierIsLValueRef
5317 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5318 D.setInvalidType();
5319 }
5320
Douglas Gregor42a552f2008-11-05 20:51:48 +00005321 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005322 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005323 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5324
5325 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005326 FTI.freeArgs();
5327 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005328 }
5329
Mike Stump1eb44332009-09-09 15:08:12 +00005330 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005331 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005332 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005333 D.setInvalidType();
5334 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005335
5336 // Rebuild the function type "R" without any type qualifiers or
5337 // parameters (in case any of the errors above fired) and with
5338 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005339 // types.
John McCalle23cf432010-12-14 08:05:40 +00005340 if (!D.isInvalidType())
5341 return R;
5342
Douglas Gregord92ec472010-07-01 05:10:53 +00005343 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005344 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5345 EPI.Variadic = false;
5346 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005347 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005348 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005349}
5350
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005351/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5352/// well-formednes of the conversion function declarator @p D with
5353/// type @p R. If there are any errors in the declarator, this routine
5354/// will emit diagnostics and return true. Otherwise, it will return
5355/// false. Either way, the type @p R will be updated to reflect a
5356/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005357void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005358 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005359 // C++ [class.conv.fct]p1:
5360 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005361 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005362 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005363 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005364 if (!D.isInvalidType())
5365 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5366 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5367 << SourceRange(D.getIdentifierLoc());
5368 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005369 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005370 }
John McCalla3f81372010-04-13 00:04:31 +00005371
5372 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5373
Chris Lattner6e475012009-04-25 08:35:12 +00005374 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005375 // Conversion functions don't have return types, but the parser will
5376 // happily parse something like:
5377 //
5378 // class X {
5379 // float operator bool();
5380 // };
5381 //
5382 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005383 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5384 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5385 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005386 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005387 }
5388
John McCalla3f81372010-04-13 00:04:31 +00005389 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5390
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005391 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005392 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005393 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5394
5395 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005396 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005397 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005398 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005399 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005400 D.setInvalidType();
5401 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005402
John McCalla3f81372010-04-13 00:04:31 +00005403 // Diagnose "&operator bool()" and other such nonsense. This
5404 // is actually a gcc extension which we don't support.
5405 if (Proto->getResultType() != ConvType) {
5406 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5407 << Proto->getResultType();
5408 D.setInvalidType();
5409 ConvType = Proto->getResultType();
5410 }
5411
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005412 // C++ [class.conv.fct]p4:
5413 // The conversion-type-id shall not represent a function type nor
5414 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005415 if (ConvType->isArrayType()) {
5416 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5417 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005418 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005419 } else if (ConvType->isFunctionType()) {
5420 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5421 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005422 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005423 }
5424
5425 // Rebuild the function type "R" without any parameters (in case any
5426 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005427 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005428 if (D.isInvalidType())
5429 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005430
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005431 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005432 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005433 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005434 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005435 diag::warn_cxx98_compat_explicit_conversion_functions :
5436 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005437 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005438}
5439
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005440/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5441/// the declaration of the given C++ conversion function. This routine
5442/// is responsible for recording the conversion function in the C++
5443/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005444Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005445 assert(Conversion && "Expected to receive a conversion function declaration");
5446
Douglas Gregor9d350972008-12-12 08:25:50 +00005447 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005448
5449 // Make sure we aren't redeclaring the conversion function.
5450 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005451
5452 // C++ [class.conv.fct]p1:
5453 // [...] A conversion function is never used to convert a
5454 // (possibly cv-qualified) object to the (possibly cv-qualified)
5455 // same object type (or a reference to it), to a (possibly
5456 // cv-qualified) base class of that type (or a reference to it),
5457 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005458 // FIXME: Suppress this warning if the conversion function ends up being a
5459 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005460 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005461 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005462 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005463 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005464 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5465 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005466 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005467 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005468 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5469 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005470 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005471 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005472 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005473 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005474 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005475 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005476 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005477 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005478 }
5479
Douglas Gregore80622f2010-09-29 04:25:11 +00005480 if (FunctionTemplateDecl *ConversionTemplate
5481 = Conversion->getDescribedFunctionTemplate())
5482 return ConversionTemplate;
5483
John McCalld226f652010-08-21 09:40:31 +00005484 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005485}
5486
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005487//===----------------------------------------------------------------------===//
5488// Namespace Handling
5489//===----------------------------------------------------------------------===//
5490
Richard Smithd1a55a62012-10-04 22:13:39 +00005491/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5492/// reopened.
5493static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5494 SourceLocation Loc,
5495 IdentifierInfo *II, bool *IsInline,
5496 NamespaceDecl *PrevNS) {
5497 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005498
Richard Smithc969e6a2012-10-05 01:46:25 +00005499 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5500 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5501 // inline namespaces, with the intention of bringing names into namespace std.
5502 //
5503 // We support this just well enough to get that case working; this is not
5504 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005505 if (*IsInline && II && II->getName().startswith("__atomic") &&
5506 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005507 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005508 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5509 NS = NS->getPreviousDecl())
5510 NS->setInline(*IsInline);
5511 // Patch up the lookup table for the containing namespace. This isn't really
5512 // correct, but it's good enough for this particular case.
5513 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5514 E = PrevNS->decls_end(); I != E; ++I)
5515 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5516 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5517 return;
5518 }
5519
5520 if (PrevNS->isInline())
5521 // The user probably just forgot the 'inline', so suggest that it
5522 // be added back.
5523 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5524 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5525 else
5526 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5527 << IsInline;
5528
5529 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5530 *IsInline = PrevNS->isInline();
5531}
John McCallea318642010-08-26 09:15:37 +00005532
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005533/// ActOnStartNamespaceDef - This is called at the start of a namespace
5534/// definition.
John McCalld226f652010-08-21 09:40:31 +00005535Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005536 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005537 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005538 SourceLocation IdentLoc,
5539 IdentifierInfo *II,
5540 SourceLocation LBrace,
5541 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005542 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5543 // For anonymous namespace, take the location of the left brace.
5544 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005545 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005546 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005547 bool IsStd = false;
5548 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005549 Scope *DeclRegionScope = NamespcScope->getParent();
5550
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005551 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005552 if (II) {
5553 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005554 // The identifier in an original-namespace-definition shall not
5555 // have been previously defined in the declarative region in
5556 // which the original-namespace-definition appears. The
5557 // identifier in an original-namespace-definition is the name of
5558 // the namespace. Subsequently in that declarative region, it is
5559 // treated as an original-namespace-name.
5560 //
5561 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005562 // look through using directives, just look for any ordinary names.
5563
5564 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005565 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5566 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005567 NamedDecl *PrevDecl = 0;
5568 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005569 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005570 R.first != R.second; ++R.first) {
5571 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5572 PrevDecl = *R.first;
5573 break;
5574 }
5575 }
5576
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005577 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5578
5579 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005580 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00005581 if (IsInline != PrevNS->isInline())
5582 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5583 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00005584 } else if (PrevDecl) {
5585 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005586 Diag(Loc, diag::err_redefinition_different_kind)
5587 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005588 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005589 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005590 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005591 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005592 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005593 // This is the first "real" definition of the namespace "std", so update
5594 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005595 PrevNS = getStdNamespace();
5596 IsStd = true;
5597 AddToKnown = !IsInline;
5598 } else {
5599 // We've seen this namespace for the first time.
5600 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005601 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005602 } else {
John McCall9aeed322009-10-01 00:25:31 +00005603 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005604
5605 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005606 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005607 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005608 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005609 } else {
5610 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005611 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005612 }
5613
Richard Smithd1a55a62012-10-04 22:13:39 +00005614 if (PrevNS && IsInline != PrevNS->isInline())
5615 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
5616 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005617 }
5618
5619 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5620 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005621 if (IsInvalid)
5622 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005623
5624 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005625
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005626 // FIXME: Should we be merging attributes?
5627 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005628 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005629
5630 if (IsStd)
5631 StdNamespace = Namespc;
5632 if (AddToKnown)
5633 KnownNamespaces[Namespc] = false;
5634
5635 if (II) {
5636 PushOnScopeChains(Namespc, DeclRegionScope);
5637 } else {
5638 // Link the anonymous namespace into its parent.
5639 DeclContext *Parent = CurContext->getRedeclContext();
5640 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5641 TU->setAnonymousNamespace(Namespc);
5642 } else {
5643 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005644 }
John McCall9aeed322009-10-01 00:25:31 +00005645
Douglas Gregora4181472010-03-24 00:46:35 +00005646 CurContext->addDecl(Namespc);
5647
John McCall9aeed322009-10-01 00:25:31 +00005648 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5649 // behaves as if it were replaced by
5650 // namespace unique { /* empty body */ }
5651 // using namespace unique;
5652 // namespace unique { namespace-body }
5653 // where all occurrences of 'unique' in a translation unit are
5654 // replaced by the same identifier and this identifier differs
5655 // from all other identifiers in the entire program.
5656
5657 // We just create the namespace with an empty name and then add an
5658 // implicit using declaration, just like the standard suggests.
5659 //
5660 // CodeGen enforces the "universally unique" aspect by giving all
5661 // declarations semantically contained within an anonymous
5662 // namespace internal linkage.
5663
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005664 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005665 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005666 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00005667 /* 'using' */ LBrace,
5668 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005669 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005670 /* identifier */ SourceLocation(),
5671 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005672 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00005673 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005674 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00005675 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005676 }
5677
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005678 ActOnDocumentableDecl(Namespc);
5679
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005680 // Although we could have an invalid decl (i.e. the namespace name is a
5681 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005682 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5683 // for the namespace has the declarations that showed up in that particular
5684 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005685 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005686 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005687}
5688
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005689/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5690/// is a namespace alias, returns the namespace it points to.
5691static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5692 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5693 return AD->getNamespace();
5694 return dyn_cast_or_null<NamespaceDecl>(D);
5695}
5696
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005697/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5698/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005699void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005700 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5701 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005702 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005703 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005704 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005705 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005706}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005707
John McCall384aff82010-08-25 07:42:41 +00005708CXXRecordDecl *Sema::getStdBadAlloc() const {
5709 return cast_or_null<CXXRecordDecl>(
5710 StdBadAlloc.get(Context.getExternalSource()));
5711}
5712
5713NamespaceDecl *Sema::getStdNamespace() const {
5714 return cast_or_null<NamespaceDecl>(
5715 StdNamespace.get(Context.getExternalSource()));
5716}
5717
Douglas Gregor66992202010-06-29 17:53:46 +00005718/// \brief Retrieve the special "std" namespace, which may require us to
5719/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005720NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005721 if (!StdNamespace) {
5722 // The "std" namespace has not yet been defined, so build one implicitly.
5723 StdNamespace = NamespaceDecl::Create(Context,
5724 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005725 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005726 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005727 &PP.getIdentifierTable().get("std"),
5728 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005729 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005730 }
5731
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005732 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005733}
5734
Sebastian Redl395e04d2012-01-17 22:49:33 +00005735bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005736 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005737 "Looking for std::initializer_list outside of C++.");
5738
5739 // We're looking for implicit instantiations of
5740 // template <typename E> class std::initializer_list.
5741
5742 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5743 return false;
5744
Sebastian Redl84760e32012-01-17 22:49:58 +00005745 ClassTemplateDecl *Template = 0;
5746 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005747
Sebastian Redl84760e32012-01-17 22:49:58 +00005748 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005749
Sebastian Redl84760e32012-01-17 22:49:58 +00005750 ClassTemplateSpecializationDecl *Specialization =
5751 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5752 if (!Specialization)
5753 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005754
Sebastian Redl84760e32012-01-17 22:49:58 +00005755 Template = Specialization->getSpecializedTemplate();
5756 Arguments = Specialization->getTemplateArgs().data();
5757 } else if (const TemplateSpecializationType *TST =
5758 Ty->getAs<TemplateSpecializationType>()) {
5759 Template = dyn_cast_or_null<ClassTemplateDecl>(
5760 TST->getTemplateName().getAsTemplateDecl());
5761 Arguments = TST->getArgs();
5762 }
5763 if (!Template)
5764 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005765
5766 if (!StdInitializerList) {
5767 // Haven't recognized std::initializer_list yet, maybe this is it.
5768 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5769 if (TemplateClass->getIdentifier() !=
5770 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005771 !getStdNamespace()->InEnclosingNamespaceSetOf(
5772 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005773 return false;
5774 // This is a template called std::initializer_list, but is it the right
5775 // template?
5776 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005777 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005778 return false;
5779 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5780 return false;
5781
5782 // It's the right template.
5783 StdInitializerList = Template;
5784 }
5785
5786 if (Template != StdInitializerList)
5787 return false;
5788
5789 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005790 if (Element)
5791 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005792 return true;
5793}
5794
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005795static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5796 NamespaceDecl *Std = S.getStdNamespace();
5797 if (!Std) {
5798 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5799 return 0;
5800 }
5801
5802 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5803 Loc, Sema::LookupOrdinaryName);
5804 if (!S.LookupQualifiedName(Result, Std)) {
5805 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5806 return 0;
5807 }
5808 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5809 if (!Template) {
5810 Result.suppressDiagnostics();
5811 // We found something weird. Complain about the first thing we found.
5812 NamedDecl *Found = *Result.begin();
5813 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5814 return 0;
5815 }
5816
5817 // We found some template called std::initializer_list. Now verify that it's
5818 // correct.
5819 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005820 if (Params->getMinRequiredArguments() != 1 ||
5821 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005822 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5823 return 0;
5824 }
5825
5826 return Template;
5827}
5828
5829QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5830 if (!StdInitializerList) {
5831 StdInitializerList = LookupStdInitializerList(*this, Loc);
5832 if (!StdInitializerList)
5833 return QualType();
5834 }
5835
5836 TemplateArgumentListInfo Args(Loc, Loc);
5837 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5838 Context.getTrivialTypeSourceInfo(Element,
5839 Loc)));
5840 return Context.getCanonicalType(
5841 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5842}
5843
Sebastian Redl98d36062012-01-17 22:50:14 +00005844bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5845 // C++ [dcl.init.list]p2:
5846 // A constructor is an initializer-list constructor if its first parameter
5847 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5848 // std::initializer_list<E> for some type E, and either there are no other
5849 // parameters or else all other parameters have default arguments.
5850 if (Ctor->getNumParams() < 1 ||
5851 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5852 return false;
5853
5854 QualType ArgType = Ctor->getParamDecl(0)->getType();
5855 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5856 ArgType = RT->getPointeeType().getUnqualifiedType();
5857
5858 return isStdInitializerList(ArgType, 0);
5859}
5860
Douglas Gregor9172aa62011-03-26 22:25:30 +00005861/// \brief Determine whether a using statement is in a context where it will be
5862/// apply in all contexts.
5863static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5864 switch (CurContext->getDeclKind()) {
5865 case Decl::TranslationUnit:
5866 return true;
5867 case Decl::LinkageSpec:
5868 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5869 default:
5870 return false;
5871 }
5872}
5873
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005874namespace {
5875
5876// Callback to only accept typo corrections that are namespaces.
5877class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5878 public:
5879 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5880 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5881 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5882 }
5883 return false;
5884 }
5885};
5886
5887}
5888
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005889static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5890 CXXScopeSpec &SS,
5891 SourceLocation IdentLoc,
5892 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005893 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005894 R.clear();
5895 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005896 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005897 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005898 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5899 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005900 if (DeclContext *DC = S.computeDeclContext(SS, false))
5901 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5902 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00005903 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
5904 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005905 else
5906 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5907 << Ident << CorrectedQuotedStr
5908 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005909
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005910 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5911 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005912
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005913 R.addDecl(Corrected.getCorrectionDecl());
5914 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005915 }
5916 return false;
5917}
5918
John McCalld226f652010-08-21 09:40:31 +00005919Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005920 SourceLocation UsingLoc,
5921 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005922 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005923 SourceLocation IdentLoc,
5924 IdentifierInfo *NamespcName,
5925 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005926 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5927 assert(NamespcName && "Invalid NamespcName.");
5928 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005929
5930 // This can only happen along a recovery path.
5931 while (S->getFlags() & Scope::TemplateParamScope)
5932 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005933 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005934
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005935 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005936 NestedNameSpecifier *Qualifier = 0;
5937 if (SS.isSet())
5938 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5939
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005940 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005941 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5942 LookupParsedName(R, S, &SS);
5943 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005944 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005945
Douglas Gregor66992202010-06-29 17:53:46 +00005946 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005947 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005948 // Allow "using namespace std;" or "using namespace ::std;" even if
5949 // "std" hasn't been defined yet, for GCC compatibility.
5950 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5951 NamespcName->isStr("std")) {
5952 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005953 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005954 R.resolveKind();
5955 }
5956 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005957 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005958 }
5959
John McCallf36e02d2009-10-09 21:13:30 +00005960 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005961 NamedDecl *Named = R.getFoundDecl();
5962 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5963 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005964 // C++ [namespace.udir]p1:
5965 // A using-directive specifies that the names in the nominated
5966 // namespace can be used in the scope in which the
5967 // using-directive appears after the using-directive. During
5968 // unqualified name lookup (3.4.1), the names appear as if they
5969 // were declared in the nearest enclosing namespace which
5970 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005971 // namespace. [Note: in this context, "contains" means "contains
5972 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005973
5974 // Find enclosing context containing both using-directive and
5975 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005976 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005977 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5978 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5979 CommonAncestor = CommonAncestor->getParent();
5980
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005981 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005982 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005983 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005984
Douglas Gregor9172aa62011-03-26 22:25:30 +00005985 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005986 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005987 Diag(IdentLoc, diag::warn_using_directive_in_header);
5988 }
5989
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005990 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005991 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005992 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005993 }
5994
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005995 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005996 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005997}
5998
5999void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006000 // If the scope has an associated entity and the using directive is at
6001 // namespace or translation unit scope, add the UsingDirectiveDecl into
6002 // its lookup structure so qualified name lookup can find it.
6003 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6004 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006005 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006006 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006007 // Otherwise, it is at block sope. The using-directives will affect lookup
6008 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006009 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006010}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006011
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006012
John McCalld226f652010-08-21 09:40:31 +00006013Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006014 AccessSpecifier AS,
6015 bool HasUsingKeyword,
6016 SourceLocation UsingLoc,
6017 CXXScopeSpec &SS,
6018 UnqualifiedId &Name,
6019 AttributeList *AttrList,
6020 bool IsTypeName,
6021 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006022 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006023
Douglas Gregor12c118a2009-11-04 16:30:06 +00006024 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006025 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006026 case UnqualifiedId::IK_Identifier:
6027 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006028 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006029 case UnqualifiedId::IK_ConversionFunctionId:
6030 break;
6031
6032 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006033 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006034 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006035 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00006036 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006037 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6038 // instead once inheriting constructors work.
6039 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006040 diag::err_using_decl_constructor)
6041 << SS.getRange();
6042
David Blaikie4e4d0842012-03-11 07:00:24 +00006043 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00006044
John McCalld226f652010-08-21 09:40:31 +00006045 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006046
6047 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006048 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006049 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006050 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006051
6052 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006053 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006054 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006055 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006056 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006057
6058 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6059 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006060 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006061 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006062
John McCall60fa3cf2009-12-11 02:10:03 +00006063 // Warn about using declarations.
6064 // TODO: store that the declaration was written without 'using' and
6065 // talk about access decls instead of using decls in the
6066 // diagnostics.
6067 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006068 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006069
6070 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006071 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006072 }
6073
Douglas Gregor56c04582010-12-16 00:46:58 +00006074 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6075 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6076 return 0;
6077
John McCall9488ea12009-11-17 05:59:44 +00006078 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006079 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006080 /* IsInstantiation */ false,
6081 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006082 if (UD)
6083 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006084
John McCalld226f652010-08-21 09:40:31 +00006085 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006086}
6087
Douglas Gregor09acc982010-07-07 23:08:52 +00006088/// \brief Determine whether a using declaration considers the given
6089/// declarations as "equivalent", e.g., if they are redeclarations of
6090/// the same entity or are both typedefs of the same type.
6091static bool
6092IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6093 bool &SuppressRedeclaration) {
6094 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6095 SuppressRedeclaration = false;
6096 return true;
6097 }
6098
Richard Smith162e1c12011-04-15 14:24:37 +00006099 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6100 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006101 SuppressRedeclaration = true;
6102 return Context.hasSameType(TD1->getUnderlyingType(),
6103 TD2->getUnderlyingType());
6104 }
6105
6106 return false;
6107}
6108
6109
John McCall9f54ad42009-12-10 09:41:52 +00006110/// Determines whether to create a using shadow decl for a particular
6111/// decl, given the set of decls existing prior to this using lookup.
6112bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6113 const LookupResult &Previous) {
6114 // Diagnose finding a decl which is not from a base class of the
6115 // current class. We do this now because there are cases where this
6116 // function will silently decide not to build a shadow decl, which
6117 // will pre-empt further diagnostics.
6118 //
6119 // We don't need to do this in C++0x because we do the check once on
6120 // the qualifier.
6121 //
6122 // FIXME: diagnose the following if we care enough:
6123 // struct A { int foo; };
6124 // struct B : A { using A::foo; };
6125 // template <class T> struct C : A {};
6126 // template <class T> struct D : C<T> { using B::foo; } // <---
6127 // This is invalid (during instantiation) in C++03 because B::foo
6128 // resolves to the using decl in B, which is not a base class of D<T>.
6129 // We can't diagnose it immediately because C<T> is an unknown
6130 // specialization. The UsingShadowDecl in D<T> then points directly
6131 // to A::foo, which will look well-formed when we instantiate.
6132 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00006133 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006134 DeclContext *OrigDC = Orig->getDeclContext();
6135
6136 // Handle enums and anonymous structs.
6137 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6138 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6139 while (OrigRec->isAnonymousStructOrUnion())
6140 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6141
6142 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6143 if (OrigDC == CurContext) {
6144 Diag(Using->getLocation(),
6145 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006146 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006147 Diag(Orig->getLocation(), diag::note_using_decl_target);
6148 return true;
6149 }
6150
Douglas Gregordc355712011-02-25 00:36:19 +00006151 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006152 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006153 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006154 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006155 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006156 Diag(Orig->getLocation(), diag::note_using_decl_target);
6157 return true;
6158 }
6159 }
6160
6161 if (Previous.empty()) return false;
6162
6163 NamedDecl *Target = Orig;
6164 if (isa<UsingShadowDecl>(Target))
6165 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6166
John McCalld7533ec2009-12-11 02:33:26 +00006167 // If the target happens to be one of the previous declarations, we
6168 // don't have a conflict.
6169 //
6170 // FIXME: but we might be increasing its access, in which case we
6171 // should redeclare it.
6172 NamedDecl *NonTag = 0, *Tag = 0;
6173 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6174 I != E; ++I) {
6175 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006176 bool Result;
6177 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6178 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006179
6180 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6181 }
6182
John McCall9f54ad42009-12-10 09:41:52 +00006183 if (Target->isFunctionOrFunctionTemplate()) {
6184 FunctionDecl *FD;
6185 if (isa<FunctionTemplateDecl>(Target))
6186 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6187 else
6188 FD = cast<FunctionDecl>(Target);
6189
6190 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006191 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006192 case Ovl_Overload:
6193 return false;
6194
6195 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006196 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006197 break;
6198
6199 // We found a decl with the exact signature.
6200 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006201 // If we're in a record, we want to hide the target, so we
6202 // return true (without a diagnostic) to tell the caller not to
6203 // build a shadow decl.
6204 if (CurContext->isRecord())
6205 return true;
6206
6207 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006208 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006209 break;
6210 }
6211
6212 Diag(Target->getLocation(), diag::note_using_decl_target);
6213 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6214 return true;
6215 }
6216
6217 // Target is not a function.
6218
John McCall9f54ad42009-12-10 09:41:52 +00006219 if (isa<TagDecl>(Target)) {
6220 // No conflict between a tag and a non-tag.
6221 if (!Tag) return false;
6222
John McCall41ce66f2009-12-10 19:51:03 +00006223 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006224 Diag(Target->getLocation(), diag::note_using_decl_target);
6225 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6226 return true;
6227 }
6228
6229 // No conflict between a tag and a non-tag.
6230 if (!NonTag) return false;
6231
John McCall41ce66f2009-12-10 19:51:03 +00006232 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006233 Diag(Target->getLocation(), diag::note_using_decl_target);
6234 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6235 return true;
6236}
6237
John McCall9488ea12009-11-17 05:59:44 +00006238/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006239UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006240 UsingDecl *UD,
6241 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006242
6243 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006244 NamedDecl *Target = Orig;
6245 if (isa<UsingShadowDecl>(Target)) {
6246 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6247 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006248 }
6249
6250 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006251 = UsingShadowDecl::Create(Context, CurContext,
6252 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006253 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006254
6255 Shadow->setAccess(UD->getAccess());
6256 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6257 Shadow->setInvalidDecl();
6258
John McCall9488ea12009-11-17 05:59:44 +00006259 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006260 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006261 else
John McCall604e7f12009-12-08 07:46:18 +00006262 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006263
John McCall604e7f12009-12-08 07:46:18 +00006264
John McCall9f54ad42009-12-10 09:41:52 +00006265 return Shadow;
6266}
John McCall604e7f12009-12-08 07:46:18 +00006267
John McCall9f54ad42009-12-10 09:41:52 +00006268/// Hides a using shadow declaration. This is required by the current
6269/// using-decl implementation when a resolvable using declaration in a
6270/// class is followed by a declaration which would hide or override
6271/// one or more of the using decl's targets; for example:
6272///
6273/// struct Base { void foo(int); };
6274/// struct Derived : Base {
6275/// using Base::foo;
6276/// void foo(int);
6277/// };
6278///
6279/// The governing language is C++03 [namespace.udecl]p12:
6280///
6281/// When a using-declaration brings names from a base class into a
6282/// derived class scope, member functions in the derived class
6283/// override and/or hide member functions with the same name and
6284/// parameter types in a base class (rather than conflicting).
6285///
6286/// There are two ways to implement this:
6287/// (1) optimistically create shadow decls when they're not hidden
6288/// by existing declarations, or
6289/// (2) don't create any shadow decls (or at least don't make them
6290/// visible) until we've fully parsed/instantiated the class.
6291/// The problem with (1) is that we might have to retroactively remove
6292/// a shadow decl, which requires several O(n) operations because the
6293/// decl structures are (very reasonably) not designed for removal.
6294/// (2) avoids this but is very fiddly and phase-dependent.
6295void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006296 if (Shadow->getDeclName().getNameKind() ==
6297 DeclarationName::CXXConversionFunctionName)
6298 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6299
John McCall9f54ad42009-12-10 09:41:52 +00006300 // Remove it from the DeclContext...
6301 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006302
John McCall9f54ad42009-12-10 09:41:52 +00006303 // ...and the scope, if applicable...
6304 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006305 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006306 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006307 }
6308
John McCall9f54ad42009-12-10 09:41:52 +00006309 // ...and the using decl.
6310 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6311
6312 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006313 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006314}
6315
John McCall7ba107a2009-11-18 02:36:19 +00006316/// Builds a using declaration.
6317///
6318/// \param IsInstantiation - Whether this call arises from an
6319/// instantiation of an unresolved using declaration. We treat
6320/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006321NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6322 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006323 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006324 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006325 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006326 bool IsInstantiation,
6327 bool IsTypeName,
6328 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006329 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006330 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006331 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006332
Anders Carlsson550b14b2009-08-28 05:49:21 +00006333 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006334
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006335 if (SS.isEmpty()) {
6336 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006337 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006338 }
Mike Stump1eb44332009-09-09 15:08:12 +00006339
John McCall9f54ad42009-12-10 09:41:52 +00006340 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006341 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006342 ForRedeclaration);
6343 Previous.setHideTags(false);
6344 if (S) {
6345 LookupName(Previous, S);
6346
6347 // It is really dumb that we have to do this.
6348 LookupResult::Filter F = Previous.makeFilter();
6349 while (F.hasNext()) {
6350 NamedDecl *D = F.next();
6351 if (!isDeclInScope(D, CurContext, S))
6352 F.erase();
6353 }
6354 F.done();
6355 } else {
6356 assert(IsInstantiation && "no scope in non-instantiation");
6357 assert(CurContext->isRecord() && "scope not record in instantiation");
6358 LookupQualifiedName(Previous, CurContext);
6359 }
6360
John McCall9f54ad42009-12-10 09:41:52 +00006361 // Check for invalid redeclarations.
6362 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6363 return 0;
6364
6365 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006366 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6367 return 0;
6368
John McCallaf8e6ed2009-11-12 03:15:40 +00006369 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006370 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006371 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006372 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006373 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006374 // FIXME: not all declaration name kinds are legal here
6375 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6376 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006377 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006378 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006379 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006380 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6381 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006382 }
John McCalled976492009-12-04 22:46:56 +00006383 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006384 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6385 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006386 }
John McCalled976492009-12-04 22:46:56 +00006387 D->setAccess(AS);
6388 CurContext->addDecl(D);
6389
6390 if (!LookupContext) return D;
6391 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006392
John McCall77bb1aa2010-05-01 00:40:08 +00006393 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006394 UD->setInvalidDecl();
6395 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006396 }
6397
Richard Smithc5a89a12012-04-02 01:30:27 +00006398 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006399 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006400 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006401 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006402 return UD;
6403 }
6404
6405 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006406
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006407 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006408
John McCall604e7f12009-12-08 07:46:18 +00006409 // Unlike most lookups, we don't always want to hide tag
6410 // declarations: tag names are visible through the using declaration
6411 // even if hidden by ordinary names, *except* in a dependent context
6412 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006413 if (!IsInstantiation)
6414 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006415
John McCallb9abd8722012-04-07 03:04:20 +00006416 // For the purposes of this lookup, we have a base object type
6417 // equal to that of the current context.
6418 if (CurContext->isRecord()) {
6419 R.setBaseObjectType(
6420 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6421 }
6422
John McCalla24dc2e2009-11-17 02:14:36 +00006423 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006424
John McCallf36e02d2009-10-09 21:13:30 +00006425 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006426 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006427 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006428 UD->setInvalidDecl();
6429 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006430 }
6431
John McCalled976492009-12-04 22:46:56 +00006432 if (R.isAmbiguous()) {
6433 UD->setInvalidDecl();
6434 return UD;
6435 }
Mike Stump1eb44332009-09-09 15:08:12 +00006436
John McCall7ba107a2009-11-18 02:36:19 +00006437 if (IsTypeName) {
6438 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006439 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006440 Diag(IdentLoc, diag::err_using_typename_non_type);
6441 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6442 Diag((*I)->getUnderlyingDecl()->getLocation(),
6443 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006444 UD->setInvalidDecl();
6445 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006446 }
6447 } else {
6448 // If we asked for a non-typename and we got a type, error out,
6449 // but only if this is an instantiation of an unresolved using
6450 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006451 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006452 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6453 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006454 UD->setInvalidDecl();
6455 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006456 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006457 }
6458
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006459 // C++0x N2914 [namespace.udecl]p6:
6460 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006461 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006462 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6463 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006464 UD->setInvalidDecl();
6465 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006466 }
Mike Stump1eb44332009-09-09 15:08:12 +00006467
John McCall9f54ad42009-12-10 09:41:52 +00006468 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6469 if (!CheckUsingShadowDecl(UD, *I, Previous))
6470 BuildUsingShadowDecl(S, UD, *I);
6471 }
John McCall9488ea12009-11-17 05:59:44 +00006472
6473 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006474}
6475
Sebastian Redlf677ea32011-02-05 19:23:19 +00006476/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006477bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6478 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006479
Douglas Gregordc355712011-02-25 00:36:19 +00006480 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006481 assert(SourceType &&
6482 "Using decl naming constructor doesn't have type in scope spec.");
6483 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6484
6485 // Check whether the named type is a direct base class.
6486 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6487 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6488 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6489 BaseIt != BaseE; ++BaseIt) {
6490 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6491 if (CanonicalSourceType == BaseType)
6492 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006493 if (BaseIt->getType()->isDependentType())
6494 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006495 }
6496
6497 if (BaseIt == BaseE) {
6498 // Did not find SourceType in the bases.
6499 Diag(UD->getUsingLocation(),
6500 diag::err_using_decl_constructor_not_in_direct_base)
6501 << UD->getNameInfo().getSourceRange()
6502 << QualType(SourceType, 0) << TargetClass;
6503 return true;
6504 }
6505
Richard Smithc5a89a12012-04-02 01:30:27 +00006506 if (!CurContext->isDependentContext())
6507 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006508
6509 return false;
6510}
6511
John McCall9f54ad42009-12-10 09:41:52 +00006512/// Checks that the given using declaration is not an invalid
6513/// redeclaration. Note that this is checking only for the using decl
6514/// itself, not for any ill-formedness among the UsingShadowDecls.
6515bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6516 bool isTypeName,
6517 const CXXScopeSpec &SS,
6518 SourceLocation NameLoc,
6519 const LookupResult &Prev) {
6520 // C++03 [namespace.udecl]p8:
6521 // C++0x [namespace.udecl]p10:
6522 // A using-declaration is a declaration and can therefore be used
6523 // repeatedly where (and only where) multiple declarations are
6524 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006525 //
John McCall8a726212010-11-29 18:01:58 +00006526 // That's in non-member contexts.
6527 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006528 return false;
6529
6530 NestedNameSpecifier *Qual
6531 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6532
6533 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6534 NamedDecl *D = *I;
6535
6536 bool DTypename;
6537 NestedNameSpecifier *DQual;
6538 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6539 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006540 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006541 } else if (UnresolvedUsingValueDecl *UD
6542 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6543 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006544 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006545 } else if (UnresolvedUsingTypenameDecl *UD
6546 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6547 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006548 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006549 } else continue;
6550
6551 // using decls differ if one says 'typename' and the other doesn't.
6552 // FIXME: non-dependent using decls?
6553 if (isTypeName != DTypename) continue;
6554
6555 // using decls differ if they name different scopes (but note that
6556 // template instantiation can cause this check to trigger when it
6557 // didn't before instantiation).
6558 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6559 Context.getCanonicalNestedNameSpecifier(DQual))
6560 continue;
6561
6562 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006563 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006564 return true;
6565 }
6566
6567 return false;
6568}
6569
John McCall604e7f12009-12-08 07:46:18 +00006570
John McCalled976492009-12-04 22:46:56 +00006571/// Checks that the given nested-name qualifier used in a using decl
6572/// in the current context is appropriately related to the current
6573/// scope. If an error is found, diagnoses it and returns true.
6574bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6575 const CXXScopeSpec &SS,
6576 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006577 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006578
John McCall604e7f12009-12-08 07:46:18 +00006579 if (!CurContext->isRecord()) {
6580 // C++03 [namespace.udecl]p3:
6581 // C++0x [namespace.udecl]p8:
6582 // A using-declaration for a class member shall be a member-declaration.
6583
6584 // If we weren't able to compute a valid scope, it must be a
6585 // dependent class scope.
6586 if (!NamedContext || NamedContext->isRecord()) {
6587 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6588 << SS.getRange();
6589 return true;
6590 }
6591
6592 // Otherwise, everything is known to be fine.
6593 return false;
6594 }
6595
6596 // The current scope is a record.
6597
6598 // If the named context is dependent, we can't decide much.
6599 if (!NamedContext) {
6600 // FIXME: in C++0x, we can diagnose if we can prove that the
6601 // nested-name-specifier does not refer to a base class, which is
6602 // still possible in some cases.
6603
6604 // Otherwise we have to conservatively report that things might be
6605 // okay.
6606 return false;
6607 }
6608
6609 if (!NamedContext->isRecord()) {
6610 // Ideally this would point at the last name in the specifier,
6611 // but we don't have that level of source info.
6612 Diag(SS.getRange().getBegin(),
6613 diag::err_using_decl_nested_name_specifier_is_not_class)
6614 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6615 return true;
6616 }
6617
Douglas Gregor6fb07292010-12-21 07:41:49 +00006618 if (!NamedContext->isDependentContext() &&
6619 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6620 return true;
6621
David Blaikie4e4d0842012-03-11 07:00:24 +00006622 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006623 // C++0x [namespace.udecl]p3:
6624 // In a using-declaration used as a member-declaration, the
6625 // nested-name-specifier shall name a base class of the class
6626 // being defined.
6627
6628 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6629 cast<CXXRecordDecl>(NamedContext))) {
6630 if (CurContext == NamedContext) {
6631 Diag(NameLoc,
6632 diag::err_using_decl_nested_name_specifier_is_current_class)
6633 << SS.getRange();
6634 return true;
6635 }
6636
6637 Diag(SS.getRange().getBegin(),
6638 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6639 << (NestedNameSpecifier*) SS.getScopeRep()
6640 << cast<CXXRecordDecl>(CurContext)
6641 << SS.getRange();
6642 return true;
6643 }
6644
6645 return false;
6646 }
6647
6648 // C++03 [namespace.udecl]p4:
6649 // A using-declaration used as a member-declaration shall refer
6650 // to a member of a base class of the class being defined [etc.].
6651
6652 // Salient point: SS doesn't have to name a base class as long as
6653 // lookup only finds members from base classes. Therefore we can
6654 // diagnose here only if we can prove that that can't happen,
6655 // i.e. if the class hierarchies provably don't intersect.
6656
6657 // TODO: it would be nice if "definitely valid" results were cached
6658 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6659 // need to be repeated.
6660
6661 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006662 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006663
6664 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6665 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6666 Data->Bases.insert(Base);
6667 return true;
6668 }
6669
6670 bool hasDependentBases(const CXXRecordDecl *Class) {
6671 return !Class->forallBases(collect, this);
6672 }
6673
6674 /// Returns true if the base is dependent or is one of the
6675 /// accumulated base classes.
6676 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6677 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6678 return !Data->Bases.count(Base);
6679 }
6680
6681 bool mightShareBases(const CXXRecordDecl *Class) {
6682 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6683 }
6684 };
6685
6686 UserData Data;
6687
6688 // Returns false if we find a dependent base.
6689 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6690 return false;
6691
6692 // Returns false if the class has a dependent base or if it or one
6693 // of its bases is present in the base set of the current context.
6694 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6695 return false;
6696
6697 Diag(SS.getRange().getBegin(),
6698 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6699 << (NestedNameSpecifier*) SS.getScopeRep()
6700 << cast<CXXRecordDecl>(CurContext)
6701 << SS.getRange();
6702
6703 return true;
John McCalled976492009-12-04 22:46:56 +00006704}
6705
Richard Smith162e1c12011-04-15 14:24:37 +00006706Decl *Sema::ActOnAliasDeclaration(Scope *S,
6707 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006708 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006709 SourceLocation UsingLoc,
6710 UnqualifiedId &Name,
6711 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006712 // Skip up to the relevant declaration scope.
6713 while (S->getFlags() & Scope::TemplateParamScope)
6714 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006715 assert((S->getFlags() & Scope::DeclScope) &&
6716 "got alias-declaration outside of declaration scope");
6717
6718 if (Type.isInvalid())
6719 return 0;
6720
6721 bool Invalid = false;
6722 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6723 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006724 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006725
6726 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6727 return 0;
6728
6729 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006730 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006731 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006732 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6733 TInfo->getTypeLoc().getBeginLoc());
6734 }
Richard Smith162e1c12011-04-15 14:24:37 +00006735
6736 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6737 LookupName(Previous, S);
6738
6739 // Warn about shadowing the name of a template parameter.
6740 if (Previous.isSingleResult() &&
6741 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006742 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006743 Previous.clear();
6744 }
6745
6746 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6747 "name in alias declaration must be an identifier");
6748 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6749 Name.StartLocation,
6750 Name.Identifier, TInfo);
6751
6752 NewTD->setAccess(AS);
6753
6754 if (Invalid)
6755 NewTD->setInvalidDecl();
6756
Richard Smith3e4c6c42011-05-05 21:57:07 +00006757 CheckTypedefForVariablyModifiedType(S, NewTD);
6758 Invalid |= NewTD->isInvalidDecl();
6759
Richard Smith162e1c12011-04-15 14:24:37 +00006760 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006761
6762 NamedDecl *NewND;
6763 if (TemplateParamLists.size()) {
6764 TypeAliasTemplateDecl *OldDecl = 0;
6765 TemplateParameterList *OldTemplateParams = 0;
6766
6767 if (TemplateParamLists.size() != 1) {
6768 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006769 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6770 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006771 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006772 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006773
6774 // Only consider previous declarations in the same scope.
6775 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6776 /*ExplicitInstantiationOrSpecialization*/false);
6777 if (!Previous.empty()) {
6778 Redeclaration = true;
6779
6780 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6781 if (!OldDecl && !Invalid) {
6782 Diag(UsingLoc, diag::err_redefinition_different_kind)
6783 << Name.Identifier;
6784
6785 NamedDecl *OldD = Previous.getRepresentativeDecl();
6786 if (OldD->getLocation().isValid())
6787 Diag(OldD->getLocation(), diag::note_previous_definition);
6788
6789 Invalid = true;
6790 }
6791
6792 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6793 if (TemplateParameterListsAreEqual(TemplateParams,
6794 OldDecl->getTemplateParameters(),
6795 /*Complain=*/true,
6796 TPL_TemplateMatch))
6797 OldTemplateParams = OldDecl->getTemplateParameters();
6798 else
6799 Invalid = true;
6800
6801 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6802 if (!Invalid &&
6803 !Context.hasSameType(OldTD->getUnderlyingType(),
6804 NewTD->getUnderlyingType())) {
6805 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6806 // but we can't reasonably accept it.
6807 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6808 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6809 if (OldTD->getLocation().isValid())
6810 Diag(OldTD->getLocation(), diag::note_previous_definition);
6811 Invalid = true;
6812 }
6813 }
6814 }
6815
6816 // Merge any previous default template arguments into our parameters,
6817 // and check the parameter list.
6818 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6819 TPC_TypeAliasTemplate))
6820 return 0;
6821
6822 TypeAliasTemplateDecl *NewDecl =
6823 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6824 Name.Identifier, TemplateParams,
6825 NewTD);
6826
6827 NewDecl->setAccess(AS);
6828
6829 if (Invalid)
6830 NewDecl->setInvalidDecl();
6831 else if (OldDecl)
6832 NewDecl->setPreviousDeclaration(OldDecl);
6833
6834 NewND = NewDecl;
6835 } else {
6836 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6837 NewND = NewTD;
6838 }
Richard Smith162e1c12011-04-15 14:24:37 +00006839
6840 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006841 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006842
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006843 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006844 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006845}
6846
John McCalld226f652010-08-21 09:40:31 +00006847Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006848 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006849 SourceLocation AliasLoc,
6850 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006851 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006852 SourceLocation IdentLoc,
6853 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006854
Anders Carlsson81c85c42009-03-28 23:53:49 +00006855 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006856 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6857 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006858
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006859 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006860 NamedDecl *PrevDecl
6861 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6862 ForRedeclaration);
6863 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6864 PrevDecl = 0;
6865
6866 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006867 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006868 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006869 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006870 // FIXME: At some point, we'll want to create the (redundant)
6871 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006872 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006873 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006874 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006875 }
Mike Stump1eb44332009-09-09 15:08:12 +00006876
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006877 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6878 diag::err_redefinition_different_kind;
6879 Diag(AliasLoc, DiagID) << Alias;
6880 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006881 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006882 }
6883
John McCalla24dc2e2009-11-17 02:14:36 +00006884 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006885 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006886
John McCallf36e02d2009-10-09 21:13:30 +00006887 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006888 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006889 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006890 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006891 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006892 }
Mike Stump1eb44332009-09-09 15:08:12 +00006893
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006894 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006895 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006896 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006897 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006898
John McCall3dbd3d52010-02-16 06:53:13 +00006899 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006900 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006901}
6902
Sean Hunt001cad92011-05-10 00:49:42 +00006903Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006904Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6905 CXXMethodDecl *MD) {
6906 CXXRecordDecl *ClassDecl = MD->getParent();
6907
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006908 // C++ [except.spec]p14:
6909 // An implicitly declared special member function (Clause 12) shall have an
6910 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006911 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006912 if (ClassDecl->isInvalidDecl())
6913 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006914
Sebastian Redl60618fa2011-03-12 11:50:43 +00006915 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006916 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6917 BEnd = ClassDecl->bases_end();
6918 B != BEnd; ++B) {
6919 if (B->isVirtual()) // Handled below.
6920 continue;
6921
Douglas Gregor18274032010-07-03 00:47:00 +00006922 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6923 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006924 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6925 // If this is a deleted function, add it anyway. This might be conformant
6926 // with the standard. This might not. I'm not sure. It might not matter.
6927 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006928 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006929 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006930 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006931
6932 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006933 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6934 BEnd = ClassDecl->vbases_end();
6935 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006936 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6937 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006938 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6939 // If this is a deleted function, add it anyway. This might be conformant
6940 // with the standard. This might not. I'm not sure. It might not matter.
6941 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006942 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006943 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006944 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006945
6946 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006947 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6948 FEnd = ClassDecl->field_end();
6949 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006950 if (F->hasInClassInitializer()) {
6951 if (Expr *E = F->getInClassInitializer())
6952 ExceptSpec.CalledExpr(E);
6953 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006954 // DR1351:
6955 // If the brace-or-equal-initializer of a non-static data member
6956 // invokes a defaulted default constructor of its class or of an
6957 // enclosing class in a potentially evaluated subexpression, the
6958 // program is ill-formed.
6959 //
6960 // This resolution is unworkable: the exception specification of the
6961 // default constructor can be needed in an unevaluated context, in
6962 // particular, in the operand of a noexcept-expression, and we can be
6963 // unable to compute an exception specification for an enclosed class.
6964 //
6965 // We do not allow an in-class initializer to require the evaluation
6966 // of the exception specification for any in-class initializer whose
6967 // definition is not lexically complete.
6968 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006969 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006970 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006971 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6972 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6973 // If this is a deleted function, add it anyway. This might be conformant
6974 // with the standard. This might not. I'm not sure. It might not matter.
6975 // In particular, the problem is that this function never gets called. It
6976 // might just be ill-formed because this function attempts to refer to
6977 // a deleted function here.
6978 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006979 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006980 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006981 }
John McCalle23cf432010-12-14 08:05:40 +00006982
Sean Hunt001cad92011-05-10 00:49:42 +00006983 return ExceptSpec;
6984}
6985
6986CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6987 CXXRecordDecl *ClassDecl) {
6988 // C++ [class.ctor]p5:
6989 // A default constructor for a class X is a constructor of class X
6990 // that can be called without an argument. If there is no
6991 // user-declared constructor for class X, a default constructor is
6992 // implicitly declared. An implicitly-declared default constructor
6993 // is an inline public member of its class.
6994 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6995 "Should not build implicit default constructor!");
6996
Richard Smith7756afa2012-06-10 05:43:50 +00006997 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6998 CXXDefaultConstructor,
6999 false);
7000
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007001 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007002 CanQualType ClassType
7003 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007004 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007005 DeclarationName Name
7006 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007007 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007008 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007009 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007010 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007011 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007012 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007013 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007014 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00007015 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007016
7017 // Build an exception specification pointing back at this constructor.
7018 FunctionProtoType::ExtProtoInfo EPI;
7019 EPI.ExceptionSpecType = EST_Unevaluated;
7020 EPI.ExceptionSpecDecl = DefaultCon;
7021 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7022
Douglas Gregor18274032010-07-03 00:47:00 +00007023 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007024 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
7025
Douglas Gregor23c94db2010-07-02 17:43:08 +00007026 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007027 PushOnScopeChains(DefaultCon, S, false);
7028 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007029
Sean Hunte16da072011-10-10 06:18:57 +00007030 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00007031 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00007032
Douglas Gregor32df23e2010-07-01 22:02:46 +00007033 return DefaultCon;
7034}
7035
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007036void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7037 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007038 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007039 !Constructor->doesThisDeclarationHaveABody() &&
7040 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007041 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007042
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007043 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007044 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007045
Eli Friedman9a14db32012-10-18 20:14:08 +00007046 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007047 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007048 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007049 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007050 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007051 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007052 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007053 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007054 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007055
7056 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007057 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007058
7059 Constructor->setUsed();
7060 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007061
7062 if (ASTMutationListener *L = getASTMutationListener()) {
7063 L->CompletedImplicitDefinition(Constructor);
7064 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007065}
7066
Richard Smith7a614d82011-06-11 17:19:42 +00007067void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7068 if (!D) return;
7069 AdjustDeclIfTemplate(D);
7070
7071 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00007072
Richard Smithb9d0b762012-07-27 04:22:15 +00007073 if (!ClassDecl->isDependentType())
7074 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00007075}
7076
Sebastian Redlf677ea32011-02-05 19:23:19 +00007077void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7078 // We start with an initial pass over the base classes to collect those that
7079 // inherit constructors from. If there are none, we can forgo all further
7080 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007081 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007082 BasesVector BasesToInheritFrom;
7083 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7084 BaseE = ClassDecl->bases_end();
7085 BaseIt != BaseE; ++BaseIt) {
7086 if (BaseIt->getInheritConstructors()) {
7087 QualType Base = BaseIt->getType();
7088 if (Base->isDependentType()) {
7089 // If we inherit constructors from anything that is dependent, just
7090 // abort processing altogether. We'll get another chance for the
7091 // instantiations.
7092 return;
7093 }
7094 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7095 }
7096 }
7097 if (BasesToInheritFrom.empty())
7098 return;
7099
7100 // Now collect the constructors that we already have in the current class.
7101 // Those take precedence over inherited constructors.
7102 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7103 // unless there is a user-declared constructor with the same signature in
7104 // the class where the using-declaration appears.
7105 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7106 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7107 CtorE = ClassDecl->ctor_end();
7108 CtorIt != CtorE; ++CtorIt) {
7109 ExistingConstructors.insert(
7110 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7111 }
7112
Sebastian Redlf677ea32011-02-05 19:23:19 +00007113 DeclarationName CreatedCtorName =
7114 Context.DeclarationNames.getCXXConstructorName(
7115 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7116
7117 // Now comes the true work.
7118 // First, we keep a map from constructor types to the base that introduced
7119 // them. Needed for finding conflicting constructors. We also keep the
7120 // actually inserted declarations in there, for pretty diagnostics.
7121 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7122 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7123 ConstructorToSourceMap InheritedConstructors;
7124 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7125 BaseE = BasesToInheritFrom.end();
7126 BaseIt != BaseE; ++BaseIt) {
7127 const RecordType *Base = *BaseIt;
7128 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7129 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7130 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7131 CtorE = BaseDecl->ctor_end();
7132 CtorIt != CtorE; ++CtorIt) {
7133 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007134 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007135 DeclarationName Name =
7136 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007137 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7138 LookupQualifiedName(Result, CurContext);
7139 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007140 SourceLocation UsingLoc = UD ? UD->getLocation() :
7141 ClassDecl->getLocation();
7142
7143 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7144 // from the class X named in the using-declaration consists of actual
7145 // constructors and notional constructors that result from the
7146 // transformation of defaulted parameters as follows:
7147 // - all non-template default constructors of X, and
7148 // - for each non-template constructor of X that has at least one
7149 // parameter with a default argument, the set of constructors that
7150 // results from omitting any ellipsis parameter specification and
7151 // successively omitting parameters with a default argument from the
7152 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007153 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007154 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7155 const FunctionProtoType *BaseCtorType =
7156 BaseCtor->getType()->getAs<FunctionProtoType>();
7157
7158 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7159 maxParams = BaseCtor->getNumParams();
7160 params <= maxParams; ++params) {
7161 // Skip default constructors. They're never inherited.
7162 if (params == 0)
7163 continue;
7164 // Skip copy and move constructors for the same reason.
7165 if (CanBeCopyOrMove && params == 1)
7166 continue;
7167
7168 // Build up a function type for this particular constructor.
7169 // FIXME: The working paper does not consider that the exception spec
7170 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007171 // source. This code doesn't yet, either. When it does, this code will
7172 // need to be delayed until after exception specifications and in-class
7173 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007174 const Type *NewCtorType;
7175 if (params == maxParams)
7176 NewCtorType = BaseCtorType;
7177 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007178 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007179 for (unsigned i = 0; i < params; ++i) {
7180 Args.push_back(BaseCtorType->getArgType(i));
7181 }
7182 FunctionProtoType::ExtProtoInfo ExtInfo =
7183 BaseCtorType->getExtProtoInfo();
7184 ExtInfo.Variadic = false;
7185 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7186 Args.data(), params, ExtInfo)
7187 .getTypePtr();
7188 }
7189 const Type *CanonicalNewCtorType =
7190 Context.getCanonicalType(NewCtorType);
7191
7192 // Now that we have the type, first check if the class already has a
7193 // constructor with this signature.
7194 if (ExistingConstructors.count(CanonicalNewCtorType))
7195 continue;
7196
7197 // Then we check if we have already declared an inherited constructor
7198 // with this signature.
7199 std::pair<ConstructorToSourceMap::iterator, bool> result =
7200 InheritedConstructors.insert(std::make_pair(
7201 CanonicalNewCtorType,
7202 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7203 if (!result.second) {
7204 // Already in the map. If it came from a different class, that's an
7205 // error. Not if it's from the same.
7206 CanQualType PreviousBase = result.first->second.first;
7207 if (CanonicalBase != PreviousBase) {
7208 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7209 const CXXConstructorDecl *PrevBaseCtor =
7210 PrevCtor->getInheritedConstructor();
7211 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7212
7213 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7214 Diag(BaseCtor->getLocation(),
7215 diag::note_using_decl_constructor_conflict_current_ctor);
7216 Diag(PrevBaseCtor->getLocation(),
7217 diag::note_using_decl_constructor_conflict_previous_ctor);
7218 Diag(PrevCtor->getLocation(),
7219 diag::note_using_decl_constructor_conflict_previous_using);
7220 }
7221 continue;
7222 }
7223
7224 // OK, we're there, now add the constructor.
7225 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007226 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007227 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7228 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007229 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7230 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007231 /*ImplicitlyDeclared=*/true,
7232 // FIXME: Due to a defect in the standard, we treat inherited
7233 // constructors as constexpr even if that makes them ill-formed.
7234 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007235 NewCtor->setAccess(BaseCtor->getAccess());
7236
7237 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007238 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007239 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007240 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7241 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007242 /*IdentifierInfo=*/0,
7243 BaseCtorType->getArgType(i),
7244 /*TInfo=*/0, SC_None,
7245 SC_None, /*DefaultArg=*/0));
7246 }
David Blaikie4278c652011-09-21 18:16:56 +00007247 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007248 NewCtor->setInheritedConstructor(BaseCtor);
7249
Sebastian Redlf677ea32011-02-05 19:23:19 +00007250 ClassDecl->addDecl(NewCtor);
7251 result.first->second.second = NewCtor;
7252 }
7253 }
7254 }
7255}
7256
Sean Huntcb45a0f2011-05-12 22:46:25 +00007257Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007258Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7259 CXXRecordDecl *ClassDecl = MD->getParent();
7260
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007261 // C++ [except.spec]p14:
7262 // An implicitly declared special member function (Clause 12) shall have
7263 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007264 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007265 if (ClassDecl->isInvalidDecl())
7266 return ExceptSpec;
7267
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007268 // Direct base-class destructors.
7269 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7270 BEnd = ClassDecl->bases_end();
7271 B != BEnd; ++B) {
7272 if (B->isVirtual()) // Handled below.
7273 continue;
7274
7275 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007276 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007277 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007278 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007279
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007280 // Virtual base-class destructors.
7281 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7282 BEnd = ClassDecl->vbases_end();
7283 B != BEnd; ++B) {
7284 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007285 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007286 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007287 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007288
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007289 // Field destructors.
7290 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7291 FEnd = ClassDecl->field_end();
7292 F != FEnd; ++F) {
7293 if (const RecordType *RecordTy
7294 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007295 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007296 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007297 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007298
Sean Huntcb45a0f2011-05-12 22:46:25 +00007299 return ExceptSpec;
7300}
7301
7302CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7303 // C++ [class.dtor]p2:
7304 // If a class has no user-declared destructor, a destructor is
7305 // declared implicitly. An implicitly-declared destructor is an
7306 // inline public member of its class.
Sean Huntcb45a0f2011-05-12 22:46:25 +00007307
Douglas Gregor4923aa22010-07-02 20:37:36 +00007308 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007309 CanQualType ClassType
7310 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007311 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007312 DeclarationName Name
7313 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007314 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007315 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007316 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7317 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007318 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007319 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007320 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007321 Destructor->setImplicit();
7322 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007323
7324 // Build an exception specification pointing back at this destructor.
7325 FunctionProtoType::ExtProtoInfo EPI;
7326 EPI.ExceptionSpecType = EST_Unevaluated;
7327 EPI.ExceptionSpecDecl = Destructor;
7328 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7329
Douglas Gregor4923aa22010-07-02 20:37:36 +00007330 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007331 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007332
Douglas Gregor4923aa22010-07-02 20:37:36 +00007333 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007334 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007335 PushOnScopeChains(Destructor, S, false);
7336 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007337
Richard Smith9a561d52012-02-26 09:11:52 +00007338 AddOverriddenMethods(ClassDecl, Destructor);
7339
Richard Smith7d5088a2012-02-18 02:02:13 +00007340 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007341 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007342
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007343 return Destructor;
7344}
7345
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007346void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007347 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007348 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007349 !Destructor->doesThisDeclarationHaveABody() &&
7350 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007351 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007352 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007353 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007354
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007355 if (Destructor->isInvalidDecl())
7356 return;
7357
Eli Friedman9a14db32012-10-18 20:14:08 +00007358 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007359
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007360 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007361 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7362 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007363
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007364 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007365 Diag(CurrentLocation, diag::note_member_synthesized_at)
7366 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7367
7368 Destructor->setInvalidDecl();
7369 return;
7370 }
7371
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007372 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007373 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007374 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007375 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007376 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007377
7378 if (ASTMutationListener *L = getASTMutationListener()) {
7379 L->CompletedImplicitDefinition(Destructor);
7380 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007381}
7382
Richard Smitha4156b82012-04-21 18:42:51 +00007383/// \brief Perform any semantic analysis which needs to be delayed until all
7384/// pending class member declarations have been parsed.
7385void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007386 // Perform any deferred checking of exception specifications for virtual
7387 // destructors.
7388 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7389 i != e; ++i) {
7390 const CXXDestructorDecl *Dtor =
7391 DelayedDestructorExceptionSpecChecks[i].first;
7392 assert(!Dtor->getParent()->isDependentType() &&
7393 "Should not ever add destructors of templates into the list.");
7394 CheckOverridingFunctionExceptionSpec(Dtor,
7395 DelayedDestructorExceptionSpecChecks[i].second);
7396 }
7397 DelayedDestructorExceptionSpecChecks.clear();
7398}
7399
Richard Smithb9d0b762012-07-27 04:22:15 +00007400void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7401 CXXDestructorDecl *Destructor) {
7402 assert(getLangOpts().CPlusPlus0x &&
7403 "adjusting dtor exception specs was introduced in c++11");
7404
Sebastian Redl0ee33912011-05-19 05:13:44 +00007405 // C++11 [class.dtor]p3:
7406 // A declaration of a destructor that does not have an exception-
7407 // specification is implicitly considered to have the same exception-
7408 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007409 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007410 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007411 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007412 return;
7413
Chandler Carruth3f224b22011-09-20 04:55:26 +00007414 // Replace the destructor's type, building off the existing one. Fortunately,
7415 // the only thing of interest in the destructor type is its extended info.
7416 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007417 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7418 EPI.ExceptionSpecType = EST_Unevaluated;
7419 EPI.ExceptionSpecDecl = Destructor;
7420 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007421
Sebastian Redl0ee33912011-05-19 05:13:44 +00007422 // FIXME: If the destructor has a body that could throw, and the newly created
7423 // spec doesn't allow exceptions, we should emit a warning, because this
7424 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007425 // However, we don't have a body or an exception specification yet, so it
7426 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007427}
7428
Richard Smith8c889532012-11-14 00:50:40 +00007429/// When generating a defaulted copy or move assignment operator, if a field
7430/// should be copied with __builtin_memcpy rather than via explicit assignments,
7431/// do so. This optimization only applies for arrays of scalars, and for arrays
7432/// of class type where the selected copy/move-assignment operator is trivial.
7433static StmtResult
7434buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7435 Expr *To, Expr *From) {
7436 // Compute the size of the memory buffer to be copied.
7437 QualType SizeType = S.Context.getSizeType();
7438 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7439 S.Context.getTypeSizeInChars(T).getQuantity());
7440
7441 // Take the address of the field references for "from" and "to". We
7442 // directly construct UnaryOperators here because semantic analysis
7443 // does not permit us to take the address of an xvalue.
7444 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7445 S.Context.getPointerType(From->getType()),
7446 VK_RValue, OK_Ordinary, Loc);
7447 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7448 S.Context.getPointerType(To->getType()),
7449 VK_RValue, OK_Ordinary, Loc);
7450
7451 const Type *E = T->getBaseElementTypeUnsafe();
7452 bool NeedsCollectableMemCpy =
7453 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7454
7455 // Create a reference to the __builtin_objc_memmove_collectable function
7456 StringRef MemCpyName = NeedsCollectableMemCpy ?
7457 "__builtin_objc_memmove_collectable" :
7458 "__builtin_memcpy";
7459 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7460 Sema::LookupOrdinaryName);
7461 S.LookupName(R, S.TUScope, true);
7462
7463 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7464 if (!MemCpy)
7465 // Something went horribly wrong earlier, and we will have complained
7466 // about it.
7467 return StmtError();
7468
7469 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7470 VK_RValue, Loc, 0);
7471 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7472
7473 Expr *CallArgs[] = {
7474 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7475 };
7476 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7477 Loc, CallArgs, Loc);
7478
7479 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7480 return S.Owned(Call.takeAs<Stmt>());
7481}
7482
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007483/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007484/// \c To.
7485///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007486/// This routine is used to copy/move the members of a class with an
7487/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007488/// copied are arrays, this routine builds for loops to copy them.
7489///
7490/// \param S The Sema object used for type-checking.
7491///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007492/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007493///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007494/// \param T The type of the expressions being copied/moved. Both expressions
7495/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007496///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007497/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007498///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007499/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007500///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007501/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007502/// Otherwise, it's a non-static member subobject.
7503///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007504/// \param Copying Whether we're copying or moving.
7505///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007506/// \param Depth Internal parameter recording the depth of the recursion.
7507///
Richard Smith8c889532012-11-14 00:50:40 +00007508/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7509/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007510static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007511buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7512 Expr *To, Expr *From,
7513 bool CopyingBaseSubobject, bool Copying,
7514 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007515 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007516 // Each subobject is assigned in the manner appropriate to its type:
7517 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007518 // - if the subobject is of class type, as if by a call to operator= with
7519 // the subobject as the object expression and the corresponding
7520 // subobject of x as a single function argument (as if by explicit
7521 // qualification; that is, ignoring any possible virtual overriding
7522 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00007523 //
7524 // C++03 [class.copy]p13:
7525 // - if the subobject is of class type, the copy assignment operator for
7526 // the class is used (as if by explicit qualification; that is,
7527 // ignoring any possible virtual overriding functions in more derived
7528 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007529 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7530 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00007531
Douglas Gregor06a9f362010-05-01 20:49:11 +00007532 // Look for operator=.
7533 DeclarationName Name
7534 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7535 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7536 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007537
Richard Smith044c8aa2012-11-13 00:54:12 +00007538 // Prior to C++11, filter out any result that isn't a copy/move-assignment
7539 // operator.
7540 if (!S.getLangOpts().CPlusPlus0x) {
7541 LookupResult::Filter F = OpLookup.makeFilter();
7542 while (F.hasNext()) {
7543 NamedDecl *D = F.next();
7544 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
7545 if (Method->isCopyAssignmentOperator() ||
7546 (!Copying && Method->isMoveAssignmentOperator()))
7547 continue;
7548
7549 F.erase();
7550 }
7551 F.done();
John McCallb0207482010-03-16 06:11:48 +00007552 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007553
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007554 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00007555 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007556 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00007557 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007558 // ambiguities), we need to cast "this" to that subobject type; to
7559 // ensure that we don't go through the virtual call mechanism, we need
7560 // to qualify the operator= name with the base class (see below). However,
7561 // this means that if the base class has a protected copy assignment
7562 // operator, the protected member access check will fail. So, we
7563 // rewrite "protected" access to "public" access in this case, since we
7564 // know by construction that we're calling from a derived class.
7565 if (CopyingBaseSubobject) {
7566 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7567 L != LEnd; ++L) {
7568 if (L.getAccess() == AS_protected)
7569 L.setAccess(AS_public);
7570 }
7571 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007572
Douglas Gregor06a9f362010-05-01 20:49:11 +00007573 // Create the nested-name-specifier that will be used to qualify the
7574 // reference to operator=; this is required to suppress the virtual
7575 // call mechanism.
7576 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007577 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00007578 SS.MakeTrivial(S.Context,
7579 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007580 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007581 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00007582
Douglas Gregor06a9f362010-05-01 20:49:11 +00007583 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007584 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00007585 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007586 /*TemplateKWLoc=*/SourceLocation(),
7587 /*FirstQualifierInScope=*/0,
7588 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007589 /*TemplateArgs=*/0,
7590 /*SuppressQualifierCheck=*/true);
7591 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007592 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007593
Douglas Gregor06a9f362010-05-01 20:49:11 +00007594 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007595
Richard Smith044c8aa2012-11-13 00:54:12 +00007596 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007597 OpEqualRef.takeAs<Expr>(),
7598 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007599 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007600 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007601
Richard Smith8c889532012-11-14 00:50:40 +00007602 // If we built a call to a trivial 'operator=' while copying an array,
7603 // bail out. We'll replace the whole shebang with a memcpy.
7604 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
7605 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
7606 return StmtResult((Stmt*)0);
7607
Richard Smith044c8aa2012-11-13 00:54:12 +00007608 // Convert to an expression-statement, and clean up any produced
7609 // temporaries.
7610 return S.ActOnExprStmt(S.MakeFullExpr(Call.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007611 }
John McCallb0207482010-03-16 06:11:48 +00007612
Richard Smith044c8aa2012-11-13 00:54:12 +00007613 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00007614 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00007615 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007616 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007617 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007618 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007619 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007620 return S.ActOnExprStmt(S.MakeFullExpr(Assignment.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007621 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007622
7623 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00007624 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00007625
Douglas Gregor06a9f362010-05-01 20:49:11 +00007626 // Construct a loop over the array bounds, e.g.,
7627 //
7628 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7629 //
7630 // that will copy each of the array elements.
7631 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00007632
Douglas Gregor06a9f362010-05-01 20:49:11 +00007633 // Create the iteration variable.
7634 IdentifierInfo *IterationVarName = 0;
7635 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007636 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007637 llvm::raw_svector_ostream OS(Str);
7638 OS << "__i" << Depth;
7639 IterationVarName = &S.Context.Idents.get(OS.str());
7640 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007641 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007642 IterationVarName, SizeType,
7643 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007644 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00007645
Douglas Gregor06a9f362010-05-01 20:49:11 +00007646 // Initialize the iteration variable to zero.
7647 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007648 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007649
7650 // Create a reference to the iteration variable; we'll use this several
7651 // times throughout.
7652 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007653 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007654 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007655 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7656 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7657
Douglas Gregor06a9f362010-05-01 20:49:11 +00007658 // Create the DeclStmt that holds the iteration variable.
7659 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00007660
Douglas Gregor06a9f362010-05-01 20:49:11 +00007661 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007662 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007663 IterationVarRefRVal,
7664 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007665 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007666 IterationVarRefRVal,
7667 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007668 if (!Copying) // Cast to rvalue
7669 From = CastForMoving(S, From);
7670
7671 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00007672 StmtResult Copy =
7673 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
7674 To, From, CopyingBaseSubobject,
7675 Copying, Depth + 1);
7676 // Bail out if copying fails or if we determined that we should use memcpy.
7677 if (Copy.isInvalid() || !Copy.get())
7678 return Copy;
7679
7680 // Create the comparison against the array bound.
7681 llvm::APInt Upper
7682 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
7683 Expr *Comparison
7684 = new (S.Context) BinaryOperator(IterationVarRefRVal,
7685 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7686 BO_NE, S.Context.BoolTy,
7687 VK_RValue, OK_Ordinary, Loc, false);
7688
7689 // Create the pre-increment of the iteration variable.
7690 Expr *Increment
7691 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7692 VK_LValue, OK_Ordinary, Loc);
7693
Douglas Gregor06a9f362010-05-01 20:49:11 +00007694 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007695 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007696 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007697 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007698 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007699}
7700
Richard Smith8c889532012-11-14 00:50:40 +00007701static StmtResult
7702buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
7703 Expr *To, Expr *From,
7704 bool CopyingBaseSubobject, bool Copying) {
7705 // Maybe we should use a memcpy?
7706 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
7707 T.isTriviallyCopyableType(S.Context))
7708 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7709
7710 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
7711 CopyingBaseSubobject,
7712 Copying, 0));
7713
7714 // If we ended up picking a trivial assignment operator for an array of a
7715 // non-trivially-copyable class type, just emit a memcpy.
7716 if (!Result.isInvalid() && !Result.get())
7717 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7718
7719 return Result;
7720}
7721
Richard Smithb9d0b762012-07-27 04:22:15 +00007722/// Determine whether an implicit copy assignment operator for ClassDecl has a
7723/// const argument.
7724/// FIXME: It ought to be possible to store this on the record.
7725static bool isImplicitCopyAssignmentArgConst(Sema &S,
7726 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007727 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007728 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007729
Douglas Gregord3c35902010-07-01 16:36:15 +00007730 // C++ [class.copy]p10:
7731 // If the class definition does not explicitly declare a copy
7732 // assignment operator, one is declared implicitly.
7733 // The implicitly-defined copy assignment operator for a class X
7734 // will have the form
7735 //
7736 // X& X::operator=(const X&)
7737 //
7738 // if
Douglas Gregord3c35902010-07-01 16:36:15 +00007739 // -- each direct base class B of X has a copy assignment operator
7740 // whose parameter is of type const B&, const volatile B& or B,
7741 // and
7742 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7743 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007744 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007745 // We'll handle this below
Richard Smithb9d0b762012-07-27 04:22:15 +00007746 if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00007747 continue;
7748
Douglas Gregord3c35902010-07-01 16:36:15 +00007749 assert(!Base->getType()->isDependentType() &&
7750 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007751 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007752 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7753 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007754 }
7755
Richard Smithebaf0e62011-10-18 20:49:44 +00007756 // In C++11, the above citation has "or virtual" added
Richard Smithb9d0b762012-07-27 04:22:15 +00007757 if (S.getLangOpts().CPlusPlus0x) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007758 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7759 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007760 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007761 assert(!Base->getType()->isDependentType() &&
7762 "Cannot generate implicit members for class with dependent bases.");
7763 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007764 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7765 false, 0))
7766 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007767 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007768 }
7769
7770 // -- for all the nonstatic data members of X that are of a class
7771 // type M (or array thereof), each such class type has a copy
7772 // assignment operator whose parameter is of type const M&,
7773 // const volatile M& or M.
7774 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7775 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007776 Field != FieldEnd; ++Field) {
7777 QualType FieldType = S.Context.getBaseElementType(Field->getType());
7778 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7779 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7780 false, 0))
7781 return false;
Douglas Gregord3c35902010-07-01 16:36:15 +00007782 }
7783
7784 // Otherwise, the implicitly declared copy assignment operator will
7785 // have the form
7786 //
7787 // X& X::operator=(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00007788
7789 return true;
7790}
7791
7792Sema::ImplicitExceptionSpecification
7793Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7794 CXXRecordDecl *ClassDecl = MD->getParent();
7795
7796 ImplicitExceptionSpecification ExceptSpec(*this);
7797 if (ClassDecl->isInvalidDecl())
7798 return ExceptSpec;
7799
7800 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7801 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7802 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7803
Douglas Gregorb87786f2010-07-01 17:48:08 +00007804 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007805 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007806 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007807
7808 // It is unspecified whether or not an implicit copy assignment operator
7809 // attempts to deduplicate calls to assignment operators of virtual bases are
7810 // made. As such, this exception specification is effectively unspecified.
7811 // Based on a similar decision made for constness in C++0x, we're erring on
7812 // the side of assuming such calls to be made regardless of whether they
7813 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007814 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7815 BaseEnd = ClassDecl->bases_end();
7816 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007817 if (Base->isVirtual())
7818 continue;
7819
Douglas Gregora376d102010-07-02 21:50:04 +00007820 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007821 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007822 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7823 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007824 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007825 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007826
7827 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7828 BaseEnd = ClassDecl->vbases_end();
7829 Base != BaseEnd; ++Base) {
7830 CXXRecordDecl *BaseClassDecl
7831 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7832 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7833 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007834 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007835 }
7836
Douglas Gregorb87786f2010-07-01 17:48:08 +00007837 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7838 FieldEnd = ClassDecl->field_end();
7839 Field != FieldEnd;
7840 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007841 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007842 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7843 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007844 LookupCopyingAssignment(FieldClassDecl,
7845 ArgQuals | FieldType.getCVRQualifiers(),
7846 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007847 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007848 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007849 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007850
Richard Smithb9d0b762012-07-27 04:22:15 +00007851 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007852}
7853
7854CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7855 // Note: The following rules are largely analoguous to the copy
7856 // constructor rules. Note that virtual bases are not taken into account
7857 // for determining the argument type of the operator. Note also that
7858 // operators taking an object instead of a reference are allowed.
7859
Sean Hunt30de05c2011-05-14 05:23:20 +00007860 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7861 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithb9d0b762012-07-27 04:22:15 +00007862 if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
Sean Hunt30de05c2011-05-14 05:23:20 +00007863 ArgType = ArgType.withConst();
7864 ArgType = Context.getLValueReferenceType(ArgType);
7865
Douglas Gregord3c35902010-07-01 16:36:15 +00007866 // An implicitly-declared copy assignment operator is an inline public
7867 // member of its class.
7868 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007869 SourceLocation ClassLoc = ClassDecl->getLocation();
7870 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007871 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007872 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007873 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007874 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007875 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007876 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007877 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007878 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007879 CopyAssignment->setImplicit();
7880 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007881
7882 // Build an exception specification pointing back at this member.
7883 FunctionProtoType::ExtProtoInfo EPI;
7884 EPI.ExceptionSpecType = EST_Unevaluated;
7885 EPI.ExceptionSpecDecl = CopyAssignment;
7886 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7887
Douglas Gregord3c35902010-07-01 16:36:15 +00007888 // Add the parameter to the operator.
7889 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007890 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007891 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007892 SC_None,
7893 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007894 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007895
Douglas Gregora376d102010-07-02 21:50:04 +00007896 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007897 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007898
Douglas Gregor23c94db2010-07-02 17:43:08 +00007899 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007900 PushOnScopeChains(CopyAssignment, S, false);
7901 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007902
Nico Weberafcc96a2012-01-23 03:19:29 +00007903 // C++0x [class.copy]p19:
7904 // .... If the class definition does not explicitly declare a copy
7905 // assignment operator, there is no user-declared move constructor, and
7906 // there is no user-declared move assignment operator, a copy assignment
7907 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007908 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007909 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007910
Douglas Gregord3c35902010-07-01 16:36:15 +00007911 AddOverriddenMethods(ClassDecl, CopyAssignment);
7912 return CopyAssignment;
7913}
7914
Douglas Gregor06a9f362010-05-01 20:49:11 +00007915void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7916 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007917 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007918 CopyAssignOperator->isOverloadedOperator() &&
7919 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007920 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7921 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007922 "DefineImplicitCopyAssignment called for wrong function");
7923
7924 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7925
7926 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7927 CopyAssignOperator->setInvalidDecl();
7928 return;
7929 }
7930
7931 CopyAssignOperator->setUsed();
7932
Eli Friedman9a14db32012-10-18 20:14:08 +00007933 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007934 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007935
7936 // C++0x [class.copy]p30:
7937 // The implicitly-defined or explicitly-defaulted copy assignment operator
7938 // for a non-union class X performs memberwise copy assignment of its
7939 // subobjects. The direct base classes of X are assigned first, in the
7940 // order of their declaration in the base-specifier-list, and then the
7941 // immediate non-static data members of X are assigned, in the order in
7942 // which they were declared in the class definition.
7943
7944 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007945 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007946
7947 // The parameter for the "other" object, which we are copying from.
7948 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7949 Qualifiers OtherQuals = Other->getType().getQualifiers();
7950 QualType OtherRefType = Other->getType();
7951 if (const LValueReferenceType *OtherRef
7952 = OtherRefType->getAs<LValueReferenceType>()) {
7953 OtherRefType = OtherRef->getPointeeType();
7954 OtherQuals = OtherRefType.getQualifiers();
7955 }
7956
7957 // Our location for everything implicitly-generated.
7958 SourceLocation Loc = CopyAssignOperator->getLocation();
7959
7960 // Construct a reference to the "other" object. We'll be using this
7961 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007962 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007963 assert(OtherRef && "Reference to parameter cannot fail!");
7964
7965 // Construct the "this" pointer. We'll be using this throughout the generated
7966 // ASTs.
7967 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7968 assert(This && "Reference to this cannot fail!");
7969
7970 // Assign base classes.
7971 bool Invalid = false;
7972 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7973 E = ClassDecl->bases_end(); Base != E; ++Base) {
7974 // Form the assignment:
7975 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7976 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007977 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007978 Invalid = true;
7979 continue;
7980 }
7981
John McCallf871d0c2010-08-07 06:22:56 +00007982 CXXCastPath BasePath;
7983 BasePath.push_back(Base);
7984
Douglas Gregor06a9f362010-05-01 20:49:11 +00007985 // Construct the "from" expression, which is an implicit cast to the
7986 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007987 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007988 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7989 CK_UncheckedDerivedToBase,
7990 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007991
7992 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007993 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007994
7995 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007996 To = ImpCastExprToType(To.take(),
7997 Context.getCVRQualifiedType(BaseType,
7998 CopyAssignOperator->getTypeQualifiers()),
7999 CK_UncheckedDerivedToBase,
8000 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008001
8002 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00008003 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00008004 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008005 /*CopyingBaseSubobject=*/true,
8006 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008007 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008008 Diag(CurrentLocation, diag::note_member_synthesized_at)
8009 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8010 CopyAssignOperator->setInvalidDecl();
8011 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008012 }
8013
8014 // Success! Record the copy.
8015 Statements.push_back(Copy.takeAs<Expr>());
8016 }
8017
Douglas Gregor06a9f362010-05-01 20:49:11 +00008018 // Assign non-static members.
8019 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8020 FieldEnd = ClassDecl->field_end();
8021 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008022 if (Field->isUnnamedBitfield())
8023 continue;
8024
Douglas Gregor06a9f362010-05-01 20:49:11 +00008025 // Check for members of reference type; we can't copy those.
8026 if (Field->getType()->isReferenceType()) {
8027 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8028 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8029 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008030 Diag(CurrentLocation, diag::note_member_synthesized_at)
8031 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008032 Invalid = true;
8033 continue;
8034 }
8035
8036 // Check for members of const-qualified, non-class type.
8037 QualType BaseType = Context.getBaseElementType(Field->getType());
8038 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8039 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8040 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8041 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008042 Diag(CurrentLocation, diag::note_member_synthesized_at)
8043 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008044 Invalid = true;
8045 continue;
8046 }
John McCallb77115d2011-06-17 00:18:42 +00008047
8048 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008049 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8050 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008051
8052 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008053 if (FieldType->isIncompleteArrayType()) {
8054 assert(ClassDecl->hasFlexibleArrayMember() &&
8055 "Incomplete array type is not valid");
8056 continue;
8057 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008058
8059 // Build references to the field in the object we're copying from and to.
8060 CXXScopeSpec SS; // Intentionally empty
8061 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8062 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008063 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008064 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008065 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008066 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008067 SS, SourceLocation(), 0,
8068 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008069 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008070 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008071 SS, SourceLocation(), 0,
8072 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008073 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8074 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008075
Douglas Gregor06a9f362010-05-01 20:49:11 +00008076 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008077 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008078 To.get(), From.get(),
8079 /*CopyingBaseSubobject=*/false,
8080 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008081 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008082 Diag(CurrentLocation, diag::note_member_synthesized_at)
8083 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8084 CopyAssignOperator->setInvalidDecl();
8085 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008086 }
8087
8088 // Success! Record the copy.
8089 Statements.push_back(Copy.takeAs<Stmt>());
8090 }
8091
8092 if (!Invalid) {
8093 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008094 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008095
John McCall60d7b3a2010-08-24 06:29:42 +00008096 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008097 if (Return.isInvalid())
8098 Invalid = true;
8099 else {
8100 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008101
8102 if (Trap.hasErrorOccurred()) {
8103 Diag(CurrentLocation, diag::note_member_synthesized_at)
8104 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8105 Invalid = true;
8106 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008107 }
8108 }
8109
8110 if (Invalid) {
8111 CopyAssignOperator->setInvalidDecl();
8112 return;
8113 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008114
8115 StmtResult Body;
8116 {
8117 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008118 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008119 /*isStmtExpr=*/false);
8120 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8121 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008122 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008123
8124 if (ASTMutationListener *L = getASTMutationListener()) {
8125 L->CompletedImplicitDefinition(CopyAssignOperator);
8126 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008127}
8128
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008129Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008130Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8131 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008132
Richard Smithb9d0b762012-07-27 04:22:15 +00008133 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008134 if (ClassDecl->isInvalidDecl())
8135 return ExceptSpec;
8136
8137 // C++0x [except.spec]p14:
8138 // An implicitly declared special member function (Clause 12) shall have an
8139 // exception-specification. [...]
8140
8141 // It is unspecified whether or not an implicit move assignment operator
8142 // attempts to deduplicate calls to assignment operators of virtual bases are
8143 // made. As such, this exception specification is effectively unspecified.
8144 // Based on a similar decision made for constness in C++0x, we're erring on
8145 // the side of assuming such calls to be made regardless of whether they
8146 // actually happen.
8147 // Note that a move constructor is not implicitly declared when there are
8148 // virtual bases, but it can still be user-declared and explicitly defaulted.
8149 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8150 BaseEnd = ClassDecl->bases_end();
8151 Base != BaseEnd; ++Base) {
8152 if (Base->isVirtual())
8153 continue;
8154
8155 CXXRecordDecl *BaseClassDecl
8156 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8157 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008158 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008159 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008160 }
8161
8162 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8163 BaseEnd = ClassDecl->vbases_end();
8164 Base != BaseEnd; ++Base) {
8165 CXXRecordDecl *BaseClassDecl
8166 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8167 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008168 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008169 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008170 }
8171
8172 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8173 FieldEnd = ClassDecl->field_end();
8174 Field != FieldEnd;
8175 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008176 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008177 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008178 if (CXXMethodDecl *MoveAssign =
8179 LookupMovingAssignment(FieldClassDecl,
8180 FieldType.getCVRQualifiers(),
8181 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008182 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008183 }
8184 }
8185
8186 return ExceptSpec;
8187}
8188
Richard Smith1c931be2012-04-02 18:40:40 +00008189/// Determine whether the class type has any direct or indirect virtual base
8190/// classes which have a non-trivial move assignment operator.
8191static bool
8192hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8193 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8194 BaseEnd = ClassDecl->vbases_end();
8195 Base != BaseEnd; ++Base) {
8196 CXXRecordDecl *BaseClass =
8197 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8198
8199 // Try to declare the move assignment. If it would be deleted, then the
8200 // class does not have a non-trivial move assignment.
8201 if (BaseClass->needsImplicitMoveAssignment())
8202 S.DeclareImplicitMoveAssignment(BaseClass);
8203
8204 // If the class has both a trivial move assignment and a non-trivial move
8205 // assignment, hasTrivialMoveAssignment() is false.
8206 if (BaseClass->hasDeclaredMoveAssignment() &&
8207 !BaseClass->hasTrivialMoveAssignment())
8208 return true;
8209 }
8210
8211 return false;
8212}
8213
8214/// Determine whether the given type either has a move constructor or is
8215/// trivially copyable.
8216static bool
8217hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8218 Type = S.Context.getBaseElementType(Type);
8219
8220 // FIXME: Technically, non-trivially-copyable non-class types, such as
8221 // reference types, are supposed to return false here, but that appears
8222 // to be a standard defect.
8223 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008224 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008225 return true;
8226
8227 if (Type.isTriviallyCopyableType(S.Context))
8228 return true;
8229
8230 if (IsConstructor) {
8231 if (ClassDecl->needsImplicitMoveConstructor())
8232 S.DeclareImplicitMoveConstructor(ClassDecl);
8233 return ClassDecl->hasDeclaredMoveConstructor();
8234 }
8235
8236 if (ClassDecl->needsImplicitMoveAssignment())
8237 S.DeclareImplicitMoveAssignment(ClassDecl);
8238 return ClassDecl->hasDeclaredMoveAssignment();
8239}
8240
8241/// Determine whether all non-static data members and direct or virtual bases
8242/// of class \p ClassDecl have either a move operation, or are trivially
8243/// copyable.
8244static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8245 bool IsConstructor) {
8246 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8247 BaseEnd = ClassDecl->bases_end();
8248 Base != BaseEnd; ++Base) {
8249 if (Base->isVirtual())
8250 continue;
8251
8252 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8253 return false;
8254 }
8255
8256 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8257 BaseEnd = ClassDecl->vbases_end();
8258 Base != BaseEnd; ++Base) {
8259 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8260 return false;
8261 }
8262
8263 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8264 FieldEnd = ClassDecl->field_end();
8265 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008266 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008267 return false;
8268 }
8269
8270 return true;
8271}
8272
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008273CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008274 // C++11 [class.copy]p20:
8275 // If the definition of a class X does not explicitly declare a move
8276 // assignment operator, one will be implicitly declared as defaulted
8277 // if and only if:
8278 //
8279 // - [first 4 bullets]
8280 assert(ClassDecl->needsImplicitMoveAssignment());
8281
8282 // [Checked after we build the declaration]
8283 // - the move assignment operator would not be implicitly defined as
8284 // deleted,
8285
8286 // [DR1402]:
8287 // - X has no direct or indirect virtual base class with a non-trivial
8288 // move assignment operator, and
8289 // - each of X's non-static data members and direct or virtual base classes
8290 // has a type that either has a move assignment operator or is trivially
8291 // copyable.
8292 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8293 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8294 ClassDecl->setFailedImplicitMoveAssignment();
8295 return 0;
8296 }
8297
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008298 // Note: The following rules are largely analoguous to the move
8299 // constructor rules.
8300
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008301 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8302 QualType RetType = Context.getLValueReferenceType(ArgType);
8303 ArgType = Context.getRValueReferenceType(ArgType);
8304
8305 // An implicitly-declared move assignment operator is an inline public
8306 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008307 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8308 SourceLocation ClassLoc = ClassDecl->getLocation();
8309 DeclarationNameInfo NameInfo(Name, ClassLoc);
8310 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008311 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008312 /*TInfo=*/0, /*isStatic=*/false,
8313 /*StorageClassAsWritten=*/SC_None,
8314 /*isInline=*/true,
8315 /*isConstexpr=*/false,
8316 SourceLocation());
8317 MoveAssignment->setAccess(AS_public);
8318 MoveAssignment->setDefaulted();
8319 MoveAssignment->setImplicit();
8320 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8321
Richard Smithb9d0b762012-07-27 04:22:15 +00008322 // Build an exception specification pointing back at this member.
8323 FunctionProtoType::ExtProtoInfo EPI;
8324 EPI.ExceptionSpecType = EST_Unevaluated;
8325 EPI.ExceptionSpecDecl = MoveAssignment;
8326 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8327
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008328 // Add the parameter to the operator.
8329 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8330 ClassLoc, ClassLoc, /*Id=*/0,
8331 ArgType, /*TInfo=*/0,
8332 SC_None,
8333 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008334 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008335
8336 // Note that we have added this copy-assignment operator.
8337 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8338
8339 // C++0x [class.copy]p9:
8340 // If the definition of a class X does not explicitly declare a move
8341 // assignment operator, one will be implicitly declared as defaulted if and
8342 // only if:
8343 // [...]
8344 // - the move assignment operator would not be implicitly defined as
8345 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008346 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008347 // Cache this result so that we don't try to generate this over and over
8348 // on every lookup, leaking memory and wasting time.
8349 ClassDecl->setFailedImplicitMoveAssignment();
8350 return 0;
8351 }
8352
8353 if (Scope *S = getScopeForContext(ClassDecl))
8354 PushOnScopeChains(MoveAssignment, S, false);
8355 ClassDecl->addDecl(MoveAssignment);
8356
8357 AddOverriddenMethods(ClassDecl, MoveAssignment);
8358 return MoveAssignment;
8359}
8360
8361void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8362 CXXMethodDecl *MoveAssignOperator) {
8363 assert((MoveAssignOperator->isDefaulted() &&
8364 MoveAssignOperator->isOverloadedOperator() &&
8365 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008366 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8367 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008368 "DefineImplicitMoveAssignment called for wrong function");
8369
8370 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8371
8372 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8373 MoveAssignOperator->setInvalidDecl();
8374 return;
8375 }
8376
8377 MoveAssignOperator->setUsed();
8378
Eli Friedman9a14db32012-10-18 20:14:08 +00008379 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008380 DiagnosticErrorTrap Trap(Diags);
8381
8382 // C++0x [class.copy]p28:
8383 // The implicitly-defined or move assignment operator for a non-union class
8384 // X performs memberwise move assignment of its subobjects. The direct base
8385 // classes of X are assigned first, in the order of their declaration in the
8386 // base-specifier-list, and then the immediate non-static data members of X
8387 // are assigned, in the order in which they were declared in the class
8388 // definition.
8389
8390 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008391 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008392
8393 // The parameter for the "other" object, which we are move from.
8394 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8395 QualType OtherRefType = Other->getType()->
8396 getAs<RValueReferenceType>()->getPointeeType();
8397 assert(OtherRefType.getQualifiers() == 0 &&
8398 "Bad argument type of defaulted move assignment");
8399
8400 // Our location for everything implicitly-generated.
8401 SourceLocation Loc = MoveAssignOperator->getLocation();
8402
8403 // Construct a reference to the "other" object. We'll be using this
8404 // throughout the generated ASTs.
8405 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8406 assert(OtherRef && "Reference to parameter cannot fail!");
8407 // Cast to rvalue.
8408 OtherRef = CastForMoving(*this, OtherRef);
8409
8410 // Construct the "this" pointer. We'll be using this throughout the generated
8411 // ASTs.
8412 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8413 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008414
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008415 // Assign base classes.
8416 bool Invalid = false;
8417 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8418 E = ClassDecl->bases_end(); Base != E; ++Base) {
8419 // Form the assignment:
8420 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8421 QualType BaseType = Base->getType().getUnqualifiedType();
8422 if (!BaseType->isRecordType()) {
8423 Invalid = true;
8424 continue;
8425 }
8426
8427 CXXCastPath BasePath;
8428 BasePath.push_back(Base);
8429
8430 // Construct the "from" expression, which is an implicit cast to the
8431 // appropriately-qualified base type.
8432 Expr *From = OtherRef;
8433 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008434 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008435
8436 // Dereference "this".
8437 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8438
8439 // Implicitly cast "this" to the appropriately-qualified base type.
8440 To = ImpCastExprToType(To.take(),
8441 Context.getCVRQualifiedType(BaseType,
8442 MoveAssignOperator->getTypeQualifiers()),
8443 CK_UncheckedDerivedToBase,
8444 VK_LValue, &BasePath);
8445
8446 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008447 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008448 To.get(), From,
8449 /*CopyingBaseSubobject=*/true,
8450 /*Copying=*/false);
8451 if (Move.isInvalid()) {
8452 Diag(CurrentLocation, diag::note_member_synthesized_at)
8453 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8454 MoveAssignOperator->setInvalidDecl();
8455 return;
8456 }
8457
8458 // Success! Record the move.
8459 Statements.push_back(Move.takeAs<Expr>());
8460 }
8461
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008462 // Assign non-static members.
8463 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8464 FieldEnd = ClassDecl->field_end();
8465 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008466 if (Field->isUnnamedBitfield())
8467 continue;
8468
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008469 // Check for members of reference type; we can't move those.
8470 if (Field->getType()->isReferenceType()) {
8471 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8472 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8473 Diag(Field->getLocation(), diag::note_declared_at);
8474 Diag(CurrentLocation, diag::note_member_synthesized_at)
8475 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8476 Invalid = true;
8477 continue;
8478 }
8479
8480 // Check for members of const-qualified, non-class type.
8481 QualType BaseType = Context.getBaseElementType(Field->getType());
8482 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8483 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8484 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8485 Diag(Field->getLocation(), diag::note_declared_at);
8486 Diag(CurrentLocation, diag::note_member_synthesized_at)
8487 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8488 Invalid = true;
8489 continue;
8490 }
8491
8492 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008493 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8494 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008495
8496 QualType FieldType = Field->getType().getNonReferenceType();
8497 if (FieldType->isIncompleteArrayType()) {
8498 assert(ClassDecl->hasFlexibleArrayMember() &&
8499 "Incomplete array type is not valid");
8500 continue;
8501 }
8502
8503 // Build references to the field in the object we're copying from and to.
8504 CXXScopeSpec SS; // Intentionally empty
8505 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8506 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008507 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008508 MemberLookup.resolveKind();
8509 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8510 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008511 SS, SourceLocation(), 0,
8512 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008513 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8514 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008515 SS, SourceLocation(), 0,
8516 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008517 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8518 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8519
8520 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8521 "Member reference with rvalue base must be rvalue except for reference "
8522 "members, which aren't allowed for move assignment.");
8523
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008524 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008525 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008526 To.get(), From.get(),
8527 /*CopyingBaseSubobject=*/false,
8528 /*Copying=*/false);
8529 if (Move.isInvalid()) {
8530 Diag(CurrentLocation, diag::note_member_synthesized_at)
8531 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8532 MoveAssignOperator->setInvalidDecl();
8533 return;
8534 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008535
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008536 // Success! Record the copy.
8537 Statements.push_back(Move.takeAs<Stmt>());
8538 }
8539
8540 if (!Invalid) {
8541 // Add a "return *this;"
8542 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8543
8544 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8545 if (Return.isInvalid())
8546 Invalid = true;
8547 else {
8548 Statements.push_back(Return.takeAs<Stmt>());
8549
8550 if (Trap.hasErrorOccurred()) {
8551 Diag(CurrentLocation, diag::note_member_synthesized_at)
8552 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8553 Invalid = true;
8554 }
8555 }
8556 }
8557
8558 if (Invalid) {
8559 MoveAssignOperator->setInvalidDecl();
8560 return;
8561 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008562
8563 StmtResult Body;
8564 {
8565 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008566 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008567 /*isStmtExpr=*/false);
8568 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8569 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008570 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8571
8572 if (ASTMutationListener *L = getASTMutationListener()) {
8573 L->CompletedImplicitDefinition(MoveAssignOperator);
8574 }
8575}
8576
Richard Smithb9d0b762012-07-27 04:22:15 +00008577/// Determine whether an implicit copy constructor for ClassDecl has a const
8578/// argument.
8579/// FIXME: It ought to be possible to store this on the record.
8580static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008581 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00008582 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008583
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008584 // C++ [class.copy]p5:
8585 // The implicitly-declared copy constructor for a class X will
8586 // have the form
8587 //
8588 // X::X(const X&)
8589 //
8590 // if
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008591 // -- each direct or virtual base class B of X has a copy
8592 // constructor whose first parameter is of type const B& or
8593 // const volatile B&, and
8594 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8595 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008596 Base != BaseEnd; ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008597 // Virtual bases are handled below.
8598 if (Base->isVirtual())
8599 continue;
Richard Smithb9d0b762012-07-27 04:22:15 +00008600
Douglas Gregor22584312010-07-02 23:41:54 +00008601 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008602 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008603 // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8604 // ambiguous, we should still produce a constructor with a const-qualified
8605 // parameter.
8606 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8607 return false;
Douglas Gregor598a8542010-07-01 18:27:03 +00008608 }
8609
8610 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8611 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008612 Base != BaseEnd; ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008613 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008614 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008615 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8616 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008617 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008618
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008619 // -- for all the nonstatic data members of X that are of a
8620 // class type M (or array thereof), each such class type
8621 // has a copy constructor whose first parameter is of type
8622 // const M& or const volatile M&.
8623 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8624 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008625 Field != FieldEnd; ++Field) {
8626 QualType FieldType = S.Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008627 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smithb9d0b762012-07-27 04:22:15 +00008628 if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8629 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008630 }
8631 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008632
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008633 // Otherwise, the implicitly declared copy constructor will have
8634 // the form
8635 //
8636 // X::X(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00008637
8638 return true;
8639}
8640
8641Sema::ImplicitExceptionSpecification
8642Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8643 CXXRecordDecl *ClassDecl = MD->getParent();
8644
8645 ImplicitExceptionSpecification ExceptSpec(*this);
8646 if (ClassDecl->isInvalidDecl())
8647 return ExceptSpec;
8648
8649 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8650 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8651 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8652
Douglas Gregor0d405db2010-07-01 20:59:04 +00008653 // C++ [except.spec]p14:
8654 // An implicitly declared special member function (Clause 12) shall have an
8655 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008656 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8657 BaseEnd = ClassDecl->bases_end();
8658 Base != BaseEnd;
8659 ++Base) {
8660 // Virtual bases are handled below.
8661 if (Base->isVirtual())
8662 continue;
8663
Douglas Gregor22584312010-07-02 23:41:54 +00008664 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008665 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008666 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008667 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008668 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008669 }
8670 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8671 BaseEnd = ClassDecl->vbases_end();
8672 Base != BaseEnd;
8673 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008674 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008675 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008676 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008677 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008678 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008679 }
8680 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8681 FieldEnd = ClassDecl->field_end();
8682 Field != FieldEnd;
8683 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008684 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008685 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8686 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008687 LookupCopyingConstructor(FieldClassDecl,
8688 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008689 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008690 }
8691 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008692
Richard Smithb9d0b762012-07-27 04:22:15 +00008693 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008694}
8695
8696CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8697 CXXRecordDecl *ClassDecl) {
8698 // C++ [class.copy]p4:
8699 // If the class definition does not explicitly declare a copy
8700 // constructor, one is declared implicitly.
8701
Sean Hunt49634cf2011-05-13 06:10:58 +00008702 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8703 QualType ArgType = ClassType;
Richard Smithb9d0b762012-07-27 04:22:15 +00008704 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
Sean Hunt49634cf2011-05-13 06:10:58 +00008705 if (Const)
8706 ArgType = ArgType.withConst();
8707 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008708
Richard Smith7756afa2012-06-10 05:43:50 +00008709 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8710 CXXCopyConstructor,
8711 Const);
8712
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008713 DeclarationName Name
8714 = Context.DeclarationNames.getCXXConstructorName(
8715 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008716 SourceLocation ClassLoc = ClassDecl->getLocation();
8717 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008718
8719 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008720 // member of its class.
8721 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008722 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008723 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008724 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008725 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008726 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008727 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008728
Richard Smithb9d0b762012-07-27 04:22:15 +00008729 // Build an exception specification pointing back at this member.
8730 FunctionProtoType::ExtProtoInfo EPI;
8731 EPI.ExceptionSpecType = EST_Unevaluated;
8732 EPI.ExceptionSpecDecl = CopyConstructor;
8733 CopyConstructor->setType(
8734 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8735
Douglas Gregor22584312010-07-02 23:41:54 +00008736 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008737 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8738
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008739 // Add the parameter to the constructor.
8740 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008741 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008742 /*IdentifierInfo=*/0,
8743 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008744 SC_None,
8745 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008746 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008747
Douglas Gregor23c94db2010-07-02 17:43:08 +00008748 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008749 PushOnScopeChains(CopyConstructor, S, false);
8750 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008751
Nico Weberafcc96a2012-01-23 03:19:29 +00008752 // C++11 [class.copy]p8:
8753 // ... If the class definition does not explicitly declare a copy
8754 // constructor, there is no user-declared move constructor, and there is no
8755 // user-declared move assignment operator, a copy constructor is implicitly
8756 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008757 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008758 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008759
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008760 return CopyConstructor;
8761}
8762
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008763void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008764 CXXConstructorDecl *CopyConstructor) {
8765 assert((CopyConstructor->isDefaulted() &&
8766 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008767 !CopyConstructor->doesThisDeclarationHaveABody() &&
8768 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008769 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008770
Anders Carlsson63010a72010-04-23 16:24:12 +00008771 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008772 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008773
Eli Friedman9a14db32012-10-18 20:14:08 +00008774 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008775 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008776
Sean Huntcbb67482011-01-08 20:30:50 +00008777 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008778 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008779 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008780 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008781 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008782 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008783 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008784 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8785 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008786 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008787 /*isStmtExpr=*/false)
8788 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008789 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008790 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008791
8792 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008793 if (ASTMutationListener *L = getASTMutationListener()) {
8794 L->CompletedImplicitDefinition(CopyConstructor);
8795 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008796}
8797
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008798Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008799Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8800 CXXRecordDecl *ClassDecl = MD->getParent();
8801
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008802 // C++ [except.spec]p14:
8803 // An implicitly declared special member function (Clause 12) shall have an
8804 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008805 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008806 if (ClassDecl->isInvalidDecl())
8807 return ExceptSpec;
8808
8809 // Direct base-class constructors.
8810 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8811 BEnd = ClassDecl->bases_end();
8812 B != BEnd; ++B) {
8813 if (B->isVirtual()) // Handled below.
8814 continue;
8815
8816 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8817 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008818 CXXConstructorDecl *Constructor =
8819 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008820 // If this is a deleted function, add it anyway. This might be conformant
8821 // with the standard. This might not. I'm not sure. It might not matter.
8822 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008823 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008824 }
8825 }
8826
8827 // Virtual base-class constructors.
8828 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8829 BEnd = ClassDecl->vbases_end();
8830 B != BEnd; ++B) {
8831 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8832 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008833 CXXConstructorDecl *Constructor =
8834 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008835 // If this is a deleted function, add it anyway. This might be conformant
8836 // with the standard. This might not. I'm not sure. It might not matter.
8837 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008838 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008839 }
8840 }
8841
8842 // Field constructors.
8843 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8844 FEnd = ClassDecl->field_end();
8845 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008846 QualType FieldType = Context.getBaseElementType(F->getType());
8847 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8848 CXXConstructorDecl *Constructor =
8849 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008850 // If this is a deleted function, add it anyway. This might be conformant
8851 // with the standard. This might not. I'm not sure. It might not matter.
8852 // In particular, the problem is that this function never gets called. It
8853 // might just be ill-formed because this function attempts to refer to
8854 // a deleted function here.
8855 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008856 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008857 }
8858 }
8859
8860 return ExceptSpec;
8861}
8862
8863CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8864 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008865 // C++11 [class.copy]p9:
8866 // If the definition of a class X does not explicitly declare a move
8867 // constructor, one will be implicitly declared as defaulted if and only if:
8868 //
8869 // - [first 4 bullets]
8870 assert(ClassDecl->needsImplicitMoveConstructor());
8871
8872 // [Checked after we build the declaration]
8873 // - the move assignment operator would not be implicitly defined as
8874 // deleted,
8875
8876 // [DR1402]:
8877 // - each of X's non-static data members and direct or virtual base classes
8878 // has a type that either has a move constructor or is trivially copyable.
8879 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8880 ClassDecl->setFailedImplicitMoveConstructor();
8881 return 0;
8882 }
8883
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008884 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8885 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008886
Richard Smith7756afa2012-06-10 05:43:50 +00008887 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8888 CXXMoveConstructor,
8889 false);
8890
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008891 DeclarationName Name
8892 = Context.DeclarationNames.getCXXConstructorName(
8893 Context.getCanonicalType(ClassType));
8894 SourceLocation ClassLoc = ClassDecl->getLocation();
8895 DeclarationNameInfo NameInfo(Name, ClassLoc);
8896
8897 // C++0x [class.copy]p11:
8898 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008899 // member of its class.
8900 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008901 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008902 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008903 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008904 MoveConstructor->setAccess(AS_public);
8905 MoveConstructor->setDefaulted();
8906 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008907
Richard Smithb9d0b762012-07-27 04:22:15 +00008908 // Build an exception specification pointing back at this member.
8909 FunctionProtoType::ExtProtoInfo EPI;
8910 EPI.ExceptionSpecType = EST_Unevaluated;
8911 EPI.ExceptionSpecDecl = MoveConstructor;
8912 MoveConstructor->setType(
8913 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8914
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008915 // Add the parameter to the constructor.
8916 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8917 ClassLoc, ClassLoc,
8918 /*IdentifierInfo=*/0,
8919 ArgType, /*TInfo=*/0,
8920 SC_None,
8921 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008922 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008923
8924 // C++0x [class.copy]p9:
8925 // If the definition of a class X does not explicitly declare a move
8926 // constructor, one will be implicitly declared as defaulted if and only if:
8927 // [...]
8928 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008929 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008930 // Cache this result so that we don't try to generate this over and over
8931 // on every lookup, leaking memory and wasting time.
8932 ClassDecl->setFailedImplicitMoveConstructor();
8933 return 0;
8934 }
8935
8936 // Note that we have declared this constructor.
8937 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8938
8939 if (Scope *S = getScopeForContext(ClassDecl))
8940 PushOnScopeChains(MoveConstructor, S, false);
8941 ClassDecl->addDecl(MoveConstructor);
8942
8943 return MoveConstructor;
8944}
8945
8946void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8947 CXXConstructorDecl *MoveConstructor) {
8948 assert((MoveConstructor->isDefaulted() &&
8949 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008950 !MoveConstructor->doesThisDeclarationHaveABody() &&
8951 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008952 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8953
8954 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8955 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8956
Eli Friedman9a14db32012-10-18 20:14:08 +00008957 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008958 DiagnosticErrorTrap Trap(Diags);
8959
8960 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8961 Trap.hasErrorOccurred()) {
8962 Diag(CurrentLocation, diag::note_member_synthesized_at)
8963 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8964 MoveConstructor->setInvalidDecl();
8965 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008966 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008967 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8968 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008969 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008970 /*isStmtExpr=*/false)
8971 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008972 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008973 }
8974
8975 MoveConstructor->setUsed();
8976
8977 if (ASTMutationListener *L = getASTMutationListener()) {
8978 L->CompletedImplicitDefinition(MoveConstructor);
8979 }
8980}
8981
Douglas Gregore4e68d42012-02-15 19:33:52 +00008982bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8983 return FD->isDeleted() &&
8984 (FD->isDefaulted() || FD->isImplicit()) &&
8985 isa<CXXMethodDecl>(FD);
8986}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008987
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008988/// \brief Mark the call operator of the given lambda closure type as "used".
8989static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8990 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008991 = cast<CXXMethodDecl>(
8992 *Lambda->lookup(
8993 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008994 CallOperator->setReferenced();
8995 CallOperator->setUsed();
8996}
8997
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008998void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8999 SourceLocation CurrentLocation,
9000 CXXConversionDecl *Conv)
9001{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009002 CXXRecordDecl *Lambda = Conv->getParent();
9003
9004 // Make sure that the lambda call operator is marked used.
9005 markLambdaCallOperatorUsed(*this, Lambda);
9006
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009007 Conv->setUsed();
9008
Eli Friedman9a14db32012-10-18 20:14:08 +00009009 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009010 DiagnosticErrorTrap Trap(Diags);
9011
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009012 // Return the address of the __invoke function.
9013 DeclarationName InvokeName = &Context.Idents.get("__invoke");
9014 CXXMethodDecl *Invoke
9015 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
9016 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9017 VK_LValue, Conv->getLocation()).take();
9018 assert(FunctionRef && "Can't refer to __invoke function?");
9019 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
9020 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
9021 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009022 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009023
9024 // Fill in the __invoke function with a dummy implementation. IR generation
9025 // will fill in the actual details.
9026 Invoke->setUsed();
9027 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009028 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009029
9030 if (ASTMutationListener *L = getASTMutationListener()) {
9031 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009032 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009033 }
9034}
9035
9036void Sema::DefineImplicitLambdaToBlockPointerConversion(
9037 SourceLocation CurrentLocation,
9038 CXXConversionDecl *Conv)
9039{
9040 Conv->setUsed();
9041
Eli Friedman9a14db32012-10-18 20:14:08 +00009042 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009043 DiagnosticErrorTrap Trap(Diags);
9044
Douglas Gregorac1303e2012-02-22 05:02:47 +00009045 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009046 Expr *This = ActOnCXXThis(CurrentLocation).take();
9047 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009048
Eli Friedman23f02672012-03-01 04:01:32 +00009049 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9050 Conv->getLocation(),
9051 Conv, DerefThis);
9052
9053 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9054 // behavior. Note that only the general conversion function does this
9055 // (since it's unusable otherwise); in the case where we inline the
9056 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009057 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00009058 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9059 CK_CopyAndAutoreleaseBlockObject,
9060 BuildBlock.get(), 0, VK_RValue);
9061
9062 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009063 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009064 Conv->setInvalidDecl();
9065 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009066 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009067
Douglas Gregorac1303e2012-02-22 05:02:47 +00009068 // Create the return statement that returns the block from the conversion
9069 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009070 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009071 if (Return.isInvalid()) {
9072 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9073 Conv->setInvalidDecl();
9074 return;
9075 }
9076
9077 // Set the body of the conversion function.
9078 Stmt *ReturnS = Return.take();
9079 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9080 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009081 Conv->getLocation()));
9082
Douglas Gregorac1303e2012-02-22 05:02:47 +00009083 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009084 if (ASTMutationListener *L = getASTMutationListener()) {
9085 L->CompletedImplicitDefinition(Conv);
9086 }
9087}
9088
Douglas Gregorf52757d2012-03-10 06:53:13 +00009089/// \brief Determine whether the given list arguments contains exactly one
9090/// "real" (non-default) argument.
9091static bool hasOneRealArgument(MultiExprArg Args) {
9092 switch (Args.size()) {
9093 case 0:
9094 return false;
9095
9096 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009097 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009098 return false;
9099
9100 // fall through
9101 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009102 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009103 }
9104
9105 return false;
9106}
9107
John McCall60d7b3a2010-08-24 06:29:42 +00009108ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009109Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009110 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009111 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009112 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009113 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009114 unsigned ConstructKind,
9115 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009116 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009117
Douglas Gregor2f599792010-04-02 18:24:57 +00009118 // C++0x [class.copy]p34:
9119 // When certain criteria are met, an implementation is allowed to
9120 // omit the copy/move construction of a class object, even if the
9121 // copy/move constructor and/or destructor for the object have
9122 // side effects. [...]
9123 // - when a temporary class object that has not been bound to a
9124 // reference (12.2) would be copied/moved to a class object
9125 // with the same cv-unqualified type, the copy/move operation
9126 // can be omitted by constructing the temporary object
9127 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009128 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009129 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009130 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009131 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009132 }
Mike Stump1eb44332009-09-09 15:08:12 +00009133
9134 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009135 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009136 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009137}
9138
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009139/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9140/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009141ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009142Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9143 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009144 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009145 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009146 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009147 unsigned ConstructKind,
9148 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009149 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009150 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009151 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009152 HadMultipleCandidates, /*FIXME*/false,
9153 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009154 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9155 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009156}
9157
Mike Stump1eb44332009-09-09 15:08:12 +00009158bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009159 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009160 MultiExprArg Exprs,
9161 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009162 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009163 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009164 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009165 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009166 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009167 if (TempResult.isInvalid())
9168 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009169
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009170 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009171 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009172 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009173 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009174 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009175
Anders Carlssonfe2de492009-08-25 05:18:00 +00009176 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009177}
9178
John McCall68c6c9a2010-02-02 09:10:11 +00009179void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009180 if (VD->isInvalidDecl()) return;
9181
John McCall68c6c9a2010-02-02 09:10:11 +00009182 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009183 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009184 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009185 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009186
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009187 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009188 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009189 CheckDestructorAccess(VD->getLocation(), Destructor,
9190 PDiag(diag::err_access_dtor_var)
9191 << VD->getDeclName()
9192 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009193 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009194
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009195 if (!VD->hasGlobalStorage()) return;
9196
9197 // Emit warning for non-trivial dtor in global scope (a real global,
9198 // class-static, function-static).
9199 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9200
9201 // TODO: this should be re-enabled for static locals by !CXAAtExit
9202 if (!VD->isStaticLocal())
9203 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009204}
9205
Douglas Gregor39da0b82009-09-09 23:08:42 +00009206/// \brief Given a constructor and the set of arguments provided for the
9207/// constructor, convert the arguments and add any required default arguments
9208/// to form a proper call to this constructor.
9209///
9210/// \returns true if an error occurred, false otherwise.
9211bool
9212Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9213 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009214 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009215 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009216 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009217 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9218 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009219 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009220
9221 const FunctionProtoType *Proto
9222 = Constructor->getType()->getAs<FunctionProtoType>();
9223 assert(Proto && "Constructor without a prototype?");
9224 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009225
9226 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009227 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009228 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009229 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009230 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009231
9232 VariadicCallType CallType =
9233 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009234 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009235 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9236 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009237 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009238 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009239
9240 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9241
Richard Smith831421f2012-06-25 20:30:08 +00009242 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9243 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009244
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009245 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009246}
9247
Anders Carlsson20d45d22009-12-12 00:32:00 +00009248static inline bool
9249CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9250 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009251 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009252 if (isa<NamespaceDecl>(DC)) {
9253 return SemaRef.Diag(FnDecl->getLocation(),
9254 diag::err_operator_new_delete_declared_in_namespace)
9255 << FnDecl->getDeclName();
9256 }
9257
9258 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009259 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009260 return SemaRef.Diag(FnDecl->getLocation(),
9261 diag::err_operator_new_delete_declared_static)
9262 << FnDecl->getDeclName();
9263 }
9264
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009265 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009266}
9267
Anders Carlsson156c78e2009-12-13 17:53:43 +00009268static inline bool
9269CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9270 CanQualType ExpectedResultType,
9271 CanQualType ExpectedFirstParamType,
9272 unsigned DependentParamTypeDiag,
9273 unsigned InvalidParamTypeDiag) {
9274 QualType ResultType =
9275 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9276
9277 // Check that the result type is not dependent.
9278 if (ResultType->isDependentType())
9279 return SemaRef.Diag(FnDecl->getLocation(),
9280 diag::err_operator_new_delete_dependent_result_type)
9281 << FnDecl->getDeclName() << ExpectedResultType;
9282
9283 // Check that the result type is what we expect.
9284 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9285 return SemaRef.Diag(FnDecl->getLocation(),
9286 diag::err_operator_new_delete_invalid_result_type)
9287 << FnDecl->getDeclName() << ExpectedResultType;
9288
9289 // A function template must have at least 2 parameters.
9290 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9291 return SemaRef.Diag(FnDecl->getLocation(),
9292 diag::err_operator_new_delete_template_too_few_parameters)
9293 << FnDecl->getDeclName();
9294
9295 // The function decl must have at least 1 parameter.
9296 if (FnDecl->getNumParams() == 0)
9297 return SemaRef.Diag(FnDecl->getLocation(),
9298 diag::err_operator_new_delete_too_few_parameters)
9299 << FnDecl->getDeclName();
9300
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009301 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009302 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9303 if (FirstParamType->isDependentType())
9304 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9305 << FnDecl->getDeclName() << ExpectedFirstParamType;
9306
9307 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009308 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009309 ExpectedFirstParamType)
9310 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9311 << FnDecl->getDeclName() << ExpectedFirstParamType;
9312
9313 return false;
9314}
9315
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009316static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009317CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009318 // C++ [basic.stc.dynamic.allocation]p1:
9319 // A program is ill-formed if an allocation function is declared in a
9320 // namespace scope other than global scope or declared static in global
9321 // scope.
9322 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9323 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009324
9325 CanQualType SizeTy =
9326 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9327
9328 // C++ [basic.stc.dynamic.allocation]p1:
9329 // The return type shall be void*. The first parameter shall have type
9330 // std::size_t.
9331 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9332 SizeTy,
9333 diag::err_operator_new_dependent_param_type,
9334 diag::err_operator_new_param_type))
9335 return true;
9336
9337 // C++ [basic.stc.dynamic.allocation]p1:
9338 // The first parameter shall not have an associated default argument.
9339 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009340 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009341 diag::err_operator_new_default_arg)
9342 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9343
9344 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009345}
9346
9347static bool
Richard Smith444d3842012-10-20 08:26:51 +00009348CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009349 // C++ [basic.stc.dynamic.deallocation]p1:
9350 // A program is ill-formed if deallocation functions are declared in a
9351 // namespace scope other than global scope or declared static in global
9352 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009353 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9354 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009355
9356 // C++ [basic.stc.dynamic.deallocation]p2:
9357 // Each deallocation function shall return void and its first parameter
9358 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009359 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9360 SemaRef.Context.VoidPtrTy,
9361 diag::err_operator_delete_dependent_param_type,
9362 diag::err_operator_delete_param_type))
9363 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009364
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009365 return false;
9366}
9367
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009368/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9369/// of this overloaded operator is well-formed. If so, returns false;
9370/// otherwise, emits appropriate diagnostics and returns true.
9371bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009372 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009373 "Expected an overloaded operator declaration");
9374
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009375 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9376
Mike Stump1eb44332009-09-09 15:08:12 +00009377 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009378 // The allocation and deallocation functions, operator new,
9379 // operator new[], operator delete and operator delete[], are
9380 // described completely in 3.7.3. The attributes and restrictions
9381 // found in the rest of this subclause do not apply to them unless
9382 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009383 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009384 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009385
Anders Carlssona3ccda52009-12-12 00:26:23 +00009386 if (Op == OO_New || Op == OO_Array_New)
9387 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009388
9389 // C++ [over.oper]p6:
9390 // An operator function shall either be a non-static member
9391 // function or be a non-member function and have at least one
9392 // parameter whose type is a class, a reference to a class, an
9393 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009394 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9395 if (MethodDecl->isStatic())
9396 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009397 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009398 } else {
9399 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009400 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9401 ParamEnd = FnDecl->param_end();
9402 Param != ParamEnd; ++Param) {
9403 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009404 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9405 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009406 ClassOrEnumParam = true;
9407 break;
9408 }
9409 }
9410
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009411 if (!ClassOrEnumParam)
9412 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009413 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009414 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009415 }
9416
9417 // C++ [over.oper]p8:
9418 // An operator function cannot have default arguments (8.3.6),
9419 // except where explicitly stated below.
9420 //
Mike Stump1eb44332009-09-09 15:08:12 +00009421 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009422 // (C++ [over.call]p1).
9423 if (Op != OO_Call) {
9424 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9425 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009426 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009427 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009428 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009429 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009430 }
9431 }
9432
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009433 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9434 { false, false, false }
9435#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9436 , { Unary, Binary, MemberOnly }
9437#include "clang/Basic/OperatorKinds.def"
9438 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009439
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009440 bool CanBeUnaryOperator = OperatorUses[Op][0];
9441 bool CanBeBinaryOperator = OperatorUses[Op][1];
9442 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009443
9444 // C++ [over.oper]p8:
9445 // [...] Operator functions cannot have more or fewer parameters
9446 // than the number required for the corresponding operator, as
9447 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009448 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009449 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009450 if (Op != OO_Call &&
9451 ((NumParams == 1 && !CanBeUnaryOperator) ||
9452 (NumParams == 2 && !CanBeBinaryOperator) ||
9453 (NumParams < 1) || (NumParams > 2))) {
9454 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009455 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009456 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009457 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009458 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009459 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009460 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009461 assert(CanBeBinaryOperator &&
9462 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009463 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009464 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009465
Chris Lattner416e46f2008-11-21 07:57:12 +00009466 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009467 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009468 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009469
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009470 // Overloaded operators other than operator() cannot be variadic.
9471 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009472 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009473 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009474 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009475 }
9476
9477 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009478 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9479 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009480 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009481 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009482 }
9483
9484 // C++ [over.inc]p1:
9485 // The user-defined function called operator++ implements the
9486 // prefix and postfix ++ operator. If this function is a member
9487 // function with no parameters, or a non-member function with one
9488 // parameter of class or enumeration type, it defines the prefix
9489 // increment operator ++ for objects of that type. If the function
9490 // is a member function with one parameter (which shall be of type
9491 // int) or a non-member function with two parameters (the second
9492 // of which shall be of type int), it defines the postfix
9493 // increment operator ++ for objects of that type.
9494 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9495 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9496 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009497 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009498 ParamIsInt = BT->getKind() == BuiltinType::Int;
9499
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009500 if (!ParamIsInt)
9501 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009502 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009503 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009504 }
9505
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009506 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009507}
Chris Lattner5a003a42008-12-17 07:09:26 +00009508
Sean Hunta6c058d2010-01-13 09:01:02 +00009509/// CheckLiteralOperatorDeclaration - Check whether the declaration
9510/// of this literal operator function is well-formed. If so, returns
9511/// false; otherwise, emits appropriate diagnostics and returns true.
9512bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009513 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009514 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9515 << FnDecl->getDeclName();
9516 return true;
9517 }
9518
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009519 if (FnDecl->isExternC()) {
9520 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9521 return true;
9522 }
9523
Sean Hunta6c058d2010-01-13 09:01:02 +00009524 bool Valid = false;
9525
Richard Smith36f5cfe2012-03-09 08:00:36 +00009526 // This might be the definition of a literal operator template.
9527 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9528 // This might be a specialization of a literal operator template.
9529 if (!TpDecl)
9530 TpDecl = FnDecl->getPrimaryTemplate();
9531
Sean Hunt216c2782010-04-07 23:11:06 +00009532 // template <char...> type operator "" name() is the only valid template
9533 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009534 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009535 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009536 // Must have only one template parameter
9537 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9538 if (Params->size() == 1) {
9539 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009540 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009541
Sean Hunt216c2782010-04-07 23:11:06 +00009542 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009543 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9544 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9545 Valid = true;
9546 }
9547 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009548 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009549 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009550 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9551
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009552 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009553
Sean Hunt30019c02010-04-07 22:57:35 +00009554 // unsigned long long int, long double, and any character type are allowed
9555 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009556 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9557 Context.hasSameType(T, Context.LongDoubleTy) ||
9558 Context.hasSameType(T, Context.CharTy) ||
9559 Context.hasSameType(T, Context.WCharTy) ||
9560 Context.hasSameType(T, Context.Char16Ty) ||
9561 Context.hasSameType(T, Context.Char32Ty)) {
9562 if (++Param == FnDecl->param_end())
9563 Valid = true;
9564 goto FinishedParams;
9565 }
9566
Sean Hunt30019c02010-04-07 22:57:35 +00009567 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009568 const PointerType *PT = T->getAs<PointerType>();
9569 if (!PT)
9570 goto FinishedParams;
9571 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009572 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009573 goto FinishedParams;
9574 T = T.getUnqualifiedType();
9575
9576 // Move on to the second parameter;
9577 ++Param;
9578
9579 // If there is no second parameter, the first must be a const char *
9580 if (Param == FnDecl->param_end()) {
9581 if (Context.hasSameType(T, Context.CharTy))
9582 Valid = true;
9583 goto FinishedParams;
9584 }
9585
9586 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9587 // are allowed as the first parameter to a two-parameter function
9588 if (!(Context.hasSameType(T, Context.CharTy) ||
9589 Context.hasSameType(T, Context.WCharTy) ||
9590 Context.hasSameType(T, Context.Char16Ty) ||
9591 Context.hasSameType(T, Context.Char32Ty)))
9592 goto FinishedParams;
9593
9594 // The second and final parameter must be an std::size_t
9595 T = (*Param)->getType().getUnqualifiedType();
9596 if (Context.hasSameType(T, Context.getSizeType()) &&
9597 ++Param == FnDecl->param_end())
9598 Valid = true;
9599 }
9600
9601 // FIXME: This diagnostic is absolutely terrible.
9602FinishedParams:
9603 if (!Valid) {
9604 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9605 << FnDecl->getDeclName();
9606 return true;
9607 }
9608
Richard Smitha9e88b22012-03-09 08:16:22 +00009609 // A parameter-declaration-clause containing a default argument is not
9610 // equivalent to any of the permitted forms.
9611 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9612 ParamEnd = FnDecl->param_end();
9613 Param != ParamEnd; ++Param) {
9614 if ((*Param)->hasDefaultArg()) {
9615 Diag((*Param)->getDefaultArgRange().getBegin(),
9616 diag::err_literal_operator_default_argument)
9617 << (*Param)->getDefaultArgRange();
9618 break;
9619 }
9620 }
9621
Richard Smith2fb4ae32012-03-08 02:39:21 +00009622 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009623 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9624 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009625 // C++11 [usrlit.suffix]p1:
9626 // Literal suffix identifiers that do not start with an underscore
9627 // are reserved for future standardization.
9628 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009629 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009630
Sean Hunta6c058d2010-01-13 09:01:02 +00009631 return false;
9632}
9633
Douglas Gregor074149e2009-01-05 19:45:36 +00009634/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9635/// linkage specification, including the language and (if present)
9636/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9637/// the location of the language string literal, which is provided
9638/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9639/// the '{' brace. Otherwise, this linkage specification does not
9640/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009641Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9642 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009643 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009644 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009645 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009646 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009647 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009648 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009649 Language = LinkageSpecDecl::lang_cxx;
9650 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009651 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009652 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009653 }
Mike Stump1eb44332009-09-09 15:08:12 +00009654
Chris Lattnercc98eac2008-12-17 07:13:27 +00009655 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009656
Douglas Gregor074149e2009-01-05 19:45:36 +00009657 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009658 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009659 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009660 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009661 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009662}
9663
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009664/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009665/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9666/// valid, it's the position of the closing '}' brace in a linkage
9667/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009668Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009669 Decl *LinkageSpec,
9670 SourceLocation RBraceLoc) {
9671 if (LinkageSpec) {
9672 if (RBraceLoc.isValid()) {
9673 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9674 LSDecl->setRBraceLoc(RBraceLoc);
9675 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009676 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009677 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009678 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009679}
9680
Douglas Gregord308e622009-05-18 20:51:54 +00009681/// \brief Perform semantic analysis for the variable declaration that
9682/// occurs within a C++ catch clause, returning the newly-created
9683/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009684VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009685 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009686 SourceLocation StartLoc,
9687 SourceLocation Loc,
9688 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009689 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009690 QualType ExDeclType = TInfo->getType();
9691
Sebastian Redl4b07b292008-12-22 19:15:10 +00009692 // Arrays and functions decay.
9693 if (ExDeclType->isArrayType())
9694 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9695 else if (ExDeclType->isFunctionType())
9696 ExDeclType = Context.getPointerType(ExDeclType);
9697
9698 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9699 // The exception-declaration shall not denote a pointer or reference to an
9700 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009701 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009702 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009703 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009704 Invalid = true;
9705 }
Douglas Gregord308e622009-05-18 20:51:54 +00009706
Sebastian Redl4b07b292008-12-22 19:15:10 +00009707 QualType BaseType = ExDeclType;
9708 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009709 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009710 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009711 BaseType = Ptr->getPointeeType();
9712 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009713 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009714 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009715 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009716 BaseType = Ref->getPointeeType();
9717 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009718 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009719 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009720 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009721 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009722 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009723
Mike Stump1eb44332009-09-09 15:08:12 +00009724 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009725 RequireNonAbstractType(Loc, ExDeclType,
9726 diag::err_abstract_type_in_decl,
9727 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009728 Invalid = true;
9729
John McCall5a180392010-07-24 00:37:23 +00009730 // Only the non-fragile NeXT runtime currently supports C++ catches
9731 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009732 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009733 QualType T = ExDeclType;
9734 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9735 T = RT->getPointeeType();
9736
9737 if (T->isObjCObjectType()) {
9738 Diag(Loc, diag::err_objc_object_catch);
9739 Invalid = true;
9740 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009741 // FIXME: should this be a test for macosx-fragile specifically?
9742 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009743 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009744 }
9745 }
9746
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009747 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9748 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009749 ExDecl->setExceptionVariable(true);
9750
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009751 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009752 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009753 Invalid = true;
9754
Douglas Gregorc41b8782011-07-06 18:14:43 +00009755 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009756 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009757 // C++ [except.handle]p16:
9758 // The object declared in an exception-declaration or, if the
9759 // exception-declaration does not specify a name, a temporary (12.2) is
9760 // copy-initialized (8.5) from the exception object. [...]
9761 // The object is destroyed when the handler exits, after the destruction
9762 // of any automatic objects initialized within the handler.
9763 //
9764 // We just pretend to initialize the object with itself, then make sure
9765 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009766 QualType initType = ExDeclType;
9767
9768 InitializedEntity entity =
9769 InitializedEntity::InitializeVariable(ExDecl);
9770 InitializationKind initKind =
9771 InitializationKind::CreateCopy(Loc, SourceLocation());
9772
9773 Expr *opaqueValue =
9774 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9775 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9776 ExprResult result = sequence.Perform(*this, entity, initKind,
9777 MultiExprArg(&opaqueValue, 1));
9778 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009779 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009780 else {
9781 // If the constructor used was non-trivial, set this as the
9782 // "initializer".
9783 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9784 if (!construct->getConstructor()->isTrivial()) {
9785 Expr *init = MaybeCreateExprWithCleanups(construct);
9786 ExDecl->setInit(init);
9787 }
9788
9789 // And make sure it's destructable.
9790 FinalizeVarWithDestructor(ExDecl, recordType);
9791 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009792 }
9793 }
9794
Douglas Gregord308e622009-05-18 20:51:54 +00009795 if (Invalid)
9796 ExDecl->setInvalidDecl();
9797
9798 return ExDecl;
9799}
9800
9801/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9802/// handler.
John McCalld226f652010-08-21 09:40:31 +00009803Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009804 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009805 bool Invalid = D.isInvalidType();
9806
9807 // Check for unexpanded parameter packs.
9808 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9809 UPPC_ExceptionType)) {
9810 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9811 D.getIdentifierLoc());
9812 Invalid = true;
9813 }
9814
Sebastian Redl4b07b292008-12-22 19:15:10 +00009815 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009816 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009817 LookupOrdinaryName,
9818 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009819 // The scope should be freshly made just for us. There is just no way
9820 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009821 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009822 if (PrevDecl->isTemplateParameter()) {
9823 // Maybe we will complain about the shadowed template parameter.
9824 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009825 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009826 }
9827 }
9828
Chris Lattnereaaebc72009-04-25 08:06:05 +00009829 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009830 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9831 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009832 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009833 }
9834
Douglas Gregor83cb9422010-09-09 17:09:21 +00009835 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009836 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009837 D.getIdentifierLoc(),
9838 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009839 if (Invalid)
9840 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009841
Sebastian Redl4b07b292008-12-22 19:15:10 +00009842 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009843 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009844 PushOnScopeChains(ExDecl, S);
9845 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009846 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009847
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009848 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009849 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009850}
Anders Carlssonfb311762009-03-14 00:25:26 +00009851
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009852Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009853 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009854 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009855 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009856 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009857
Richard Smithe3f470a2012-07-11 22:37:56 +00009858 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9859 return 0;
9860
9861 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9862 AssertMessage, RParenLoc, false);
9863}
9864
9865Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9866 Expr *AssertExpr,
9867 StringLiteral *AssertMessage,
9868 SourceLocation RParenLoc,
9869 bool Failed) {
9870 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9871 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009872 // In a static_assert-declaration, the constant-expression shall be a
9873 // constant expression that can be contextually converted to bool.
9874 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9875 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009876 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009877
Richard Smithdaaefc52011-12-14 23:32:26 +00009878 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009879 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009880 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009881 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009882 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009883
Richard Smithe3f470a2012-07-11 22:37:56 +00009884 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009885 llvm::SmallString<256> MsgBuffer;
9886 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009887 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009888 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009889 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009890 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009891 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009892 }
Mike Stump1eb44332009-09-09 15:08:12 +00009893
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009894 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009895 AssertExpr, AssertMessage, RParenLoc,
9896 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009897
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009898 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009899 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009900}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009901
Douglas Gregor1d869352010-04-07 16:53:43 +00009902/// \brief Perform semantic analysis of the given friend type declaration.
9903///
9904/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +00009905FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +00009906 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009907 TypeSourceInfo *TSInfo) {
9908 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9909
9910 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009911 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009912
Richard Smith6b130222011-10-18 21:39:00 +00009913 // C++03 [class.friend]p2:
9914 // An elaborated-type-specifier shall be used in a friend declaration
9915 // for a class.*
9916 //
9917 // * The class-key of the elaborated-type-specifier is required.
9918 if (!ActiveTemplateInstantiations.empty()) {
9919 // Do not complain about the form of friend template types during
9920 // template instantiation; we will already have complained when the
9921 // template was declared.
9922 } else if (!T->isElaboratedTypeSpecifier()) {
9923 // If we evaluated the type to a record type, suggest putting
9924 // a tag in front.
9925 if (const RecordType *RT = T->getAs<RecordType>()) {
9926 RecordDecl *RD = RT->getDecl();
9927
9928 std::string InsertionText = std::string(" ") + RD->getKindName();
9929
9930 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009931 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009932 diag::warn_cxx98_compat_unelaborated_friend_type :
9933 diag::ext_unelaborated_friend_type)
9934 << (unsigned) RD->getTagKind()
9935 << T
9936 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9937 InsertionText);
9938 } else {
9939 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009940 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009941 diag::warn_cxx98_compat_nonclass_type_friend :
9942 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009943 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009944 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009945 }
Richard Smith6b130222011-10-18 21:39:00 +00009946 } else if (T->getAs<EnumType>()) {
9947 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009948 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009949 diag::warn_cxx98_compat_enum_friend :
9950 diag::ext_enum_friend)
9951 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009952 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009953 }
9954
Richard Smithd6f80da2012-09-20 01:31:00 +00009955 // C++11 [class.friend]p3:
9956 // A friend declaration that does not declare a function shall have one
9957 // of the following forms:
9958 // friend elaborated-type-specifier ;
9959 // friend simple-type-specifier ;
9960 // friend typename-specifier ;
9961 if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
9962 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
9963
Douglas Gregor06245bf2010-04-07 17:57:12 +00009964 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +00009965 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +00009966 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +00009967 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009968}
9969
John McCall9a34edb2010-10-19 01:40:49 +00009970/// Handle a friend tag declaration where the scope specifier was
9971/// templated.
9972Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9973 unsigned TagSpec, SourceLocation TagLoc,
9974 CXXScopeSpec &SS,
9975 IdentifierInfo *Name, SourceLocation NameLoc,
9976 AttributeList *Attr,
9977 MultiTemplateParamsArg TempParamLists) {
9978 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9979
9980 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009981 bool Invalid = false;
9982
9983 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009984 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009985 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009986 TempParamLists.size(),
9987 /*friend*/ true,
9988 isExplicitSpecialization,
9989 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009990 if (TemplateParams->size() > 0) {
9991 // This is a declaration of a class template.
9992 if (Invalid)
9993 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009994
Eric Christopher4110e132011-07-21 05:34:24 +00009995 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9996 SS, Name, NameLoc, Attr,
9997 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009998 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009999 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010000 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +000010001 } else {
10002 // The "template<>" header is extraneous.
10003 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
10004 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
10005 isExplicitSpecialization = true;
10006 }
10007 }
10008
10009 if (Invalid) return 0;
10010
John McCall9a34edb2010-10-19 01:40:49 +000010011 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010012 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010013 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000010014 isAllExplicitSpecializations = false;
10015 break;
10016 }
10017 }
10018
10019 // FIXME: don't ignore attributes.
10020
10021 // If it's explicit specializations all the way down, just forget
10022 // about the template header and build an appropriate non-templated
10023 // friend. TODO: for source fidelity, remember the headers.
10024 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010025 if (SS.isEmpty()) {
10026 bool Owned = false;
10027 bool IsDependent = false;
10028 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10029 Attr, AS_public,
10030 /*ModulePrivateLoc=*/SourceLocation(),
10031 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010032 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010033 /*ScopedEnumUsesClassTag=*/false,
10034 /*UnderlyingType=*/TypeResult());
10035 }
10036
Douglas Gregor2494dd02011-03-01 01:34:45 +000010037 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000010038 ElaboratedTypeKeyword Keyword
10039 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010040 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000010041 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010042 if (T.isNull())
10043 return 0;
10044
10045 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10046 if (isa<DependentNameType>(T)) {
10047 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010048 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010049 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010050 TL.setNameLoc(NameLoc);
10051 } else {
10052 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010053 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000010054 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010055 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
10056 }
10057
10058 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10059 TSI, FriendLoc);
10060 Friend->setAccess(AS_public);
10061 CurContext->addDecl(Friend);
10062 return Friend;
10063 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010064
10065 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10066
10067
John McCall9a34edb2010-10-19 01:40:49 +000010068
10069 // Handle the case of a templated-scope friend class. e.g.
10070 // template <class T> class A<T>::B;
10071 // FIXME: we don't support these right now.
10072 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10073 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10074 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10075 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010076 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010077 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010078 TL.setNameLoc(NameLoc);
10079
10080 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10081 TSI, FriendLoc);
10082 Friend->setAccess(AS_public);
10083 Friend->setUnsupportedFriend(true);
10084 CurContext->addDecl(Friend);
10085 return Friend;
10086}
10087
10088
John McCalldd4a3b02009-09-16 22:47:08 +000010089/// Handle a friend type declaration. This works in tandem with
10090/// ActOnTag.
10091///
10092/// Notes on friend class templates:
10093///
10094/// We generally treat friend class declarations as if they were
10095/// declaring a class. So, for example, the elaborated type specifier
10096/// in a friend declaration is required to obey the restrictions of a
10097/// class-head (i.e. no typedefs in the scope chain), template
10098/// parameters are required to match up with simple template-ids, &c.
10099/// However, unlike when declaring a template specialization, it's
10100/// okay to refer to a template specialization without an empty
10101/// template parameter declaration, e.g.
10102/// friend class A<T>::B<unsigned>;
10103/// We permit this as a special case; if there are any template
10104/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010105/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010106Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010107 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010108 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010109
10110 assert(DS.isFriendSpecified());
10111 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10112
John McCalldd4a3b02009-09-16 22:47:08 +000010113 // Try to convert the decl specifier to a type. This works for
10114 // friend templates because ActOnTag never produces a ClassTemplateDecl
10115 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010116 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010117 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10118 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010119 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010120 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010121
Douglas Gregor6ccab972010-12-16 01:14:37 +000010122 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10123 return 0;
10124
John McCalldd4a3b02009-09-16 22:47:08 +000010125 // This is definitely an error in C++98. It's probably meant to
10126 // be forbidden in C++0x, too, but the specification is just
10127 // poorly written.
10128 //
10129 // The problem is with declarations like the following:
10130 // template <T> friend A<T>::foo;
10131 // where deciding whether a class C is a friend or not now hinges
10132 // on whether there exists an instantiation of A that causes
10133 // 'foo' to equal C. There are restrictions on class-heads
10134 // (which we declare (by fiat) elaborated friend declarations to
10135 // be) that makes this tractable.
10136 //
10137 // FIXME: handle "template <> friend class A<T>;", which
10138 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010139 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010140 Diag(Loc, diag::err_tagless_friend_type_template)
10141 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010142 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010143 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010144
John McCall02cace72009-08-28 07:59:38 +000010145 // C++98 [class.friend]p1: A friend of a class is a function
10146 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010147 // This is fixed in DR77, which just barely didn't make the C++03
10148 // deadline. It's also a very silly restriction that seriously
10149 // affects inner classes and which nobody else seems to implement;
10150 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010151 //
10152 // But note that we could warn about it: it's always useless to
10153 // friend one of your own members (it's not, however, worthless to
10154 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010155
John McCalldd4a3b02009-09-16 22:47:08 +000010156 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010157 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010158 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010159 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010160 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010161 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010162 DS.getFriendSpecLoc());
10163 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010164 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010165
10166 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010167 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010168
John McCalldd4a3b02009-09-16 22:47:08 +000010169 D->setAccess(AS_public);
10170 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010171
John McCalld226f652010-08-21 09:40:31 +000010172 return D;
John McCall02cace72009-08-28 07:59:38 +000010173}
10174
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010175Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010176 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010177 const DeclSpec &DS = D.getDeclSpec();
10178
10179 assert(DS.isFriendSpecified());
10180 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10181
10182 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010183 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010184
10185 // C++ [class.friend]p1
10186 // A friend of a class is a function or class....
10187 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010188 // It *doesn't* see through dependent types, which is correct
10189 // according to [temp.arg.type]p3:
10190 // If a declaration acquires a function type through a
10191 // type dependent on a template-parameter and this causes
10192 // a declaration that does not use the syntactic form of a
10193 // function declarator to have a function type, the program
10194 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010195 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010196 Diag(Loc, diag::err_unexpected_friend);
10197
10198 // It might be worthwhile to try to recover by creating an
10199 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010200 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010201 }
10202
10203 // C++ [namespace.memdef]p3
10204 // - If a friend declaration in a non-local class first declares a
10205 // class or function, the friend class or function is a member
10206 // of the innermost enclosing namespace.
10207 // - The name of the friend is not found by simple name lookup
10208 // until a matching declaration is provided in that namespace
10209 // scope (either before or after the class declaration granting
10210 // friendship).
10211 // - If a friend function is called, its name may be found by the
10212 // name lookup that considers functions from namespaces and
10213 // classes associated with the types of the function arguments.
10214 // - When looking for a prior declaration of a class or a function
10215 // declared as a friend, scopes outside the innermost enclosing
10216 // namespace scope are not considered.
10217
John McCall337ec3d2010-10-12 23:13:28 +000010218 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010219 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10220 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010221 assert(Name);
10222
Douglas Gregor6ccab972010-12-16 01:14:37 +000010223 // Check for unexpanded parameter packs.
10224 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10225 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10226 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10227 return 0;
10228
John McCall67d1a672009-08-06 02:15:43 +000010229 // The context we found the declaration in, or in which we should
10230 // create the declaration.
10231 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010232 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010233 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010234 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010235
John McCall337ec3d2010-10-12 23:13:28 +000010236 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010237
John McCall337ec3d2010-10-12 23:13:28 +000010238 // There are four cases here.
10239 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010240 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010241 // there as appropriate.
10242 // Recover from invalid scope qualifiers as if they just weren't there.
10243 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010244 // C++0x [namespace.memdef]p3:
10245 // If the name in a friend declaration is neither qualified nor
10246 // a template-id and the declaration is a function or an
10247 // elaborated-type-specifier, the lookup to determine whether
10248 // the entity has been previously declared shall not consider
10249 // any scopes outside the innermost enclosing namespace.
10250 // C++0x [class.friend]p11:
10251 // If a friend declaration appears in a local class and the name
10252 // specified is an unqualified name, a prior declaration is
10253 // looked up without considering scopes that are outside the
10254 // innermost enclosing non-class scope. For a friend function
10255 // declaration, if there is no prior declaration, the program is
10256 // ill-formed.
10257 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010258 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010259
John McCall29ae6e52010-10-13 05:45:15 +000010260 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010261 DC = CurContext;
10262 while (true) {
10263 // Skip class contexts. If someone can cite chapter and verse
10264 // for this behavior, that would be nice --- it's what GCC and
10265 // EDG do, and it seems like a reasonable intent, but the spec
10266 // really only says that checks for unqualified existing
10267 // declarations should stop at the nearest enclosing namespace,
10268 // not that they should only consider the nearest enclosing
10269 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010270 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010271 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010272
John McCall68263142009-11-18 22:49:29 +000010273 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010274
10275 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010276 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010277 break;
John McCall29ae6e52010-10-13 05:45:15 +000010278
John McCall8a407372010-10-14 22:22:28 +000010279 if (isTemplateId) {
10280 if (isa<TranslationUnitDecl>(DC)) break;
10281 } else {
10282 if (DC->isFileContext()) break;
10283 }
John McCall67d1a672009-08-06 02:15:43 +000010284 DC = DC->getParent();
10285 }
10286
10287 // C++ [class.friend]p1: A friend of a class is a function or
10288 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010289 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010290 // Most C++ 98 compilers do seem to give an error here, so
10291 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010292 if (!Previous.empty() && DC->Equals(CurContext))
10293 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010294 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010295 diag::warn_cxx98_compat_friend_is_member :
10296 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010297
John McCall380aaa42010-10-13 06:22:15 +000010298 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010299
Douglas Gregor883af832011-10-10 01:11:59 +000010300 // C++ [class.friend]p6:
10301 // A function can be defined in a friend declaration of a class if and
10302 // only if the class is a non-local class (9.8), the function name is
10303 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010304 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010305 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10306 }
10307
John McCall337ec3d2010-10-12 23:13:28 +000010308 // - There's a non-dependent scope specifier, in which case we
10309 // compute it and do a previous lookup there for a function
10310 // or function template.
10311 } else if (!SS.getScopeRep()->isDependent()) {
10312 DC = computeDeclContext(SS);
10313 if (!DC) return 0;
10314
10315 if (RequireCompleteDeclContext(SS, DC)) return 0;
10316
10317 LookupQualifiedName(Previous, DC);
10318
10319 // Ignore things found implicitly in the wrong scope.
10320 // TODO: better diagnostics for this case. Suggesting the right
10321 // qualified scope would be nice...
10322 LookupResult::Filter F = Previous.makeFilter();
10323 while (F.hasNext()) {
10324 NamedDecl *D = F.next();
10325 if (!DC->InEnclosingNamespaceSetOf(
10326 D->getDeclContext()->getRedeclContext()))
10327 F.erase();
10328 }
10329 F.done();
10330
10331 if (Previous.empty()) {
10332 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010333 Diag(Loc, diag::err_qualified_friend_not_found)
10334 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010335 return 0;
10336 }
10337
10338 // C++ [class.friend]p1: A friend of a class is a function or
10339 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010340 if (DC->Equals(CurContext))
10341 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010342 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010343 diag::warn_cxx98_compat_friend_is_member :
10344 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010345
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010346 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010347 // C++ [class.friend]p6:
10348 // A function can be defined in a friend declaration of a class if and
10349 // only if the class is a non-local class (9.8), the function name is
10350 // unqualified, and the function has namespace scope.
10351 SemaDiagnosticBuilder DB
10352 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10353
10354 DB << SS.getScopeRep();
10355 if (DC->isFileContext())
10356 DB << FixItHint::CreateRemoval(SS.getRange());
10357 SS.clear();
10358 }
John McCall337ec3d2010-10-12 23:13:28 +000010359
10360 // - There's a scope specifier that does not match any template
10361 // parameter lists, in which case we use some arbitrary context,
10362 // create a method or method template, and wait for instantiation.
10363 // - There's a scope specifier that does match some template
10364 // parameter lists, which we don't handle right now.
10365 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010366 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010367 // C++ [class.friend]p6:
10368 // A function can be defined in a friend declaration of a class if and
10369 // only if the class is a non-local class (9.8), the function name is
10370 // unqualified, and the function has namespace scope.
10371 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10372 << SS.getScopeRep();
10373 }
10374
John McCall337ec3d2010-10-12 23:13:28 +000010375 DC = CurContext;
10376 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010377 }
Douglas Gregor883af832011-10-10 01:11:59 +000010378
John McCall29ae6e52010-10-13 05:45:15 +000010379 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010380 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010381 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10382 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10383 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010384 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010385 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10386 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010387 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010388 }
John McCall67d1a672009-08-06 02:15:43 +000010389 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010390
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010391 // FIXME: This is an egregious hack to cope with cases where the scope stack
10392 // does not contain the declaration context, i.e., in an out-of-line
10393 // definition of a class.
10394 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10395 if (!DCScope) {
10396 FakeDCScope.setEntity(DC);
10397 DCScope = &FakeDCScope;
10398 }
10399
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010400 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010401 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010402 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010403 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010404
Douglas Gregor182ddf02009-09-28 00:08:27 +000010405 assert(ND->getDeclContext() == DC);
10406 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010407
John McCallab88d972009-08-31 22:39:49 +000010408 // Add the function declaration to the appropriate lookup tables,
10409 // adjusting the redeclarations list as necessary. We don't
10410 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010411 //
John McCallab88d972009-08-31 22:39:49 +000010412 // Also update the scope-based lookup if the target context's
10413 // lookup context is in lexical scope.
10414 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010415 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010416 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010417 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010418 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010419 }
John McCall02cace72009-08-28 07:59:38 +000010420
10421 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010422 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010423 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010424 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010425 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010426
John McCall1f2e1a92012-08-10 03:15:35 +000010427 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010428 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010429 } else {
10430 if (DC->isRecord()) CheckFriendAccess(ND);
10431
John McCall6102ca12010-10-16 06:59:13 +000010432 FunctionDecl *FD;
10433 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10434 FD = FTD->getTemplatedDecl();
10435 else
10436 FD = cast<FunctionDecl>(ND);
10437
10438 // Mark templated-scope function declarations as unsupported.
10439 if (FD->getNumTemplateParameterLists())
10440 FrD->setUnsupportedFriend(true);
10441 }
John McCall337ec3d2010-10-12 23:13:28 +000010442
John McCalld226f652010-08-21 09:40:31 +000010443 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010444}
10445
John McCalld226f652010-08-21 09:40:31 +000010446void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10447 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010448
Sebastian Redl50de12f2009-03-24 22:27:57 +000010449 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10450 if (!Fn) {
10451 Diag(DelLoc, diag::err_deleted_non_function);
10452 return;
10453 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010454 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010455 // Don't consider the implicit declaration we generate for explicit
10456 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010457 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10458 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010459 Diag(DelLoc, diag::err_deleted_decl_not_first);
10460 Diag(Prev->getLocation(), diag::note_previous_declaration);
10461 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010462 // If the declaration wasn't the first, we delete the function anyway for
10463 // recovery.
10464 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010465 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010466
10467 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10468 if (!MD)
10469 return;
10470
10471 // A deleted special member function is trivial if the corresponding
10472 // implicitly-declared function would have been.
10473 switch (getSpecialMember(MD)) {
10474 case CXXInvalid:
10475 break;
10476 case CXXDefaultConstructor:
10477 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10478 break;
10479 case CXXCopyConstructor:
10480 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10481 break;
10482 case CXXMoveConstructor:
10483 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10484 break;
10485 case CXXCopyAssignment:
10486 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10487 break;
10488 case CXXMoveAssignment:
10489 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10490 break;
10491 case CXXDestructor:
10492 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10493 break;
10494 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010495}
Sebastian Redl13e88542009-04-27 21:33:24 +000010496
Sean Hunte4246a62011-05-12 06:15:49 +000010497void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10498 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10499
10500 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010501 if (MD->getParent()->isDependentType()) {
10502 MD->setDefaulted();
10503 MD->setExplicitlyDefaulted();
10504 return;
10505 }
10506
Sean Hunte4246a62011-05-12 06:15:49 +000010507 CXXSpecialMember Member = getSpecialMember(MD);
10508 if (Member == CXXInvalid) {
10509 Diag(DefaultLoc, diag::err_default_special_members);
10510 return;
10511 }
10512
10513 MD->setDefaulted();
10514 MD->setExplicitlyDefaulted();
10515
Sean Huntcd10dec2011-05-23 23:14:04 +000010516 // If this definition appears within the record, do the checking when
10517 // the record is complete.
10518 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010519 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010520 // Find the uninstantiated declaration that actually had the '= default'
10521 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010522 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010523
10524 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010525 return;
10526
Richard Smithb9d0b762012-07-27 04:22:15 +000010527 CheckExplicitlyDefaultedSpecialMember(MD);
10528
Sean Hunte4246a62011-05-12 06:15:49 +000010529 switch (Member) {
10530 case CXXDefaultConstructor: {
10531 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010532 if (!CD->isInvalidDecl())
10533 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10534 break;
10535 }
10536
10537 case CXXCopyConstructor: {
10538 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010539 if (!CD->isInvalidDecl())
10540 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010541 break;
10542 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010543
Sean Hunt2b188082011-05-14 05:23:28 +000010544 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010545 if (!MD->isInvalidDecl())
10546 DefineImplicitCopyAssignment(DefaultLoc, MD);
10547 break;
10548 }
10549
Sean Huntcb45a0f2011-05-12 22:46:25 +000010550 case CXXDestructor: {
10551 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010552 if (!DD->isInvalidDecl())
10553 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010554 break;
10555 }
10556
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010557 case CXXMoveConstructor: {
10558 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010559 if (!CD->isInvalidDecl())
10560 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010561 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010562 }
Sean Hunt82713172011-05-25 23:16:36 +000010563
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010564 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010565 if (!MD->isInvalidDecl())
10566 DefineImplicitMoveAssignment(DefaultLoc, MD);
10567 break;
10568 }
10569
10570 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010571 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010572 }
10573 } else {
10574 Diag(DefaultLoc, diag::err_default_special_members);
10575 }
10576}
10577
Sebastian Redl13e88542009-04-27 21:33:24 +000010578static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010579 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010580 Stmt *SubStmt = *CI;
10581 if (!SubStmt)
10582 continue;
10583 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010584 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010585 diag::err_return_in_constructor_handler);
10586 if (!isa<Expr>(SubStmt))
10587 SearchForReturnInStmt(Self, SubStmt);
10588 }
10589}
10590
10591void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10592 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10593 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10594 SearchForReturnInStmt(*this, Handler);
10595 }
10596}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010597
Mike Stump1eb44332009-09-09 15:08:12 +000010598bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010599 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010600 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10601 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010602
Chandler Carruth73857792010-02-15 11:53:20 +000010603 if (Context.hasSameType(NewTy, OldTy) ||
10604 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010605 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010606
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010607 // Check if the return types are covariant
10608 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010609
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010610 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010611 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10612 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010613 NewClassTy = NewPT->getPointeeType();
10614 OldClassTy = OldPT->getPointeeType();
10615 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010616 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10617 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10618 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10619 NewClassTy = NewRT->getPointeeType();
10620 OldClassTy = OldRT->getPointeeType();
10621 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010622 }
10623 }
Mike Stump1eb44332009-09-09 15:08:12 +000010624
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010625 // The return types aren't either both pointers or references to a class type.
10626 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010627 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010628 diag::err_different_return_type_for_overriding_virtual_function)
10629 << New->getDeclName() << NewTy << OldTy;
10630 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010631
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010632 return true;
10633 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010634
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010635 // C++ [class.virtual]p6:
10636 // If the return type of D::f differs from the return type of B::f, the
10637 // class type in the return type of D::f shall be complete at the point of
10638 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010639 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10640 if (!RT->isBeingDefined() &&
10641 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010642 diag::err_covariant_return_incomplete,
10643 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010644 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010645 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010646
Douglas Gregora4923eb2009-11-16 21:35:15 +000010647 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010648 // Check if the new class derives from the old class.
10649 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10650 Diag(New->getLocation(),
10651 diag::err_covariant_return_not_derived)
10652 << New->getDeclName() << NewTy << OldTy;
10653 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10654 return true;
10655 }
Mike Stump1eb44332009-09-09 15:08:12 +000010656
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010657 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010658 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010659 diag::err_covariant_return_inaccessible_base,
10660 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10661 // FIXME: Should this point to the return type?
10662 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010663 // FIXME: this note won't trigger for delayed access control
10664 // diagnostics, and it's impossible to get an undelayed error
10665 // here from access control during the original parse because
10666 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010667 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10668 return true;
10669 }
10670 }
Mike Stump1eb44332009-09-09 15:08:12 +000010671
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010672 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010673 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010674 Diag(New->getLocation(),
10675 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010676 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010677 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10678 return true;
10679 };
Mike Stump1eb44332009-09-09 15:08:12 +000010680
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010681
10682 // The new class type must have the same or less qualifiers as the old type.
10683 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10684 Diag(New->getLocation(),
10685 diag::err_covariant_return_type_class_type_more_qualified)
10686 << New->getDeclName() << NewTy << OldTy;
10687 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10688 return true;
10689 };
Mike Stump1eb44332009-09-09 15:08:12 +000010690
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010691 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010692}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010693
Douglas Gregor4ba31362009-12-01 17:24:26 +000010694/// \brief Mark the given method pure.
10695///
10696/// \param Method the method to be marked pure.
10697///
10698/// \param InitRange the source range that covers the "0" initializer.
10699bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010700 SourceLocation EndLoc = InitRange.getEnd();
10701 if (EndLoc.isValid())
10702 Method->setRangeEnd(EndLoc);
10703
Douglas Gregor4ba31362009-12-01 17:24:26 +000010704 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10705 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010706 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010707 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010708
10709 if (!Method->isInvalidDecl())
10710 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10711 << Method->getDeclName() << InitRange;
10712 return true;
10713}
10714
Douglas Gregor552e2992012-02-21 02:22:07 +000010715/// \brief Determine whether the given declaration is a static data member.
10716static bool isStaticDataMember(Decl *D) {
10717 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10718 if (!Var)
10719 return false;
10720
10721 return Var->isStaticDataMember();
10722}
John McCall731ad842009-12-19 09:28:58 +000010723/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10724/// an initializer for the out-of-line declaration 'Dcl'. The scope
10725/// is a fresh scope pushed for just this purpose.
10726///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010727/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10728/// static data member of class X, names should be looked up in the scope of
10729/// class X.
John McCalld226f652010-08-21 09:40:31 +000010730void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010731 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010732 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010733
John McCall731ad842009-12-19 09:28:58 +000010734 // We should only get called for declarations with scope specifiers, like:
10735 // int foo::bar;
10736 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010737 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010738
10739 // If we are parsing the initializer for a static data member, push a
10740 // new expression evaluation context that is associated with this static
10741 // data member.
10742 if (isStaticDataMember(D))
10743 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010744}
10745
10746/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010747/// initializer for the out-of-line declaration 'D'.
10748void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010749 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010750 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010751
Douglas Gregor552e2992012-02-21 02:22:07 +000010752 if (isStaticDataMember(D))
10753 PopExpressionEvaluationContext();
10754
John McCall731ad842009-12-19 09:28:58 +000010755 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010756 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010757}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010758
10759/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10760/// C++ if/switch/while/for statement.
10761/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010762DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010763 // C++ 6.4p2:
10764 // The declarator shall not specify a function or an array.
10765 // The type-specifier-seq shall not contain typedef and shall not declare a
10766 // new class or enumeration.
10767 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10768 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010769
10770 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010771 if (!Dcl)
10772 return true;
10773
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010774 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10775 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010776 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010777 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010778 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010779
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010780 return Dcl;
10781}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010782
Douglas Gregordfe65432011-07-28 19:11:31 +000010783void Sema::LoadExternalVTableUses() {
10784 if (!ExternalSource)
10785 return;
10786
10787 SmallVector<ExternalVTableUse, 4> VTables;
10788 ExternalSource->ReadUsedVTables(VTables);
10789 SmallVector<VTableUse, 4> NewUses;
10790 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10791 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10792 = VTablesUsed.find(VTables[I].Record);
10793 // Even if a definition wasn't required before, it may be required now.
10794 if (Pos != VTablesUsed.end()) {
10795 if (!Pos->second && VTables[I].DefinitionRequired)
10796 Pos->second = true;
10797 continue;
10798 }
10799
10800 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10801 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10802 }
10803
10804 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10805}
10806
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010807void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10808 bool DefinitionRequired) {
10809 // Ignore any vtable uses in unevaluated operands or for classes that do
10810 // not have a vtable.
10811 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10812 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010813 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010814 return;
10815
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010816 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010817 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010818 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10819 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10820 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10821 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010822 // If we already had an entry, check to see if we are promoting this vtable
10823 // to required a definition. If so, we need to reappend to the VTableUses
10824 // list, since we may have already processed the first entry.
10825 if (DefinitionRequired && !Pos.first->second) {
10826 Pos.first->second = true;
10827 } else {
10828 // Otherwise, we can early exit.
10829 return;
10830 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010831 }
10832
10833 // Local classes need to have their virtual members marked
10834 // immediately. For all other classes, we mark their virtual members
10835 // at the end of the translation unit.
10836 if (Class->isLocalClass())
10837 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010838 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010839 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010840}
10841
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010842bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010843 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010844 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010845 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010846
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010847 // Note: The VTableUses vector could grow as a result of marking
10848 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010849 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010850 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010851 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010852 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010853 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010854 if (!Class)
10855 continue;
10856
10857 SourceLocation Loc = VTableUses[I].second;
10858
Richard Smithb9d0b762012-07-27 04:22:15 +000010859 bool DefineVTable = true;
10860
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010861 // If this class has a key function, but that key function is
10862 // defined in another translation unit, we don't need to emit the
10863 // vtable even though we're using it.
10864 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010865 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010866 switch (KeyFunction->getTemplateSpecializationKind()) {
10867 case TSK_Undeclared:
10868 case TSK_ExplicitSpecialization:
10869 case TSK_ExplicitInstantiationDeclaration:
10870 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010871 DefineVTable = false;
10872 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010873
10874 case TSK_ExplicitInstantiationDefinition:
10875 case TSK_ImplicitInstantiation:
10876 // We will be instantiating the key function.
10877 break;
10878 }
10879 } else if (!KeyFunction) {
10880 // If we have a class with no key function that is the subject
10881 // of an explicit instantiation declaration, suppress the
10882 // vtable; it will live with the explicit instantiation
10883 // definition.
10884 bool IsExplicitInstantiationDeclaration
10885 = Class->getTemplateSpecializationKind()
10886 == TSK_ExplicitInstantiationDeclaration;
10887 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10888 REnd = Class->redecls_end();
10889 R != REnd; ++R) {
10890 TemplateSpecializationKind TSK
10891 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10892 if (TSK == TSK_ExplicitInstantiationDeclaration)
10893 IsExplicitInstantiationDeclaration = true;
10894 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10895 IsExplicitInstantiationDeclaration = false;
10896 break;
10897 }
10898 }
10899
10900 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010901 DefineVTable = false;
10902 }
10903
10904 // The exception specifications for all virtual members may be needed even
10905 // if we are not providing an authoritative form of the vtable in this TU.
10906 // We may choose to emit it available_externally anyway.
10907 if (!DefineVTable) {
10908 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10909 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010910 }
10911
10912 // Mark all of the virtual members of this class as referenced, so
10913 // that we can build a vtable. Then, tell the AST consumer that a
10914 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010915 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010916 MarkVirtualMembersReferenced(Loc, Class);
10917 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10918 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10919
10920 // Optionally warn if we're emitting a weak vtable.
10921 if (Class->getLinkage() == ExternalLinkage &&
10922 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010923 const FunctionDecl *KeyFunctionDef = 0;
10924 if (!KeyFunction ||
10925 (KeyFunction->hasBody(KeyFunctionDef) &&
10926 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010927 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10928 TSK_ExplicitInstantiationDefinition
10929 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10930 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010931 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010932 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010933 VTableUses.clear();
10934
Douglas Gregor78844032011-04-22 22:25:37 +000010935 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010936}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010937
Richard Smithb9d0b762012-07-27 04:22:15 +000010938void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10939 const CXXRecordDecl *RD) {
10940 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10941 E = RD->method_end(); I != E; ++I)
10942 if ((*I)->isVirtual() && !(*I)->isPure())
10943 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10944}
10945
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010946void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10947 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010948 // Mark all functions which will appear in RD's vtable as used.
10949 CXXFinalOverriderMap FinalOverriders;
10950 RD->getFinalOverriders(FinalOverriders);
10951 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10952 E = FinalOverriders.end();
10953 I != E; ++I) {
10954 for (OverridingMethods::const_iterator OI = I->second.begin(),
10955 OE = I->second.end();
10956 OI != OE; ++OI) {
10957 assert(OI->second.size() > 0 && "no final overrider");
10958 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010959
Richard Smithff817f72012-07-07 06:59:51 +000010960 // C++ [basic.def.odr]p2:
10961 // [...] A virtual member function is used if it is not pure. [...]
10962 if (!Overrider->isPure())
10963 MarkFunctionReferenced(Loc, Overrider);
10964 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010965 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010966
10967 // Only classes that have virtual bases need a VTT.
10968 if (RD->getNumVBases() == 0)
10969 return;
10970
10971 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10972 e = RD->bases_end(); i != e; ++i) {
10973 const CXXRecordDecl *Base =
10974 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010975 if (Base->getNumVBases() == 0)
10976 continue;
10977 MarkVirtualMembersReferenced(Loc, Base);
10978 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010979}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010980
10981/// SetIvarInitializers - This routine builds initialization ASTs for the
10982/// Objective-C implementation whose ivars need be initialized.
10983void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010984 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010985 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010986 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010987 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010988 CollectIvarsToConstructOrDestruct(OID, ivars);
10989 if (ivars.empty())
10990 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010991 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010992 for (unsigned i = 0; i < ivars.size(); i++) {
10993 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010994 if (Field->isInvalidDecl())
10995 continue;
10996
Sean Huntcbb67482011-01-08 20:30:50 +000010997 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010998 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10999 InitializationKind InitKind =
11000 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
11001
11002 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000011003 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000011004 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000011005 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011006 // Note, MemberInit could actually come back empty if no initialization
11007 // is required (e.g., because it would call a trivial default constructor)
11008 if (!MemberInit.get() || MemberInit.isInvalid())
11009 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000011010
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011011 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000011012 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
11013 SourceLocation(),
11014 MemberInit.takeAs<Expr>(),
11015 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011016 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011017
11018 // Be sure that the destructor is accessible and is marked as referenced.
11019 if (const RecordType *RecordTy
11020 = Context.getBaseElementType(Field->getType())
11021 ->getAs<RecordType>()) {
11022 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000011023 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011024 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011025 CheckDestructorAccess(Field->getLocation(), Destructor,
11026 PDiag(diag::err_access_dtor_ivar)
11027 << Context.getBaseElementType(Field->getType()));
11028 }
11029 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011030 }
11031 ObjCImplementation->setIvarInitializers(Context,
11032 AllToInit.data(), AllToInit.size());
11033 }
11034}
Sean Huntfe57eef2011-05-04 05:57:24 +000011035
Sean Huntebcbe1d2011-05-04 23:29:54 +000011036static
11037void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
11038 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
11039 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
11040 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
11041 Sema &S) {
11042 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11043 CE = Current.end();
11044 if (Ctor->isInvalidDecl())
11045 return;
11046
Richard Smitha8eaf002012-08-23 06:16:52 +000011047 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
11048
11049 // Target may not be determinable yet, for instance if this is a dependent
11050 // call in an uninstantiated template.
11051 if (Target) {
11052 const FunctionDecl *FNTarget = 0;
11053 (void)Target->hasBody(FNTarget);
11054 Target = const_cast<CXXConstructorDecl*>(
11055 cast_or_null<CXXConstructorDecl>(FNTarget));
11056 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000011057
11058 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
11059 // Avoid dereferencing a null pointer here.
11060 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
11061
11062 if (!Current.insert(Canonical))
11063 return;
11064
11065 // We know that beyond here, we aren't chaining into a cycle.
11066 if (!Target || !Target->isDelegatingConstructor() ||
11067 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11068 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11069 Valid.insert(*CI);
11070 Current.clear();
11071 // We've hit a cycle.
11072 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11073 Current.count(TCanonical)) {
11074 // If we haven't diagnosed this cycle yet, do so now.
11075 if (!Invalid.count(TCanonical)) {
11076 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011077 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011078 << Ctor;
11079
Richard Smitha8eaf002012-08-23 06:16:52 +000011080 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011081 if (TCanonical != Canonical)
11082 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11083
11084 CXXConstructorDecl *C = Target;
11085 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011086 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011087 (void)C->getTargetConstructor()->hasBody(FNTarget);
11088 assert(FNTarget && "Ctor cycle through bodiless function");
11089
Richard Smitha8eaf002012-08-23 06:16:52 +000011090 C = const_cast<CXXConstructorDecl*>(
11091 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011092 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11093 }
11094 }
11095
11096 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11097 Invalid.insert(*CI);
11098 Current.clear();
11099 } else {
11100 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11101 }
11102}
11103
11104
Sean Huntfe57eef2011-05-04 05:57:24 +000011105void Sema::CheckDelegatingCtorCycles() {
11106 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11107
Sean Huntebcbe1d2011-05-04 23:29:54 +000011108 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11109 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011110
Douglas Gregor0129b562011-07-27 21:57:17 +000011111 for (DelegatingCtorDeclsType::iterator
11112 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011113 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011114 I != E; ++I)
11115 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011116
11117 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11118 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011119}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011120
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011121namespace {
11122 /// \brief AST visitor that finds references to the 'this' expression.
11123 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11124 Sema &S;
11125
11126 public:
11127 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11128
11129 bool VisitCXXThisExpr(CXXThisExpr *E) {
11130 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11131 << E->isImplicit();
11132 return false;
11133 }
11134 };
11135}
11136
11137bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11138 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11139 if (!TSInfo)
11140 return false;
11141
11142 TypeLoc TL = TSInfo->getTypeLoc();
11143 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11144 if (!ProtoTL)
11145 return false;
11146
11147 // C++11 [expr.prim.general]p3:
11148 // [The expression this] shall not appear before the optional
11149 // cv-qualifier-seq and it shall not appear within the declaration of a
11150 // static member function (although its type and value category are defined
11151 // within a static member function as they are within a non-static member
11152 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011153 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011154 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11155 FindCXXThisExpr Finder(*this);
11156
11157 // If the return type came after the cv-qualifier-seq, check it now.
11158 if (Proto->hasTrailingReturn() &&
11159 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11160 return true;
11161
11162 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011163 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11164 return true;
11165
11166 return checkThisInStaticMemberFunctionAttributes(Method);
11167}
11168
11169bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11170 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11171 if (!TSInfo)
11172 return false;
11173
11174 TypeLoc TL = TSInfo->getTypeLoc();
11175 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11176 if (!ProtoTL)
11177 return false;
11178
11179 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11180 FindCXXThisExpr Finder(*this);
11181
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011182 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011183 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011184 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011185 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011186 case EST_DynamicNone:
11187 case EST_MSAny:
11188 case EST_None:
11189 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011190
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011191 case EST_ComputedNoexcept:
11192 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11193 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011194
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011195 case EST_Dynamic:
11196 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011197 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011198 E != EEnd; ++E) {
11199 if (!Finder.TraverseType(*E))
11200 return true;
11201 }
11202 break;
11203 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011204
11205 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011206}
11207
11208bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11209 FindCXXThisExpr Finder(*this);
11210
11211 // Check attributes.
11212 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11213 A != AEnd; ++A) {
11214 // FIXME: This should be emitted by tblgen.
11215 Expr *Arg = 0;
11216 ArrayRef<Expr *> Args;
11217 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11218 Arg = G->getArg();
11219 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11220 Arg = G->getArg();
11221 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11222 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11223 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11224 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11225 else if (ExclusiveLockFunctionAttr *ELF
11226 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11227 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11228 else if (SharedLockFunctionAttr *SLF
11229 = dyn_cast<SharedLockFunctionAttr>(*A))
11230 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11231 else if (ExclusiveTrylockFunctionAttr *ETLF
11232 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11233 Arg = ETLF->getSuccessValue();
11234 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11235 } else if (SharedTrylockFunctionAttr *STLF
11236 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11237 Arg = STLF->getSuccessValue();
11238 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11239 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11240 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11241 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11242 Arg = LR->getArg();
11243 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11244 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11245 else if (ExclusiveLocksRequiredAttr *ELR
11246 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11247 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11248 else if (SharedLocksRequiredAttr *SLR
11249 = dyn_cast<SharedLocksRequiredAttr>(*A))
11250 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11251
11252 if (Arg && !Finder.TraverseStmt(Arg))
11253 return true;
11254
11255 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11256 if (!Finder.TraverseStmt(Args[I]))
11257 return true;
11258 }
11259 }
11260
11261 return false;
11262}
11263
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011264void
11265Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11266 ArrayRef<ParsedType> DynamicExceptions,
11267 ArrayRef<SourceRange> DynamicExceptionRanges,
11268 Expr *NoexceptExpr,
11269 llvm::SmallVectorImpl<QualType> &Exceptions,
11270 FunctionProtoType::ExtProtoInfo &EPI) {
11271 Exceptions.clear();
11272 EPI.ExceptionSpecType = EST;
11273 if (EST == EST_Dynamic) {
11274 Exceptions.reserve(DynamicExceptions.size());
11275 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11276 // FIXME: Preserve type source info.
11277 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11278
11279 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11280 collectUnexpandedParameterPacks(ET, Unexpanded);
11281 if (!Unexpanded.empty()) {
11282 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11283 UPPC_ExceptionType,
11284 Unexpanded);
11285 continue;
11286 }
11287
11288 // Check that the type is valid for an exception spec, and
11289 // drop it if not.
11290 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11291 Exceptions.push_back(ET);
11292 }
11293 EPI.NumExceptions = Exceptions.size();
11294 EPI.Exceptions = Exceptions.data();
11295 return;
11296 }
11297
11298 if (EST == EST_ComputedNoexcept) {
11299 // If an error occurred, there's no expression here.
11300 if (NoexceptExpr) {
11301 assert((NoexceptExpr->isTypeDependent() ||
11302 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11303 Context.BoolTy) &&
11304 "Parser should have made sure that the expression is boolean");
11305 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11306 EPI.ExceptionSpecType = EST_BasicNoexcept;
11307 return;
11308 }
11309
11310 if (!NoexceptExpr->isValueDependent())
11311 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011312 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011313 /*AllowFold*/ false).take();
11314 EPI.NoexceptExpr = NoexceptExpr;
11315 }
11316 return;
11317 }
11318}
11319
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011320/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11321Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11322 // Implicitly declared functions (e.g. copy constructors) are
11323 // __host__ __device__
11324 if (D->isImplicit())
11325 return CFT_HostDevice;
11326
11327 if (D->hasAttr<CUDAGlobalAttr>())
11328 return CFT_Global;
11329
11330 if (D->hasAttr<CUDADeviceAttr>()) {
11331 if (D->hasAttr<CUDAHostAttr>())
11332 return CFT_HostDevice;
11333 else
11334 return CFT_Device;
11335 }
11336
11337 return CFT_Host;
11338}
11339
11340bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11341 CUDAFunctionTarget CalleeTarget) {
11342 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11343 // Callable from the device only."
11344 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11345 return true;
11346
11347 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11348 // Callable from the host only."
11349 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11350 // Callable from the host only."
11351 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11352 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11353 return true;
11354
11355 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11356 return true;
11357
11358 return false;
11359}