blob: 88cc0aa47261953c0a29303d65f925fca75660ac [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/AST/CharUnits.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000020#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000024#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000025#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000030#include "clang/Sema/CXXFieldCollector.h"
31#include "clang/Sema/DeclSpec.h"
32#include "clang/Sema/Initialization.h"
33#include "clang/Sema/Lookup.h"
34#include "clang/Sema/ParsedTemplate.h"
35#include "clang/Sema/Scope.h"
36#include "clang/Sema/ScopeInfo.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000037#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000038#include "llvm/ADT/SmallString.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();
520 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000521 }
522 }
523
Richard Smithb8abff62012-11-28 03:45:24 +0000524 // DR1344: If a default argument is added outside a class definition and that
525 // default argument makes the function a special member function, the program
526 // is ill-formed. This can only happen for constructors.
527 if (isa<CXXConstructorDecl>(New) &&
528 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
529 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
530 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
531 if (NewSM != OldSM) {
532 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
533 assert(NewParam->hasDefaultArg());
534 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
535 << NewParam->getDefaultArgRange() << NewSM;
536 Diag(Old->getLocation(), diag::note_previous_declaration);
537 }
538 }
539
Richard Smithff234882012-02-20 23:28:05 +0000540 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000541 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000542 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000543 if (New->isConstexpr() != Old->isConstexpr()) {
544 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
545 << New << New->isConstexpr();
546 Diag(Old->getLocation(), diag::note_previous_declaration);
547 Invalid = true;
548 }
549
Douglas Gregore13ad832010-02-12 07:32:17 +0000550 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000551 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000552
Douglas Gregorcda9c672009-02-16 17:45:42 +0000553 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000554}
555
Sebastian Redl60618fa2011-03-12 11:50:43 +0000556/// \brief Merge the exception specifications of two variable declarations.
557///
558/// This is called when there's a redeclaration of a VarDecl. The function
559/// checks if the redeclaration might have an exception specification and
560/// validates compatibility and merges the specs if necessary.
561void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
562 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000563 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000564 return;
565
566 assert(Context.hasSameType(New->getType(), Old->getType()) &&
567 "Should only be called if types are otherwise the same.");
568
569 QualType NewType = New->getType();
570 QualType OldType = Old->getType();
571
572 // We're only interested in pointers and references to functions, as well
573 // as pointers to member functions.
574 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
575 NewType = R->getPointeeType();
576 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
577 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
578 NewType = P->getPointeeType();
579 OldType = OldType->getAs<PointerType>()->getPointeeType();
580 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
581 NewType = M->getPointeeType();
582 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
583 }
584
585 if (!NewType->isFunctionProtoType())
586 return;
587
588 // There's lots of special cases for functions. For function pointers, system
589 // libraries are hopefully not as broken so that we don't need these
590 // workarounds.
591 if (CheckEquivalentExceptionSpec(
592 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
593 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
594 New->setInvalidDecl();
595 }
596}
597
Chris Lattner3d1cee32008-04-08 05:04:30 +0000598/// CheckCXXDefaultArguments - Verify that the default arguments for a
599/// function declaration are well-formed according to C++
600/// [dcl.fct.default].
601void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
602 unsigned NumParams = FD->getNumParams();
603 unsigned p;
604
Douglas Gregorc6889e72012-02-14 22:28:59 +0000605 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
606 isa<CXXMethodDecl>(FD) &&
607 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
608
Chris Lattner3d1cee32008-04-08 05:04:30 +0000609 // Find first parameter with a default argument
610 for (p = 0; p < NumParams; ++p) {
611 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000612 if (Param->hasDefaultArg()) {
613 // C++11 [expr.prim.lambda]p5:
614 // [...] Default arguments (8.3.6) shall not be specified in the
615 // parameter-declaration-clause of a lambda-declarator.
616 //
617 // FIXME: Core issue 974 strikes this sentence, we only provide an
618 // extension warning.
619 if (IsLambda)
620 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
621 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000622 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000623 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000624 }
625
626 // C++ [dcl.fct.default]p4:
627 // In a given function declaration, all parameters
628 // subsequent to a parameter with a default argument shall
629 // have default arguments supplied in this or previous
630 // declarations. A default argument shall not be redefined
631 // by a later declaration (not even to the same value).
632 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000633 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000634 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000635 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000636 if (Param->isInvalidDecl())
637 /* We already complained about this parameter. */;
638 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000639 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000640 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000641 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000642 else
Mike Stump1eb44332009-09-09 15:08:12 +0000643 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000644 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Chris Lattner3d1cee32008-04-08 05:04:30 +0000646 LastMissingDefaultArg = p;
647 }
648 }
649
650 if (LastMissingDefaultArg > 0) {
651 // Some default arguments were missing. Clear out all of the
652 // default arguments up to (and including) the last missing
653 // default argument, so that we leave the function parameters
654 // in a semantically valid state.
655 for (p = 0; p <= LastMissingDefaultArg; ++p) {
656 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000657 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000658 Param->setDefaultArg(0);
659 }
660 }
661 }
662}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000663
Richard Smith9f569cc2011-10-01 02:31:28 +0000664// CheckConstexprParameterTypes - Check whether a function's parameter types
665// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000666// diagnostic and return false.
667static bool CheckConstexprParameterTypes(Sema &SemaRef,
668 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000669 unsigned ArgIndex = 0;
670 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
671 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
672 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
673 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
674 SourceLocation ParamLoc = PD->getLocation();
675 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000676 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000677 diag::err_constexpr_non_literal_param,
678 ArgIndex+1, PD->getSourceRange(),
679 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000680 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000681 }
Joao Matos17d35c32012-08-31 22:18:20 +0000682 return true;
683}
684
685/// \brief Get diagnostic %select index for tag kind for
686/// record diagnostic message.
687/// WARNING: Indexes apply to particular diagnostics only!
688///
689/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000690static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000691 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000692 case TTK_Struct: return 0;
693 case TTK_Interface: return 1;
694 case TTK_Class: return 2;
695 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000696 }
Joao Matos17d35c32012-08-31 22:18:20 +0000697}
698
699// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
700// the requirements of a constexpr function definition or a constexpr
701// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000702// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000703//
Richard Smith86c3ae42012-02-13 03:54:03 +0000704// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
705bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000706 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
707 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000708 // C++11 [dcl.constexpr]p4:
709 // The definition of a constexpr constructor shall satisfy the following
710 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000711 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000712 const CXXRecordDecl *RD = MD->getParent();
713 if (RD->getNumVBases()) {
714 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
715 << isa<CXXConstructorDecl>(NewFD)
716 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
717 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
718 E = RD->vbases_end(); I != E; ++I)
719 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000720 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000721 return false;
722 }
Richard Smith35340502012-01-13 04:54:00 +0000723 }
724
725 if (!isa<CXXConstructorDecl>(NewFD)) {
726 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000727 // The definition of a constexpr function shall satisfy the following
728 // constraints:
729 // - it shall not be virtual;
730 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
731 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000732 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000733
Richard Smith86c3ae42012-02-13 03:54:03 +0000734 // If it's not obvious why this function is virtual, find an overridden
735 // function which uses the 'virtual' keyword.
736 const CXXMethodDecl *WrittenVirtual = Method;
737 while (!WrittenVirtual->isVirtualAsWritten())
738 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
739 if (WrittenVirtual != Method)
740 Diag(WrittenVirtual->getLocation(),
741 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000742 return false;
743 }
744
745 // - its return type shall be a literal type;
746 QualType RT = NewFD->getResultType();
747 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000748 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000749 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000750 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000751 }
752
Richard Smith35340502012-01-13 04:54:00 +0000753 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000754 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000755 return false;
756
Richard Smith9f569cc2011-10-01 02:31:28 +0000757 return true;
758}
759
760/// Check the given declaration statement is legal within a constexpr function
761/// body. C++0x [dcl.constexpr]p3,p4.
762///
763/// \return true if the body is OK, false if we have diagnosed a problem.
764static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
765 DeclStmt *DS) {
766 // C++0x [dcl.constexpr]p3 and p4:
767 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
768 // contain only
769 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
770 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
771 switch ((*DclIt)->getKind()) {
772 case Decl::StaticAssert:
773 case Decl::Using:
774 case Decl::UsingShadow:
775 case Decl::UsingDirective:
776 case Decl::UnresolvedUsingTypename:
777 // - static_assert-declarations
778 // - using-declarations,
779 // - using-directives,
780 continue;
781
782 case Decl::Typedef:
783 case Decl::TypeAlias: {
784 // - typedef declarations and alias-declarations that do not define
785 // classes or enumerations,
786 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
787 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
788 // Don't allow variably-modified types in constexpr functions.
789 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
790 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
791 << TL.getSourceRange() << TL.getType()
792 << isa<CXXConstructorDecl>(Dcl);
793 return false;
794 }
795 continue;
796 }
797
798 case Decl::Enum:
799 case Decl::CXXRecord:
800 // As an extension, we allow the declaration (but not the definition) of
801 // classes and enumerations in all declarations, not just in typedef and
802 // alias declarations.
803 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
804 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
805 << isa<CXXConstructorDecl>(Dcl);
806 return false;
807 }
808 continue;
809
810 case Decl::Var:
811 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
812 << isa<CXXConstructorDecl>(Dcl);
813 return false;
814
815 default:
816 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
817 << isa<CXXConstructorDecl>(Dcl);
818 return false;
819 }
820 }
821
822 return true;
823}
824
825/// Check that the given field is initialized within a constexpr constructor.
826///
827/// \param Dcl The constexpr constructor being checked.
828/// \param Field The field being checked. This may be a member of an anonymous
829/// struct or union nested within the class being checked.
830/// \param Inits All declarations, including anonymous struct/union members and
831/// indirect members, for which any initialization was provided.
832/// \param Diagnosed Set to true if an error is produced.
833static void CheckConstexprCtorInitializer(Sema &SemaRef,
834 const FunctionDecl *Dcl,
835 FieldDecl *Field,
836 llvm::SmallSet<Decl*, 16> &Inits,
837 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000838 if (Field->isUnnamedBitfield())
839 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000840
841 if (Field->isAnonymousStructOrUnion() &&
842 Field->getType()->getAsCXXRecordDecl()->isEmpty())
843 return;
844
Richard Smith9f569cc2011-10-01 02:31:28 +0000845 if (!Inits.count(Field)) {
846 if (!Diagnosed) {
847 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
848 Diagnosed = true;
849 }
850 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
851 } else if (Field->isAnonymousStructOrUnion()) {
852 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
853 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
854 I != E; ++I)
855 // If an anonymous union contains an anonymous struct of which any member
856 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000857 if (!RD->isUnion() || Inits.count(*I))
858 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000859 }
860}
861
862/// Check the body for the given constexpr function declaration only contains
863/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
864///
865/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000866bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000867 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000868 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000869 // The definition of a constexpr function shall satisfy the following
870 // constraints: [...]
871 // - its function-body shall be = delete, = default, or a
872 // compound-statement
873 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000874 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000875 // In the definition of a constexpr constructor, [...]
876 // - its function-body shall not be a function-try-block;
877 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
878 << isa<CXXConstructorDecl>(Dcl);
879 return false;
880 }
881
882 // - its function-body shall be [...] a compound-statement that contains only
883 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
884
885 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
886 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
887 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
888 switch ((*BodyIt)->getStmtClass()) {
889 case Stmt::NullStmtClass:
890 // - null statements,
891 continue;
892
893 case Stmt::DeclStmtClass:
894 // - static_assert-declarations
895 // - using-declarations,
896 // - using-directives,
897 // - typedef declarations and alias-declarations that do not define
898 // classes or enumerations,
899 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
900 return false;
901 continue;
902
903 case Stmt::ReturnStmtClass:
904 // - and exactly one return statement;
905 if (isa<CXXConstructorDecl>(Dcl))
906 break;
907
908 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000909 continue;
910
911 default:
912 break;
913 }
914
915 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
916 << isa<CXXConstructorDecl>(Dcl);
917 return false;
918 }
919
920 if (const CXXConstructorDecl *Constructor
921 = dyn_cast<CXXConstructorDecl>(Dcl)) {
922 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000923 // DR1359:
924 // - every non-variant non-static data member and base class sub-object
925 // shall be initialized;
926 // - if the class is a non-empty union, or for each non-empty anonymous
927 // union member of a non-union class, exactly one non-static data member
928 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000929 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000930 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000931 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
932 return false;
933 }
Richard Smith6e433752011-10-10 16:38:04 +0000934 } else if (!Constructor->isDependentContext() &&
935 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000936 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
937
938 // Skip detailed checking if we have enough initializers, and we would
939 // allow at most one initializer per member.
940 bool AnyAnonStructUnionMembers = false;
941 unsigned Fields = 0;
942 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
943 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000944 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000945 AnyAnonStructUnionMembers = true;
946 break;
947 }
948 }
949 if (AnyAnonStructUnionMembers ||
950 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
951 // Check initialization of non-static data members. Base classes are
952 // always initialized so do not need to be checked. Dependent bases
953 // might not have initializers in the member initializer list.
954 llvm::SmallSet<Decl*, 16> Inits;
955 for (CXXConstructorDecl::init_const_iterator
956 I = Constructor->init_begin(), E = Constructor->init_end();
957 I != E; ++I) {
958 if (FieldDecl *FD = (*I)->getMember())
959 Inits.insert(FD);
960 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
961 Inits.insert(ID->chain_begin(), ID->chain_end());
962 }
963
964 bool Diagnosed = false;
965 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
966 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000967 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000968 if (Diagnosed)
969 return false;
970 }
971 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000972 } else {
973 if (ReturnStmts.empty()) {
974 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
975 return false;
976 }
977 if (ReturnStmts.size() > 1) {
978 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
979 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
980 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
981 return false;
982 }
983 }
984
Richard Smith5ba73e12012-02-04 00:33:54 +0000985 // C++11 [dcl.constexpr]p5:
986 // if no function argument values exist such that the function invocation
987 // substitution would produce a constant expression, the program is
988 // ill-formed; no diagnostic required.
989 // C++11 [dcl.constexpr]p3:
990 // - every constructor call and implicit conversion used in initializing the
991 // return value shall be one of those allowed in a constant expression.
992 // C++11 [dcl.constexpr]p4:
993 // - every constructor involved in initializing non-static data members and
994 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000995 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000996 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000997 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
998 << isa<CXXConstructorDecl>(Dcl);
999 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1000 Diag(Diags[I].first, Diags[I].second);
1001 return false;
1002 }
1003
Richard Smith9f569cc2011-10-01 02:31:28 +00001004 return true;
1005}
1006
Douglas Gregorb48fe382008-10-31 09:07:45 +00001007/// isCurrentClassName - Determine whether the identifier II is the
1008/// name of the class type currently being defined. In the case of
1009/// nested classes, this will only return true if II is the name of
1010/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001011bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1012 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001013 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001014
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001015 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001016 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001017 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001018 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1019 } else
1020 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1021
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001022 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001023 return &II == CurDecl->getIdentifier();
1024 else
1025 return false;
1026}
1027
Douglas Gregor229d47a2012-11-10 07:24:09 +00001028/// \brief Determine whether the given class is a base class of the given
1029/// class, including looking at dependent bases.
1030static bool findCircularInheritance(const CXXRecordDecl *Class,
1031 const CXXRecordDecl *Current) {
1032 SmallVector<const CXXRecordDecl*, 8> Queue;
1033
1034 Class = Class->getCanonicalDecl();
1035 while (true) {
1036 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1037 E = Current->bases_end();
1038 I != E; ++I) {
1039 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1040 if (!Base)
1041 continue;
1042
1043 Base = Base->getDefinition();
1044 if (!Base)
1045 continue;
1046
1047 if (Base->getCanonicalDecl() == Class)
1048 return true;
1049
1050 Queue.push_back(Base);
1051 }
1052
1053 if (Queue.empty())
1054 return false;
1055
1056 Current = Queue.back();
1057 Queue.pop_back();
1058 }
1059
1060 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001061}
1062
Mike Stump1eb44332009-09-09 15:08:12 +00001063/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001064///
1065/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1066/// and returns NULL otherwise.
1067CXXBaseSpecifier *
1068Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1069 SourceRange SpecifierRange,
1070 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001071 TypeSourceInfo *TInfo,
1072 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001073 QualType BaseType = TInfo->getType();
1074
Douglas Gregor2943aed2009-03-03 04:44:36 +00001075 // C++ [class.union]p1:
1076 // A union shall not have base classes.
1077 if (Class->isUnion()) {
1078 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1079 << SpecifierRange;
1080 return 0;
1081 }
1082
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001083 if (EllipsisLoc.isValid() &&
1084 !TInfo->getType()->containsUnexpandedParameterPack()) {
1085 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1086 << TInfo->getTypeLoc().getSourceRange();
1087 EllipsisLoc = SourceLocation();
1088 }
Douglas Gregord777e282012-11-10 01:18:17 +00001089
1090 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1091
1092 if (BaseType->isDependentType()) {
1093 // Make sure that we don't have circular inheritance among our dependent
1094 // bases. For non-dependent bases, the check for completeness below handles
1095 // this.
1096 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1097 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1098 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001099 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001100 Diag(BaseLoc, diag::err_circular_inheritance)
1101 << BaseType << Context.getTypeDeclType(Class);
1102
1103 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1104 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1105 << BaseType;
1106
1107 return 0;
1108 }
1109 }
1110
Mike Stump1eb44332009-09-09 15:08:12 +00001111 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001112 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001113 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001114 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001115
1116 // Base specifiers must be record types.
1117 if (!BaseType->isRecordType()) {
1118 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1119 return 0;
1120 }
1121
1122 // C++ [class.union]p1:
1123 // A union shall not be used as a base class.
1124 if (BaseType->isUnionType()) {
1125 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1126 return 0;
1127 }
1128
1129 // C++ [class.derived]p2:
1130 // The class-name in a base-specifier shall not be an incompletely
1131 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001132 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001133 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001134 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001135 return 0;
John McCall572fc622010-08-17 07:23:57 +00001136 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001137
Eli Friedman1d954f62009-08-15 21:55:26 +00001138 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001139 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001140 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001141 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001142 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001143 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1144 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001145
Anders Carlsson1d209272011-03-25 14:55:14 +00001146 // C++ [class]p3:
1147 // If a class is marked final and it appears as a base-type-specifier in
1148 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001149 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001150 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1151 << CXXBaseDecl->getDeclName();
1152 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1153 << CXXBaseDecl->getDeclName();
1154 return 0;
1155 }
1156
John McCall572fc622010-08-17 07:23:57 +00001157 if (BaseDecl->isInvalidDecl())
1158 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001159
1160 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001161 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001162 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001163 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001164}
1165
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001166/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1167/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001168/// example:
1169/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001170/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001171BaseResult
John McCalld226f652010-08-21 09:40:31 +00001172Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001173 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001174 ParsedType basetype, SourceLocation BaseLoc,
1175 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001176 if (!classdecl)
1177 return true;
1178
Douglas Gregor40808ce2009-03-09 23:48:35 +00001179 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001180 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001181 if (!Class)
1182 return true;
1183
Nick Lewycky56062202010-07-26 16:56:01 +00001184 TypeSourceInfo *TInfo = 0;
1185 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001186
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001187 if (EllipsisLoc.isInvalid() &&
1188 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001189 UPPC_BaseType))
1190 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001191
Douglas Gregor2943aed2009-03-03 04:44:36 +00001192 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001193 Virtual, Access, TInfo,
1194 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001195 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001196 else
1197 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001198
Douglas Gregor2943aed2009-03-03 04:44:36 +00001199 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001200}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001201
Douglas Gregor2943aed2009-03-03 04:44:36 +00001202/// \brief Performs the actual work of attaching the given base class
1203/// specifiers to a C++ class.
1204bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1205 unsigned NumBases) {
1206 if (NumBases == 0)
1207 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001208
1209 // Used to keep track of which base types we have already seen, so
1210 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001211 // that the key is always the unqualified canonical type of the base
1212 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001213 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1214
1215 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001216 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001217 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001218 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001219 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001220 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001221 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001222
1223 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1224 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001225 // C++ [class.mi]p3:
1226 // A class shall not be specified as a direct base class of a
1227 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001228 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001229 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001230 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001231 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001232
1233 // Delete the duplicate base class specifier; we're going to
1234 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001235 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001236
1237 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001238 } else {
1239 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001240 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001241 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001242 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1243 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1244 if (Class->isInterface() &&
1245 (!RD->isInterface() ||
1246 KnownBase->getAccessSpecifier() != AS_public)) {
1247 // The Microsoft extension __interface does not permit bases that
1248 // are not themselves public interfaces.
1249 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1250 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1251 << RD->getSourceRange();
1252 Invalid = true;
1253 }
1254 if (RD->hasAttr<WeakAttr>())
1255 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1256 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001257 }
1258 }
1259
1260 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001261 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001262
1263 // Delete the remaining (good) base class specifiers, since their
1264 // data has been copied into the CXXRecordDecl.
1265 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001266 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001267
1268 return Invalid;
1269}
1270
1271/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1272/// class, after checking whether there are any duplicate base
1273/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001274void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001275 unsigned NumBases) {
1276 if (!ClassDecl || !Bases || !NumBases)
1277 return;
1278
1279 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001280 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001281 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001282}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001283
John McCall3cb0ebd2010-03-10 03:28:59 +00001284static CXXRecordDecl *GetClassForType(QualType T) {
1285 if (const RecordType *RT = T->getAs<RecordType>())
1286 return cast<CXXRecordDecl>(RT->getDecl());
1287 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1288 return ICT->getDecl();
1289 else
1290 return 0;
1291}
1292
Douglas Gregora8f32e02009-10-06 17:59:45 +00001293/// \brief Determine whether the type \p Derived is a C++ class that is
1294/// derived from the type \p Base.
1295bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001296 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001297 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001298
1299 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1300 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001301 return false;
1302
John McCall3cb0ebd2010-03-10 03:28:59 +00001303 CXXRecordDecl *BaseRD = GetClassForType(Base);
1304 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001305 return false;
1306
John McCall86ff3082010-02-04 22:26:26 +00001307 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1308 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001309}
1310
1311/// \brief Determine whether the type \p Derived is a C++ class that is
1312/// derived from the type \p Base.
1313bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001314 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001315 return false;
1316
John McCall3cb0ebd2010-03-10 03:28:59 +00001317 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1318 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001319 return false;
1320
John McCall3cb0ebd2010-03-10 03:28:59 +00001321 CXXRecordDecl *BaseRD = GetClassForType(Base);
1322 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001323 return false;
1324
Douglas Gregora8f32e02009-10-06 17:59:45 +00001325 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1326}
1327
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001328void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001329 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001330 assert(BasePathArray.empty() && "Base path array must be empty!");
1331 assert(Paths.isRecordingPaths() && "Must record paths!");
1332
1333 const CXXBasePath &Path = Paths.front();
1334
1335 // We first go backward and check if we have a virtual base.
1336 // FIXME: It would be better if CXXBasePath had the base specifier for
1337 // the nearest virtual base.
1338 unsigned Start = 0;
1339 for (unsigned I = Path.size(); I != 0; --I) {
1340 if (Path[I - 1].Base->isVirtual()) {
1341 Start = I - 1;
1342 break;
1343 }
1344 }
1345
1346 // Now add all bases.
1347 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001348 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001349}
1350
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001351/// \brief Determine whether the given base path includes a virtual
1352/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001353bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1354 for (CXXCastPath::const_iterator B = BasePath.begin(),
1355 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001356 B != BEnd; ++B)
1357 if ((*B)->isVirtual())
1358 return true;
1359
1360 return false;
1361}
1362
Douglas Gregora8f32e02009-10-06 17:59:45 +00001363/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1364/// conversion (where Derived and Base are class types) is
1365/// well-formed, meaning that the conversion is unambiguous (and
1366/// that all of the base classes are accessible). Returns true
1367/// and emits a diagnostic if the code is ill-formed, returns false
1368/// otherwise. Loc is the location where this routine should point to
1369/// if there is an error, and Range is the source range to highlight
1370/// if there is an error.
1371bool
1372Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001373 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001374 unsigned AmbigiousBaseConvID,
1375 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001376 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001377 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001378 // First, determine whether the path from Derived to Base is
1379 // ambiguous. This is slightly more expensive than checking whether
1380 // the Derived to Base conversion exists, because here we need to
1381 // explore multiple paths to determine if there is an ambiguity.
1382 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1383 /*DetectVirtual=*/false);
1384 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1385 assert(DerivationOkay &&
1386 "Can only be used with a derived-to-base conversion");
1387 (void)DerivationOkay;
1388
1389 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001390 if (InaccessibleBaseID) {
1391 // Check that the base class can be accessed.
1392 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1393 InaccessibleBaseID)) {
1394 case AR_inaccessible:
1395 return true;
1396 case AR_accessible:
1397 case AR_dependent:
1398 case AR_delayed:
1399 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001400 }
John McCall6b2accb2010-02-10 09:31:12 +00001401 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001402
1403 // Build a base path if necessary.
1404 if (BasePath)
1405 BuildBasePathArray(Paths, *BasePath);
1406 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001407 }
1408
1409 // We know that the derived-to-base conversion is ambiguous, and
1410 // we're going to produce a diagnostic. Perform the derived-to-base
1411 // search just one more time to compute all of the possible paths so
1412 // that we can print them out. This is more expensive than any of
1413 // the previous derived-to-base checks we've done, but at this point
1414 // performance isn't as much of an issue.
1415 Paths.clear();
1416 Paths.setRecordingPaths(true);
1417 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1418 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1419 (void)StillOkay;
1420
1421 // Build up a textual representation of the ambiguous paths, e.g.,
1422 // D -> B -> A, that will be used to illustrate the ambiguous
1423 // conversions in the diagnostic. We only print one of the paths
1424 // to each base class subobject.
1425 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1426
1427 Diag(Loc, AmbigiousBaseConvID)
1428 << Derived << Base << PathDisplayStr << Range << Name;
1429 return true;
1430}
1431
1432bool
1433Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001434 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001435 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001436 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001437 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001438 IgnoreAccess ? 0
1439 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001440 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001441 Loc, Range, DeclarationName(),
1442 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001443}
1444
1445
1446/// @brief Builds a string representing ambiguous paths from a
1447/// specific derived class to different subobjects of the same base
1448/// class.
1449///
1450/// This function builds a string that can be used in error messages
1451/// to show the different paths that one can take through the
1452/// inheritance hierarchy to go from the derived class to different
1453/// subobjects of a base class. The result looks something like this:
1454/// @code
1455/// struct D -> struct B -> struct A
1456/// struct D -> struct C -> struct A
1457/// @endcode
1458std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1459 std::string PathDisplayStr;
1460 std::set<unsigned> DisplayedPaths;
1461 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1462 Path != Paths.end(); ++Path) {
1463 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1464 // We haven't displayed a path to this particular base
1465 // class subobject yet.
1466 PathDisplayStr += "\n ";
1467 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1468 for (CXXBasePath::const_iterator Element = Path->begin();
1469 Element != Path->end(); ++Element)
1470 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1471 }
1472 }
1473
1474 return PathDisplayStr;
1475}
1476
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001477//===----------------------------------------------------------------------===//
1478// C++ class member Handling
1479//===----------------------------------------------------------------------===//
1480
Abramo Bagnara6206d532010-06-05 05:09:32 +00001481/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001482bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1483 SourceLocation ASLoc,
1484 SourceLocation ColonLoc,
1485 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001486 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001487 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001488 ASLoc, ColonLoc);
1489 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001490 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001491}
1492
Richard Smitha4b39652012-08-06 03:25:17 +00001493/// CheckOverrideControl - Check C++11 override control semantics.
1494void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001495 if (D->isInvalidDecl())
1496 return;
1497
Chris Lattner5f9e2722011-07-23 10:55:15 +00001498 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001499
Richard Smitha4b39652012-08-06 03:25:17 +00001500 // Do we know which functions this declaration might be overriding?
1501 bool OverridesAreKnown = !MD ||
1502 (!MD->getParent()->hasAnyDependentBases() &&
1503 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001504
Richard Smitha4b39652012-08-06 03:25:17 +00001505 if (!MD || !MD->isVirtual()) {
1506 if (OverridesAreKnown) {
1507 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1508 Diag(OA->getLocation(),
1509 diag::override_keyword_only_allowed_on_virtual_member_functions)
1510 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1511 D->dropAttr<OverrideAttr>();
1512 }
1513 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1514 Diag(FA->getLocation(),
1515 diag::override_keyword_only_allowed_on_virtual_member_functions)
1516 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1517 D->dropAttr<FinalAttr>();
1518 }
1519 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001520 return;
1521 }
Richard Smitha4b39652012-08-06 03:25:17 +00001522
1523 if (!OverridesAreKnown)
1524 return;
1525
1526 // C++11 [class.virtual]p5:
1527 // If a virtual function is marked with the virt-specifier override and
1528 // does not override a member function of a base class, the program is
1529 // ill-formed.
1530 bool HasOverriddenMethods =
1531 MD->begin_overridden_methods() != MD->end_overridden_methods();
1532 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1533 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1534 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001535}
1536
Richard Smitha4b39652012-08-06 03:25:17 +00001537/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001538/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001539/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001540bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1541 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001542 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001543 return false;
1544
1545 Diag(New->getLocation(), diag::err_final_function_overridden)
1546 << New->getDeclName();
1547 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1548 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001549}
1550
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001551static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001552 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1553 // FIXME: Destruction of ObjC lifetime types has side-effects.
1554 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1555 return !RD->isCompleteDefinition() ||
1556 !RD->hasTrivialDefaultConstructor() ||
1557 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001558 return false;
1559}
1560
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001561/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1562/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001563/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001564/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1565/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001566Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001567Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001568 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001569 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001570 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001571 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001572 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1573 DeclarationName Name = NameInfo.getName();
1574 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001575
1576 // For anonymous bitfields, the location should point to the type.
1577 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001578 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001579
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001580 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001581
John McCall4bde1e12010-06-04 08:34:12 +00001582 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001583 assert(!DS.isFriendSpecified());
1584
Richard Smith1ab0d902011-06-25 02:28:38 +00001585 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001586
John McCalle402e722012-09-25 07:32:39 +00001587 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1588 // The Microsoft extension __interface only permits public member functions
1589 // and prohibits constructors, destructors, operators, non-public member
1590 // functions, static methods and data members.
1591 unsigned InvalidDecl;
1592 bool ShowDeclName = true;
1593 if (!isFunc)
1594 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1595 else if (AS != AS_public)
1596 InvalidDecl = 2;
1597 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1598 InvalidDecl = 3;
1599 else switch (Name.getNameKind()) {
1600 case DeclarationName::CXXConstructorName:
1601 InvalidDecl = 4;
1602 ShowDeclName = false;
1603 break;
1604
1605 case DeclarationName::CXXDestructorName:
1606 InvalidDecl = 5;
1607 ShowDeclName = false;
1608 break;
1609
1610 case DeclarationName::CXXOperatorName:
1611 case DeclarationName::CXXConversionFunctionName:
1612 InvalidDecl = 6;
1613 break;
1614
1615 default:
1616 InvalidDecl = 0;
1617 break;
1618 }
1619
1620 if (InvalidDecl) {
1621 if (ShowDeclName)
1622 Diag(Loc, diag::err_invalid_member_in_interface)
1623 << (InvalidDecl-1) << Name;
1624 else
1625 Diag(Loc, diag::err_invalid_member_in_interface)
1626 << (InvalidDecl-1) << "";
1627 return 0;
1628 }
1629 }
1630
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001631 // C++ 9.2p6: A member shall not be declared to have automatic storage
1632 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001633 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1634 // data members and cannot be applied to names declared const or static,
1635 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001636 switch (DS.getStorageClassSpec()) {
1637 case DeclSpec::SCS_unspecified:
1638 case DeclSpec::SCS_typedef:
1639 case DeclSpec::SCS_static:
1640 // FALL THROUGH.
1641 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001642 case DeclSpec::SCS_mutable:
1643 if (isFunc) {
1644 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001645 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001646 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001647 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001648
Sebastian Redla11f42f2008-11-17 23:24:37 +00001649 // FIXME: It would be nicer if the keyword was ignored only for this
1650 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001651 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001652 }
1653 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001654 default:
1655 if (DS.getStorageClassSpecLoc().isValid())
1656 Diag(DS.getStorageClassSpecLoc(),
1657 diag::err_storageclass_invalid_for_member);
1658 else
1659 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1660 D.getMutableDeclSpec().ClearStorageClassSpecs();
1661 }
1662
Sebastian Redl669d5d72008-11-14 23:42:31 +00001663 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1664 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001665 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001666
1667 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001668 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001669 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001670
1671 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001672 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001673 Diag(Loc, diag::err_bad_variable_name)
1674 << Name;
1675 return 0;
1676 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001677
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001678 IdentifierInfo *II = Name.getAsIdentifierInfo();
1679
Douglas Gregorf2503652011-09-21 14:40:46 +00001680 // Member field could not be with "template" keyword.
1681 // So TemplateParameterLists should be empty in this case.
1682 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001683 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001684 if (TemplateParams->size()) {
1685 // There is no such thing as a member field template.
1686 Diag(D.getIdentifierLoc(), diag::err_template_member)
1687 << II
1688 << SourceRange(TemplateParams->getTemplateLoc(),
1689 TemplateParams->getRAngleLoc());
1690 } else {
1691 // There is an extraneous 'template<>' for this member.
1692 Diag(TemplateParams->getTemplateLoc(),
1693 diag::err_template_member_noparams)
1694 << II
1695 << SourceRange(TemplateParams->getTemplateLoc(),
1696 TemplateParams->getRAngleLoc());
1697 }
1698 return 0;
1699 }
1700
Douglas Gregor922fff22010-10-13 22:19:53 +00001701 if (SS.isSet() && !SS.isInvalid()) {
1702 // The user provided a superfluous scope specifier inside a class
1703 // definition:
1704 //
1705 // class X {
1706 // int X::member;
1707 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001708 if (DeclContext *DC = computeDeclContext(SS, false))
1709 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001710 else
1711 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1712 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001713
Douglas Gregor922fff22010-10-13 22:19:53 +00001714 SS.clear();
1715 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001716
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001717 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001718 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001719 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001720 } else {
Richard Smithca523302012-06-10 03:12:00 +00001721 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001722
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001723 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001724 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001725 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001726 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001727
1728 // Non-instance-fields can't have a bitfield.
1729 if (BitWidth) {
1730 if (Member->isInvalidDecl()) {
1731 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001732 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001733 // C++ 9.6p3: A bit-field shall not be a static member.
1734 // "static member 'A' cannot be a bit-field"
1735 Diag(Loc, diag::err_static_not_bitfield)
1736 << Name << BitWidth->getSourceRange();
1737 } else if (isa<TypedefDecl>(Member)) {
1738 // "typedef member 'x' cannot be a bit-field"
1739 Diag(Loc, diag::err_typedef_not_bitfield)
1740 << Name << BitWidth->getSourceRange();
1741 } else {
1742 // A function typedef ("typedef int f(); f a;").
1743 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1744 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001745 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001746 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001747 }
Mike Stump1eb44332009-09-09 15:08:12 +00001748
Chris Lattner8b963ef2009-03-05 23:01:03 +00001749 BitWidth = 0;
1750 Member->setInvalidDecl();
1751 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001752
1753 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001754
Douglas Gregor37b372b2009-08-20 22:52:58 +00001755 // If we have declared a member function template, set the access of the
1756 // templated declaration as well.
1757 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1758 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001759 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001760
Richard Smitha4b39652012-08-06 03:25:17 +00001761 if (VS.isOverrideSpecified())
1762 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1763 if (VS.isFinalSpecified())
1764 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001765
Douglas Gregorf5251602011-03-08 17:10:18 +00001766 if (VS.getLastLocation().isValid()) {
1767 // Update the end location of a method that has a virt-specifiers.
1768 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1769 MD->setRangeEnd(VS.getLastLocation());
1770 }
Richard Smitha4b39652012-08-06 03:25:17 +00001771
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001772 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001773
Douglas Gregor10bd3682008-11-17 22:58:34 +00001774 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001775
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001776 if (isInstField) {
1777 FieldDecl *FD = cast<FieldDecl>(Member);
1778 FieldCollector->Add(FD);
1779
1780 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1781 FD->getLocation())
1782 != DiagnosticsEngine::Ignored) {
1783 // Remember all explicit private FieldDecls that have a name, no side
1784 // effects and are not part of a dependent type declaration.
1785 if (!FD->isImplicit() && FD->getDeclName() &&
1786 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001787 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001788 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001789 !InitializationHasSideEffects(*FD))
1790 UnusedPrivateFields.insert(FD);
1791 }
1792 }
1793
John McCalld226f652010-08-21 09:40:31 +00001794 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001795}
1796
Hans Wennborg471f9852012-09-18 15:58:06 +00001797namespace {
1798 class UninitializedFieldVisitor
1799 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1800 Sema &S;
1801 ValueDecl *VD;
1802 public:
1803 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1804 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001805 S(S) {
1806 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(VD))
1807 this->VD = IFD->getAnonField();
1808 else
1809 this->VD = VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001810 }
1811
1812 void HandleExpr(Expr *E) {
1813 if (!E) return;
1814
1815 // Expressions like x(x) sometimes lack the surrounding expressions
1816 // but need to be checked anyways.
1817 HandleValue(E);
1818 Visit(E);
1819 }
1820
1821 void HandleValue(Expr *E) {
1822 E = E->IgnoreParens();
1823
1824 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1825 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001826 return;
1827
1828 // FieldME is the inner-most MemberExpr that is not an anonymous struct
1829 // or union.
1830 MemberExpr *FieldME = ME;
1831
Hans Wennborg471f9852012-09-18 15:58:06 +00001832 Expr *Base = E;
1833 while (isa<MemberExpr>(Base)) {
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001834 ME = cast<MemberExpr>(Base);
1835
1836 if (isa<VarDecl>(ME->getMemberDecl()))
1837 return;
1838
1839 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
1840 if (!FD->isAnonymousStructOrUnion())
1841 FieldME = ME;
1842
Hans Wennborg471f9852012-09-18 15:58:06 +00001843 Base = ME->getBase();
1844 }
1845
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001846 if (VD == FieldME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg471f9852012-09-18 15:58:06 +00001847 unsigned diag = VD->getType()->isReferenceType()
1848 ? diag::warn_reference_field_is_uninit
1849 : diag::warn_field_is_uninit;
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001850 S.Diag(FieldME->getExprLoc(), diag) << VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001851 }
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001852 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00001853 }
1854
1855 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1856 HandleValue(CO->getTrueExpr());
1857 HandleValue(CO->getFalseExpr());
1858 return;
1859 }
1860
1861 if (BinaryConditionalOperator *BCO =
1862 dyn_cast<BinaryConditionalOperator>(E)) {
1863 HandleValue(BCO->getCommon());
1864 HandleValue(BCO->getFalseExpr());
1865 return;
1866 }
1867
1868 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1869 switch (BO->getOpcode()) {
1870 default:
1871 return;
1872 case(BO_PtrMemD):
1873 case(BO_PtrMemI):
1874 HandleValue(BO->getLHS());
1875 return;
1876 case(BO_Comma):
1877 HandleValue(BO->getRHS());
1878 return;
1879 }
1880 }
1881 }
1882
1883 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1884 if (E->getCastKind() == CK_LValueToRValue)
1885 HandleValue(E->getSubExpr());
1886
1887 Inherited::VisitImplicitCastExpr(E);
1888 }
1889
1890 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1891 Expr *Callee = E->getCallee();
1892 if (isa<MemberExpr>(Callee))
1893 HandleValue(Callee);
1894
1895 Inherited::VisitCXXMemberCallExpr(E);
1896 }
1897 };
1898 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1899 ValueDecl *VD) {
1900 UninitializedFieldVisitor(S, VD).HandleExpr(E);
1901 }
1902} // namespace
1903
Richard Smith7a614d82011-06-11 17:19:42 +00001904/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001905/// in-class initializer for a non-static C++ class member, and after
1906/// instantiating an in-class initializer in a class template. Such actions
1907/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001908void
Richard Smithca523302012-06-10 03:12:00 +00001909Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001910 Expr *InitExpr) {
1911 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001912 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1913 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001914
1915 if (!InitExpr) {
1916 FD->setInvalidDecl();
1917 FD->removeInClassInitializer();
1918 return;
1919 }
1920
Peter Collingbournefef21892011-10-23 18:59:44 +00001921 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1922 FD->setInvalidDecl();
1923 FD->removeInClassInitializer();
1924 return;
1925 }
1926
Hans Wennborg471f9852012-09-18 15:58:06 +00001927 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1928 != DiagnosticsEngine::Ignored) {
1929 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1930 }
1931
Richard Smith7a614d82011-06-11 17:19:42 +00001932 ExprResult Init = InitExpr;
Douglas Gregordd084272012-09-14 04:20:37 +00001933 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent() &&
1934 !FD->getDeclContext()->isDependentContext()) {
1935 // Note: We don't type-check when we're in a dependent context, because
1936 // the initialization-substitution code does not properly handle direct
1937 // list initialization. We have the same hackaround for ctor-initializers.
Sebastian Redl772291a2012-02-19 16:31:05 +00001938 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001939 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001940 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1941 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001942 Expr **Inits = &InitExpr;
1943 unsigned NumInits = 1;
1944 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001945 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001946 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001947 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001948 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1949 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001950 if (Init.isInvalid()) {
1951 FD->setInvalidDecl();
1952 return;
1953 }
1954
Richard Smithca523302012-06-10 03:12:00 +00001955 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001956 }
1957
1958 // C++0x [class.base.init]p7:
1959 // The initialization of each base and member constitutes a
1960 // full-expression.
1961 Init = MaybeCreateExprWithCleanups(Init);
1962 if (Init.isInvalid()) {
1963 FD->setInvalidDecl();
1964 return;
1965 }
1966
1967 InitExpr = Init.release();
1968
1969 FD->setInClassInitializer(InitExpr);
1970}
1971
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001972/// \brief Find the direct and/or virtual base specifiers that
1973/// correspond to the given base type, for use in base initialization
1974/// within a constructor.
1975static bool FindBaseInitializer(Sema &SemaRef,
1976 CXXRecordDecl *ClassDecl,
1977 QualType BaseType,
1978 const CXXBaseSpecifier *&DirectBaseSpec,
1979 const CXXBaseSpecifier *&VirtualBaseSpec) {
1980 // First, check for a direct base class.
1981 DirectBaseSpec = 0;
1982 for (CXXRecordDecl::base_class_const_iterator Base
1983 = ClassDecl->bases_begin();
1984 Base != ClassDecl->bases_end(); ++Base) {
1985 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1986 // We found a direct base of this type. That's what we're
1987 // initializing.
1988 DirectBaseSpec = &*Base;
1989 break;
1990 }
1991 }
1992
1993 // Check for a virtual base class.
1994 // FIXME: We might be able to short-circuit this if we know in advance that
1995 // there are no virtual bases.
1996 VirtualBaseSpec = 0;
1997 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1998 // We haven't found a base yet; search the class hierarchy for a
1999 // virtual base class.
2000 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2001 /*DetectVirtual=*/false);
2002 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
2003 BaseType, Paths)) {
2004 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2005 Path != Paths.end(); ++Path) {
2006 if (Path->back().Base->isVirtual()) {
2007 VirtualBaseSpec = Path->back().Base;
2008 break;
2009 }
2010 }
2011 }
2012 }
2013
2014 return DirectBaseSpec || VirtualBaseSpec;
2015}
2016
Sebastian Redl6df65482011-09-24 17:48:25 +00002017/// \brief Handle a C++ member initializer using braced-init-list syntax.
2018MemInitResult
2019Sema::ActOnMemInitializer(Decl *ConstructorD,
2020 Scope *S,
2021 CXXScopeSpec &SS,
2022 IdentifierInfo *MemberOrBase,
2023 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002024 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002025 SourceLocation IdLoc,
2026 Expr *InitList,
2027 SourceLocation EllipsisLoc) {
2028 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002029 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002030 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002031}
2032
2033/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002034MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002035Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002036 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002037 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002038 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002039 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002040 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002041 SourceLocation IdLoc,
2042 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002043 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002044 SourceLocation RParenLoc,
2045 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002046 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
2047 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002048 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002049 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002050 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002051}
2052
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002053namespace {
2054
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002055// Callback to only accept typo corrections that can be a valid C++ member
2056// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002057class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2058 public:
2059 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2060 : ClassDecl(ClassDecl) {}
2061
2062 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2063 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2064 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2065 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2066 else
2067 return isa<TypeDecl>(ND);
2068 }
2069 return false;
2070 }
2071
2072 private:
2073 CXXRecordDecl *ClassDecl;
2074};
2075
2076}
2077
Sebastian Redl6df65482011-09-24 17:48:25 +00002078/// \brief Handle a C++ member initializer.
2079MemInitResult
2080Sema::BuildMemInitializer(Decl *ConstructorD,
2081 Scope *S,
2082 CXXScopeSpec &SS,
2083 IdentifierInfo *MemberOrBase,
2084 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002085 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002086 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002087 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002088 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002089 if (!ConstructorD)
2090 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002091
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002092 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002093
2094 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002095 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002096 if (!Constructor) {
2097 // The user wrote a constructor initializer on a function that is
2098 // not a C++ constructor. Ignore the error for now, because we may
2099 // have more member initializers coming; we'll diagnose it just
2100 // once in ActOnMemInitializers.
2101 return true;
2102 }
2103
2104 CXXRecordDecl *ClassDecl = Constructor->getParent();
2105
2106 // C++ [class.base.init]p2:
2107 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002108 // constructor's class and, if not found in that scope, are looked
2109 // up in the scope containing the constructor's definition.
2110 // [Note: if the constructor's class contains a member with the
2111 // same name as a direct or virtual base class of the class, a
2112 // mem-initializer-id naming the member or base class and composed
2113 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002114 // mem-initializer-id for the hidden base class may be specified
2115 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002116 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002117 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002118 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002119 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00002120 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002121 ValueDecl *Member;
2122 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
2123 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002124 if (EllipsisLoc.isValid())
2125 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002126 << MemberOrBase
2127 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002128
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002129 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002130 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002131 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002132 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002133 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002134 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002135 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002136
2137 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002138 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002139 } else if (DS.getTypeSpecType() == TST_decltype) {
2140 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002141 } else {
2142 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2143 LookupParsedName(R, S, &SS);
2144
2145 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2146 if (!TyD) {
2147 if (R.isAmbiguous()) return true;
2148
John McCallfd225442010-04-09 19:01:14 +00002149 // We don't want access-control diagnostics here.
2150 R.suppressDiagnostics();
2151
Douglas Gregor7a886e12010-01-19 06:46:48 +00002152 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2153 bool NotUnknownSpecialization = false;
2154 DeclContext *DC = computeDeclContext(SS, false);
2155 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2156 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2157
2158 if (!NotUnknownSpecialization) {
2159 // When the scope specifier can refer to a member of an unknown
2160 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002161 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2162 SS.getWithLocInContext(Context),
2163 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002164 if (BaseType.isNull())
2165 return true;
2166
Douglas Gregor7a886e12010-01-19 06:46:48 +00002167 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002168 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002169 }
2170 }
2171
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002172 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002173 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002174 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002175 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002176 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002177 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002178 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2179 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002180 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002181 // We have found a non-static data member with a similar
2182 // name to what was typed; complain and initialize that
2183 // member.
2184 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2185 << MemberOrBase << true << CorrectedQuotedStr
2186 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2187 Diag(Member->getLocation(), diag::note_previous_decl)
2188 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002189
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002190 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002191 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002192 const CXXBaseSpecifier *DirectBaseSpec;
2193 const CXXBaseSpecifier *VirtualBaseSpec;
2194 if (FindBaseInitializer(*this, ClassDecl,
2195 Context.getTypeDeclType(Type),
2196 DirectBaseSpec, VirtualBaseSpec)) {
2197 // We have found a direct or virtual base class with a
2198 // similar name to what was typed; complain and initialize
2199 // that base class.
2200 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002201 << MemberOrBase << false << CorrectedQuotedStr
2202 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002203
2204 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2205 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002206 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002207 diag::note_base_class_specified_here)
2208 << BaseSpec->getType()
2209 << BaseSpec->getSourceRange();
2210
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002211 TyD = Type;
2212 }
2213 }
2214 }
2215
Douglas Gregor7a886e12010-01-19 06:46:48 +00002216 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002217 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002218 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002219 return true;
2220 }
John McCall2b194412009-12-21 10:41:20 +00002221 }
2222
Douglas Gregor7a886e12010-01-19 06:46:48 +00002223 if (BaseType.isNull()) {
2224 BaseType = Context.getTypeDeclType(TyD);
2225 if (SS.isSet()) {
2226 NestedNameSpecifier *Qualifier =
2227 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002228
Douglas Gregor7a886e12010-01-19 06:46:48 +00002229 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002230 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002231 }
John McCall2b194412009-12-21 10:41:20 +00002232 }
2233 }
Mike Stump1eb44332009-09-09 15:08:12 +00002234
John McCalla93c9342009-12-07 02:54:59 +00002235 if (!TInfo)
2236 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002237
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002238 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002239}
2240
Chandler Carruth81c64772011-09-03 01:14:15 +00002241/// Checks a member initializer expression for cases where reference (or
2242/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002243static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2244 Expr *Init,
2245 SourceLocation IdLoc) {
2246 QualType MemberTy = Member->getType();
2247
2248 // We only handle pointers and references currently.
2249 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2250 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2251 return;
2252
2253 const bool IsPointer = MemberTy->isPointerType();
2254 if (IsPointer) {
2255 if (const UnaryOperator *Op
2256 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2257 // The only case we're worried about with pointers requires taking the
2258 // address.
2259 if (Op->getOpcode() != UO_AddrOf)
2260 return;
2261
2262 Init = Op->getSubExpr();
2263 } else {
2264 // We only handle address-of expression initializers for pointers.
2265 return;
2266 }
2267 }
2268
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002269 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2270 // Taking the address of a temporary will be diagnosed as a hard error.
2271 if (IsPointer)
2272 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002273
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002274 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2275 << Member << Init->getSourceRange();
2276 } else if (const DeclRefExpr *DRE
2277 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2278 // We only warn when referring to a non-reference parameter declaration.
2279 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2280 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002281 return;
2282
2283 S.Diag(Init->getExprLoc(),
2284 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2285 : diag::warn_bind_ref_member_to_parameter)
2286 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002287 } else {
2288 // Other initializers are fine.
2289 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002290 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002291
2292 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2293 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002294}
2295
John McCallf312b1e2010-08-26 23:41:50 +00002296MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002297Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002298 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002299 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2300 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2301 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002302 "Member must be a FieldDecl or IndirectFieldDecl");
2303
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002304 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002305 return true;
2306
Douglas Gregor464b2f02010-11-05 22:21:31 +00002307 if (Member->isInvalidDecl())
2308 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002309
John McCallb4190042009-11-04 23:02:40 +00002310 // Diagnose value-uses of fields to initialize themselves, e.g.
2311 // foo(foo)
2312 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002313 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002314 Expr **Args;
2315 unsigned NumArgs;
2316 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2317 Args = ParenList->getExprs();
2318 NumArgs = ParenList->getNumExprs();
2319 } else {
2320 InitListExpr *InitList = cast<InitListExpr>(Init);
2321 Args = InitList->getInits();
2322 NumArgs = InitList->getNumInits();
2323 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002324
Richard Trieude5e75c2012-06-14 23:11:34 +00002325 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2326 != DiagnosticsEngine::Ignored)
2327 for (unsigned i = 0; i < NumArgs; ++i)
2328 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002329 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002330 // initializing the i'th field, throw a warning if any of the >= i'th
2331 // fields are used, as they are not yet initialized.
2332 // Right now we are only handling the case where the i'th field uses
2333 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002334 // Also need to take into account that some fields may be initialized by
2335 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002336 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002337
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002338 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002339
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002340 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002341 // Can't check initialization for a member of dependent type or when
2342 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002343 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002344 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002345 bool InitList = false;
2346 if (isa<InitListExpr>(Init)) {
2347 InitList = true;
2348 Args = &Init;
2349 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002350
2351 if (isStdInitializerList(Member->getType(), 0)) {
2352 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2353 << /*at end of ctor*/1 << InitRange;
2354 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002355 }
2356
Chandler Carruth894aed92010-12-06 09:23:57 +00002357 // Initialize the member.
2358 InitializedEntity MemberEntity =
2359 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2360 : InitializedEntity::InitializeMember(IndirectMember, 0);
2361 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002362 InitList ? InitializationKind::CreateDirectList(IdLoc)
2363 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2364 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002365
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002366 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2367 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002368 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002369 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002370 if (MemberInit.isInvalid())
2371 return true;
2372
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002373 CheckImplicitConversions(MemberInit.get(),
2374 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002375
2376 // C++0x [class.base.init]p7:
2377 // The initialization of each base and member constitutes a
2378 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002379 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002380 if (MemberInit.isInvalid())
2381 return true;
2382
2383 // If we are in a dependent context, template instantiation will
2384 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002385 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002386 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2387 // of the information that we have about the member
2388 // initializer. However, deconstructing the ASTs is a dicey process,
2389 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002390 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002391 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002392 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002393 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002394 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2395 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002396 }
2397
Chandler Carruth894aed92010-12-06 09:23:57 +00002398 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002399 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2400 InitRange.getBegin(), Init,
2401 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002402 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002403 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2404 InitRange.getBegin(), Init,
2405 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002406 }
Eli Friedman59c04372009-07-29 19:44:27 +00002407}
2408
John McCallf312b1e2010-08-26 23:41:50 +00002409MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002410Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002411 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002412 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002413 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002414 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002415 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002416 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002417
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002418 bool InitList = true;
2419 Expr **Args = &Init;
2420 unsigned NumArgs = 1;
2421 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2422 InitList = false;
2423 Args = ParenList->getExprs();
2424 NumArgs = ParenList->getNumExprs();
2425 }
2426
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002427 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002428 // Initialize the object.
2429 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2430 QualType(ClassDecl->getTypeForDecl(), 0));
2431 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002432 InitList ? InitializationKind::CreateDirectList(NameLoc)
2433 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2434 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002435 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2436 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002437 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002438 0);
Sean Hunt41717662011-02-26 19:13:13 +00002439 if (DelegationInit.isInvalid())
2440 return true;
2441
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002442 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2443 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002444
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002445 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002446
2447 // C++0x [class.base.init]p7:
2448 // The initialization of each base and member constitutes a
2449 // full-expression.
2450 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2451 if (DelegationInit.isInvalid())
2452 return true;
2453
Eli Friedmand21016f2012-05-19 23:35:23 +00002454 // If we are in a dependent context, template instantiation will
2455 // perform this type-checking again. Just save the arguments that we
2456 // received in a ParenListExpr.
2457 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2458 // of the information that we have about the base
2459 // initializer. However, deconstructing the ASTs is a dicey process,
2460 // and this approach is far more likely to get the corner cases right.
2461 if (CurContext->isDependentContext())
2462 DelegationInit = Owned(Init);
2463
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002464 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002465 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002466 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002467}
2468
2469MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002470Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002471 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002472 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002473 SourceLocation BaseLoc
2474 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002475
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002476 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2477 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2478 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2479
2480 // C++ [class.base.init]p2:
2481 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002482 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002483 // of that class, the mem-initializer is ill-formed. A
2484 // mem-initializer-list can initialize a base class using any
2485 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002486 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002487
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002488 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002489 if (EllipsisLoc.isValid()) {
2490 // This is a pack expansion.
2491 if (!BaseType->containsUnexpandedParameterPack()) {
2492 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002493 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002494
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002495 EllipsisLoc = SourceLocation();
2496 }
2497 } else {
2498 // Check for any unexpanded parameter packs.
2499 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2500 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002501
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002502 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002503 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002504 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002505
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002506 // Check for direct and virtual base classes.
2507 const CXXBaseSpecifier *DirectBaseSpec = 0;
2508 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2509 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002510 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2511 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002512 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002513
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002514 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2515 VirtualBaseSpec);
2516
2517 // C++ [base.class.init]p2:
2518 // Unless the mem-initializer-id names a nonstatic data member of the
2519 // constructor's class or a direct or virtual base of that class, the
2520 // mem-initializer is ill-formed.
2521 if (!DirectBaseSpec && !VirtualBaseSpec) {
2522 // If the class has any dependent bases, then it's possible that
2523 // one of those types will resolve to the same type as
2524 // BaseType. Therefore, just treat this as a dependent base
2525 // class initialization. FIXME: Should we try to check the
2526 // initialization anyway? It seems odd.
2527 if (ClassDecl->hasAnyDependentBases())
2528 Dependent = true;
2529 else
2530 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2531 << BaseType << Context.getTypeDeclType(ClassDecl)
2532 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2533 }
2534 }
2535
2536 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002537 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002538
Sebastian Redl6df65482011-09-24 17:48:25 +00002539 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2540 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002541 InitRange.getBegin(), Init,
2542 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002543 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002544
2545 // C++ [base.class.init]p2:
2546 // If a mem-initializer-id is ambiguous because it designates both
2547 // a direct non-virtual base class and an inherited virtual base
2548 // class, the mem-initializer is ill-formed.
2549 if (DirectBaseSpec && VirtualBaseSpec)
2550 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002551 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002552
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002553 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002554 if (!BaseSpec)
2555 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2556
2557 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002558 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002559 Expr **Args = &Init;
2560 unsigned NumArgs = 1;
2561 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002562 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002563 Args = ParenList->getExprs();
2564 NumArgs = ParenList->getNumExprs();
2565 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002566
2567 InitializedEntity BaseEntity =
2568 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2569 InitializationKind Kind =
2570 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2571 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2572 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002573 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2574 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002575 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002576 if (BaseInit.isInvalid())
2577 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002578
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002579 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002580
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002581 // C++0x [class.base.init]p7:
2582 // The initialization of each base and member constitutes a
2583 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002584 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002585 if (BaseInit.isInvalid())
2586 return true;
2587
2588 // If we are in a dependent context, template instantiation will
2589 // perform this type-checking again. Just save the arguments that we
2590 // received in a ParenListExpr.
2591 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2592 // of the information that we have about the base
2593 // initializer. However, deconstructing the ASTs is a dicey process,
2594 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002595 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002596 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002597
Sean Huntcbb67482011-01-08 20:30:50 +00002598 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002599 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002600 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002601 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002602 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002603}
2604
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002605// Create a static_cast\<T&&>(expr).
2606static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2607 QualType ExprType = E->getType();
2608 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2609 SourceLocation ExprLoc = E->getLocStart();
2610 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2611 TargetType, ExprLoc);
2612
2613 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2614 SourceRange(ExprLoc, ExprLoc),
2615 E->getSourceRange()).take();
2616}
2617
Anders Carlssone5ef7402010-04-23 03:10:23 +00002618/// ImplicitInitializerKind - How an implicit base or member initializer should
2619/// initialize its base or member.
2620enum ImplicitInitializerKind {
2621 IIK_Default,
2622 IIK_Copy,
2623 IIK_Move
2624};
2625
Anders Carlssondefefd22010-04-23 02:00:02 +00002626static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002627BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002628 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002629 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002630 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002631 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002632 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002633 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2634 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002635
John McCall60d7b3a2010-08-24 06:29:42 +00002636 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002637
2638 switch (ImplicitInitKind) {
2639 case IIK_Default: {
2640 InitializationKind InitKind
2641 = InitializationKind::CreateDefault(Constructor->getLocation());
2642 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002643 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002644 break;
2645 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002646
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002647 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002648 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002649 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002650 ParmVarDecl *Param = Constructor->getParamDecl(0);
2651 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002652
Anders Carlssone5ef7402010-04-23 03:10:23 +00002653 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002654 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002655 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002656 Constructor->getLocation(), ParamType,
2657 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002658
Eli Friedman5f2987c2012-02-02 03:46:19 +00002659 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2660
Anders Carlssonc7957502010-04-24 22:02:54 +00002661 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002662 QualType ArgTy =
2663 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2664 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002665
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002666 if (Moving) {
2667 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2668 }
2669
John McCallf871d0c2010-08-07 06:22:56 +00002670 CXXCastPath BasePath;
2671 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002672 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2673 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002674 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002675 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002676
Anders Carlssone5ef7402010-04-23 03:10:23 +00002677 InitializationKind InitKind
2678 = InitializationKind::CreateDirect(Constructor->getLocation(),
2679 SourceLocation(), SourceLocation());
2680 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2681 &CopyCtorArg, 1);
2682 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002683 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002684 break;
2685 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002686 }
John McCall9ae2f072010-08-23 23:25:46 +00002687
Douglas Gregor53c374f2010-12-07 00:41:46 +00002688 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002689 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002690 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002691
Anders Carlssondefefd22010-04-23 02:00:02 +00002692 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002693 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002694 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2695 SourceLocation()),
2696 BaseSpec->isVirtual(),
2697 SourceLocation(),
2698 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002699 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002700 SourceLocation());
2701
Anders Carlssondefefd22010-04-23 02:00:02 +00002702 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002703}
2704
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002705static bool RefersToRValueRef(Expr *MemRef) {
2706 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2707 return Referenced->getType()->isRValueReferenceType();
2708}
2709
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002710static bool
2711BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002712 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002713 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002714 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002715 if (Field->isInvalidDecl())
2716 return true;
2717
Chandler Carruthf186b542010-06-29 23:50:44 +00002718 SourceLocation Loc = Constructor->getLocation();
2719
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002720 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2721 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002722 ParmVarDecl *Param = Constructor->getParamDecl(0);
2723 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002724
2725 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002726 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2727 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002728
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002729 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002730 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002731 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002732 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002733
Eli Friedman5f2987c2012-02-02 03:46:19 +00002734 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2735
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002736 if (Moving) {
2737 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2738 }
2739
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002740 // Build a reference to this field within the parameter.
2741 CXXScopeSpec SS;
2742 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2743 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002744 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2745 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002746 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002747 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002748 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002749 ParamType, Loc,
2750 /*IsArrow=*/false,
2751 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002752 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002753 /*FirstQualifierInScope=*/0,
2754 MemberLookup,
2755 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002756 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002757 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002758
2759 // C++11 [class.copy]p15:
2760 // - if a member m has rvalue reference type T&&, it is direct-initialized
2761 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002762 if (RefersToRValueRef(CtorArg.get())) {
2763 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002764 }
2765
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002766 // When the field we are copying is an array, create index variables for
2767 // each dimension of the array. We use these index variables to subscript
2768 // the source array, and other clients (e.g., CodeGen) will perform the
2769 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002770 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002771 QualType BaseType = Field->getType();
2772 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002773 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002774 while (const ConstantArrayType *Array
2775 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002776 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002777 // Create the iteration variable for this array index.
2778 IdentifierInfo *IterationVarName = 0;
2779 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002780 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002781 llvm::raw_svector_ostream OS(Str);
2782 OS << "__i" << IndexVariables.size();
2783 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2784 }
2785 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002786 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002787 IterationVarName, SizeType,
2788 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002789 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002790 IndexVariables.push_back(IterationVar);
2791
2792 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002793 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002794 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002795 assert(!IterationVarRef.isInvalid() &&
2796 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002797 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2798 assert(!IterationVarRef.isInvalid() &&
2799 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002800
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002801 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002802 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002803 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002804 Loc);
2805 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002806 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002807
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002808 BaseType = Array->getElementType();
2809 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002810
2811 // The array subscript expression is an lvalue, which is wrong for moving.
2812 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002813 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002814
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002815 // Construct the entity that we will be initializing. For an array, this
2816 // will be first element in the array, which may require several levels
2817 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002818 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002819 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002820 if (Indirect)
2821 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2822 else
2823 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002824 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2825 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2826 0,
2827 Entities.back()));
2828
2829 // Direct-initialize to use the copy constructor.
2830 InitializationKind InitKind =
2831 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2832
Sebastian Redl74e611a2011-09-04 18:14:28 +00002833 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002834 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002835 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002836
John McCall60d7b3a2010-08-24 06:29:42 +00002837 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002838 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002839 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002840 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002841 if (MemberInit.isInvalid())
2842 return true;
2843
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002844 if (Indirect) {
2845 assert(IndexVariables.size() == 0 &&
2846 "Indirect field improperly initialized");
2847 CXXMemberInit
2848 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2849 Loc, Loc,
2850 MemberInit.takeAs<Expr>(),
2851 Loc);
2852 } else
2853 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2854 Loc, MemberInit.takeAs<Expr>(),
2855 Loc,
2856 IndexVariables.data(),
2857 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002858 return false;
2859 }
2860
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002861 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2862
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002863 QualType FieldBaseElementType =
2864 SemaRef.Context.getBaseElementType(Field->getType());
2865
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002866 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002867 InitializedEntity InitEntity
2868 = Indirect? InitializedEntity::InitializeMember(Indirect)
2869 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002870 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002871 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002872
2873 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002874 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002875 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002876
Douglas Gregor53c374f2010-12-07 00:41:46 +00002877 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002878 if (MemberInit.isInvalid())
2879 return true;
2880
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002881 if (Indirect)
2882 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2883 Indirect, Loc,
2884 Loc,
2885 MemberInit.get(),
2886 Loc);
2887 else
2888 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2889 Field, Loc, Loc,
2890 MemberInit.get(),
2891 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002892 return false;
2893 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002894
Sean Hunt1f2f3842011-05-17 00:19:05 +00002895 if (!Field->getParent()->isUnion()) {
2896 if (FieldBaseElementType->isReferenceType()) {
2897 SemaRef.Diag(Constructor->getLocation(),
2898 diag::err_uninitialized_member_in_ctor)
2899 << (int)Constructor->isImplicit()
2900 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2901 << 0 << Field->getDeclName();
2902 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2903 return true;
2904 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002905
Sean Hunt1f2f3842011-05-17 00:19:05 +00002906 if (FieldBaseElementType.isConstQualified()) {
2907 SemaRef.Diag(Constructor->getLocation(),
2908 diag::err_uninitialized_member_in_ctor)
2909 << (int)Constructor->isImplicit()
2910 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2911 << 1 << Field->getDeclName();
2912 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2913 return true;
2914 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002915 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002916
David Blaikie4e4d0842012-03-11 07:00:24 +00002917 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002918 FieldBaseElementType->isObjCRetainableType() &&
2919 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2920 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002921 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002922 // Default-initialize Objective-C pointers to NULL.
2923 CXXMemberInit
2924 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2925 Loc, Loc,
2926 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2927 Loc);
2928 return false;
2929 }
2930
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002931 // Nothing to initialize.
2932 CXXMemberInit = 0;
2933 return false;
2934}
John McCallf1860e52010-05-20 23:23:51 +00002935
2936namespace {
2937struct BaseAndFieldInfo {
2938 Sema &S;
2939 CXXConstructorDecl *Ctor;
2940 bool AnyErrorsInInits;
2941 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002942 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002943 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002944
2945 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2946 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002947 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2948 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002949 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002950 else if (Generated && Ctor->isMoveConstructor())
2951 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002952 else
2953 IIK = IIK_Default;
2954 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002955
2956 bool isImplicitCopyOrMove() const {
2957 switch (IIK) {
2958 case IIK_Copy:
2959 case IIK_Move:
2960 return true;
2961
2962 case IIK_Default:
2963 return false;
2964 }
David Blaikie30263482012-01-20 21:50:17 +00002965
2966 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002967 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002968
2969 bool addFieldInitializer(CXXCtorInitializer *Init) {
2970 AllToInit.push_back(Init);
2971
2972 // Check whether this initializer makes the field "used".
2973 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2974 S.UnusedPrivateFields.remove(Init->getAnyMember());
2975
2976 return false;
2977 }
John McCallf1860e52010-05-20 23:23:51 +00002978};
2979}
2980
Richard Smitha4950662011-09-19 13:34:43 +00002981/// \brief Determine whether the given indirect field declaration is somewhere
2982/// within an anonymous union.
2983static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2984 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2985 CEnd = F->chain_end();
2986 C != CEnd; ++C)
2987 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2988 if (Record->isUnion())
2989 return true;
2990
2991 return false;
2992}
2993
Douglas Gregorddb21472011-11-02 23:04:16 +00002994/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2995/// array type.
2996static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2997 if (T->isIncompleteArrayType())
2998 return true;
2999
3000 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
3001 if (!ArrayT->getSize())
3002 return true;
3003
3004 T = ArrayT->getElementType();
3005 }
3006
3007 return false;
3008}
3009
Richard Smith7a614d82011-06-11 17:19:42 +00003010static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003011 FieldDecl *Field,
3012 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00003013
Chandler Carruthe861c602010-06-30 02:59:29 +00003014 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00003015 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
3016 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003017
Richard Smith0b8220a2012-08-07 21:30:42 +00003018 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00003019 // has a brace-or-equal-initializer, the entity is initialized as specified
3020 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003021 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003022 CXXCtorInitializer *Init;
3023 if (Indirect)
3024 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3025 SourceLocation(),
3026 SourceLocation(), 0,
3027 SourceLocation());
3028 else
3029 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3030 SourceLocation(),
3031 SourceLocation(), 0,
3032 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003033 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003034 }
3035
Richard Smithc115f632011-09-18 11:14:50 +00003036 // Don't build an implicit initializer for union members if none was
3037 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003038 if (Field->getParent()->isUnion() ||
3039 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003040 return false;
3041
Douglas Gregorddb21472011-11-02 23:04:16 +00003042 // Don't initialize incomplete or zero-length arrays.
3043 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3044 return false;
3045
John McCallf1860e52010-05-20 23:23:51 +00003046 // Don't try to build an implicit initializer if there were semantic
3047 // errors in any of the initializers (and therefore we might be
3048 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003049 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003050 return false;
3051
Sean Huntcbb67482011-01-08 20:30:50 +00003052 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003053 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3054 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003055 return true;
John McCallf1860e52010-05-20 23:23:51 +00003056
Richard Smith0b8220a2012-08-07 21:30:42 +00003057 if (!Init)
3058 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003059
Richard Smith0b8220a2012-08-07 21:30:42 +00003060 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003061}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003062
3063bool
3064Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3065 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003066 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003067 Constructor->setNumCtorInitializers(1);
3068 CXXCtorInitializer **initializer =
3069 new (Context) CXXCtorInitializer*[1];
3070 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3071 Constructor->setCtorInitializers(initializer);
3072
Sean Huntb76af9c2011-05-03 23:05:34 +00003073 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003074 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003075 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3076 }
3077
Sean Huntc1598702011-05-05 00:05:47 +00003078 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003079
Sean Hunt059ce0d2011-05-01 07:04:31 +00003080 return false;
3081}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003082
John McCallb77115d2011-06-17 00:18:42 +00003083bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3084 CXXCtorInitializer **Initializers,
3085 unsigned NumInitializers,
3086 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003087 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003088 // Just store the initializers as written, they will be checked during
3089 // instantiation.
3090 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003091 Constructor->setNumCtorInitializers(NumInitializers);
3092 CXXCtorInitializer **baseOrMemberInitializers =
3093 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003094 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00003095 NumInitializers * sizeof(CXXCtorInitializer*));
3096 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003097 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003098
3099 // Let template instantiation know whether we had errors.
3100 if (AnyErrors)
3101 Constructor->setInvalidDecl();
3102
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003103 return false;
3104 }
3105
John McCallf1860e52010-05-20 23:23:51 +00003106 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003107
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003108 // We need to build the initializer AST according to order of construction
3109 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003110 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003111 if (!ClassDecl)
3112 return true;
3113
Eli Friedman80c30da2009-11-09 19:20:36 +00003114 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003115
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003116 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003117 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003118
3119 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003120 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003121 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003122 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003123 }
3124
Anders Carlsson711f34a2010-04-21 19:52:01 +00003125 // Keep track of the direct virtual bases.
3126 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3127 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3128 E = ClassDecl->bases_end(); I != E; ++I) {
3129 if (I->isVirtual())
3130 DirectVBases.insert(I);
3131 }
3132
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003133 // Push virtual bases before others.
3134 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3135 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3136
Sean Huntcbb67482011-01-08 20:30:50 +00003137 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003138 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3139 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003140 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003141 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003142 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003143 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003144 VBase, IsInheritedVirtualBase,
3145 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003146 HadError = true;
3147 continue;
3148 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003149
John McCallf1860e52010-05-20 23:23:51 +00003150 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003151 }
3152 }
Mike Stump1eb44332009-09-09 15:08:12 +00003153
John McCallf1860e52010-05-20 23:23:51 +00003154 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003155 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3156 E = ClassDecl->bases_end(); Base != E; ++Base) {
3157 // Virtuals are in the virtual base list and already constructed.
3158 if (Base->isVirtual())
3159 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003160
Sean Huntcbb67482011-01-08 20:30:50 +00003161 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003162 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3163 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003164 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003165 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003166 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003167 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003168 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003169 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003170 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003171 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003172
John McCallf1860e52010-05-20 23:23:51 +00003173 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003174 }
3175 }
Mike Stump1eb44332009-09-09 15:08:12 +00003176
John McCallf1860e52010-05-20 23:23:51 +00003177 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003178 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3179 MemEnd = ClassDecl->decls_end();
3180 Mem != MemEnd; ++Mem) {
3181 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003182 // C++ [class.bit]p2:
3183 // A declaration for a bit-field that omits the identifier declares an
3184 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3185 // initialized.
3186 if (F->isUnnamedBitfield())
3187 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003188
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003189 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003190 // handle anonymous struct/union fields based on their individual
3191 // indirect fields.
3192 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3193 continue;
3194
3195 if (CollectFieldInitializer(*this, Info, F))
3196 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003197 continue;
3198 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003199
3200 // Beyond this point, we only consider default initialization.
3201 if (Info.IIK != IIK_Default)
3202 continue;
3203
3204 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3205 if (F->getType()->isIncompleteArrayType()) {
3206 assert(ClassDecl->hasFlexibleArrayMember() &&
3207 "Incomplete array type is not valid");
3208 continue;
3209 }
3210
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003211 // Initialize each field of an anonymous struct individually.
3212 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3213 HadError = true;
3214
3215 continue;
3216 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003217 }
Mike Stump1eb44332009-09-09 15:08:12 +00003218
John McCallf1860e52010-05-20 23:23:51 +00003219 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003220 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003221 Constructor->setNumCtorInitializers(NumInitializers);
3222 CXXCtorInitializer **baseOrMemberInitializers =
3223 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003224 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003225 NumInitializers * sizeof(CXXCtorInitializer*));
3226 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003227
John McCallef027fe2010-03-16 21:39:52 +00003228 // Constructors implicitly reference the base and member
3229 // destructors.
3230 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3231 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003232 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003233
3234 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003235}
3236
Eli Friedman6347f422009-07-21 19:28:10 +00003237static void *GetKeyForTopLevelField(FieldDecl *Field) {
3238 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003239 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003240 if (RT->getDecl()->isAnonymousStructOrUnion())
3241 return static_cast<void *>(RT->getDecl());
3242 }
3243 return static_cast<void *>(Field);
3244}
3245
Anders Carlssonea356fb2010-04-02 05:42:15 +00003246static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003247 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003248}
3249
Anders Carlssonea356fb2010-04-02 05:42:15 +00003250static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003251 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003252 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003253 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003254
Eli Friedman6347f422009-07-21 19:28:10 +00003255 // For fields injected into the class via declaration of an anonymous union,
3256 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003257 FieldDecl *Field = Member->getAnyMember();
3258
John McCall3c3ccdb2010-04-10 09:28:51 +00003259 // If the field is a member of an anonymous struct or union, our key
3260 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003261 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003262 if (RD->isAnonymousStructOrUnion()) {
3263 while (true) {
3264 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3265 if (Parent->isAnonymousStructOrUnion())
3266 RD = Parent;
3267 else
3268 break;
3269 }
3270
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003271 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003272 }
Mike Stump1eb44332009-09-09 15:08:12 +00003273
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003274 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003275}
3276
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003277static void
3278DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003279 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003280 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003281 unsigned NumInits) {
3282 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003283 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003284
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003285 // Don't check initializers order unless the warning is enabled at the
3286 // location of at least one initializer.
3287 bool ShouldCheckOrder = false;
3288 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003289 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003290 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3291 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003292 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003293 ShouldCheckOrder = true;
3294 break;
3295 }
3296 }
3297 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003298 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003299
John McCalld6ca8da2010-04-10 07:37:23 +00003300 // Build the list of bases and members in the order that they'll
3301 // actually be initialized. The explicit initializers should be in
3302 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003303 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003304
Anders Carlsson071d6102010-04-02 03:38:04 +00003305 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3306
John McCalld6ca8da2010-04-10 07:37:23 +00003307 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003308 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003309 ClassDecl->vbases_begin(),
3310 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003311 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003312
John McCalld6ca8da2010-04-10 07:37:23 +00003313 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003314 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003315 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003316 if (Base->isVirtual())
3317 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003318 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003319 }
Mike Stump1eb44332009-09-09 15:08:12 +00003320
John McCalld6ca8da2010-04-10 07:37:23 +00003321 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003322 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003323 E = ClassDecl->field_end(); Field != E; ++Field) {
3324 if (Field->isUnnamedBitfield())
3325 continue;
3326
David Blaikie581deb32012-06-06 20:45:41 +00003327 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003328 }
3329
John McCalld6ca8da2010-04-10 07:37:23 +00003330 unsigned NumIdealInits = IdealInitKeys.size();
3331 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003332
Sean Huntcbb67482011-01-08 20:30:50 +00003333 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003334 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003335 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003336 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003337
3338 // Scan forward to try to find this initializer in the idealized
3339 // initializers list.
3340 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3341 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003342 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003343
3344 // If we didn't find this initializer, it must be because we
3345 // scanned past it on a previous iteration. That can only
3346 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003347 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003348 Sema::SemaDiagnosticBuilder D =
3349 SemaRef.Diag(PrevInit->getSourceLocation(),
3350 diag::warn_initializer_out_of_order);
3351
Francois Pichet00eb3f92010-12-04 09:14:42 +00003352 if (PrevInit->isAnyMemberInitializer())
3353 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003354 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003355 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003356
Francois Pichet00eb3f92010-12-04 09:14:42 +00003357 if (Init->isAnyMemberInitializer())
3358 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003359 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003360 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003361
3362 // Move back to the initializer's location in the ideal list.
3363 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3364 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003365 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003366
3367 assert(IdealIndex != NumIdealInits &&
3368 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003369 }
John McCalld6ca8da2010-04-10 07:37:23 +00003370
3371 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003372 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003373}
3374
John McCall3c3ccdb2010-04-10 09:28:51 +00003375namespace {
3376bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003377 CXXCtorInitializer *Init,
3378 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003379 if (!PrevInit) {
3380 PrevInit = Init;
3381 return false;
3382 }
3383
3384 if (FieldDecl *Field = Init->getMember())
3385 S.Diag(Init->getSourceLocation(),
3386 diag::err_multiple_mem_initialization)
3387 << Field->getDeclName()
3388 << Init->getSourceRange();
3389 else {
John McCallf4c73712011-01-19 06:33:43 +00003390 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003391 assert(BaseClass && "neither field nor base");
3392 S.Diag(Init->getSourceLocation(),
3393 diag::err_multiple_base_initialization)
3394 << QualType(BaseClass, 0)
3395 << Init->getSourceRange();
3396 }
3397 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3398 << 0 << PrevInit->getSourceRange();
3399
3400 return true;
3401}
3402
Sean Huntcbb67482011-01-08 20:30:50 +00003403typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003404typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3405
3406bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003407 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003408 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003409 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003410 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003411 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003412
3413 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003414 if (Parent->isUnion()) {
3415 UnionEntry &En = Unions[Parent];
3416 if (En.first && En.first != Child) {
3417 S.Diag(Init->getSourceLocation(),
3418 diag::err_multiple_mem_union_initialization)
3419 << Field->getDeclName()
3420 << Init->getSourceRange();
3421 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3422 << 0 << En.second->getSourceRange();
3423 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003424 }
3425 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003426 En.first = Child;
3427 En.second = Init;
3428 }
David Blaikie6fe29652011-11-17 06:01:57 +00003429 if (!Parent->isAnonymousStructOrUnion())
3430 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003431 }
3432
3433 Child = Parent;
3434 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003435 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003436
3437 return false;
3438}
3439}
3440
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003441/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003442void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003443 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003444 CXXCtorInitializer **meminits,
3445 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003446 bool AnyErrors) {
3447 if (!ConstructorDecl)
3448 return;
3449
3450 AdjustDeclIfTemplate(ConstructorDecl);
3451
3452 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003453 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003454
3455 if (!Constructor) {
3456 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3457 return;
3458 }
3459
Sean Huntcbb67482011-01-08 20:30:50 +00003460 CXXCtorInitializer **MemInits =
3461 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003462
3463 // Mapping for the duplicate initializers check.
3464 // For member initializers, this is keyed with a FieldDecl*.
3465 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003466 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003467
3468 // Mapping for the inconsistent anonymous-union initializers check.
3469 RedundantUnionMap MemberUnions;
3470
Anders Carlssonea356fb2010-04-02 05:42:15 +00003471 bool HadError = false;
3472 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003473 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003474
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003475 // Set the source order index.
3476 Init->setSourceOrder(i);
3477
Francois Pichet00eb3f92010-12-04 09:14:42 +00003478 if (Init->isAnyMemberInitializer()) {
3479 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003480 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3481 CheckRedundantUnionInit(*this, Init, MemberUnions))
3482 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003483 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003484 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3485 if (CheckRedundantInit(*this, Init, Members[Key]))
3486 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003487 } else {
3488 assert(Init->isDelegatingInitializer());
3489 // This must be the only initializer
Richard Smitha6ddea62012-09-14 18:21:10 +00003490 if (NumMemInits != 1) {
3491 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003492 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003493 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003494 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003495 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003496 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003497 // Return immediately as the initializer is set.
3498 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003499 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003500 }
3501
Anders Carlssonea356fb2010-04-02 05:42:15 +00003502 if (HadError)
3503 return;
3504
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003505 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003506
Sean Huntcbb67482011-01-08 20:30:50 +00003507 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003508}
3509
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003510void
John McCallef027fe2010-03-16 21:39:52 +00003511Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3512 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003513 // Ignore dependent contexts. Also ignore unions, since their members never
3514 // have destructors implicitly called.
3515 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003516 return;
John McCall58e6f342010-03-16 05:22:47 +00003517
3518 // FIXME: all the access-control diagnostics are positioned on the
3519 // field/base declaration. That's probably good; that said, the
3520 // user might reasonably want to know why the destructor is being
3521 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003522
Anders Carlsson9f853df2009-11-17 04:44:12 +00003523 // Non-static data members.
3524 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3525 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003526 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003527 if (Field->isInvalidDecl())
3528 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003529
3530 // Don't destroy incomplete or zero-length arrays.
3531 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3532 continue;
3533
Anders Carlsson9f853df2009-11-17 04:44:12 +00003534 QualType FieldType = Context.getBaseElementType(Field->getType());
3535
3536 const RecordType* RT = FieldType->getAs<RecordType>();
3537 if (!RT)
3538 continue;
3539
3540 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003541 if (FieldClassDecl->isInvalidDecl())
3542 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003543 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003544 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003545 // The destructor for an implicit anonymous union member is never invoked.
3546 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3547 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003548
Douglas Gregordb89f282010-07-01 22:47:18 +00003549 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003550 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003551 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003552 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003553 << Field->getDeclName()
3554 << FieldType);
3555
Eli Friedman5f2987c2012-02-02 03:46:19 +00003556 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003557 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003558 }
3559
John McCall58e6f342010-03-16 05:22:47 +00003560 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3561
Anders Carlsson9f853df2009-11-17 04:44:12 +00003562 // Bases.
3563 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3564 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003565 // Bases are always records in a well-formed non-dependent class.
3566 const RecordType *RT = Base->getType()->getAs<RecordType>();
3567
3568 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003569 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003570 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003571
John McCall58e6f342010-03-16 05:22:47 +00003572 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003573 // If our base class is invalid, we probably can't get its dtor anyway.
3574 if (BaseClassDecl->isInvalidDecl())
3575 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003576 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003577 continue;
John McCall58e6f342010-03-16 05:22:47 +00003578
Douglas Gregordb89f282010-07-01 22:47:18 +00003579 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003580 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003581
3582 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003583 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003584 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003585 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003586 << Base->getSourceRange(),
3587 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003588
Eli Friedman5f2987c2012-02-02 03:46:19 +00003589 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003590 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003591 }
3592
3593 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003594 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3595 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003596
3597 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003598 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003599
3600 // Ignore direct virtual bases.
3601 if (DirectVirtualBases.count(RT))
3602 continue;
3603
John McCall58e6f342010-03-16 05:22:47 +00003604 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003605 // If our base class is invalid, we probably can't get its dtor anyway.
3606 if (BaseClassDecl->isInvalidDecl())
3607 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003608 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003609 continue;
John McCall58e6f342010-03-16 05:22:47 +00003610
Douglas Gregordb89f282010-07-01 22:47:18 +00003611 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003612 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003613 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003614 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003615 << VBase->getType(),
3616 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003617
Eli Friedman5f2987c2012-02-02 03:46:19 +00003618 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003619 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003620 }
3621}
3622
John McCalld226f652010-08-21 09:40:31 +00003623void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003624 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003625 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003626
Mike Stump1eb44332009-09-09 15:08:12 +00003627 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003628 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003629 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003630}
3631
Mike Stump1eb44332009-09-09 15:08:12 +00003632bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003633 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003634 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3635 unsigned DiagID;
3636 AbstractDiagSelID SelID;
3637
3638 public:
3639 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3640 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3641
3642 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003643 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003644 if (SelID == -1)
3645 S.Diag(Loc, DiagID) << T;
3646 else
3647 S.Diag(Loc, DiagID) << SelID << T;
3648 }
3649 } Diagnoser(DiagID, SelID);
3650
3651 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003652}
3653
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003654bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003655 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003656 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003657 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003658
Anders Carlsson11f21a02009-03-23 19:10:31 +00003659 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003660 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003661
Ted Kremenek6217b802009-07-29 21:53:49 +00003662 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003663 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003664 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003665 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003666
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003667 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003668 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003669 }
Mike Stump1eb44332009-09-09 15:08:12 +00003670
Ted Kremenek6217b802009-07-29 21:53:49 +00003671 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003672 if (!RT)
3673 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003674
John McCall86ff3082010-02-04 22:26:26 +00003675 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003676
John McCall94c3b562010-08-18 09:41:07 +00003677 // We can't answer whether something is abstract until it has a
3678 // definition. If it's currently being defined, we'll walk back
3679 // over all the declarations when we have a full definition.
3680 const CXXRecordDecl *Def = RD->getDefinition();
3681 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003682 return false;
3683
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003684 if (!RD->isAbstract())
3685 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003686
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003687 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003688 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003689
John McCall94c3b562010-08-18 09:41:07 +00003690 return true;
3691}
3692
3693void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3694 // Check if we've already emitted the list of pure virtual functions
3695 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003696 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003697 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003698
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003699 CXXFinalOverriderMap FinalOverriders;
3700 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003701
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003702 // Keep a set of seen pure methods so we won't diagnose the same method
3703 // more than once.
3704 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3705
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003706 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3707 MEnd = FinalOverriders.end();
3708 M != MEnd;
3709 ++M) {
3710 for (OverridingMethods::iterator SO = M->second.begin(),
3711 SOEnd = M->second.end();
3712 SO != SOEnd; ++SO) {
3713 // C++ [class.abstract]p4:
3714 // A class is abstract if it contains or inherits at least one
3715 // pure virtual function for which the final overrider is pure
3716 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003717
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003718 //
3719 if (SO->second.size() != 1)
3720 continue;
3721
3722 if (!SO->second.front().Method->isPure())
3723 continue;
3724
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003725 if (!SeenPureMethods.insert(SO->second.front().Method))
3726 continue;
3727
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003728 Diag(SO->second.front().Method->getLocation(),
3729 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003730 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003731 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003732 }
3733
3734 if (!PureVirtualClassDiagSet)
3735 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3736 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003737}
3738
Anders Carlsson8211eff2009-03-24 01:19:16 +00003739namespace {
John McCall94c3b562010-08-18 09:41:07 +00003740struct AbstractUsageInfo {
3741 Sema &S;
3742 CXXRecordDecl *Record;
3743 CanQualType AbstractType;
3744 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003745
John McCall94c3b562010-08-18 09:41:07 +00003746 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3747 : S(S), Record(Record),
3748 AbstractType(S.Context.getCanonicalType(
3749 S.Context.getTypeDeclType(Record))),
3750 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003751
John McCall94c3b562010-08-18 09:41:07 +00003752 void DiagnoseAbstractType() {
3753 if (Invalid) return;
3754 S.DiagnoseAbstractType(Record);
3755 Invalid = true;
3756 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003757
John McCall94c3b562010-08-18 09:41:07 +00003758 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3759};
3760
3761struct CheckAbstractUsage {
3762 AbstractUsageInfo &Info;
3763 const NamedDecl *Ctx;
3764
3765 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3766 : Info(Info), Ctx(Ctx) {}
3767
3768 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3769 switch (TL.getTypeLocClass()) {
3770#define ABSTRACT_TYPELOC(CLASS, PARENT)
3771#define TYPELOC(CLASS, PARENT) \
3772 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3773#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003774 }
John McCall94c3b562010-08-18 09:41:07 +00003775 }
Mike Stump1eb44332009-09-09 15:08:12 +00003776
John McCall94c3b562010-08-18 09:41:07 +00003777 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3778 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3779 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003780 if (!TL.getArg(I))
3781 continue;
3782
John McCall94c3b562010-08-18 09:41:07 +00003783 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3784 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003785 }
John McCall94c3b562010-08-18 09:41:07 +00003786 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003787
John McCall94c3b562010-08-18 09:41:07 +00003788 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3789 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3790 }
Mike Stump1eb44332009-09-09 15:08:12 +00003791
John McCall94c3b562010-08-18 09:41:07 +00003792 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3793 // Visit the type parameters from a permissive context.
3794 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3795 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3796 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3797 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3798 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3799 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003800 }
John McCall94c3b562010-08-18 09:41:07 +00003801 }
Mike Stump1eb44332009-09-09 15:08:12 +00003802
John McCall94c3b562010-08-18 09:41:07 +00003803 // Visit pointee types from a permissive context.
3804#define CheckPolymorphic(Type) \
3805 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3806 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3807 }
3808 CheckPolymorphic(PointerTypeLoc)
3809 CheckPolymorphic(ReferenceTypeLoc)
3810 CheckPolymorphic(MemberPointerTypeLoc)
3811 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003812 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003813
John McCall94c3b562010-08-18 09:41:07 +00003814 /// Handle all the types we haven't given a more specific
3815 /// implementation for above.
3816 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3817 // Every other kind of type that we haven't called out already
3818 // that has an inner type is either (1) sugar or (2) contains that
3819 // inner type in some way as a subobject.
3820 if (TypeLoc Next = TL.getNextTypeLoc())
3821 return Visit(Next, Sel);
3822
3823 // If there's no inner type and we're in a permissive context,
3824 // don't diagnose.
3825 if (Sel == Sema::AbstractNone) return;
3826
3827 // Check whether the type matches the abstract type.
3828 QualType T = TL.getType();
3829 if (T->isArrayType()) {
3830 Sel = Sema::AbstractArrayType;
3831 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003832 }
John McCall94c3b562010-08-18 09:41:07 +00003833 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3834 if (CT != Info.AbstractType) return;
3835
3836 // It matched; do some magic.
3837 if (Sel == Sema::AbstractArrayType) {
3838 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3839 << T << TL.getSourceRange();
3840 } else {
3841 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3842 << Sel << T << TL.getSourceRange();
3843 }
3844 Info.DiagnoseAbstractType();
3845 }
3846};
3847
3848void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3849 Sema::AbstractDiagSelID Sel) {
3850 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3851}
3852
3853}
3854
3855/// Check for invalid uses of an abstract type in a method declaration.
3856static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3857 CXXMethodDecl *MD) {
3858 // No need to do the check on definitions, which require that
3859 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003860 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003861 return;
3862
3863 // For safety's sake, just ignore it if we don't have type source
3864 // information. This should never happen for non-implicit methods,
3865 // but...
3866 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3867 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3868}
3869
3870/// Check for invalid uses of an abstract type within a class definition.
3871static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3872 CXXRecordDecl *RD) {
3873 for (CXXRecordDecl::decl_iterator
3874 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3875 Decl *D = *I;
3876 if (D->isImplicit()) continue;
3877
3878 // Methods and method templates.
3879 if (isa<CXXMethodDecl>(D)) {
3880 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3881 } else if (isa<FunctionTemplateDecl>(D)) {
3882 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3883 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3884
3885 // Fields and static variables.
3886 } else if (isa<FieldDecl>(D)) {
3887 FieldDecl *FD = cast<FieldDecl>(D);
3888 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3889 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3890 } else if (isa<VarDecl>(D)) {
3891 VarDecl *VD = cast<VarDecl>(D);
3892 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3893 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3894
3895 // Nested classes and class templates.
3896 } else if (isa<CXXRecordDecl>(D)) {
3897 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3898 } else if (isa<ClassTemplateDecl>(D)) {
3899 CheckAbstractClassUsage(Info,
3900 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3901 }
3902 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003903}
3904
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003905/// \brief Perform semantic checks on a class definition that has been
3906/// completing, introducing implicitly-declared members, checking for
3907/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003908void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003909 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003910 return;
3911
John McCall94c3b562010-08-18 09:41:07 +00003912 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3913 AbstractUsageInfo Info(*this, Record);
3914 CheckAbstractClassUsage(Info, Record);
3915 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003916
3917 // If this is not an aggregate type and has no user-declared constructor,
3918 // complain about any non-static data members of reference or const scalar
3919 // type, since they will never get initializers.
3920 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003921 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3922 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003923 bool Complained = false;
3924 for (RecordDecl::field_iterator F = Record->field_begin(),
3925 FEnd = Record->field_end();
3926 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003927 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003928 continue;
3929
Douglas Gregor325e5932010-04-15 00:00:53 +00003930 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003931 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003932 if (!Complained) {
3933 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3934 << Record->getTagKind() << Record;
3935 Complained = true;
3936 }
3937
3938 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3939 << F->getType()->isReferenceType()
3940 << F->getDeclName();
3941 }
3942 }
3943 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003944
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003945 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003946 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003947
3948 if (Record->getIdentifier()) {
3949 // C++ [class.mem]p13:
3950 // If T is the name of a class, then each of the following shall have a
3951 // name different from T:
3952 // - every member of every anonymous union that is a member of class T.
3953 //
3954 // C++ [class.mem]p14:
3955 // In addition, if class T has a user-declared constructor (12.1), every
3956 // non-static data member of class T shall have a name different from T.
3957 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003958 R.first != R.second; ++R.first) {
3959 NamedDecl *D = *R.first;
3960 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3961 isa<IndirectFieldDecl>(D)) {
3962 Diag(D->getLocation(), diag::err_member_name_of_class)
3963 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003964 break;
3965 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003966 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003967 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003968
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003969 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003970 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003971 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003972 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003973 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3974 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3975 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003976
David Blaikieb6b5b972012-09-21 03:21:07 +00003977 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3978 Diag(Record->getLocation(), diag::warn_abstract_final_class);
3979 DiagnoseAbstractType(Record);
3980 }
3981
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003982 // See if a method overloads virtual methods in a base
3983 /// class without overriding any.
3984 if (!Record->isDependentType()) {
3985 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3986 MEnd = Record->method_end();
3987 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003988 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003989 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003990 }
3991 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003992
Richard Smith9f569cc2011-10-01 02:31:28 +00003993 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3994 // function that is not a constructor declares that member function to be
3995 // const. [...] The class of which that function is a member shall be
3996 // a literal type.
3997 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003998 // If the class has virtual bases, any constexpr members will already have
3999 // been diagnosed by the checks performed on the member declaration, so
4000 // suppress this (less useful) diagnostic.
4001 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
4002 !Record->isLiteral() && !Record->getNumVBases()) {
4003 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
4004 MEnd = Record->method_end();
4005 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00004006 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00004007 switch (Record->getTemplateSpecializationKind()) {
4008 case TSK_ImplicitInstantiation:
4009 case TSK_ExplicitInstantiationDeclaration:
4010 case TSK_ExplicitInstantiationDefinition:
4011 // If a template instantiates to a non-literal type, but its members
4012 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00004013 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00004014 continue;
4015
4016 case TSK_Undeclared:
4017 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00004018 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00004019 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00004020 break;
4021 }
4022
4023 // Only produce one error per class.
4024 break;
4025 }
4026 }
4027 }
4028
Sebastian Redlf677ea32011-02-05 19:23:19 +00004029 // Declare inherited constructors. We do this eagerly here because:
4030 // - The standard requires an eager diagnostic for conflicting inherited
4031 // constructors from different classes.
4032 // - The lazy declaration of the other implicit constructors is so as to not
4033 // waste space and performance on classes that are not meant to be
4034 // instantiated (e.g. meta-functions). This doesn't apply to classes that
4035 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004036 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004037}
4038
4039void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00004040 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
4041 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00004042 MI != ME; ++MI)
4043 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00004044 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00004045}
4046
Richard Smith7756afa2012-06-10 05:43:50 +00004047/// Is the special member function which would be selected to perform the
4048/// specified operation on the specified class type a constexpr constructor?
4049static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4050 Sema::CXXSpecialMember CSM,
4051 bool ConstArg) {
4052 Sema::SpecialMemberOverloadResult *SMOR =
4053 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4054 false, false, false, false);
4055 if (!SMOR || !SMOR->getMethod())
4056 // A constructor we wouldn't select can't be "involved in initializing"
4057 // anything.
4058 return true;
4059 return SMOR->getMethod()->isConstexpr();
4060}
4061
4062/// Determine whether the specified special member function would be constexpr
4063/// if it were implicitly defined.
4064static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4065 Sema::CXXSpecialMember CSM,
4066 bool ConstArg) {
4067 if (!S.getLangOpts().CPlusPlus0x)
4068 return false;
4069
4070 // C++11 [dcl.constexpr]p4:
4071 // In the definition of a constexpr constructor [...]
4072 switch (CSM) {
4073 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004074 // Since default constructor lookup is essentially trivial (and cannot
4075 // involve, for instance, template instantiation), we compute whether a
4076 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4077 //
4078 // This is important for performance; we need to know whether the default
4079 // constructor is constexpr to determine whether the type is a literal type.
4080 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4081
Richard Smith7756afa2012-06-10 05:43:50 +00004082 case Sema::CXXCopyConstructor:
4083 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004084 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004085 break;
4086
4087 case Sema::CXXCopyAssignment:
4088 case Sema::CXXMoveAssignment:
4089 case Sema::CXXDestructor:
4090 case Sema::CXXInvalid:
4091 return false;
4092 }
4093
4094 // -- if the class is a non-empty union, or for each non-empty anonymous
4095 // union member of a non-union class, exactly one non-static data member
4096 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004097 //
4098 // If we squint, this is guaranteed, since exactly one non-static data member
4099 // will be initialized (if the constructor isn't deleted), we just don't know
4100 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00004101 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004102 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004103
4104 // -- the class shall not have any virtual base classes;
4105 if (ClassDecl->getNumVBases())
4106 return false;
4107
4108 // -- every constructor involved in initializing [...] base class
4109 // sub-objects shall be a constexpr constructor;
4110 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4111 BEnd = ClassDecl->bases_end();
4112 B != BEnd; ++B) {
4113 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4114 if (!BaseType) continue;
4115
4116 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4117 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4118 return false;
4119 }
4120
4121 // -- every constructor involved in initializing non-static data members
4122 // [...] shall be a constexpr constructor;
4123 // -- every non-static data member and base class sub-object shall be
4124 // initialized
4125 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4126 FEnd = ClassDecl->field_end();
4127 F != FEnd; ++F) {
4128 if (F->isInvalidDecl())
4129 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004130 if (const RecordType *RecordTy =
4131 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004132 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4133 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4134 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004135 }
4136 }
4137
4138 // All OK, it's constexpr!
4139 return true;
4140}
4141
Richard Smithb9d0b762012-07-27 04:22:15 +00004142static Sema::ImplicitExceptionSpecification
4143computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4144 switch (S.getSpecialMember(MD)) {
4145 case Sema::CXXDefaultConstructor:
4146 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4147 case Sema::CXXCopyConstructor:
4148 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4149 case Sema::CXXCopyAssignment:
4150 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4151 case Sema::CXXMoveConstructor:
4152 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4153 case Sema::CXXMoveAssignment:
4154 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4155 case Sema::CXXDestructor:
4156 return S.ComputeDefaultedDtorExceptionSpec(MD);
4157 case Sema::CXXInvalid:
4158 break;
4159 }
4160 llvm_unreachable("only special members have implicit exception specs");
4161}
4162
Richard Smithdd25e802012-07-30 23:48:14 +00004163static void
4164updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4165 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4166 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4167 ExceptSpec.getEPI(EPI);
4168 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4169 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4170 FPT->getNumArgs(), EPI));
4171 FD->setType(QualType(NewFPT, 0));
4172}
4173
Richard Smithb9d0b762012-07-27 04:22:15 +00004174void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4175 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4176 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4177 return;
4178
Richard Smithdd25e802012-07-30 23:48:14 +00004179 // Evaluate the exception specification.
4180 ImplicitExceptionSpecification ExceptSpec =
4181 computeImplicitExceptionSpec(*this, Loc, MD);
4182
4183 // Update the type of the special member to use it.
4184 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4185
4186 // A user-provided destructor can be defined outside the class. When that
4187 // happens, be sure to update the exception specification on both
4188 // declarations.
4189 const FunctionProtoType *CanonicalFPT =
4190 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4191 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4192 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4193 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004194}
4195
Richard Smith3003e1d2012-05-15 04:39:51 +00004196void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4197 CXXRecordDecl *RD = MD->getParent();
4198 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004199
Richard Smith3003e1d2012-05-15 04:39:51 +00004200 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4201 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004202
4203 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004204 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004205 bool First = MD == MD->getCanonicalDecl();
4206
4207 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004208
4209 // C++11 [dcl.fct.def.default]p1:
4210 // A function that is explicitly defaulted shall
4211 // -- be a special member function (checked elsewhere),
4212 // -- have the same type (except for ref-qualifiers, and except that a
4213 // copy operation can take a non-const reference) as an implicit
4214 // declaration, and
4215 // -- not have default arguments.
4216 unsigned ExpectedParams = 1;
4217 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4218 ExpectedParams = 0;
4219 if (MD->getNumParams() != ExpectedParams) {
4220 // This also checks for default arguments: a copy or move constructor with a
4221 // default argument is classified as a default constructor, and assignment
4222 // operations and destructors can't have default arguments.
4223 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4224 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004225 HadError = true;
Richard Smith50464392012-12-07 02:10:28 +00004226 } else if (MD->isVariadic()) {
4227 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
4228 << CSM << MD->getSourceRange();
4229 HadError = true;
Sean Hunt2b188082011-05-14 05:23:28 +00004230 }
4231
Richard Smith3003e1d2012-05-15 04:39:51 +00004232 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004233
Richard Smithb9d0b762012-07-27 04:22:15 +00004234 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004235 bool CanHaveConstParam = false;
Axel Naumann8f411c32012-09-17 14:26:53 +00004236 bool Trivial = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004237 switch (CSM) {
4238 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004239 Trivial = RD->hasTrivialDefaultConstructor();
4240 break;
4241 case CXXCopyConstructor:
Richard Smithacf796b2012-11-28 06:23:12 +00004242 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smith3003e1d2012-05-15 04:39:51 +00004243 Trivial = RD->hasTrivialCopyConstructor();
4244 break;
4245 case CXXCopyAssignment:
Richard Smithacf796b2012-11-28 06:23:12 +00004246 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Richard Smith3003e1d2012-05-15 04:39:51 +00004247 Trivial = RD->hasTrivialCopyAssignment();
4248 break;
4249 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004250 Trivial = RD->hasTrivialMoveConstructor();
4251 break;
4252 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004253 Trivial = RD->hasTrivialMoveAssignment();
4254 break;
4255 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004256 Trivial = RD->hasTrivialDestructor();
4257 break;
4258 case CXXInvalid:
4259 llvm_unreachable("non-special member explicitly defaulted!");
4260 }
Sean Hunt2b188082011-05-14 05:23:28 +00004261
Richard Smith3003e1d2012-05-15 04:39:51 +00004262 QualType ReturnType = Context.VoidTy;
4263 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4264 // Check for return type matching.
4265 ReturnType = Type->getResultType();
4266 QualType ExpectedReturnType =
4267 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4268 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4269 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4270 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4271 HadError = true;
4272 }
4273
4274 // A defaulted special member cannot have cv-qualifiers.
4275 if (Type->getTypeQuals()) {
4276 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4277 << (CSM == CXXMoveAssignment);
4278 HadError = true;
4279 }
4280 }
4281
4282 // Check for parameter type matching.
4283 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004284 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004285 if (ExpectedParams && ArgType->isReferenceType()) {
4286 // Argument must be reference to possibly-const T.
4287 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004288 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004289
4290 if (ReferentType.isVolatileQualified()) {
4291 Diag(MD->getLocation(),
4292 diag::err_defaulted_special_member_volatile_param) << CSM;
4293 HadError = true;
4294 }
4295
Richard Smith7756afa2012-06-10 05:43:50 +00004296 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004297 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4298 Diag(MD->getLocation(),
4299 diag::err_defaulted_special_member_copy_const_param)
4300 << (CSM == CXXCopyAssignment);
4301 // FIXME: Explain why this special member can't be const.
4302 } else {
4303 Diag(MD->getLocation(),
4304 diag::err_defaulted_special_member_move_const_param)
4305 << (CSM == CXXMoveAssignment);
4306 }
4307 HadError = true;
4308 }
4309
4310 // If a function is explicitly defaulted on its first declaration, it shall
4311 // have the same parameter type as if it had been implicitly declared.
4312 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004313 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004314 Diag(MD->getLocation(),
4315 diag::err_defaulted_special_member_copy_non_const_param)
4316 << (CSM == CXXCopyAssignment);
4317 } else if (ExpectedParams) {
4318 // A copy assignment operator can take its argument by value, but a
4319 // defaulted one cannot.
4320 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004321 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004322 HadError = true;
4323 }
Sean Huntbe631222011-05-17 20:44:43 +00004324
Richard Smithb9d0b762012-07-27 04:22:15 +00004325 // Rebuild the type with the implicit exception specification added, if we
4326 // are going to need it.
4327 const FunctionProtoType *ImplicitType = 0;
4328 if (First || Type->hasExceptionSpec()) {
4329 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4330 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4331 ImplicitType = cast<FunctionProtoType>(
4332 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4333 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004334
Richard Smith61802452011-12-22 02:22:31 +00004335 // C++11 [dcl.fct.def.default]p2:
4336 // An explicitly-defaulted function may be declared constexpr only if it
4337 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004338 // Do not apply this rule to members of class templates, since core issue 1358
4339 // makes such functions always instantiate to constexpr functions. For
4340 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004341 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4342 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004343 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4344 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4345 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004346 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004347 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004348 }
4349 // and may have an explicit exception-specification only if it is compatible
4350 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004351 if (Type->hasExceptionSpec() &&
4352 CheckEquivalentExceptionSpec(
4353 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4354 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4355 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004356
4357 // If a function is explicitly defaulted on its first declaration,
4358 if (First) {
4359 // -- it is implicitly considered to be constexpr if the implicit
4360 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004361 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004362
Richard Smith3003e1d2012-05-15 04:39:51 +00004363 // -- it is implicitly considered to have the same exception-specification
4364 // as if it had been implicitly declared,
4365 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004366
4367 // Such a function is also trivial if the implicitly-declared function
4368 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004369 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004370 }
4371
Richard Smith3003e1d2012-05-15 04:39:51 +00004372 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004373 if (First) {
4374 MD->setDeletedAsWritten();
4375 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004376 // C++11 [dcl.fct.def.default]p4:
4377 // [For a] user-provided explicitly-defaulted function [...] if such a
4378 // function is implicitly defined as deleted, the program is ill-formed.
4379 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4380 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004381 }
4382 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004383
Richard Smith3003e1d2012-05-15 04:39:51 +00004384 if (HadError)
4385 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004386}
4387
Richard Smith7d5088a2012-02-18 02:02:13 +00004388namespace {
4389struct SpecialMemberDeletionInfo {
4390 Sema &S;
4391 CXXMethodDecl *MD;
4392 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004393 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004394
4395 // Properties of the special member, computed for convenience.
4396 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4397 SourceLocation Loc;
4398
4399 bool AllFieldsAreConst;
4400
4401 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004402 Sema::CXXSpecialMember CSM, bool Diagnose)
4403 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004404 IsConstructor(false), IsAssignment(false), IsMove(false),
4405 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4406 AllFieldsAreConst(true) {
4407 switch (CSM) {
4408 case Sema::CXXDefaultConstructor:
4409 case Sema::CXXCopyConstructor:
4410 IsConstructor = true;
4411 break;
4412 case Sema::CXXMoveConstructor:
4413 IsConstructor = true;
4414 IsMove = true;
4415 break;
4416 case Sema::CXXCopyAssignment:
4417 IsAssignment = true;
4418 break;
4419 case Sema::CXXMoveAssignment:
4420 IsAssignment = true;
4421 IsMove = true;
4422 break;
4423 case Sema::CXXDestructor:
4424 break;
4425 case Sema::CXXInvalid:
4426 llvm_unreachable("invalid special member kind");
4427 }
4428
4429 if (MD->getNumParams()) {
4430 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4431 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4432 }
4433 }
4434
4435 bool inUnion() const { return MD->getParent()->isUnion(); }
4436
4437 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004438 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4439 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004440 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004441 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4442 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4443 Quals = 0;
4444 return S.LookupSpecialMember(Class, CSM,
4445 ConstArg || (Quals & Qualifiers::Const),
4446 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004447 MD->getRefQualifier() == RQ_RValue,
4448 TQ & Qualifiers::Const,
4449 TQ & Qualifiers::Volatile);
4450 }
4451
Richard Smith6c4c36c2012-03-30 20:53:28 +00004452 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004453
Richard Smith6c4c36c2012-03-30 20:53:28 +00004454 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004455 bool shouldDeleteForField(FieldDecl *FD);
4456 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004457
Richard Smith517bb842012-07-18 03:51:16 +00004458 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4459 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004460 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4461 Sema::SpecialMemberOverloadResult *SMOR,
4462 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004463
4464 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004465};
4466}
4467
John McCall12d8d802012-04-09 20:53:23 +00004468/// Is the given special member inaccessible when used on the given
4469/// sub-object.
4470bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4471 CXXMethodDecl *target) {
4472 /// If we're operating on a base class, the object type is the
4473 /// type of this special member.
4474 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004475 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004476 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4477 objectTy = S.Context.getTypeDeclType(MD->getParent());
4478 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4479
4480 // If we're operating on a field, the object type is the type of the field.
4481 } else {
4482 objectTy = S.Context.getTypeDeclType(target->getParent());
4483 }
4484
4485 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4486}
4487
Richard Smith6c4c36c2012-03-30 20:53:28 +00004488/// Check whether we should delete a special member due to the implicit
4489/// definition containing a call to a special member of a subobject.
4490bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4491 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4492 bool IsDtorCallInCtor) {
4493 CXXMethodDecl *Decl = SMOR->getMethod();
4494 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4495
4496 int DiagKind = -1;
4497
4498 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4499 DiagKind = !Decl ? 0 : 1;
4500 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4501 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004502 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004503 DiagKind = 3;
4504 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4505 !Decl->isTrivial()) {
4506 // A member of a union must have a trivial corresponding special member.
4507 // As a weird special case, a destructor call from a union's constructor
4508 // must be accessible and non-deleted, but need not be trivial. Such a
4509 // destructor is never actually called, but is semantically checked as
4510 // if it were.
4511 DiagKind = 4;
4512 }
4513
4514 if (DiagKind == -1)
4515 return false;
4516
4517 if (Diagnose) {
4518 if (Field) {
4519 S.Diag(Field->getLocation(),
4520 diag::note_deleted_special_member_class_subobject)
4521 << CSM << MD->getParent() << /*IsField*/true
4522 << Field << DiagKind << IsDtorCallInCtor;
4523 } else {
4524 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4525 S.Diag(Base->getLocStart(),
4526 diag::note_deleted_special_member_class_subobject)
4527 << CSM << MD->getParent() << /*IsField*/false
4528 << Base->getType() << DiagKind << IsDtorCallInCtor;
4529 }
4530
4531 if (DiagKind == 1)
4532 S.NoteDeletedFunction(Decl);
4533 // FIXME: Explain inaccessibility if DiagKind == 3.
4534 }
4535
4536 return true;
4537}
4538
Richard Smith9a561d52012-02-26 09:11:52 +00004539/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004540/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004541bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004542 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004543 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004544
4545 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004546 // -- any direct or virtual base class, or non-static data member with no
4547 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004548 // either M has no default constructor or overload resolution as applied
4549 // to M's default constructor results in an ambiguity or in a function
4550 // that is deleted or inaccessible
4551 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4552 // -- a direct or virtual base class B that cannot be copied/moved because
4553 // overload resolution, as applied to B's corresponding special member,
4554 // results in an ambiguity or a function that is deleted or inaccessible
4555 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004556 // C++11 [class.dtor]p5:
4557 // -- any direct or virtual base class [...] has a type with a destructor
4558 // that is deleted or inaccessible
4559 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004560 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004561 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004562 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004563
Richard Smith6c4c36c2012-03-30 20:53:28 +00004564 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4565 // -- any direct or virtual base class or non-static data member has a
4566 // type with a destructor that is deleted or inaccessible
4567 if (IsConstructor) {
4568 Sema::SpecialMemberOverloadResult *SMOR =
4569 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4570 false, false, false, false, false);
4571 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4572 return true;
4573 }
4574
Richard Smith9a561d52012-02-26 09:11:52 +00004575 return false;
4576}
4577
4578/// Check whether we should delete a special member function due to the class
4579/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004580bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004581 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004582 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004583}
4584
4585/// Check whether we should delete a special member function due to the class
4586/// having a particular non-static data member.
4587bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4588 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4589 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4590
4591 if (CSM == Sema::CXXDefaultConstructor) {
4592 // For a default constructor, all references must be initialized in-class
4593 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004594 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4595 if (Diagnose)
4596 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4597 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004598 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004599 }
Richard Smith79363f52012-02-27 06:07:25 +00004600 // C++11 [class.ctor]p5: any non-variant non-static data member of
4601 // const-qualified type (or array thereof) with no
4602 // brace-or-equal-initializer does not have a user-provided default
4603 // constructor.
4604 if (!inUnion() && FieldType.isConstQualified() &&
4605 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004606 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4607 if (Diagnose)
4608 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004609 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004610 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004611 }
4612
4613 if (inUnion() && !FieldType.isConstQualified())
4614 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004615 } else if (CSM == Sema::CXXCopyConstructor) {
4616 // For a copy constructor, data members must not be of rvalue reference
4617 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004618 if (FieldType->isRValueReferenceType()) {
4619 if (Diagnose)
4620 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4621 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004622 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004623 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004624 } else if (IsAssignment) {
4625 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004626 if (FieldType->isReferenceType()) {
4627 if (Diagnose)
4628 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4629 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004630 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004631 }
4632 if (!FieldRecord && FieldType.isConstQualified()) {
4633 // C++11 [class.copy]p23:
4634 // -- a non-static data member of const non-class type (or array thereof)
4635 if (Diagnose)
4636 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004637 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004638 return true;
4639 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004640 }
4641
4642 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004643 // Some additional restrictions exist on the variant members.
4644 if (!inUnion() && FieldRecord->isUnion() &&
4645 FieldRecord->isAnonymousStructOrUnion()) {
4646 bool AllVariantFieldsAreConst = true;
4647
Richard Smithdf8dc862012-03-29 19:00:10 +00004648 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004649 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4650 UE = FieldRecord->field_end();
4651 UI != UE; ++UI) {
4652 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004653
4654 if (!UnionFieldType.isConstQualified())
4655 AllVariantFieldsAreConst = false;
4656
Richard Smith9a561d52012-02-26 09:11:52 +00004657 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4658 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004659 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4660 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004661 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004662 }
4663
4664 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004665 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004666 FieldRecord->field_begin() != FieldRecord->field_end()) {
4667 if (Diagnose)
4668 S.Diag(FieldRecord->getLocation(),
4669 diag::note_deleted_default_ctor_all_const)
4670 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004671 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004672 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004673
Richard Smithdf8dc862012-03-29 19:00:10 +00004674 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004675 // This is technically non-conformant, but sanity demands it.
4676 return false;
4677 }
4678
Richard Smith517bb842012-07-18 03:51:16 +00004679 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4680 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004681 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004682 }
4683
4684 return false;
4685}
4686
4687/// C++11 [class.ctor] p5:
4688/// A defaulted default constructor for a class X is defined as deleted if
4689/// X is a union and all of its variant members are of const-qualified type.
4690bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004691 // This is a silly definition, because it gives an empty union a deleted
4692 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004693 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4694 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4695 if (Diagnose)
4696 S.Diag(MD->getParent()->getLocation(),
4697 diag::note_deleted_default_ctor_all_const)
4698 << MD->getParent() << /*not anonymous union*/0;
4699 return true;
4700 }
4701 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004702}
4703
4704/// Determine whether a defaulted special member function should be defined as
4705/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4706/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004707bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4708 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004709 if (MD->isInvalidDecl())
4710 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004711 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004712 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004713 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004714 return false;
4715
Richard Smith7d5088a2012-02-18 02:02:13 +00004716 // C++11 [expr.lambda.prim]p19:
4717 // The closure type associated with a lambda-expression has a
4718 // deleted (8.4.3) default constructor and a deleted copy
4719 // assignment operator.
4720 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004721 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4722 if (Diagnose)
4723 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004724 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004725 }
4726
Richard Smith5bdaac52012-04-02 20:59:25 +00004727 // For an anonymous struct or union, the copy and assignment special members
4728 // will never be used, so skip the check. For an anonymous union declared at
4729 // namespace scope, the constructor and destructor are used.
4730 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4731 RD->isAnonymousStructOrUnion())
4732 return false;
4733
Richard Smith6c4c36c2012-03-30 20:53:28 +00004734 // C++11 [class.copy]p7, p18:
4735 // If the class definition declares a move constructor or move assignment
4736 // operator, an implicitly declared copy constructor or copy assignment
4737 // operator is defined as deleted.
4738 if (MD->isImplicit() &&
4739 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4740 CXXMethodDecl *UserDeclaredMove = 0;
4741
4742 // In Microsoft mode, a user-declared move only causes the deletion of the
4743 // corresponding copy operation, not both copy operations.
4744 if (RD->hasUserDeclaredMoveConstructor() &&
4745 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4746 if (!Diagnose) return true;
4747 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004748 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004749 } else if (RD->hasUserDeclaredMoveAssignment() &&
4750 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4751 if (!Diagnose) return true;
4752 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004753 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004754 }
4755
4756 if (UserDeclaredMove) {
4757 Diag(UserDeclaredMove->getLocation(),
4758 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004759 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004760 << UserDeclaredMove->isMoveAssignmentOperator();
4761 return true;
4762 }
4763 }
Sean Hunte16da072011-10-10 06:18:57 +00004764
Richard Smith5bdaac52012-04-02 20:59:25 +00004765 // Do access control from the special member function
4766 ContextRAII MethodContext(*this, MD);
4767
Richard Smith9a561d52012-02-26 09:11:52 +00004768 // C++11 [class.dtor]p5:
4769 // -- for a virtual destructor, lookup of the non-array deallocation function
4770 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004771 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004772 FunctionDecl *OperatorDelete = 0;
4773 DeclarationName Name =
4774 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4775 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004776 OperatorDelete, false)) {
4777 if (Diagnose)
4778 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004779 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004780 }
Richard Smith9a561d52012-02-26 09:11:52 +00004781 }
4782
Richard Smith6c4c36c2012-03-30 20:53:28 +00004783 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004784
Sean Huntcdee3fe2011-05-11 22:34:38 +00004785 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004786 BE = RD->bases_end(); BI != BE; ++BI)
4787 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004788 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004789 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004790
4791 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004792 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004793 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004794 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004795
4796 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004797 FE = RD->field_end(); FI != FE; ++FI)
4798 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004799 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004800 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004801
Richard Smith7d5088a2012-02-18 02:02:13 +00004802 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004803 return true;
4804
4805 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004806}
4807
4808/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004809namespace {
4810 struct FindHiddenVirtualMethodData {
4811 Sema *S;
4812 CXXMethodDecl *Method;
4813 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004814 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004815 };
4816}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004817
David Blaikie5f750682012-10-19 00:53:08 +00004818/// \brief Check whether any most overriden method from MD in Methods
4819static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
4820 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4821 if (MD->size_overridden_methods() == 0)
4822 return Methods.count(MD->getCanonicalDecl());
4823 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4824 E = MD->end_overridden_methods();
4825 I != E; ++I)
4826 if (CheckMostOverridenMethods(*I, Methods))
4827 return true;
4828 return false;
4829}
4830
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004831/// \brief Member lookup function that determines whether a given C++
4832/// method overloads virtual methods in a base class without overriding any,
4833/// to be used with CXXRecordDecl::lookupInBases().
4834static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4835 CXXBasePath &Path,
4836 void *UserData) {
4837 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4838
4839 FindHiddenVirtualMethodData &Data
4840 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4841
4842 DeclarationName Name = Data.Method->getDeclName();
4843 assert(Name.getNameKind() == DeclarationName::Identifier);
4844
4845 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004846 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004847 for (Path.Decls = BaseRecord->lookup(Name);
4848 Path.Decls.first != Path.Decls.second;
4849 ++Path.Decls.first) {
4850 NamedDecl *D = *Path.Decls.first;
4851 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004852 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004853 foundSameNameMethod = true;
4854 // Interested only in hidden virtual methods.
4855 if (!MD->isVirtual())
4856 continue;
4857 // If the method we are checking overrides a method from its base
4858 // don't warn about the other overloaded methods.
4859 if (!Data.S->IsOverload(Data.Method, MD, false))
4860 return true;
4861 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00004862 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004863 overloadedMethods.push_back(MD);
4864 }
4865 }
4866
4867 if (foundSameNameMethod)
4868 Data.OverloadedMethods.append(overloadedMethods.begin(),
4869 overloadedMethods.end());
4870 return foundSameNameMethod;
4871}
4872
David Blaikie5f750682012-10-19 00:53:08 +00004873/// \brief Add the most overriden methods from MD to Methods
4874static void AddMostOverridenMethods(const CXXMethodDecl *MD,
4875 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4876 if (MD->size_overridden_methods() == 0)
4877 Methods.insert(MD->getCanonicalDecl());
4878 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4879 E = MD->end_overridden_methods();
4880 I != E; ++I)
4881 AddMostOverridenMethods(*I, Methods);
4882}
4883
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004884/// \brief See if a method overloads virtual methods in a base class without
4885/// overriding any.
4886void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4887 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004888 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004889 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004890 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004891 return;
4892
4893 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4894 /*bool RecordPaths=*/false,
4895 /*bool DetectVirtual=*/false);
4896 FindHiddenVirtualMethodData Data;
4897 Data.Method = MD;
4898 Data.S = this;
4899
4900 // Keep the base methods that were overriden or introduced in the subclass
4901 // by 'using' in a set. A base method not in this set is hidden.
4902 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4903 res.first != res.second; ++res.first) {
David Blaikie5f750682012-10-19 00:53:08 +00004904 NamedDecl *ND = *res.first;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004905 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
David Blaikie5f750682012-10-19 00:53:08 +00004906 ND = shad->getTargetDecl();
4907 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
4908 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004909 }
4910
4911 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4912 !Data.OverloadedMethods.empty()) {
4913 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4914 << MD << (Data.OverloadedMethods.size() > 1);
4915
4916 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4917 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4918 Diag(overloadedMD->getLocation(),
4919 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4920 }
4921 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004922}
4923
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004924void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004925 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004926 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004927 SourceLocation RBrac,
4928 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004929 if (!TagDecl)
4930 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004931
Douglas Gregor42af25f2009-05-11 19:58:34 +00004932 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004933
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004934 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4935 if (l->getKind() != AttributeList::AT_Visibility)
4936 continue;
4937 l->setInvalid();
4938 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4939 l->getName();
4940 }
4941
David Blaikie77b6de02011-09-22 02:58:26 +00004942 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004943 // strict aliasing violation!
4944 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004945 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004946
Douglas Gregor23c94db2010-07-02 17:43:08 +00004947 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004948 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004949}
4950
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004951/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4952/// special functions, such as the default constructor, copy
4953/// constructor, or destructor, to the given C++ class (C++
4954/// [special]p1). This routine can only be executed just before the
4955/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004956void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004957 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004958 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004959
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004960 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004961 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004962
David Blaikie4e4d0842012-03-11 07:00:24 +00004963 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004964 ++ASTContext::NumImplicitMoveConstructors;
4965
Douglas Gregora376d102010-07-02 21:50:04 +00004966 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4967 ++ASTContext::NumImplicitCopyAssignmentOperators;
4968
4969 // If we have a dynamic class, then the copy assignment operator may be
4970 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4971 // it shows up in the right place in the vtable and that we diagnose
4972 // problems with the implicit exception specification.
4973 if (ClassDecl->isDynamicClass())
4974 DeclareImplicitCopyAssignment(ClassDecl);
4975 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004976
Richard Smith1c931be2012-04-02 18:40:40 +00004977 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004978 ++ASTContext::NumImplicitMoveAssignmentOperators;
4979
4980 // Likewise for the move assignment operator.
4981 if (ClassDecl->isDynamicClass())
4982 DeclareImplicitMoveAssignment(ClassDecl);
4983 }
4984
Douglas Gregor4923aa22010-07-02 20:37:36 +00004985 if (!ClassDecl->hasUserDeclaredDestructor()) {
4986 ++ASTContext::NumImplicitDestructors;
4987
4988 // If we have a dynamic class, then the destructor may be virtual, so we
4989 // have to declare the destructor immediately. This ensures that, e.g., it
4990 // shows up in the right place in the vtable and that we diagnose problems
4991 // with the implicit exception specification.
4992 if (ClassDecl->isDynamicClass())
4993 DeclareImplicitDestructor(ClassDecl);
4994 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004995}
4996
Francois Pichet8387e2a2011-04-22 22:18:13 +00004997void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4998 if (!D)
4999 return;
5000
5001 int NumParamList = D->getNumTemplateParameterLists();
5002 for (int i = 0; i < NumParamList; i++) {
5003 TemplateParameterList* Params = D->getTemplateParameterList(i);
5004 for (TemplateParameterList::iterator Param = Params->begin(),
5005 ParamEnd = Params->end();
5006 Param != ParamEnd; ++Param) {
5007 NamedDecl *Named = cast<NamedDecl>(*Param);
5008 if (Named->getDeclName()) {
5009 S->AddDecl(Named);
5010 IdResolver.AddDecl(Named);
5011 }
5012 }
5013 }
5014}
5015
John McCalld226f652010-08-21 09:40:31 +00005016void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005017 if (!D)
5018 return;
5019
5020 TemplateParameterList *Params = 0;
5021 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5022 Params = Template->getTemplateParameters();
5023 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5024 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5025 Params = PartialSpec->getTemplateParameters();
5026 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005027 return;
5028
Douglas Gregor6569d682009-05-27 23:11:45 +00005029 for (TemplateParameterList::iterator Param = Params->begin(),
5030 ParamEnd = Params->end();
5031 Param != ParamEnd; ++Param) {
5032 NamedDecl *Named = cast<NamedDecl>(*Param);
5033 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005034 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005035 IdResolver.AddDecl(Named);
5036 }
5037 }
5038}
5039
John McCalld226f652010-08-21 09:40:31 +00005040void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005041 if (!RecordD) return;
5042 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005043 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005044 PushDeclContext(S, Record);
5045}
5046
John McCalld226f652010-08-21 09:40:31 +00005047void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005048 if (!RecordD) return;
5049 PopDeclContext();
5050}
5051
Douglas Gregor72b505b2008-12-16 21:30:33 +00005052/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5053/// parsing a top-level (non-nested) C++ class, and we are now
5054/// parsing those parts of the given Method declaration that could
5055/// not be parsed earlier (C++ [class.mem]p2), such as default
5056/// arguments. This action should enter the scope of the given
5057/// Method declaration as if we had just parsed the qualified method
5058/// name. However, it should not bring the parameters into scope;
5059/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005060void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005061}
5062
5063/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5064/// C++ method declaration. We're (re-)introducing the given
5065/// function parameter into scope for use in parsing later parts of
5066/// the method declaration. For example, we could see an
5067/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005068void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005069 if (!ParamD)
5070 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005071
John McCalld226f652010-08-21 09:40:31 +00005072 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005073
5074 // If this parameter has an unparsed default argument, clear it out
5075 // to make way for the parsed default argument.
5076 if (Param->hasUnparsedDefaultArg())
5077 Param->setDefaultArg(0);
5078
John McCalld226f652010-08-21 09:40:31 +00005079 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005080 if (Param->getDeclName())
5081 IdResolver.AddDecl(Param);
5082}
5083
5084/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5085/// processing the delayed method declaration for Method. The method
5086/// declaration is now considered finished. There may be a separate
5087/// ActOnStartOfFunctionDef action later (not necessarily
5088/// immediately!) for this method, if it was also defined inside the
5089/// class body.
John McCalld226f652010-08-21 09:40:31 +00005090void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005091 if (!MethodD)
5092 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005093
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005094 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005095
John McCalld226f652010-08-21 09:40:31 +00005096 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005097
5098 // Now that we have our default arguments, check the constructor
5099 // again. It could produce additional diagnostics or affect whether
5100 // the class has implicitly-declared destructors, among other
5101 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005102 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5103 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005104
5105 // Check the default arguments, which we may have added.
5106 if (!Method->isInvalidDecl())
5107 CheckCXXDefaultArguments(Method);
5108}
5109
Douglas Gregor42a552f2008-11-05 20:51:48 +00005110/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005111/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005112/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005113/// emit diagnostics and set the invalid bit to true. In any case, the type
5114/// will be updated to reflect a well-formed type for the constructor and
5115/// returned.
5116QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005117 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005118 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005119
5120 // C++ [class.ctor]p3:
5121 // A constructor shall not be virtual (10.3) or static (9.4). A
5122 // constructor can be invoked for a const, volatile or const
5123 // volatile object. A constructor shall not be declared const,
5124 // volatile, or const volatile (9.3.2).
5125 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005126 if (!D.isInvalidType())
5127 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5128 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5129 << SourceRange(D.getIdentifierLoc());
5130 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005131 }
John McCalld931b082010-08-26 03:08:43 +00005132 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005133 if (!D.isInvalidType())
5134 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5135 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5136 << SourceRange(D.getIdentifierLoc());
5137 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005138 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005139 }
Mike Stump1eb44332009-09-09 15:08:12 +00005140
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005141 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005142 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005143 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005144 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5145 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005146 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005147 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5148 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005149 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005150 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5151 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005152 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005153 }
Mike Stump1eb44332009-09-09 15:08:12 +00005154
Douglas Gregorc938c162011-01-26 05:01:58 +00005155 // C++0x [class.ctor]p4:
5156 // A constructor shall not be declared with a ref-qualifier.
5157 if (FTI.hasRefQualifier()) {
5158 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5159 << FTI.RefQualifierIsLValueRef
5160 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5161 D.setInvalidType();
5162 }
5163
Douglas Gregor42a552f2008-11-05 20:51:48 +00005164 // Rebuild the function type "R" without any type qualifiers (in
5165 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005166 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005167 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005168 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5169 return R;
5170
5171 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5172 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005173 EPI.RefQualifier = RQ_None;
5174
Chris Lattner65401802009-04-25 08:28:21 +00005175 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005176 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005177}
5178
Douglas Gregor72b505b2008-12-16 21:30:33 +00005179/// CheckConstructor - Checks a fully-formed constructor for
5180/// well-formedness, issuing any diagnostics required. Returns true if
5181/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005182void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005183 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005184 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5185 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005186 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005187
5188 // C++ [class.copy]p3:
5189 // A declaration of a constructor for a class X is ill-formed if
5190 // its first parameter is of type (optionally cv-qualified) X and
5191 // either there are no other parameters or else all other
5192 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005193 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005194 ((Constructor->getNumParams() == 1) ||
5195 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005196 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5197 Constructor->getTemplateSpecializationKind()
5198 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005199 QualType ParamType = Constructor->getParamDecl(0)->getType();
5200 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5201 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005202 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005203 const char *ConstRef
5204 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5205 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005206 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005207 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005208
5209 // FIXME: Rather that making the constructor invalid, we should endeavor
5210 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005211 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005212 }
5213 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005214}
5215
John McCall15442822010-08-04 01:04:25 +00005216/// CheckDestructor - Checks a fully-formed destructor definition for
5217/// well-formedness, issuing any diagnostics required. Returns true
5218/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005219bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005220 CXXRecordDecl *RD = Destructor->getParent();
5221
5222 if (Destructor->isVirtual()) {
5223 SourceLocation Loc;
5224
5225 if (!Destructor->isImplicit())
5226 Loc = Destructor->getLocation();
5227 else
5228 Loc = RD->getLocation();
5229
5230 // If we have a virtual destructor, look up the deallocation function
5231 FunctionDecl *OperatorDelete = 0;
5232 DeclarationName Name =
5233 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005234 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005235 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005236
Eli Friedman5f2987c2012-02-02 03:46:19 +00005237 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005238
5239 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005240 }
Anders Carlsson37909802009-11-30 21:24:50 +00005241
5242 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005243}
5244
Mike Stump1eb44332009-09-09 15:08:12 +00005245static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005246FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5247 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5248 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005249 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005250}
5251
Douglas Gregor42a552f2008-11-05 20:51:48 +00005252/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5253/// the well-formednes of the destructor declarator @p D with type @p
5254/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005255/// emit diagnostics and set the declarator to invalid. Even if this happens,
5256/// will be updated to reflect a well-formed type for the destructor and
5257/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005258QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005259 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005260 // C++ [class.dtor]p1:
5261 // [...] A typedef-name that names a class is a class-name
5262 // (7.1.3); however, a typedef-name that names a class shall not
5263 // be used as the identifier in the declarator for a destructor
5264 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005265 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005266 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005267 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005268 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005269 else if (const TemplateSpecializationType *TST =
5270 DeclaratorType->getAs<TemplateSpecializationType>())
5271 if (TST->isTypeAlias())
5272 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5273 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005274
5275 // C++ [class.dtor]p2:
5276 // A destructor is used to destroy objects of its class type. A
5277 // destructor takes no parameters, and no return type can be
5278 // specified for it (not even void). The address of a destructor
5279 // shall not be taken. A destructor shall not be static. A
5280 // destructor can be invoked for a const, volatile or const
5281 // volatile object. A destructor shall not be declared const,
5282 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005283 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005284 if (!D.isInvalidType())
5285 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5286 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005287 << SourceRange(D.getIdentifierLoc())
5288 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5289
John McCalld931b082010-08-26 03:08:43 +00005290 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005291 }
Chris Lattner65401802009-04-25 08:28:21 +00005292 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005293 // Destructors don't have return types, but the parser will
5294 // happily parse something like:
5295 //
5296 // class X {
5297 // float ~X();
5298 // };
5299 //
5300 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005301 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5302 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5303 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005304 }
Mike Stump1eb44332009-09-09 15:08:12 +00005305
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005306 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005307 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005308 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005309 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5310 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005311 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005312 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5313 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005314 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005315 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5316 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005317 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005318 }
5319
Douglas Gregorc938c162011-01-26 05:01:58 +00005320 // C++0x [class.dtor]p2:
5321 // A destructor shall not be declared with a ref-qualifier.
5322 if (FTI.hasRefQualifier()) {
5323 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5324 << FTI.RefQualifierIsLValueRef
5325 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5326 D.setInvalidType();
5327 }
5328
Douglas Gregor42a552f2008-11-05 20:51:48 +00005329 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005330 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005331 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5332
5333 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005334 FTI.freeArgs();
5335 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005336 }
5337
Mike Stump1eb44332009-09-09 15:08:12 +00005338 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005339 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005340 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005341 D.setInvalidType();
5342 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005343
5344 // Rebuild the function type "R" without any type qualifiers or
5345 // parameters (in case any of the errors above fired) and with
5346 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005347 // types.
John McCalle23cf432010-12-14 08:05:40 +00005348 if (!D.isInvalidType())
5349 return R;
5350
Douglas Gregord92ec472010-07-01 05:10:53 +00005351 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005352 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5353 EPI.Variadic = false;
5354 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005355 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005356 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005357}
5358
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005359/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5360/// well-formednes of the conversion function declarator @p D with
5361/// type @p R. If there are any errors in the declarator, this routine
5362/// will emit diagnostics and return true. Otherwise, it will return
5363/// false. Either way, the type @p R will be updated to reflect a
5364/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005365void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005366 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005367 // C++ [class.conv.fct]p1:
5368 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005369 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005370 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005371 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005372 if (!D.isInvalidType())
5373 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5374 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5375 << SourceRange(D.getIdentifierLoc());
5376 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005377 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005378 }
John McCalla3f81372010-04-13 00:04:31 +00005379
5380 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5381
Chris Lattner6e475012009-04-25 08:35:12 +00005382 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005383 // Conversion functions don't have return types, but the parser will
5384 // happily parse something like:
5385 //
5386 // class X {
5387 // float operator bool();
5388 // };
5389 //
5390 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005391 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5392 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5393 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005394 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005395 }
5396
John McCalla3f81372010-04-13 00:04:31 +00005397 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5398
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005399 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005400 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005401 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5402
5403 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005404 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005405 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005406 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005407 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005408 D.setInvalidType();
5409 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005410
John McCalla3f81372010-04-13 00:04:31 +00005411 // Diagnose "&operator bool()" and other such nonsense. This
5412 // is actually a gcc extension which we don't support.
5413 if (Proto->getResultType() != ConvType) {
5414 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5415 << Proto->getResultType();
5416 D.setInvalidType();
5417 ConvType = Proto->getResultType();
5418 }
5419
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005420 // C++ [class.conv.fct]p4:
5421 // The conversion-type-id shall not represent a function type nor
5422 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005423 if (ConvType->isArrayType()) {
5424 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5425 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005426 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005427 } else if (ConvType->isFunctionType()) {
5428 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5429 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005430 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005431 }
5432
5433 // Rebuild the function type "R" without any parameters (in case any
5434 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005435 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005436 if (D.isInvalidType())
5437 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005438
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005439 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005440 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005441 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005442 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005443 diag::warn_cxx98_compat_explicit_conversion_functions :
5444 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005445 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005446}
5447
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005448/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5449/// the declaration of the given C++ conversion function. This routine
5450/// is responsible for recording the conversion function in the C++
5451/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005452Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005453 assert(Conversion && "Expected to receive a conversion function declaration");
5454
Douglas Gregor9d350972008-12-12 08:25:50 +00005455 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005456
5457 // Make sure we aren't redeclaring the conversion function.
5458 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005459
5460 // C++ [class.conv.fct]p1:
5461 // [...] A conversion function is never used to convert a
5462 // (possibly cv-qualified) object to the (possibly cv-qualified)
5463 // same object type (or a reference to it), to a (possibly
5464 // cv-qualified) base class of that type (or a reference to it),
5465 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005466 // FIXME: Suppress this warning if the conversion function ends up being a
5467 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005468 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005469 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005470 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005471 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005472 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5473 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005474 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005475 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005476 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5477 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005478 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005479 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005480 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005481 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005482 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005483 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005484 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005485 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005486 }
5487
Douglas Gregore80622f2010-09-29 04:25:11 +00005488 if (FunctionTemplateDecl *ConversionTemplate
5489 = Conversion->getDescribedFunctionTemplate())
5490 return ConversionTemplate;
5491
John McCalld226f652010-08-21 09:40:31 +00005492 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005493}
5494
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005495//===----------------------------------------------------------------------===//
5496// Namespace Handling
5497//===----------------------------------------------------------------------===//
5498
Richard Smithd1a55a62012-10-04 22:13:39 +00005499/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5500/// reopened.
5501static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5502 SourceLocation Loc,
5503 IdentifierInfo *II, bool *IsInline,
5504 NamespaceDecl *PrevNS) {
5505 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005506
Richard Smithc969e6a2012-10-05 01:46:25 +00005507 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5508 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5509 // inline namespaces, with the intention of bringing names into namespace std.
5510 //
5511 // We support this just well enough to get that case working; this is not
5512 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005513 if (*IsInline && II && II->getName().startswith("__atomic") &&
5514 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005515 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005516 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5517 NS = NS->getPreviousDecl())
5518 NS->setInline(*IsInline);
5519 // Patch up the lookup table for the containing namespace. This isn't really
5520 // correct, but it's good enough for this particular case.
5521 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5522 E = PrevNS->decls_end(); I != E; ++I)
5523 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5524 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5525 return;
5526 }
5527
5528 if (PrevNS->isInline())
5529 // The user probably just forgot the 'inline', so suggest that it
5530 // be added back.
5531 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5532 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5533 else
5534 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5535 << IsInline;
5536
5537 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5538 *IsInline = PrevNS->isInline();
5539}
John McCallea318642010-08-26 09:15:37 +00005540
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005541/// ActOnStartNamespaceDef - This is called at the start of a namespace
5542/// definition.
John McCalld226f652010-08-21 09:40:31 +00005543Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005544 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005545 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005546 SourceLocation IdentLoc,
5547 IdentifierInfo *II,
5548 SourceLocation LBrace,
5549 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005550 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5551 // For anonymous namespace, take the location of the left brace.
5552 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005553 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005554 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005555 bool IsStd = false;
5556 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005557 Scope *DeclRegionScope = NamespcScope->getParent();
5558
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005559 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005560 if (II) {
5561 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005562 // The identifier in an original-namespace-definition shall not
5563 // have been previously defined in the declarative region in
5564 // which the original-namespace-definition appears. The
5565 // identifier in an original-namespace-definition is the name of
5566 // the namespace. Subsequently in that declarative region, it is
5567 // treated as an original-namespace-name.
5568 //
5569 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005570 // look through using directives, just look for any ordinary names.
5571
5572 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005573 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5574 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005575 NamedDecl *PrevDecl = 0;
5576 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005577 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005578 R.first != R.second; ++R.first) {
5579 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5580 PrevDecl = *R.first;
5581 break;
5582 }
5583 }
5584
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005585 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5586
5587 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005588 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00005589 if (IsInline != PrevNS->isInline())
5590 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5591 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00005592 } else if (PrevDecl) {
5593 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005594 Diag(Loc, diag::err_redefinition_different_kind)
5595 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005596 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005597 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005598 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005599 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005600 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005601 // This is the first "real" definition of the namespace "std", so update
5602 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005603 PrevNS = getStdNamespace();
5604 IsStd = true;
5605 AddToKnown = !IsInline;
5606 } else {
5607 // We've seen this namespace for the first time.
5608 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005609 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005610 } else {
John McCall9aeed322009-10-01 00:25:31 +00005611 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005612
5613 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005614 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005615 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005616 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005617 } else {
5618 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005619 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005620 }
5621
Richard Smithd1a55a62012-10-04 22:13:39 +00005622 if (PrevNS && IsInline != PrevNS->isInline())
5623 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
5624 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005625 }
5626
5627 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5628 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005629 if (IsInvalid)
5630 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005631
5632 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005633
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005634 // FIXME: Should we be merging attributes?
5635 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005636 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005637
5638 if (IsStd)
5639 StdNamespace = Namespc;
5640 if (AddToKnown)
5641 KnownNamespaces[Namespc] = false;
5642
5643 if (II) {
5644 PushOnScopeChains(Namespc, DeclRegionScope);
5645 } else {
5646 // Link the anonymous namespace into its parent.
5647 DeclContext *Parent = CurContext->getRedeclContext();
5648 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5649 TU->setAnonymousNamespace(Namespc);
5650 } else {
5651 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005652 }
John McCall9aeed322009-10-01 00:25:31 +00005653
Douglas Gregora4181472010-03-24 00:46:35 +00005654 CurContext->addDecl(Namespc);
5655
John McCall9aeed322009-10-01 00:25:31 +00005656 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5657 // behaves as if it were replaced by
5658 // namespace unique { /* empty body */ }
5659 // using namespace unique;
5660 // namespace unique { namespace-body }
5661 // where all occurrences of 'unique' in a translation unit are
5662 // replaced by the same identifier and this identifier differs
5663 // from all other identifiers in the entire program.
5664
5665 // We just create the namespace with an empty name and then add an
5666 // implicit using declaration, just like the standard suggests.
5667 //
5668 // CodeGen enforces the "universally unique" aspect by giving all
5669 // declarations semantically contained within an anonymous
5670 // namespace internal linkage.
5671
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005672 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005673 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005674 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00005675 /* 'using' */ LBrace,
5676 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005677 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005678 /* identifier */ SourceLocation(),
5679 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005680 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00005681 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005682 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00005683 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005684 }
5685
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005686 ActOnDocumentableDecl(Namespc);
5687
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005688 // Although we could have an invalid decl (i.e. the namespace name is a
5689 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005690 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5691 // for the namespace has the declarations that showed up in that particular
5692 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005693 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005694 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005695}
5696
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005697/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5698/// is a namespace alias, returns the namespace it points to.
5699static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5700 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5701 return AD->getNamespace();
5702 return dyn_cast_or_null<NamespaceDecl>(D);
5703}
5704
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005705/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5706/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005707void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005708 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5709 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005710 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005711 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005712 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005713 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005714}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005715
John McCall384aff82010-08-25 07:42:41 +00005716CXXRecordDecl *Sema::getStdBadAlloc() const {
5717 return cast_or_null<CXXRecordDecl>(
5718 StdBadAlloc.get(Context.getExternalSource()));
5719}
5720
5721NamespaceDecl *Sema::getStdNamespace() const {
5722 return cast_or_null<NamespaceDecl>(
5723 StdNamespace.get(Context.getExternalSource()));
5724}
5725
Douglas Gregor66992202010-06-29 17:53:46 +00005726/// \brief Retrieve the special "std" namespace, which may require us to
5727/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005728NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005729 if (!StdNamespace) {
5730 // The "std" namespace has not yet been defined, so build one implicitly.
5731 StdNamespace = NamespaceDecl::Create(Context,
5732 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005733 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005734 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005735 &PP.getIdentifierTable().get("std"),
5736 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005737 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005738 }
5739
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005740 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005741}
5742
Sebastian Redl395e04d2012-01-17 22:49:33 +00005743bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005744 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005745 "Looking for std::initializer_list outside of C++.");
5746
5747 // We're looking for implicit instantiations of
5748 // template <typename E> class std::initializer_list.
5749
5750 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5751 return false;
5752
Sebastian Redl84760e32012-01-17 22:49:58 +00005753 ClassTemplateDecl *Template = 0;
5754 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005755
Sebastian Redl84760e32012-01-17 22:49:58 +00005756 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005757
Sebastian Redl84760e32012-01-17 22:49:58 +00005758 ClassTemplateSpecializationDecl *Specialization =
5759 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5760 if (!Specialization)
5761 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005762
Sebastian Redl84760e32012-01-17 22:49:58 +00005763 Template = Specialization->getSpecializedTemplate();
5764 Arguments = Specialization->getTemplateArgs().data();
5765 } else if (const TemplateSpecializationType *TST =
5766 Ty->getAs<TemplateSpecializationType>()) {
5767 Template = dyn_cast_or_null<ClassTemplateDecl>(
5768 TST->getTemplateName().getAsTemplateDecl());
5769 Arguments = TST->getArgs();
5770 }
5771 if (!Template)
5772 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005773
5774 if (!StdInitializerList) {
5775 // Haven't recognized std::initializer_list yet, maybe this is it.
5776 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5777 if (TemplateClass->getIdentifier() !=
5778 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005779 !getStdNamespace()->InEnclosingNamespaceSetOf(
5780 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005781 return false;
5782 // This is a template called std::initializer_list, but is it the right
5783 // template?
5784 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005785 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005786 return false;
5787 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5788 return false;
5789
5790 // It's the right template.
5791 StdInitializerList = Template;
5792 }
5793
5794 if (Template != StdInitializerList)
5795 return false;
5796
5797 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005798 if (Element)
5799 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005800 return true;
5801}
5802
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005803static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5804 NamespaceDecl *Std = S.getStdNamespace();
5805 if (!Std) {
5806 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5807 return 0;
5808 }
5809
5810 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5811 Loc, Sema::LookupOrdinaryName);
5812 if (!S.LookupQualifiedName(Result, Std)) {
5813 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5814 return 0;
5815 }
5816 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5817 if (!Template) {
5818 Result.suppressDiagnostics();
5819 // We found something weird. Complain about the first thing we found.
5820 NamedDecl *Found = *Result.begin();
5821 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5822 return 0;
5823 }
5824
5825 // We found some template called std::initializer_list. Now verify that it's
5826 // correct.
5827 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005828 if (Params->getMinRequiredArguments() != 1 ||
5829 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005830 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5831 return 0;
5832 }
5833
5834 return Template;
5835}
5836
5837QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5838 if (!StdInitializerList) {
5839 StdInitializerList = LookupStdInitializerList(*this, Loc);
5840 if (!StdInitializerList)
5841 return QualType();
5842 }
5843
5844 TemplateArgumentListInfo Args(Loc, Loc);
5845 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5846 Context.getTrivialTypeSourceInfo(Element,
5847 Loc)));
5848 return Context.getCanonicalType(
5849 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5850}
5851
Sebastian Redl98d36062012-01-17 22:50:14 +00005852bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5853 // C++ [dcl.init.list]p2:
5854 // A constructor is an initializer-list constructor if its first parameter
5855 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5856 // std::initializer_list<E> for some type E, and either there are no other
5857 // parameters or else all other parameters have default arguments.
5858 if (Ctor->getNumParams() < 1 ||
5859 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5860 return false;
5861
5862 QualType ArgType = Ctor->getParamDecl(0)->getType();
5863 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5864 ArgType = RT->getPointeeType().getUnqualifiedType();
5865
5866 return isStdInitializerList(ArgType, 0);
5867}
5868
Douglas Gregor9172aa62011-03-26 22:25:30 +00005869/// \brief Determine whether a using statement is in a context where it will be
5870/// apply in all contexts.
5871static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5872 switch (CurContext->getDeclKind()) {
5873 case Decl::TranslationUnit:
5874 return true;
5875 case Decl::LinkageSpec:
5876 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5877 default:
5878 return false;
5879 }
5880}
5881
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005882namespace {
5883
5884// Callback to only accept typo corrections that are namespaces.
5885class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5886 public:
5887 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5888 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5889 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5890 }
5891 return false;
5892 }
5893};
5894
5895}
5896
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005897static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5898 CXXScopeSpec &SS,
5899 SourceLocation IdentLoc,
5900 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005901 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005902 R.clear();
5903 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005904 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005905 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005906 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5907 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005908 if (DeclContext *DC = S.computeDeclContext(SS, false))
5909 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5910 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00005911 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
5912 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005913 else
5914 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5915 << Ident << CorrectedQuotedStr
5916 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005917
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005918 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5919 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005920
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005921 R.addDecl(Corrected.getCorrectionDecl());
5922 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005923 }
5924 return false;
5925}
5926
John McCalld226f652010-08-21 09:40:31 +00005927Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005928 SourceLocation UsingLoc,
5929 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005930 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005931 SourceLocation IdentLoc,
5932 IdentifierInfo *NamespcName,
5933 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005934 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5935 assert(NamespcName && "Invalid NamespcName.");
5936 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005937
5938 // This can only happen along a recovery path.
5939 while (S->getFlags() & Scope::TemplateParamScope)
5940 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005941 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005942
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005943 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005944 NestedNameSpecifier *Qualifier = 0;
5945 if (SS.isSet())
5946 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5947
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005948 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005949 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5950 LookupParsedName(R, S, &SS);
5951 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005952 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005953
Douglas Gregor66992202010-06-29 17:53:46 +00005954 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005955 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005956 // Allow "using namespace std;" or "using namespace ::std;" even if
5957 // "std" hasn't been defined yet, for GCC compatibility.
5958 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5959 NamespcName->isStr("std")) {
5960 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005961 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005962 R.resolveKind();
5963 }
5964 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005965 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005966 }
5967
John McCallf36e02d2009-10-09 21:13:30 +00005968 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005969 NamedDecl *Named = R.getFoundDecl();
5970 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5971 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005972 // C++ [namespace.udir]p1:
5973 // A using-directive specifies that the names in the nominated
5974 // namespace can be used in the scope in which the
5975 // using-directive appears after the using-directive. During
5976 // unqualified name lookup (3.4.1), the names appear as if they
5977 // were declared in the nearest enclosing namespace which
5978 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005979 // namespace. [Note: in this context, "contains" means "contains
5980 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005981
5982 // Find enclosing context containing both using-directive and
5983 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005984 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005985 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5986 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5987 CommonAncestor = CommonAncestor->getParent();
5988
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005989 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005990 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005991 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005992
Douglas Gregor9172aa62011-03-26 22:25:30 +00005993 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005994 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005995 Diag(IdentLoc, diag::warn_using_directive_in_header);
5996 }
5997
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005998 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005999 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00006000 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00006001 }
6002
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006003 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00006004 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006005}
6006
6007void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006008 // If the scope has an associated entity and the using directive is at
6009 // namespace or translation unit scope, add the UsingDirectiveDecl into
6010 // its lookup structure so qualified name lookup can find it.
6011 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6012 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006013 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006014 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006015 // Otherwise, it is at block sope. The using-directives will affect lookup
6016 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006017 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006018}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006019
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006020
John McCalld226f652010-08-21 09:40:31 +00006021Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006022 AccessSpecifier AS,
6023 bool HasUsingKeyword,
6024 SourceLocation UsingLoc,
6025 CXXScopeSpec &SS,
6026 UnqualifiedId &Name,
6027 AttributeList *AttrList,
6028 bool IsTypeName,
6029 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006030 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006031
Douglas Gregor12c118a2009-11-04 16:30:06 +00006032 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006033 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006034 case UnqualifiedId::IK_Identifier:
6035 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006036 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006037 case UnqualifiedId::IK_ConversionFunctionId:
6038 break;
6039
6040 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006041 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006042 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006043 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00006044 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006045 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6046 // instead once inheriting constructors work.
6047 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006048 diag::err_using_decl_constructor)
6049 << SS.getRange();
6050
David Blaikie4e4d0842012-03-11 07:00:24 +00006051 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00006052
John McCalld226f652010-08-21 09:40:31 +00006053 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006054
6055 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006056 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006057 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006058 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006059
6060 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006061 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006062 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006063 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006064 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006065
6066 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6067 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006068 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006069 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006070
John McCall60fa3cf2009-12-11 02:10:03 +00006071 // Warn about using declarations.
6072 // TODO: store that the declaration was written without 'using' and
6073 // talk about access decls instead of using decls in the
6074 // diagnostics.
6075 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006076 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006077
6078 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006079 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006080 }
6081
Douglas Gregor56c04582010-12-16 00:46:58 +00006082 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6083 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6084 return 0;
6085
John McCall9488ea12009-11-17 05:59:44 +00006086 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006087 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006088 /* IsInstantiation */ false,
6089 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006090 if (UD)
6091 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006092
John McCalld226f652010-08-21 09:40:31 +00006093 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006094}
6095
Douglas Gregor09acc982010-07-07 23:08:52 +00006096/// \brief Determine whether a using declaration considers the given
6097/// declarations as "equivalent", e.g., if they are redeclarations of
6098/// the same entity or are both typedefs of the same type.
6099static bool
6100IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6101 bool &SuppressRedeclaration) {
6102 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6103 SuppressRedeclaration = false;
6104 return true;
6105 }
6106
Richard Smith162e1c12011-04-15 14:24:37 +00006107 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6108 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006109 SuppressRedeclaration = true;
6110 return Context.hasSameType(TD1->getUnderlyingType(),
6111 TD2->getUnderlyingType());
6112 }
6113
6114 return false;
6115}
6116
6117
John McCall9f54ad42009-12-10 09:41:52 +00006118/// Determines whether to create a using shadow decl for a particular
6119/// decl, given the set of decls existing prior to this using lookup.
6120bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6121 const LookupResult &Previous) {
6122 // Diagnose finding a decl which is not from a base class of the
6123 // current class. We do this now because there are cases where this
6124 // function will silently decide not to build a shadow decl, which
6125 // will pre-empt further diagnostics.
6126 //
6127 // We don't need to do this in C++0x because we do the check once on
6128 // the qualifier.
6129 //
6130 // FIXME: diagnose the following if we care enough:
6131 // struct A { int foo; };
6132 // struct B : A { using A::foo; };
6133 // template <class T> struct C : A {};
6134 // template <class T> struct D : C<T> { using B::foo; } // <---
6135 // This is invalid (during instantiation) in C++03 because B::foo
6136 // resolves to the using decl in B, which is not a base class of D<T>.
6137 // We can't diagnose it immediately because C<T> is an unknown
6138 // specialization. The UsingShadowDecl in D<T> then points directly
6139 // to A::foo, which will look well-formed when we instantiate.
6140 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00006141 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006142 DeclContext *OrigDC = Orig->getDeclContext();
6143
6144 // Handle enums and anonymous structs.
6145 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6146 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6147 while (OrigRec->isAnonymousStructOrUnion())
6148 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6149
6150 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6151 if (OrigDC == CurContext) {
6152 Diag(Using->getLocation(),
6153 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006154 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006155 Diag(Orig->getLocation(), diag::note_using_decl_target);
6156 return true;
6157 }
6158
Douglas Gregordc355712011-02-25 00:36:19 +00006159 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006160 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006161 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006162 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006163 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006164 Diag(Orig->getLocation(), diag::note_using_decl_target);
6165 return true;
6166 }
6167 }
6168
6169 if (Previous.empty()) return false;
6170
6171 NamedDecl *Target = Orig;
6172 if (isa<UsingShadowDecl>(Target))
6173 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6174
John McCalld7533ec2009-12-11 02:33:26 +00006175 // If the target happens to be one of the previous declarations, we
6176 // don't have a conflict.
6177 //
6178 // FIXME: but we might be increasing its access, in which case we
6179 // should redeclare it.
6180 NamedDecl *NonTag = 0, *Tag = 0;
6181 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6182 I != E; ++I) {
6183 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006184 bool Result;
6185 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6186 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006187
6188 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6189 }
6190
John McCall9f54ad42009-12-10 09:41:52 +00006191 if (Target->isFunctionOrFunctionTemplate()) {
6192 FunctionDecl *FD;
6193 if (isa<FunctionTemplateDecl>(Target))
6194 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6195 else
6196 FD = cast<FunctionDecl>(Target);
6197
6198 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006199 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006200 case Ovl_Overload:
6201 return false;
6202
6203 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006204 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006205 break;
6206
6207 // We found a decl with the exact signature.
6208 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006209 // If we're in a record, we want to hide the target, so we
6210 // return true (without a diagnostic) to tell the caller not to
6211 // build a shadow decl.
6212 if (CurContext->isRecord())
6213 return true;
6214
6215 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006216 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006217 break;
6218 }
6219
6220 Diag(Target->getLocation(), diag::note_using_decl_target);
6221 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6222 return true;
6223 }
6224
6225 // Target is not a function.
6226
John McCall9f54ad42009-12-10 09:41:52 +00006227 if (isa<TagDecl>(Target)) {
6228 // No conflict between a tag and a non-tag.
6229 if (!Tag) return false;
6230
John McCall41ce66f2009-12-10 19:51:03 +00006231 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006232 Diag(Target->getLocation(), diag::note_using_decl_target);
6233 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6234 return true;
6235 }
6236
6237 // No conflict between a tag and a non-tag.
6238 if (!NonTag) return false;
6239
John McCall41ce66f2009-12-10 19:51:03 +00006240 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006241 Diag(Target->getLocation(), diag::note_using_decl_target);
6242 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6243 return true;
6244}
6245
John McCall9488ea12009-11-17 05:59:44 +00006246/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006247UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006248 UsingDecl *UD,
6249 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006250
6251 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006252 NamedDecl *Target = Orig;
6253 if (isa<UsingShadowDecl>(Target)) {
6254 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6255 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006256 }
6257
6258 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006259 = UsingShadowDecl::Create(Context, CurContext,
6260 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006261 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006262
6263 Shadow->setAccess(UD->getAccess());
6264 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6265 Shadow->setInvalidDecl();
6266
John McCall9488ea12009-11-17 05:59:44 +00006267 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006268 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006269 else
John McCall604e7f12009-12-08 07:46:18 +00006270 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006271
John McCall604e7f12009-12-08 07:46:18 +00006272
John McCall9f54ad42009-12-10 09:41:52 +00006273 return Shadow;
6274}
John McCall604e7f12009-12-08 07:46:18 +00006275
John McCall9f54ad42009-12-10 09:41:52 +00006276/// Hides a using shadow declaration. This is required by the current
6277/// using-decl implementation when a resolvable using declaration in a
6278/// class is followed by a declaration which would hide or override
6279/// one or more of the using decl's targets; for example:
6280///
6281/// struct Base { void foo(int); };
6282/// struct Derived : Base {
6283/// using Base::foo;
6284/// void foo(int);
6285/// };
6286///
6287/// The governing language is C++03 [namespace.udecl]p12:
6288///
6289/// When a using-declaration brings names from a base class into a
6290/// derived class scope, member functions in the derived class
6291/// override and/or hide member functions with the same name and
6292/// parameter types in a base class (rather than conflicting).
6293///
6294/// There are two ways to implement this:
6295/// (1) optimistically create shadow decls when they're not hidden
6296/// by existing declarations, or
6297/// (2) don't create any shadow decls (or at least don't make them
6298/// visible) until we've fully parsed/instantiated the class.
6299/// The problem with (1) is that we might have to retroactively remove
6300/// a shadow decl, which requires several O(n) operations because the
6301/// decl structures are (very reasonably) not designed for removal.
6302/// (2) avoids this but is very fiddly and phase-dependent.
6303void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006304 if (Shadow->getDeclName().getNameKind() ==
6305 DeclarationName::CXXConversionFunctionName)
6306 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6307
John McCall9f54ad42009-12-10 09:41:52 +00006308 // Remove it from the DeclContext...
6309 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006310
John McCall9f54ad42009-12-10 09:41:52 +00006311 // ...and the scope, if applicable...
6312 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006313 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006314 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006315 }
6316
John McCall9f54ad42009-12-10 09:41:52 +00006317 // ...and the using decl.
6318 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6319
6320 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006321 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006322}
6323
John McCall7ba107a2009-11-18 02:36:19 +00006324/// Builds a using declaration.
6325///
6326/// \param IsInstantiation - Whether this call arises from an
6327/// instantiation of an unresolved using declaration. We treat
6328/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006329NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6330 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006331 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006332 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006333 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006334 bool IsInstantiation,
6335 bool IsTypeName,
6336 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006337 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006338 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006339 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006340
Anders Carlsson550b14b2009-08-28 05:49:21 +00006341 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006342
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006343 if (SS.isEmpty()) {
6344 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006345 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006346 }
Mike Stump1eb44332009-09-09 15:08:12 +00006347
John McCall9f54ad42009-12-10 09:41:52 +00006348 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006349 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006350 ForRedeclaration);
6351 Previous.setHideTags(false);
6352 if (S) {
6353 LookupName(Previous, S);
6354
6355 // It is really dumb that we have to do this.
6356 LookupResult::Filter F = Previous.makeFilter();
6357 while (F.hasNext()) {
6358 NamedDecl *D = F.next();
6359 if (!isDeclInScope(D, CurContext, S))
6360 F.erase();
6361 }
6362 F.done();
6363 } else {
6364 assert(IsInstantiation && "no scope in non-instantiation");
6365 assert(CurContext->isRecord() && "scope not record in instantiation");
6366 LookupQualifiedName(Previous, CurContext);
6367 }
6368
John McCall9f54ad42009-12-10 09:41:52 +00006369 // Check for invalid redeclarations.
6370 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6371 return 0;
6372
6373 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006374 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6375 return 0;
6376
John McCallaf8e6ed2009-11-12 03:15:40 +00006377 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006378 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006379 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006380 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006381 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006382 // FIXME: not all declaration name kinds are legal here
6383 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6384 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006385 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006386 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006387 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006388 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6389 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006390 }
John McCalled976492009-12-04 22:46:56 +00006391 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006392 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6393 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006394 }
John McCalled976492009-12-04 22:46:56 +00006395 D->setAccess(AS);
6396 CurContext->addDecl(D);
6397
6398 if (!LookupContext) return D;
6399 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006400
John McCall77bb1aa2010-05-01 00:40:08 +00006401 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006402 UD->setInvalidDecl();
6403 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006404 }
6405
Richard Smithc5a89a12012-04-02 01:30:27 +00006406 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006407 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006408 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006409 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006410 return UD;
6411 }
6412
6413 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006414
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006415 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006416
John McCall604e7f12009-12-08 07:46:18 +00006417 // Unlike most lookups, we don't always want to hide tag
6418 // declarations: tag names are visible through the using declaration
6419 // even if hidden by ordinary names, *except* in a dependent context
6420 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006421 if (!IsInstantiation)
6422 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006423
John McCallb9abd8722012-04-07 03:04:20 +00006424 // For the purposes of this lookup, we have a base object type
6425 // equal to that of the current context.
6426 if (CurContext->isRecord()) {
6427 R.setBaseObjectType(
6428 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6429 }
6430
John McCalla24dc2e2009-11-17 02:14:36 +00006431 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006432
John McCallf36e02d2009-10-09 21:13:30 +00006433 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006434 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006435 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006436 UD->setInvalidDecl();
6437 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006438 }
6439
John McCalled976492009-12-04 22:46:56 +00006440 if (R.isAmbiguous()) {
6441 UD->setInvalidDecl();
6442 return UD;
6443 }
Mike Stump1eb44332009-09-09 15:08:12 +00006444
John McCall7ba107a2009-11-18 02:36:19 +00006445 if (IsTypeName) {
6446 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006447 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006448 Diag(IdentLoc, diag::err_using_typename_non_type);
6449 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6450 Diag((*I)->getUnderlyingDecl()->getLocation(),
6451 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006452 UD->setInvalidDecl();
6453 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006454 }
6455 } else {
6456 // If we asked for a non-typename and we got a type, error out,
6457 // but only if this is an instantiation of an unresolved using
6458 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006459 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006460 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6461 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006462 UD->setInvalidDecl();
6463 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006464 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006465 }
6466
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006467 // C++0x N2914 [namespace.udecl]p6:
6468 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006469 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006470 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6471 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006472 UD->setInvalidDecl();
6473 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006474 }
Mike Stump1eb44332009-09-09 15:08:12 +00006475
John McCall9f54ad42009-12-10 09:41:52 +00006476 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6477 if (!CheckUsingShadowDecl(UD, *I, Previous))
6478 BuildUsingShadowDecl(S, UD, *I);
6479 }
John McCall9488ea12009-11-17 05:59:44 +00006480
6481 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006482}
6483
Sebastian Redlf677ea32011-02-05 19:23:19 +00006484/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006485bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6486 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006487
Douglas Gregordc355712011-02-25 00:36:19 +00006488 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006489 assert(SourceType &&
6490 "Using decl naming constructor doesn't have type in scope spec.");
6491 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6492
6493 // Check whether the named type is a direct base class.
6494 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6495 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6496 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6497 BaseIt != BaseE; ++BaseIt) {
6498 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6499 if (CanonicalSourceType == BaseType)
6500 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006501 if (BaseIt->getType()->isDependentType())
6502 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006503 }
6504
6505 if (BaseIt == BaseE) {
6506 // Did not find SourceType in the bases.
6507 Diag(UD->getUsingLocation(),
6508 diag::err_using_decl_constructor_not_in_direct_base)
6509 << UD->getNameInfo().getSourceRange()
6510 << QualType(SourceType, 0) << TargetClass;
6511 return true;
6512 }
6513
Richard Smithc5a89a12012-04-02 01:30:27 +00006514 if (!CurContext->isDependentContext())
6515 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006516
6517 return false;
6518}
6519
John McCall9f54ad42009-12-10 09:41:52 +00006520/// Checks that the given using declaration is not an invalid
6521/// redeclaration. Note that this is checking only for the using decl
6522/// itself, not for any ill-formedness among the UsingShadowDecls.
6523bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6524 bool isTypeName,
6525 const CXXScopeSpec &SS,
6526 SourceLocation NameLoc,
6527 const LookupResult &Prev) {
6528 // C++03 [namespace.udecl]p8:
6529 // C++0x [namespace.udecl]p10:
6530 // A using-declaration is a declaration and can therefore be used
6531 // repeatedly where (and only where) multiple declarations are
6532 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006533 //
John McCall8a726212010-11-29 18:01:58 +00006534 // That's in non-member contexts.
6535 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006536 return false;
6537
6538 NestedNameSpecifier *Qual
6539 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6540
6541 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6542 NamedDecl *D = *I;
6543
6544 bool DTypename;
6545 NestedNameSpecifier *DQual;
6546 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6547 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006548 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006549 } else if (UnresolvedUsingValueDecl *UD
6550 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6551 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006552 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006553 } else if (UnresolvedUsingTypenameDecl *UD
6554 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6555 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006556 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006557 } else continue;
6558
6559 // using decls differ if one says 'typename' and the other doesn't.
6560 // FIXME: non-dependent using decls?
6561 if (isTypeName != DTypename) continue;
6562
6563 // using decls differ if they name different scopes (but note that
6564 // template instantiation can cause this check to trigger when it
6565 // didn't before instantiation).
6566 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6567 Context.getCanonicalNestedNameSpecifier(DQual))
6568 continue;
6569
6570 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006571 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006572 return true;
6573 }
6574
6575 return false;
6576}
6577
John McCall604e7f12009-12-08 07:46:18 +00006578
John McCalled976492009-12-04 22:46:56 +00006579/// Checks that the given nested-name qualifier used in a using decl
6580/// in the current context is appropriately related to the current
6581/// scope. If an error is found, diagnoses it and returns true.
6582bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6583 const CXXScopeSpec &SS,
6584 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006585 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006586
John McCall604e7f12009-12-08 07:46:18 +00006587 if (!CurContext->isRecord()) {
6588 // C++03 [namespace.udecl]p3:
6589 // C++0x [namespace.udecl]p8:
6590 // A using-declaration for a class member shall be a member-declaration.
6591
6592 // If we weren't able to compute a valid scope, it must be a
6593 // dependent class scope.
6594 if (!NamedContext || NamedContext->isRecord()) {
6595 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6596 << SS.getRange();
6597 return true;
6598 }
6599
6600 // Otherwise, everything is known to be fine.
6601 return false;
6602 }
6603
6604 // The current scope is a record.
6605
6606 // If the named context is dependent, we can't decide much.
6607 if (!NamedContext) {
6608 // FIXME: in C++0x, we can diagnose if we can prove that the
6609 // nested-name-specifier does not refer to a base class, which is
6610 // still possible in some cases.
6611
6612 // Otherwise we have to conservatively report that things might be
6613 // okay.
6614 return false;
6615 }
6616
6617 if (!NamedContext->isRecord()) {
6618 // Ideally this would point at the last name in the specifier,
6619 // but we don't have that level of source info.
6620 Diag(SS.getRange().getBegin(),
6621 diag::err_using_decl_nested_name_specifier_is_not_class)
6622 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6623 return true;
6624 }
6625
Douglas Gregor6fb07292010-12-21 07:41:49 +00006626 if (!NamedContext->isDependentContext() &&
6627 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6628 return true;
6629
David Blaikie4e4d0842012-03-11 07:00:24 +00006630 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006631 // C++0x [namespace.udecl]p3:
6632 // In a using-declaration used as a member-declaration, the
6633 // nested-name-specifier shall name a base class of the class
6634 // being defined.
6635
6636 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6637 cast<CXXRecordDecl>(NamedContext))) {
6638 if (CurContext == NamedContext) {
6639 Diag(NameLoc,
6640 diag::err_using_decl_nested_name_specifier_is_current_class)
6641 << SS.getRange();
6642 return true;
6643 }
6644
6645 Diag(SS.getRange().getBegin(),
6646 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6647 << (NestedNameSpecifier*) SS.getScopeRep()
6648 << cast<CXXRecordDecl>(CurContext)
6649 << SS.getRange();
6650 return true;
6651 }
6652
6653 return false;
6654 }
6655
6656 // C++03 [namespace.udecl]p4:
6657 // A using-declaration used as a member-declaration shall refer
6658 // to a member of a base class of the class being defined [etc.].
6659
6660 // Salient point: SS doesn't have to name a base class as long as
6661 // lookup only finds members from base classes. Therefore we can
6662 // diagnose here only if we can prove that that can't happen,
6663 // i.e. if the class hierarchies provably don't intersect.
6664
6665 // TODO: it would be nice if "definitely valid" results were cached
6666 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6667 // need to be repeated.
6668
6669 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006670 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006671
6672 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6673 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6674 Data->Bases.insert(Base);
6675 return true;
6676 }
6677
6678 bool hasDependentBases(const CXXRecordDecl *Class) {
6679 return !Class->forallBases(collect, this);
6680 }
6681
6682 /// Returns true if the base is dependent or is one of the
6683 /// accumulated base classes.
6684 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6685 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6686 return !Data->Bases.count(Base);
6687 }
6688
6689 bool mightShareBases(const CXXRecordDecl *Class) {
6690 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6691 }
6692 };
6693
6694 UserData Data;
6695
6696 // Returns false if we find a dependent base.
6697 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6698 return false;
6699
6700 // Returns false if the class has a dependent base or if it or one
6701 // of its bases is present in the base set of the current context.
6702 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6703 return false;
6704
6705 Diag(SS.getRange().getBegin(),
6706 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6707 << (NestedNameSpecifier*) SS.getScopeRep()
6708 << cast<CXXRecordDecl>(CurContext)
6709 << SS.getRange();
6710
6711 return true;
John McCalled976492009-12-04 22:46:56 +00006712}
6713
Richard Smith162e1c12011-04-15 14:24:37 +00006714Decl *Sema::ActOnAliasDeclaration(Scope *S,
6715 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006716 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006717 SourceLocation UsingLoc,
6718 UnqualifiedId &Name,
6719 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006720 // Skip up to the relevant declaration scope.
6721 while (S->getFlags() & Scope::TemplateParamScope)
6722 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006723 assert((S->getFlags() & Scope::DeclScope) &&
6724 "got alias-declaration outside of declaration scope");
6725
6726 if (Type.isInvalid())
6727 return 0;
6728
6729 bool Invalid = false;
6730 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6731 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006732 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006733
6734 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6735 return 0;
6736
6737 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006738 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006739 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006740 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6741 TInfo->getTypeLoc().getBeginLoc());
6742 }
Richard Smith162e1c12011-04-15 14:24:37 +00006743
6744 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6745 LookupName(Previous, S);
6746
6747 // Warn about shadowing the name of a template parameter.
6748 if (Previous.isSingleResult() &&
6749 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006750 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006751 Previous.clear();
6752 }
6753
6754 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6755 "name in alias declaration must be an identifier");
6756 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6757 Name.StartLocation,
6758 Name.Identifier, TInfo);
6759
6760 NewTD->setAccess(AS);
6761
6762 if (Invalid)
6763 NewTD->setInvalidDecl();
6764
Richard Smith3e4c6c42011-05-05 21:57:07 +00006765 CheckTypedefForVariablyModifiedType(S, NewTD);
6766 Invalid |= NewTD->isInvalidDecl();
6767
Richard Smith162e1c12011-04-15 14:24:37 +00006768 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006769
6770 NamedDecl *NewND;
6771 if (TemplateParamLists.size()) {
6772 TypeAliasTemplateDecl *OldDecl = 0;
6773 TemplateParameterList *OldTemplateParams = 0;
6774
6775 if (TemplateParamLists.size() != 1) {
6776 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006777 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6778 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006779 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006780 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006781
6782 // Only consider previous declarations in the same scope.
6783 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6784 /*ExplicitInstantiationOrSpecialization*/false);
6785 if (!Previous.empty()) {
6786 Redeclaration = true;
6787
6788 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6789 if (!OldDecl && !Invalid) {
6790 Diag(UsingLoc, diag::err_redefinition_different_kind)
6791 << Name.Identifier;
6792
6793 NamedDecl *OldD = Previous.getRepresentativeDecl();
6794 if (OldD->getLocation().isValid())
6795 Diag(OldD->getLocation(), diag::note_previous_definition);
6796
6797 Invalid = true;
6798 }
6799
6800 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6801 if (TemplateParameterListsAreEqual(TemplateParams,
6802 OldDecl->getTemplateParameters(),
6803 /*Complain=*/true,
6804 TPL_TemplateMatch))
6805 OldTemplateParams = OldDecl->getTemplateParameters();
6806 else
6807 Invalid = true;
6808
6809 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6810 if (!Invalid &&
6811 !Context.hasSameType(OldTD->getUnderlyingType(),
6812 NewTD->getUnderlyingType())) {
6813 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6814 // but we can't reasonably accept it.
6815 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6816 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6817 if (OldTD->getLocation().isValid())
6818 Diag(OldTD->getLocation(), diag::note_previous_definition);
6819 Invalid = true;
6820 }
6821 }
6822 }
6823
6824 // Merge any previous default template arguments into our parameters,
6825 // and check the parameter list.
6826 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6827 TPC_TypeAliasTemplate))
6828 return 0;
6829
6830 TypeAliasTemplateDecl *NewDecl =
6831 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6832 Name.Identifier, TemplateParams,
6833 NewTD);
6834
6835 NewDecl->setAccess(AS);
6836
6837 if (Invalid)
6838 NewDecl->setInvalidDecl();
6839 else if (OldDecl)
6840 NewDecl->setPreviousDeclaration(OldDecl);
6841
6842 NewND = NewDecl;
6843 } else {
6844 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6845 NewND = NewTD;
6846 }
Richard Smith162e1c12011-04-15 14:24:37 +00006847
6848 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006849 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006850
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006851 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006852 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006853}
6854
John McCalld226f652010-08-21 09:40:31 +00006855Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006856 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006857 SourceLocation AliasLoc,
6858 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006859 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006860 SourceLocation IdentLoc,
6861 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006862
Anders Carlsson81c85c42009-03-28 23:53:49 +00006863 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006864 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6865 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006866
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006867 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006868 NamedDecl *PrevDecl
6869 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6870 ForRedeclaration);
6871 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6872 PrevDecl = 0;
6873
6874 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006875 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006876 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006877 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006878 // FIXME: At some point, we'll want to create the (redundant)
6879 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006880 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006881 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006882 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006883 }
Mike Stump1eb44332009-09-09 15:08:12 +00006884
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006885 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6886 diag::err_redefinition_different_kind;
6887 Diag(AliasLoc, DiagID) << Alias;
6888 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006889 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006890 }
6891
John McCalla24dc2e2009-11-17 02:14:36 +00006892 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006893 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006894
John McCallf36e02d2009-10-09 21:13:30 +00006895 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006896 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006897 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006898 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006899 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006900 }
Mike Stump1eb44332009-09-09 15:08:12 +00006901
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006902 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006903 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006904 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006905 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006906
John McCall3dbd3d52010-02-16 06:53:13 +00006907 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006908 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006909}
6910
Sean Hunt001cad92011-05-10 00:49:42 +00006911Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006912Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6913 CXXMethodDecl *MD) {
6914 CXXRecordDecl *ClassDecl = MD->getParent();
6915
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006916 // C++ [except.spec]p14:
6917 // An implicitly declared special member function (Clause 12) shall have an
6918 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006919 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006920 if (ClassDecl->isInvalidDecl())
6921 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006922
Sebastian Redl60618fa2011-03-12 11:50:43 +00006923 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006924 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6925 BEnd = ClassDecl->bases_end();
6926 B != BEnd; ++B) {
6927 if (B->isVirtual()) // Handled below.
6928 continue;
6929
Douglas Gregor18274032010-07-03 00:47:00 +00006930 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6931 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006932 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6933 // If this is a deleted function, add it anyway. This might be conformant
6934 // with the standard. This might not. I'm not sure. It might not matter.
6935 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006936 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006937 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006938 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006939
6940 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006941 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6942 BEnd = ClassDecl->vbases_end();
6943 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006944 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6945 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006946 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6947 // If this is a deleted function, add it anyway. This might be conformant
6948 // with the standard. This might not. I'm not sure. It might not matter.
6949 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006950 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006951 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006952 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006953
6954 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006955 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6956 FEnd = ClassDecl->field_end();
6957 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006958 if (F->hasInClassInitializer()) {
6959 if (Expr *E = F->getInClassInitializer())
6960 ExceptSpec.CalledExpr(E);
6961 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006962 // DR1351:
6963 // If the brace-or-equal-initializer of a non-static data member
6964 // invokes a defaulted default constructor of its class or of an
6965 // enclosing class in a potentially evaluated subexpression, the
6966 // program is ill-formed.
6967 //
6968 // This resolution is unworkable: the exception specification of the
6969 // default constructor can be needed in an unevaluated context, in
6970 // particular, in the operand of a noexcept-expression, and we can be
6971 // unable to compute an exception specification for an enclosed class.
6972 //
6973 // We do not allow an in-class initializer to require the evaluation
6974 // of the exception specification for any in-class initializer whose
6975 // definition is not lexically complete.
6976 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006977 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006978 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006979 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6980 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6981 // If this is a deleted function, add it anyway. This might be conformant
6982 // with the standard. This might not. I'm not sure. It might not matter.
6983 // In particular, the problem is that this function never gets called. It
6984 // might just be ill-formed because this function attempts to refer to
6985 // a deleted function here.
6986 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006987 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006988 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006989 }
John McCalle23cf432010-12-14 08:05:40 +00006990
Sean Hunt001cad92011-05-10 00:49:42 +00006991 return ExceptSpec;
6992}
6993
Richard Smithafb49182012-11-29 01:34:07 +00006994namespace {
6995/// RAII object to register a special member as being currently declared.
6996struct DeclaringSpecialMember {
6997 Sema &S;
6998 Sema::SpecialMemberDecl D;
6999 bool WasAlreadyBeingDeclared;
7000
7001 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
7002 : S(S), D(RD, CSM) {
7003 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
7004 if (WasAlreadyBeingDeclared)
7005 // This almost never happens, but if it does, ensure that our cache
7006 // doesn't contain a stale result.
7007 S.SpecialMemberCache.clear();
7008
7009 // FIXME: Register a note to be produced if we encounter an error while
7010 // declaring the special member.
7011 }
7012 ~DeclaringSpecialMember() {
7013 if (!WasAlreadyBeingDeclared)
7014 S.SpecialMembersBeingDeclared.erase(D);
7015 }
7016
7017 /// \brief Are we already trying to declare this special member?
7018 bool isAlreadyBeingDeclared() const {
7019 return WasAlreadyBeingDeclared;
7020 }
7021};
7022}
7023
Sean Hunt001cad92011-05-10 00:49:42 +00007024CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
7025 CXXRecordDecl *ClassDecl) {
7026 // C++ [class.ctor]p5:
7027 // A default constructor for a class X is a constructor of class X
7028 // that can be called without an argument. If there is no
7029 // user-declared constructor for class X, a default constructor is
7030 // implicitly declared. An implicitly-declared default constructor
7031 // is an inline public member of its class.
Richard Smithd0adeb62012-11-27 21:20:31 +00007032 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00007033 "Should not build implicit default constructor!");
7034
Richard Smithafb49182012-11-29 01:34:07 +00007035 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
7036 if (DSM.isAlreadyBeingDeclared())
7037 return 0;
7038
Richard Smith7756afa2012-06-10 05:43:50 +00007039 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
7040 CXXDefaultConstructor,
7041 false);
7042
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007043 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007044 CanQualType ClassType
7045 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007046 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007047 DeclarationName Name
7048 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007049 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007050 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007051 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007052 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007053 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007054 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007055 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007056 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00007057 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007058
7059 // Build an exception specification pointing back at this constructor.
7060 FunctionProtoType::ExtProtoInfo EPI;
7061 EPI.ExceptionSpecType = EST_Unevaluated;
7062 EPI.ExceptionSpecDecl = DefaultCon;
7063 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7064
Douglas Gregor18274032010-07-03 00:47:00 +00007065 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007066 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
7067
Douglas Gregor23c94db2010-07-02 17:43:08 +00007068 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007069 PushOnScopeChains(DefaultCon, S, false);
7070 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007071
Sean Hunte16da072011-10-10 06:18:57 +00007072 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00007073 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00007074
Douglas Gregor32df23e2010-07-01 22:02:46 +00007075 return DefaultCon;
7076}
7077
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007078void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7079 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007080 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007081 !Constructor->doesThisDeclarationHaveABody() &&
7082 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007083 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007084
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007085 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007086 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007087
Eli Friedman9a14db32012-10-18 20:14:08 +00007088 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007089 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007090 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007091 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007092 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007093 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007094 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007095 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007096 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007097
7098 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007099 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007100
7101 Constructor->setUsed();
7102 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007103
7104 if (ASTMutationListener *L = getASTMutationListener()) {
7105 L->CompletedImplicitDefinition(Constructor);
7106 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007107}
7108
Richard Smith7a614d82011-06-11 17:19:42 +00007109void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7110 if (!D) return;
7111 AdjustDeclIfTemplate(D);
7112
7113 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00007114
Richard Smithb9d0b762012-07-27 04:22:15 +00007115 if (!ClassDecl->isDependentType())
7116 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00007117}
7118
Sebastian Redlf677ea32011-02-05 19:23:19 +00007119void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7120 // We start with an initial pass over the base classes to collect those that
7121 // inherit constructors from. If there are none, we can forgo all further
7122 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007123 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007124 BasesVector BasesToInheritFrom;
7125 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7126 BaseE = ClassDecl->bases_end();
7127 BaseIt != BaseE; ++BaseIt) {
7128 if (BaseIt->getInheritConstructors()) {
7129 QualType Base = BaseIt->getType();
7130 if (Base->isDependentType()) {
7131 // If we inherit constructors from anything that is dependent, just
7132 // abort processing altogether. We'll get another chance for the
7133 // instantiations.
7134 return;
7135 }
7136 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7137 }
7138 }
7139 if (BasesToInheritFrom.empty())
7140 return;
7141
7142 // Now collect the constructors that we already have in the current class.
7143 // Those take precedence over inherited constructors.
7144 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7145 // unless there is a user-declared constructor with the same signature in
7146 // the class where the using-declaration appears.
7147 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7148 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7149 CtorE = ClassDecl->ctor_end();
7150 CtorIt != CtorE; ++CtorIt) {
7151 ExistingConstructors.insert(
7152 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7153 }
7154
Sebastian Redlf677ea32011-02-05 19:23:19 +00007155 DeclarationName CreatedCtorName =
7156 Context.DeclarationNames.getCXXConstructorName(
7157 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7158
7159 // Now comes the true work.
7160 // First, we keep a map from constructor types to the base that introduced
7161 // them. Needed for finding conflicting constructors. We also keep the
7162 // actually inserted declarations in there, for pretty diagnostics.
7163 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7164 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7165 ConstructorToSourceMap InheritedConstructors;
7166 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7167 BaseE = BasesToInheritFrom.end();
7168 BaseIt != BaseE; ++BaseIt) {
7169 const RecordType *Base = *BaseIt;
7170 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7171 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7172 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7173 CtorE = BaseDecl->ctor_end();
7174 CtorIt != CtorE; ++CtorIt) {
7175 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007176 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007177 DeclarationName Name =
7178 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007179 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7180 LookupQualifiedName(Result, CurContext);
7181 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007182 SourceLocation UsingLoc = UD ? UD->getLocation() :
7183 ClassDecl->getLocation();
7184
7185 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7186 // from the class X named in the using-declaration consists of actual
7187 // constructors and notional constructors that result from the
7188 // transformation of defaulted parameters as follows:
7189 // - all non-template default constructors of X, and
7190 // - for each non-template constructor of X that has at least one
7191 // parameter with a default argument, the set of constructors that
7192 // results from omitting any ellipsis parameter specification and
7193 // successively omitting parameters with a default argument from the
7194 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007195 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007196 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7197 const FunctionProtoType *BaseCtorType =
7198 BaseCtor->getType()->getAs<FunctionProtoType>();
7199
7200 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7201 maxParams = BaseCtor->getNumParams();
7202 params <= maxParams; ++params) {
7203 // Skip default constructors. They're never inherited.
7204 if (params == 0)
7205 continue;
7206 // Skip copy and move constructors for the same reason.
7207 if (CanBeCopyOrMove && params == 1)
7208 continue;
7209
7210 // Build up a function type for this particular constructor.
7211 // FIXME: The working paper does not consider that the exception spec
7212 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007213 // source. This code doesn't yet, either. When it does, this code will
7214 // need to be delayed until after exception specifications and in-class
7215 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007216 const Type *NewCtorType;
7217 if (params == maxParams)
7218 NewCtorType = BaseCtorType;
7219 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007220 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007221 for (unsigned i = 0; i < params; ++i) {
7222 Args.push_back(BaseCtorType->getArgType(i));
7223 }
7224 FunctionProtoType::ExtProtoInfo ExtInfo =
7225 BaseCtorType->getExtProtoInfo();
7226 ExtInfo.Variadic = false;
7227 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7228 Args.data(), params, ExtInfo)
7229 .getTypePtr();
7230 }
7231 const Type *CanonicalNewCtorType =
7232 Context.getCanonicalType(NewCtorType);
7233
7234 // Now that we have the type, first check if the class already has a
7235 // constructor with this signature.
7236 if (ExistingConstructors.count(CanonicalNewCtorType))
7237 continue;
7238
7239 // Then we check if we have already declared an inherited constructor
7240 // with this signature.
7241 std::pair<ConstructorToSourceMap::iterator, bool> result =
7242 InheritedConstructors.insert(std::make_pair(
7243 CanonicalNewCtorType,
7244 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7245 if (!result.second) {
7246 // Already in the map. If it came from a different class, that's an
7247 // error. Not if it's from the same.
7248 CanQualType PreviousBase = result.first->second.first;
7249 if (CanonicalBase != PreviousBase) {
7250 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7251 const CXXConstructorDecl *PrevBaseCtor =
7252 PrevCtor->getInheritedConstructor();
7253 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7254
7255 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7256 Diag(BaseCtor->getLocation(),
7257 diag::note_using_decl_constructor_conflict_current_ctor);
7258 Diag(PrevBaseCtor->getLocation(),
7259 diag::note_using_decl_constructor_conflict_previous_ctor);
7260 Diag(PrevCtor->getLocation(),
7261 diag::note_using_decl_constructor_conflict_previous_using);
7262 }
7263 continue;
7264 }
7265
7266 // OK, we're there, now add the constructor.
7267 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007268 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007269 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7270 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007271 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7272 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007273 /*ImplicitlyDeclared=*/true,
7274 // FIXME: Due to a defect in the standard, we treat inherited
7275 // constructors as constexpr even if that makes them ill-formed.
7276 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007277 NewCtor->setAccess(BaseCtor->getAccess());
7278
7279 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007280 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007281 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007282 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7283 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007284 /*IdentifierInfo=*/0,
7285 BaseCtorType->getArgType(i),
7286 /*TInfo=*/0, SC_None,
7287 SC_None, /*DefaultArg=*/0));
7288 }
David Blaikie4278c652011-09-21 18:16:56 +00007289 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007290 NewCtor->setInheritedConstructor(BaseCtor);
7291
Sebastian Redlf677ea32011-02-05 19:23:19 +00007292 ClassDecl->addDecl(NewCtor);
7293 result.first->second.second = NewCtor;
7294 }
7295 }
7296 }
7297}
7298
Sean Huntcb45a0f2011-05-12 22:46:25 +00007299Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007300Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7301 CXXRecordDecl *ClassDecl = MD->getParent();
7302
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007303 // C++ [except.spec]p14:
7304 // An implicitly declared special member function (Clause 12) shall have
7305 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007306 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007307 if (ClassDecl->isInvalidDecl())
7308 return ExceptSpec;
7309
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007310 // Direct base-class destructors.
7311 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7312 BEnd = ClassDecl->bases_end();
7313 B != BEnd; ++B) {
7314 if (B->isVirtual()) // Handled below.
7315 continue;
7316
7317 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007318 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007319 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007320 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007321
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007322 // Virtual base-class destructors.
7323 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7324 BEnd = ClassDecl->vbases_end();
7325 B != BEnd; ++B) {
7326 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007327 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007328 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007329 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007330
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007331 // Field destructors.
7332 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7333 FEnd = ClassDecl->field_end();
7334 F != FEnd; ++F) {
7335 if (const RecordType *RecordTy
7336 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007337 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007338 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007339 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007340
Sean Huntcb45a0f2011-05-12 22:46:25 +00007341 return ExceptSpec;
7342}
7343
7344CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7345 // C++ [class.dtor]p2:
7346 // If a class has no user-declared destructor, a destructor is
7347 // declared implicitly. An implicitly-declared destructor is an
7348 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00007349 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00007350
Richard Smithafb49182012-11-29 01:34:07 +00007351 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
7352 if (DSM.isAlreadyBeingDeclared())
7353 return 0;
7354
Douglas Gregor4923aa22010-07-02 20:37:36 +00007355 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007356 CanQualType ClassType
7357 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007358 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007359 DeclarationName Name
7360 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007361 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007362 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007363 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7364 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007365 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007366 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007367 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007368 Destructor->setImplicit();
7369 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007370
7371 // Build an exception specification pointing back at this destructor.
7372 FunctionProtoType::ExtProtoInfo EPI;
7373 EPI.ExceptionSpecType = EST_Unevaluated;
7374 EPI.ExceptionSpecDecl = Destructor;
7375 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7376
Douglas Gregor4923aa22010-07-02 20:37:36 +00007377 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007378 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007379
Douglas Gregor4923aa22010-07-02 20:37:36 +00007380 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007381 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007382 PushOnScopeChains(Destructor, S, false);
7383 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007384
Richard Smith9a561d52012-02-26 09:11:52 +00007385 AddOverriddenMethods(ClassDecl, Destructor);
7386
Richard Smith7d5088a2012-02-18 02:02:13 +00007387 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007388 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007389
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007390 return Destructor;
7391}
7392
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007393void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007394 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007395 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007396 !Destructor->doesThisDeclarationHaveABody() &&
7397 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007398 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007399 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007400 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007401
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007402 if (Destructor->isInvalidDecl())
7403 return;
7404
Eli Friedman9a14db32012-10-18 20:14:08 +00007405 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007406
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007407 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007408 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7409 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007410
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007411 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007412 Diag(CurrentLocation, diag::note_member_synthesized_at)
7413 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7414
7415 Destructor->setInvalidDecl();
7416 return;
7417 }
7418
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007419 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007420 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007421 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007422 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007423 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007424
7425 if (ASTMutationListener *L = getASTMutationListener()) {
7426 L->CompletedImplicitDefinition(Destructor);
7427 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007428}
7429
Richard Smitha4156b82012-04-21 18:42:51 +00007430/// \brief Perform any semantic analysis which needs to be delayed until all
7431/// pending class member declarations have been parsed.
7432void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007433 // Perform any deferred checking of exception specifications for virtual
7434 // destructors.
7435 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7436 i != e; ++i) {
7437 const CXXDestructorDecl *Dtor =
7438 DelayedDestructorExceptionSpecChecks[i].first;
7439 assert(!Dtor->getParent()->isDependentType() &&
7440 "Should not ever add destructors of templates into the list.");
7441 CheckOverridingFunctionExceptionSpec(Dtor,
7442 DelayedDestructorExceptionSpecChecks[i].second);
7443 }
7444 DelayedDestructorExceptionSpecChecks.clear();
7445}
7446
Richard Smithb9d0b762012-07-27 04:22:15 +00007447void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7448 CXXDestructorDecl *Destructor) {
7449 assert(getLangOpts().CPlusPlus0x &&
7450 "adjusting dtor exception specs was introduced in c++11");
7451
Sebastian Redl0ee33912011-05-19 05:13:44 +00007452 // C++11 [class.dtor]p3:
7453 // A declaration of a destructor that does not have an exception-
7454 // specification is implicitly considered to have the same exception-
7455 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007456 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007457 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007458 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007459 return;
7460
Chandler Carruth3f224b22011-09-20 04:55:26 +00007461 // Replace the destructor's type, building off the existing one. Fortunately,
7462 // the only thing of interest in the destructor type is its extended info.
7463 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007464 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7465 EPI.ExceptionSpecType = EST_Unevaluated;
7466 EPI.ExceptionSpecDecl = Destructor;
7467 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007468
Sebastian Redl0ee33912011-05-19 05:13:44 +00007469 // FIXME: If the destructor has a body that could throw, and the newly created
7470 // spec doesn't allow exceptions, we should emit a warning, because this
7471 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007472 // However, we don't have a body or an exception specification yet, so it
7473 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007474}
7475
Richard Smith8c889532012-11-14 00:50:40 +00007476/// When generating a defaulted copy or move assignment operator, if a field
7477/// should be copied with __builtin_memcpy rather than via explicit assignments,
7478/// do so. This optimization only applies for arrays of scalars, and for arrays
7479/// of class type where the selected copy/move-assignment operator is trivial.
7480static StmtResult
7481buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7482 Expr *To, Expr *From) {
7483 // Compute the size of the memory buffer to be copied.
7484 QualType SizeType = S.Context.getSizeType();
7485 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7486 S.Context.getTypeSizeInChars(T).getQuantity());
7487
7488 // Take the address of the field references for "from" and "to". We
7489 // directly construct UnaryOperators here because semantic analysis
7490 // does not permit us to take the address of an xvalue.
7491 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7492 S.Context.getPointerType(From->getType()),
7493 VK_RValue, OK_Ordinary, Loc);
7494 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7495 S.Context.getPointerType(To->getType()),
7496 VK_RValue, OK_Ordinary, Loc);
7497
7498 const Type *E = T->getBaseElementTypeUnsafe();
7499 bool NeedsCollectableMemCpy =
7500 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7501
7502 // Create a reference to the __builtin_objc_memmove_collectable function
7503 StringRef MemCpyName = NeedsCollectableMemCpy ?
7504 "__builtin_objc_memmove_collectable" :
7505 "__builtin_memcpy";
7506 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7507 Sema::LookupOrdinaryName);
7508 S.LookupName(R, S.TUScope, true);
7509
7510 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7511 if (!MemCpy)
7512 // Something went horribly wrong earlier, and we will have complained
7513 // about it.
7514 return StmtError();
7515
7516 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7517 VK_RValue, Loc, 0);
7518 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7519
7520 Expr *CallArgs[] = {
7521 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7522 };
7523 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7524 Loc, CallArgs, Loc);
7525
7526 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7527 return S.Owned(Call.takeAs<Stmt>());
7528}
7529
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007530/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007531/// \c To.
7532///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007533/// This routine is used to copy/move the members of a class with an
7534/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007535/// copied are arrays, this routine builds for loops to copy them.
7536///
7537/// \param S The Sema object used for type-checking.
7538///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007539/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007540///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007541/// \param T The type of the expressions being copied/moved. Both expressions
7542/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007543///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007544/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007545///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007546/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007547///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007548/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007549/// Otherwise, it's a non-static member subobject.
7550///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007551/// \param Copying Whether we're copying or moving.
7552///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007553/// \param Depth Internal parameter recording the depth of the recursion.
7554///
Richard Smith8c889532012-11-14 00:50:40 +00007555/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7556/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007557static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007558buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7559 Expr *To, Expr *From,
7560 bool CopyingBaseSubobject, bool Copying,
7561 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007562 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007563 // Each subobject is assigned in the manner appropriate to its type:
7564 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007565 // - if the subobject is of class type, as if by a call to operator= with
7566 // the subobject as the object expression and the corresponding
7567 // subobject of x as a single function argument (as if by explicit
7568 // qualification; that is, ignoring any possible virtual overriding
7569 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00007570 //
7571 // C++03 [class.copy]p13:
7572 // - if the subobject is of class type, the copy assignment operator for
7573 // the class is used (as if by explicit qualification; that is,
7574 // ignoring any possible virtual overriding functions in more derived
7575 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007576 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7577 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00007578
Douglas Gregor06a9f362010-05-01 20:49:11 +00007579 // Look for operator=.
7580 DeclarationName Name
7581 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7582 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7583 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007584
Richard Smith044c8aa2012-11-13 00:54:12 +00007585 // Prior to C++11, filter out any result that isn't a copy/move-assignment
7586 // operator.
7587 if (!S.getLangOpts().CPlusPlus0x) {
7588 LookupResult::Filter F = OpLookup.makeFilter();
7589 while (F.hasNext()) {
7590 NamedDecl *D = F.next();
7591 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
7592 if (Method->isCopyAssignmentOperator() ||
7593 (!Copying && Method->isMoveAssignmentOperator()))
7594 continue;
7595
7596 F.erase();
7597 }
7598 F.done();
John McCallb0207482010-03-16 06:11:48 +00007599 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007600
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007601 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00007602 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007603 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00007604 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007605 // ambiguities), we need to cast "this" to that subobject type; to
7606 // ensure that we don't go through the virtual call mechanism, we need
7607 // to qualify the operator= name with the base class (see below). However,
7608 // this means that if the base class has a protected copy assignment
7609 // operator, the protected member access check will fail. So, we
7610 // rewrite "protected" access to "public" access in this case, since we
7611 // know by construction that we're calling from a derived class.
7612 if (CopyingBaseSubobject) {
7613 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7614 L != LEnd; ++L) {
7615 if (L.getAccess() == AS_protected)
7616 L.setAccess(AS_public);
7617 }
7618 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007619
Douglas Gregor06a9f362010-05-01 20:49:11 +00007620 // Create the nested-name-specifier that will be used to qualify the
7621 // reference to operator=; this is required to suppress the virtual
7622 // call mechanism.
7623 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007624 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00007625 SS.MakeTrivial(S.Context,
7626 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007627 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007628 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00007629
Douglas Gregor06a9f362010-05-01 20:49:11 +00007630 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007631 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00007632 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007633 /*TemplateKWLoc=*/SourceLocation(),
7634 /*FirstQualifierInScope=*/0,
7635 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007636 /*TemplateArgs=*/0,
7637 /*SuppressQualifierCheck=*/true);
7638 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007639 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007640
Douglas Gregor06a9f362010-05-01 20:49:11 +00007641 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007642
Richard Smith044c8aa2012-11-13 00:54:12 +00007643 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007644 OpEqualRef.takeAs<Expr>(),
7645 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007646 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007647 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007648
Richard Smith8c889532012-11-14 00:50:40 +00007649 // If we built a call to a trivial 'operator=' while copying an array,
7650 // bail out. We'll replace the whole shebang with a memcpy.
7651 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
7652 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
7653 return StmtResult((Stmt*)0);
7654
Richard Smith044c8aa2012-11-13 00:54:12 +00007655 // Convert to an expression-statement, and clean up any produced
7656 // temporaries.
7657 return S.ActOnExprStmt(S.MakeFullExpr(Call.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007658 }
John McCallb0207482010-03-16 06:11:48 +00007659
Richard Smith044c8aa2012-11-13 00:54:12 +00007660 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00007661 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00007662 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007663 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007664 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007665 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007666 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007667 return S.ActOnExprStmt(S.MakeFullExpr(Assignment.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007668 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007669
7670 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00007671 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00007672
Douglas Gregor06a9f362010-05-01 20:49:11 +00007673 // Construct a loop over the array bounds, e.g.,
7674 //
7675 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7676 //
7677 // that will copy each of the array elements.
7678 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00007679
Douglas Gregor06a9f362010-05-01 20:49:11 +00007680 // Create the iteration variable.
7681 IdentifierInfo *IterationVarName = 0;
7682 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007683 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007684 llvm::raw_svector_ostream OS(Str);
7685 OS << "__i" << Depth;
7686 IterationVarName = &S.Context.Idents.get(OS.str());
7687 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007688 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007689 IterationVarName, SizeType,
7690 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007691 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00007692
Douglas Gregor06a9f362010-05-01 20:49:11 +00007693 // Initialize the iteration variable to zero.
7694 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007695 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007696
7697 // Create a reference to the iteration variable; we'll use this several
7698 // times throughout.
7699 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007700 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007701 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007702 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7703 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7704
Douglas Gregor06a9f362010-05-01 20:49:11 +00007705 // Create the DeclStmt that holds the iteration variable.
7706 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00007707
Douglas Gregor06a9f362010-05-01 20:49:11 +00007708 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007709 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007710 IterationVarRefRVal,
7711 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007712 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007713 IterationVarRefRVal,
7714 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007715 if (!Copying) // Cast to rvalue
7716 From = CastForMoving(S, From);
7717
7718 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00007719 StmtResult Copy =
7720 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
7721 To, From, CopyingBaseSubobject,
7722 Copying, Depth + 1);
7723 // Bail out if copying fails or if we determined that we should use memcpy.
7724 if (Copy.isInvalid() || !Copy.get())
7725 return Copy;
7726
7727 // Create the comparison against the array bound.
7728 llvm::APInt Upper
7729 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
7730 Expr *Comparison
7731 = new (S.Context) BinaryOperator(IterationVarRefRVal,
7732 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7733 BO_NE, S.Context.BoolTy,
7734 VK_RValue, OK_Ordinary, Loc, false);
7735
7736 // Create the pre-increment of the iteration variable.
7737 Expr *Increment
7738 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7739 VK_LValue, OK_Ordinary, Loc);
7740
Douglas Gregor06a9f362010-05-01 20:49:11 +00007741 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007742 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007743 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007744 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007745 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007746}
7747
Richard Smith8c889532012-11-14 00:50:40 +00007748static StmtResult
7749buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
7750 Expr *To, Expr *From,
7751 bool CopyingBaseSubobject, bool Copying) {
7752 // Maybe we should use a memcpy?
7753 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
7754 T.isTriviallyCopyableType(S.Context))
7755 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7756
7757 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
7758 CopyingBaseSubobject,
7759 Copying, 0));
7760
7761 // If we ended up picking a trivial assignment operator for an array of a
7762 // non-trivially-copyable class type, just emit a memcpy.
7763 if (!Result.isInvalid() && !Result.get())
7764 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7765
7766 return Result;
7767}
7768
Richard Smithb9d0b762012-07-27 04:22:15 +00007769Sema::ImplicitExceptionSpecification
7770Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7771 CXXRecordDecl *ClassDecl = MD->getParent();
7772
7773 ImplicitExceptionSpecification ExceptSpec(*this);
7774 if (ClassDecl->isInvalidDecl())
7775 return ExceptSpec;
7776
7777 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7778 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7779 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7780
Douglas Gregorb87786f2010-07-01 17:48:08 +00007781 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007782 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007783 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007784
7785 // It is unspecified whether or not an implicit copy assignment operator
7786 // attempts to deduplicate calls to assignment operators of virtual bases are
7787 // made. As such, this exception specification is effectively unspecified.
7788 // Based on a similar decision made for constness in C++0x, we're erring on
7789 // the side of assuming such calls to be made regardless of whether they
7790 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007791 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7792 BaseEnd = ClassDecl->bases_end();
7793 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007794 if (Base->isVirtual())
7795 continue;
7796
Douglas Gregora376d102010-07-02 21:50:04 +00007797 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007798 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007799 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7800 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007801 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007802 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007803
7804 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7805 BaseEnd = ClassDecl->vbases_end();
7806 Base != BaseEnd; ++Base) {
7807 CXXRecordDecl *BaseClassDecl
7808 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7809 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7810 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007811 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007812 }
7813
Douglas Gregorb87786f2010-07-01 17:48:08 +00007814 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7815 FieldEnd = ClassDecl->field_end();
7816 Field != FieldEnd;
7817 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007818 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007819 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7820 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007821 LookupCopyingAssignment(FieldClassDecl,
7822 ArgQuals | FieldType.getCVRQualifiers(),
7823 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007824 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007825 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007826 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007827
Richard Smithb9d0b762012-07-27 04:22:15 +00007828 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007829}
7830
7831CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7832 // Note: The following rules are largely analoguous to the copy
7833 // constructor rules. Note that virtual bases are not taken into account
7834 // for determining the argument type of the operator. Note also that
7835 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00007836 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00007837
Richard Smithafb49182012-11-29 01:34:07 +00007838 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
7839 if (DSM.isAlreadyBeingDeclared())
7840 return 0;
7841
Sean Hunt30de05c2011-05-14 05:23:20 +00007842 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7843 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithacf796b2012-11-28 06:23:12 +00007844 if (ClassDecl->implicitCopyAssignmentHasConstParam())
Sean Hunt30de05c2011-05-14 05:23:20 +00007845 ArgType = ArgType.withConst();
7846 ArgType = Context.getLValueReferenceType(ArgType);
7847
Douglas Gregord3c35902010-07-01 16:36:15 +00007848 // An implicitly-declared copy assignment operator is an inline public
7849 // member of its class.
7850 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007851 SourceLocation ClassLoc = ClassDecl->getLocation();
7852 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007853 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007854 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007855 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007856 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007857 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007858 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007859 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007860 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007861 CopyAssignment->setImplicit();
7862 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007863
7864 // Build an exception specification pointing back at this member.
7865 FunctionProtoType::ExtProtoInfo EPI;
7866 EPI.ExceptionSpecType = EST_Unevaluated;
7867 EPI.ExceptionSpecDecl = CopyAssignment;
7868 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7869
Douglas Gregord3c35902010-07-01 16:36:15 +00007870 // Add the parameter to the operator.
7871 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007872 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007873 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007874 SC_None,
7875 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007876 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007877
Douglas Gregora376d102010-07-02 21:50:04 +00007878 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007879 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007880
Douglas Gregor23c94db2010-07-02 17:43:08 +00007881 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007882 PushOnScopeChains(CopyAssignment, S, false);
7883 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007884
Nico Weberafcc96a2012-01-23 03:19:29 +00007885 // C++0x [class.copy]p19:
7886 // .... If the class definition does not explicitly declare a copy
7887 // assignment operator, there is no user-declared move constructor, and
7888 // there is no user-declared move assignment operator, a copy assignment
7889 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007890 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007891 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007892
Douglas Gregord3c35902010-07-01 16:36:15 +00007893 AddOverriddenMethods(ClassDecl, CopyAssignment);
7894 return CopyAssignment;
7895}
7896
Douglas Gregor06a9f362010-05-01 20:49:11 +00007897void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7898 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007899 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007900 CopyAssignOperator->isOverloadedOperator() &&
7901 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007902 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7903 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007904 "DefineImplicitCopyAssignment called for wrong function");
7905
7906 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7907
7908 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7909 CopyAssignOperator->setInvalidDecl();
7910 return;
7911 }
7912
7913 CopyAssignOperator->setUsed();
7914
Eli Friedman9a14db32012-10-18 20:14:08 +00007915 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007916 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007917
7918 // C++0x [class.copy]p30:
7919 // The implicitly-defined or explicitly-defaulted copy assignment operator
7920 // for a non-union class X performs memberwise copy assignment of its
7921 // subobjects. The direct base classes of X are assigned first, in the
7922 // order of their declaration in the base-specifier-list, and then the
7923 // immediate non-static data members of X are assigned, in the order in
7924 // which they were declared in the class definition.
7925
7926 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007927 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007928
7929 // The parameter for the "other" object, which we are copying from.
7930 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7931 Qualifiers OtherQuals = Other->getType().getQualifiers();
7932 QualType OtherRefType = Other->getType();
7933 if (const LValueReferenceType *OtherRef
7934 = OtherRefType->getAs<LValueReferenceType>()) {
7935 OtherRefType = OtherRef->getPointeeType();
7936 OtherQuals = OtherRefType.getQualifiers();
7937 }
7938
7939 // Our location for everything implicitly-generated.
7940 SourceLocation Loc = CopyAssignOperator->getLocation();
7941
7942 // Construct a reference to the "other" object. We'll be using this
7943 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007944 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007945 assert(OtherRef && "Reference to parameter cannot fail!");
7946
7947 // Construct the "this" pointer. We'll be using this throughout the generated
7948 // ASTs.
7949 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7950 assert(This && "Reference to this cannot fail!");
7951
7952 // Assign base classes.
7953 bool Invalid = false;
7954 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7955 E = ClassDecl->bases_end(); Base != E; ++Base) {
7956 // Form the assignment:
7957 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7958 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007959 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007960 Invalid = true;
7961 continue;
7962 }
7963
John McCallf871d0c2010-08-07 06:22:56 +00007964 CXXCastPath BasePath;
7965 BasePath.push_back(Base);
7966
Douglas Gregor06a9f362010-05-01 20:49:11 +00007967 // Construct the "from" expression, which is an implicit cast to the
7968 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007969 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007970 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7971 CK_UncheckedDerivedToBase,
7972 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007973
7974 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007975 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007976
7977 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007978 To = ImpCastExprToType(To.take(),
7979 Context.getCVRQualifiedType(BaseType,
7980 CopyAssignOperator->getTypeQualifiers()),
7981 CK_UncheckedDerivedToBase,
7982 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007983
7984 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00007985 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007986 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007987 /*CopyingBaseSubobject=*/true,
7988 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007989 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007990 Diag(CurrentLocation, diag::note_member_synthesized_at)
7991 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7992 CopyAssignOperator->setInvalidDecl();
7993 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007994 }
7995
7996 // Success! Record the copy.
7997 Statements.push_back(Copy.takeAs<Expr>());
7998 }
7999
Douglas Gregor06a9f362010-05-01 20:49:11 +00008000 // Assign non-static members.
8001 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8002 FieldEnd = ClassDecl->field_end();
8003 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008004 if (Field->isUnnamedBitfield())
8005 continue;
8006
Douglas Gregor06a9f362010-05-01 20:49:11 +00008007 // Check for members of reference type; we can't copy those.
8008 if (Field->getType()->isReferenceType()) {
8009 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8010 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8011 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008012 Diag(CurrentLocation, diag::note_member_synthesized_at)
8013 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008014 Invalid = true;
8015 continue;
8016 }
8017
8018 // Check for members of const-qualified, non-class type.
8019 QualType BaseType = Context.getBaseElementType(Field->getType());
8020 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8021 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8022 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8023 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008024 Diag(CurrentLocation, diag::note_member_synthesized_at)
8025 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008026 Invalid = true;
8027 continue;
8028 }
John McCallb77115d2011-06-17 00:18:42 +00008029
8030 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008031 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8032 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008033
8034 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008035 if (FieldType->isIncompleteArrayType()) {
8036 assert(ClassDecl->hasFlexibleArrayMember() &&
8037 "Incomplete array type is not valid");
8038 continue;
8039 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008040
8041 // Build references to the field in the object we're copying from and to.
8042 CXXScopeSpec SS; // Intentionally empty
8043 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8044 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008045 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008046 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008047 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008048 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008049 SS, SourceLocation(), 0,
8050 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008051 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008052 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008053 SS, SourceLocation(), 0,
8054 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008055 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8056 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008057
Douglas Gregor06a9f362010-05-01 20:49:11 +00008058 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008059 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008060 To.get(), From.get(),
8061 /*CopyingBaseSubobject=*/false,
8062 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008063 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008064 Diag(CurrentLocation, diag::note_member_synthesized_at)
8065 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8066 CopyAssignOperator->setInvalidDecl();
8067 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008068 }
8069
8070 // Success! Record the copy.
8071 Statements.push_back(Copy.takeAs<Stmt>());
8072 }
8073
8074 if (!Invalid) {
8075 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008076 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008077
John McCall60d7b3a2010-08-24 06:29:42 +00008078 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008079 if (Return.isInvalid())
8080 Invalid = true;
8081 else {
8082 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008083
8084 if (Trap.hasErrorOccurred()) {
8085 Diag(CurrentLocation, diag::note_member_synthesized_at)
8086 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8087 Invalid = true;
8088 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008089 }
8090 }
8091
8092 if (Invalid) {
8093 CopyAssignOperator->setInvalidDecl();
8094 return;
8095 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008096
8097 StmtResult Body;
8098 {
8099 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008100 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008101 /*isStmtExpr=*/false);
8102 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8103 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008104 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008105
8106 if (ASTMutationListener *L = getASTMutationListener()) {
8107 L->CompletedImplicitDefinition(CopyAssignOperator);
8108 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008109}
8110
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008111Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008112Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8113 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008114
Richard Smithb9d0b762012-07-27 04:22:15 +00008115 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008116 if (ClassDecl->isInvalidDecl())
8117 return ExceptSpec;
8118
8119 // C++0x [except.spec]p14:
8120 // An implicitly declared special member function (Clause 12) shall have an
8121 // exception-specification. [...]
8122
8123 // It is unspecified whether or not an implicit move assignment operator
8124 // attempts to deduplicate calls to assignment operators of virtual bases are
8125 // made. As such, this exception specification is effectively unspecified.
8126 // Based on a similar decision made for constness in C++0x, we're erring on
8127 // the side of assuming such calls to be made regardless of whether they
8128 // actually happen.
8129 // Note that a move constructor is not implicitly declared when there are
8130 // virtual bases, but it can still be user-declared and explicitly defaulted.
8131 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8132 BaseEnd = ClassDecl->bases_end();
8133 Base != BaseEnd; ++Base) {
8134 if (Base->isVirtual())
8135 continue;
8136
8137 CXXRecordDecl *BaseClassDecl
8138 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8139 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008140 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008141 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008142 }
8143
8144 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8145 BaseEnd = ClassDecl->vbases_end();
8146 Base != BaseEnd; ++Base) {
8147 CXXRecordDecl *BaseClassDecl
8148 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8149 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008150 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008151 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008152 }
8153
8154 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8155 FieldEnd = ClassDecl->field_end();
8156 Field != FieldEnd;
8157 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008158 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008159 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008160 if (CXXMethodDecl *MoveAssign =
8161 LookupMovingAssignment(FieldClassDecl,
8162 FieldType.getCVRQualifiers(),
8163 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008164 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008165 }
8166 }
8167
8168 return ExceptSpec;
8169}
8170
Richard Smith1c931be2012-04-02 18:40:40 +00008171/// Determine whether the class type has any direct or indirect virtual base
8172/// classes which have a non-trivial move assignment operator.
8173static bool
8174hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8175 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8176 BaseEnd = ClassDecl->vbases_end();
8177 Base != BaseEnd; ++Base) {
8178 CXXRecordDecl *BaseClass =
8179 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8180
8181 // Try to declare the move assignment. If it would be deleted, then the
8182 // class does not have a non-trivial move assignment.
8183 if (BaseClass->needsImplicitMoveAssignment())
8184 S.DeclareImplicitMoveAssignment(BaseClass);
8185
Richard Smith426391c2012-11-16 00:53:38 +00008186 if (BaseClass->hasNonTrivialMoveAssignment())
Richard Smith1c931be2012-04-02 18:40:40 +00008187 return true;
8188 }
8189
8190 return false;
8191}
8192
8193/// Determine whether the given type either has a move constructor or is
8194/// trivially copyable.
8195static bool
8196hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8197 Type = S.Context.getBaseElementType(Type);
8198
8199 // FIXME: Technically, non-trivially-copyable non-class types, such as
8200 // reference types, are supposed to return false here, but that appears
8201 // to be a standard defect.
8202 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008203 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008204 return true;
8205
8206 if (Type.isTriviallyCopyableType(S.Context))
8207 return true;
8208
8209 if (IsConstructor) {
Richard Smithe5411b72012-12-01 02:35:44 +00008210 // FIXME: Need this because otherwise hasMoveConstructor isn't guaranteed to
8211 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008212 if (ClassDecl->needsImplicitMoveConstructor())
8213 S.DeclareImplicitMoveConstructor(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008214 return ClassDecl->hasMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00008215 }
8216
Richard Smithe5411b72012-12-01 02:35:44 +00008217 // FIXME: Need this because otherwise hasMoveAssignment isn't guaranteed to
8218 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008219 if (ClassDecl->needsImplicitMoveAssignment())
8220 S.DeclareImplicitMoveAssignment(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008221 return ClassDecl->hasMoveAssignment();
Richard Smith1c931be2012-04-02 18:40:40 +00008222}
8223
8224/// Determine whether all non-static data members and direct or virtual bases
8225/// of class \p ClassDecl have either a move operation, or are trivially
8226/// copyable.
8227static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8228 bool IsConstructor) {
8229 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8230 BaseEnd = ClassDecl->bases_end();
8231 Base != BaseEnd; ++Base) {
8232 if (Base->isVirtual())
8233 continue;
8234
8235 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8236 return false;
8237 }
8238
8239 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8240 BaseEnd = ClassDecl->vbases_end();
8241 Base != BaseEnd; ++Base) {
8242 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8243 return false;
8244 }
8245
8246 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8247 FieldEnd = ClassDecl->field_end();
8248 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008249 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008250 return false;
8251 }
8252
8253 return true;
8254}
8255
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008256CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008257 // C++11 [class.copy]p20:
8258 // If the definition of a class X does not explicitly declare a move
8259 // assignment operator, one will be implicitly declared as defaulted
8260 // if and only if:
8261 //
8262 // - [first 4 bullets]
8263 assert(ClassDecl->needsImplicitMoveAssignment());
8264
Richard Smithafb49182012-11-29 01:34:07 +00008265 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
8266 if (DSM.isAlreadyBeingDeclared())
8267 return 0;
8268
Richard Smith1c931be2012-04-02 18:40:40 +00008269 // [Checked after we build the declaration]
8270 // - the move assignment operator would not be implicitly defined as
8271 // deleted,
8272
8273 // [DR1402]:
8274 // - X has no direct or indirect virtual base class with a non-trivial
8275 // move assignment operator, and
8276 // - each of X's non-static data members and direct or virtual base classes
8277 // has a type that either has a move assignment operator or is trivially
8278 // copyable.
8279 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8280 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8281 ClassDecl->setFailedImplicitMoveAssignment();
8282 return 0;
8283 }
8284
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008285 // Note: The following rules are largely analoguous to the move
8286 // constructor rules.
8287
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008288 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8289 QualType RetType = Context.getLValueReferenceType(ArgType);
8290 ArgType = Context.getRValueReferenceType(ArgType);
8291
8292 // An implicitly-declared move assignment operator is an inline public
8293 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008294 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8295 SourceLocation ClassLoc = ClassDecl->getLocation();
8296 DeclarationNameInfo NameInfo(Name, ClassLoc);
8297 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008298 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008299 /*TInfo=*/0, /*isStatic=*/false,
8300 /*StorageClassAsWritten=*/SC_None,
8301 /*isInline=*/true,
8302 /*isConstexpr=*/false,
8303 SourceLocation());
8304 MoveAssignment->setAccess(AS_public);
8305 MoveAssignment->setDefaulted();
8306 MoveAssignment->setImplicit();
8307 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8308
Richard Smithb9d0b762012-07-27 04:22:15 +00008309 // Build an exception specification pointing back at this member.
8310 FunctionProtoType::ExtProtoInfo EPI;
8311 EPI.ExceptionSpecType = EST_Unevaluated;
8312 EPI.ExceptionSpecDecl = MoveAssignment;
8313 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8314
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008315 // Add the parameter to the operator.
8316 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8317 ClassLoc, ClassLoc, /*Id=*/0,
8318 ArgType, /*TInfo=*/0,
8319 SC_None,
8320 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008321 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008322
8323 // Note that we have added this copy-assignment operator.
8324 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8325
8326 // C++0x [class.copy]p9:
8327 // If the definition of a class X does not explicitly declare a move
8328 // assignment operator, one will be implicitly declared as defaulted if and
8329 // only if:
8330 // [...]
8331 // - the move assignment operator would not be implicitly defined as
8332 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008333 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008334 // Cache this result so that we don't try to generate this over and over
8335 // on every lookup, leaking memory and wasting time.
8336 ClassDecl->setFailedImplicitMoveAssignment();
8337 return 0;
8338 }
8339
8340 if (Scope *S = getScopeForContext(ClassDecl))
8341 PushOnScopeChains(MoveAssignment, S, false);
8342 ClassDecl->addDecl(MoveAssignment);
8343
8344 AddOverriddenMethods(ClassDecl, MoveAssignment);
8345 return MoveAssignment;
8346}
8347
8348void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8349 CXXMethodDecl *MoveAssignOperator) {
8350 assert((MoveAssignOperator->isDefaulted() &&
8351 MoveAssignOperator->isOverloadedOperator() &&
8352 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008353 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8354 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008355 "DefineImplicitMoveAssignment called for wrong function");
8356
8357 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8358
8359 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8360 MoveAssignOperator->setInvalidDecl();
8361 return;
8362 }
8363
8364 MoveAssignOperator->setUsed();
8365
Eli Friedman9a14db32012-10-18 20:14:08 +00008366 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008367 DiagnosticErrorTrap Trap(Diags);
8368
8369 // C++0x [class.copy]p28:
8370 // The implicitly-defined or move assignment operator for a non-union class
8371 // X performs memberwise move assignment of its subobjects. The direct base
8372 // classes of X are assigned first, in the order of their declaration in the
8373 // base-specifier-list, and then the immediate non-static data members of X
8374 // are assigned, in the order in which they were declared in the class
8375 // definition.
8376
8377 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008378 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008379
8380 // The parameter for the "other" object, which we are move from.
8381 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8382 QualType OtherRefType = Other->getType()->
8383 getAs<RValueReferenceType>()->getPointeeType();
8384 assert(OtherRefType.getQualifiers() == 0 &&
8385 "Bad argument type of defaulted move assignment");
8386
8387 // Our location for everything implicitly-generated.
8388 SourceLocation Loc = MoveAssignOperator->getLocation();
8389
8390 // Construct a reference to the "other" object. We'll be using this
8391 // throughout the generated ASTs.
8392 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8393 assert(OtherRef && "Reference to parameter cannot fail!");
8394 // Cast to rvalue.
8395 OtherRef = CastForMoving(*this, OtherRef);
8396
8397 // Construct the "this" pointer. We'll be using this throughout the generated
8398 // ASTs.
8399 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8400 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008401
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008402 // Assign base classes.
8403 bool Invalid = false;
8404 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8405 E = ClassDecl->bases_end(); Base != E; ++Base) {
8406 // Form the assignment:
8407 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8408 QualType BaseType = Base->getType().getUnqualifiedType();
8409 if (!BaseType->isRecordType()) {
8410 Invalid = true;
8411 continue;
8412 }
8413
8414 CXXCastPath BasePath;
8415 BasePath.push_back(Base);
8416
8417 // Construct the "from" expression, which is an implicit cast to the
8418 // appropriately-qualified base type.
8419 Expr *From = OtherRef;
8420 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008421 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008422
8423 // Dereference "this".
8424 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8425
8426 // Implicitly cast "this" to the appropriately-qualified base type.
8427 To = ImpCastExprToType(To.take(),
8428 Context.getCVRQualifiedType(BaseType,
8429 MoveAssignOperator->getTypeQualifiers()),
8430 CK_UncheckedDerivedToBase,
8431 VK_LValue, &BasePath);
8432
8433 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008434 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008435 To.get(), From,
8436 /*CopyingBaseSubobject=*/true,
8437 /*Copying=*/false);
8438 if (Move.isInvalid()) {
8439 Diag(CurrentLocation, diag::note_member_synthesized_at)
8440 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8441 MoveAssignOperator->setInvalidDecl();
8442 return;
8443 }
8444
8445 // Success! Record the move.
8446 Statements.push_back(Move.takeAs<Expr>());
8447 }
8448
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008449 // Assign non-static members.
8450 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8451 FieldEnd = ClassDecl->field_end();
8452 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008453 if (Field->isUnnamedBitfield())
8454 continue;
8455
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008456 // Check for members of reference type; we can't move those.
8457 if (Field->getType()->isReferenceType()) {
8458 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8459 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8460 Diag(Field->getLocation(), diag::note_declared_at);
8461 Diag(CurrentLocation, diag::note_member_synthesized_at)
8462 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8463 Invalid = true;
8464 continue;
8465 }
8466
8467 // Check for members of const-qualified, non-class type.
8468 QualType BaseType = Context.getBaseElementType(Field->getType());
8469 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8470 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8471 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8472 Diag(Field->getLocation(), diag::note_declared_at);
8473 Diag(CurrentLocation, diag::note_member_synthesized_at)
8474 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8475 Invalid = true;
8476 continue;
8477 }
8478
8479 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008480 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8481 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008482
8483 QualType FieldType = Field->getType().getNonReferenceType();
8484 if (FieldType->isIncompleteArrayType()) {
8485 assert(ClassDecl->hasFlexibleArrayMember() &&
8486 "Incomplete array type is not valid");
8487 continue;
8488 }
8489
8490 // Build references to the field in the object we're copying from and to.
8491 CXXScopeSpec SS; // Intentionally empty
8492 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8493 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008494 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008495 MemberLookup.resolveKind();
8496 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8497 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008498 SS, SourceLocation(), 0,
8499 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008500 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8501 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008502 SS, SourceLocation(), 0,
8503 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008504 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8505 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8506
8507 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8508 "Member reference with rvalue base must be rvalue except for reference "
8509 "members, which aren't allowed for move assignment.");
8510
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008511 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008512 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008513 To.get(), From.get(),
8514 /*CopyingBaseSubobject=*/false,
8515 /*Copying=*/false);
8516 if (Move.isInvalid()) {
8517 Diag(CurrentLocation, diag::note_member_synthesized_at)
8518 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8519 MoveAssignOperator->setInvalidDecl();
8520 return;
8521 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008522
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008523 // Success! Record the copy.
8524 Statements.push_back(Move.takeAs<Stmt>());
8525 }
8526
8527 if (!Invalid) {
8528 // Add a "return *this;"
8529 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8530
8531 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8532 if (Return.isInvalid())
8533 Invalid = true;
8534 else {
8535 Statements.push_back(Return.takeAs<Stmt>());
8536
8537 if (Trap.hasErrorOccurred()) {
8538 Diag(CurrentLocation, diag::note_member_synthesized_at)
8539 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8540 Invalid = true;
8541 }
8542 }
8543 }
8544
8545 if (Invalid) {
8546 MoveAssignOperator->setInvalidDecl();
8547 return;
8548 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008549
8550 StmtResult Body;
8551 {
8552 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008553 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008554 /*isStmtExpr=*/false);
8555 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8556 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008557 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8558
8559 if (ASTMutationListener *L = getASTMutationListener()) {
8560 L->CompletedImplicitDefinition(MoveAssignOperator);
8561 }
8562}
8563
Richard Smithb9d0b762012-07-27 04:22:15 +00008564Sema::ImplicitExceptionSpecification
8565Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8566 CXXRecordDecl *ClassDecl = MD->getParent();
8567
8568 ImplicitExceptionSpecification ExceptSpec(*this);
8569 if (ClassDecl->isInvalidDecl())
8570 return ExceptSpec;
8571
8572 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8573 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8574 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8575
Douglas Gregor0d405db2010-07-01 20:59:04 +00008576 // C++ [except.spec]p14:
8577 // An implicitly declared special member function (Clause 12) shall have an
8578 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008579 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8580 BaseEnd = ClassDecl->bases_end();
8581 Base != BaseEnd;
8582 ++Base) {
8583 // Virtual bases are handled below.
8584 if (Base->isVirtual())
8585 continue;
8586
Douglas Gregor22584312010-07-02 23:41:54 +00008587 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008588 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008589 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008590 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008591 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008592 }
8593 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8594 BaseEnd = ClassDecl->vbases_end();
8595 Base != BaseEnd;
8596 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008597 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008598 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008599 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008600 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008601 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008602 }
8603 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8604 FieldEnd = ClassDecl->field_end();
8605 Field != FieldEnd;
8606 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008607 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008608 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8609 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008610 LookupCopyingConstructor(FieldClassDecl,
8611 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008612 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008613 }
8614 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008615
Richard Smithb9d0b762012-07-27 04:22:15 +00008616 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008617}
8618
8619CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8620 CXXRecordDecl *ClassDecl) {
8621 // C++ [class.copy]p4:
8622 // If the class definition does not explicitly declare a copy
8623 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +00008624 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +00008625
Richard Smithafb49182012-11-29 01:34:07 +00008626 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
8627 if (DSM.isAlreadyBeingDeclared())
8628 return 0;
8629
Sean Hunt49634cf2011-05-13 06:10:58 +00008630 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8631 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +00008632 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +00008633 if (Const)
8634 ArgType = ArgType.withConst();
8635 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008636
Richard Smith7756afa2012-06-10 05:43:50 +00008637 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8638 CXXCopyConstructor,
8639 Const);
8640
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008641 DeclarationName Name
8642 = Context.DeclarationNames.getCXXConstructorName(
8643 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008644 SourceLocation ClassLoc = ClassDecl->getLocation();
8645 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008646
8647 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008648 // member of its class.
8649 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008650 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008651 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008652 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008653 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008654 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008655 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008656
Richard Smithb9d0b762012-07-27 04:22:15 +00008657 // Build an exception specification pointing back at this member.
8658 FunctionProtoType::ExtProtoInfo EPI;
8659 EPI.ExceptionSpecType = EST_Unevaluated;
8660 EPI.ExceptionSpecDecl = CopyConstructor;
8661 CopyConstructor->setType(
8662 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8663
Douglas Gregor22584312010-07-02 23:41:54 +00008664 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008665 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8666
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008667 // Add the parameter to the constructor.
8668 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008669 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008670 /*IdentifierInfo=*/0,
8671 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008672 SC_None,
8673 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008674 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008675
Douglas Gregor23c94db2010-07-02 17:43:08 +00008676 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008677 PushOnScopeChains(CopyConstructor, S, false);
8678 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008679
Nico Weberafcc96a2012-01-23 03:19:29 +00008680 // C++11 [class.copy]p8:
8681 // ... If the class definition does not explicitly declare a copy
8682 // constructor, there is no user-declared move constructor, and there is no
8683 // user-declared move assignment operator, a copy constructor is implicitly
8684 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008685 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008686 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008687
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008688 return CopyConstructor;
8689}
8690
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008691void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008692 CXXConstructorDecl *CopyConstructor) {
8693 assert((CopyConstructor->isDefaulted() &&
8694 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008695 !CopyConstructor->doesThisDeclarationHaveABody() &&
8696 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008697 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008698
Anders Carlsson63010a72010-04-23 16:24:12 +00008699 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008700 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008701
Eli Friedman9a14db32012-10-18 20:14:08 +00008702 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008703 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008704
Sean Huntcbb67482011-01-08 20:30:50 +00008705 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008706 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008707 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008708 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008709 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008710 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008711 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008712 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8713 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008714 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008715 /*isStmtExpr=*/false)
8716 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008717 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008718 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008719
8720 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008721 if (ASTMutationListener *L = getASTMutationListener()) {
8722 L->CompletedImplicitDefinition(CopyConstructor);
8723 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008724}
8725
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008726Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008727Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8728 CXXRecordDecl *ClassDecl = MD->getParent();
8729
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008730 // C++ [except.spec]p14:
8731 // An implicitly declared special member function (Clause 12) shall have an
8732 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008733 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008734 if (ClassDecl->isInvalidDecl())
8735 return ExceptSpec;
8736
8737 // Direct base-class constructors.
8738 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8739 BEnd = ClassDecl->bases_end();
8740 B != BEnd; ++B) {
8741 if (B->isVirtual()) // Handled below.
8742 continue;
8743
8744 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8745 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008746 CXXConstructorDecl *Constructor =
8747 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008748 // If this is a deleted function, add it anyway. This might be conformant
8749 // with the standard. This might not. I'm not sure. It might not matter.
8750 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008751 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008752 }
8753 }
8754
8755 // Virtual base-class constructors.
8756 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8757 BEnd = ClassDecl->vbases_end();
8758 B != BEnd; ++B) {
8759 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8760 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008761 CXXConstructorDecl *Constructor =
8762 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008763 // If this is a deleted function, add it anyway. This might be conformant
8764 // with the standard. This might not. I'm not sure. It might not matter.
8765 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008766 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008767 }
8768 }
8769
8770 // Field constructors.
8771 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8772 FEnd = ClassDecl->field_end();
8773 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008774 QualType FieldType = Context.getBaseElementType(F->getType());
8775 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8776 CXXConstructorDecl *Constructor =
8777 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008778 // If this is a deleted function, add it anyway. This might be conformant
8779 // with the standard. This might not. I'm not sure. It might not matter.
8780 // In particular, the problem is that this function never gets called. It
8781 // might just be ill-formed because this function attempts to refer to
8782 // a deleted function here.
8783 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008784 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008785 }
8786 }
8787
8788 return ExceptSpec;
8789}
8790
8791CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8792 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008793 // C++11 [class.copy]p9:
8794 // If the definition of a class X does not explicitly declare a move
8795 // constructor, one will be implicitly declared as defaulted if and only if:
8796 //
8797 // - [first 4 bullets]
8798 assert(ClassDecl->needsImplicitMoveConstructor());
8799
Richard Smithafb49182012-11-29 01:34:07 +00008800 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
8801 if (DSM.isAlreadyBeingDeclared())
8802 return 0;
8803
Richard Smith1c931be2012-04-02 18:40:40 +00008804 // [Checked after we build the declaration]
8805 // - the move assignment operator would not be implicitly defined as
8806 // deleted,
8807
8808 // [DR1402]:
8809 // - each of X's non-static data members and direct or virtual base classes
8810 // has a type that either has a move constructor or is trivially copyable.
8811 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8812 ClassDecl->setFailedImplicitMoveConstructor();
8813 return 0;
8814 }
8815
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008816 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8817 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008818
Richard Smith7756afa2012-06-10 05:43:50 +00008819 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8820 CXXMoveConstructor,
8821 false);
8822
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008823 DeclarationName Name
8824 = Context.DeclarationNames.getCXXConstructorName(
8825 Context.getCanonicalType(ClassType));
8826 SourceLocation ClassLoc = ClassDecl->getLocation();
8827 DeclarationNameInfo NameInfo(Name, ClassLoc);
8828
8829 // C++0x [class.copy]p11:
8830 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008831 // member of its class.
8832 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008833 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008834 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008835 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008836 MoveConstructor->setAccess(AS_public);
8837 MoveConstructor->setDefaulted();
8838 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008839
Richard Smithb9d0b762012-07-27 04:22:15 +00008840 // Build an exception specification pointing back at this member.
8841 FunctionProtoType::ExtProtoInfo EPI;
8842 EPI.ExceptionSpecType = EST_Unevaluated;
8843 EPI.ExceptionSpecDecl = MoveConstructor;
8844 MoveConstructor->setType(
8845 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8846
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008847 // Add the parameter to the constructor.
8848 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8849 ClassLoc, ClassLoc,
8850 /*IdentifierInfo=*/0,
8851 ArgType, /*TInfo=*/0,
8852 SC_None,
8853 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008854 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008855
8856 // C++0x [class.copy]p9:
8857 // If the definition of a class X does not explicitly declare a move
8858 // constructor, one will be implicitly declared as defaulted if and only if:
8859 // [...]
8860 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008861 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008862 // Cache this result so that we don't try to generate this over and over
8863 // on every lookup, leaking memory and wasting time.
8864 ClassDecl->setFailedImplicitMoveConstructor();
8865 return 0;
8866 }
8867
8868 // Note that we have declared this constructor.
8869 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8870
8871 if (Scope *S = getScopeForContext(ClassDecl))
8872 PushOnScopeChains(MoveConstructor, S, false);
8873 ClassDecl->addDecl(MoveConstructor);
8874
8875 return MoveConstructor;
8876}
8877
8878void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8879 CXXConstructorDecl *MoveConstructor) {
8880 assert((MoveConstructor->isDefaulted() &&
8881 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008882 !MoveConstructor->doesThisDeclarationHaveABody() &&
8883 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008884 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8885
8886 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8887 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8888
Eli Friedman9a14db32012-10-18 20:14:08 +00008889 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008890 DiagnosticErrorTrap Trap(Diags);
8891
8892 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8893 Trap.hasErrorOccurred()) {
8894 Diag(CurrentLocation, diag::note_member_synthesized_at)
8895 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8896 MoveConstructor->setInvalidDecl();
8897 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008898 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008899 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8900 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008901 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008902 /*isStmtExpr=*/false)
8903 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008904 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008905 }
8906
8907 MoveConstructor->setUsed();
8908
8909 if (ASTMutationListener *L = getASTMutationListener()) {
8910 L->CompletedImplicitDefinition(MoveConstructor);
8911 }
8912}
8913
Douglas Gregore4e68d42012-02-15 19:33:52 +00008914bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8915 return FD->isDeleted() &&
8916 (FD->isDefaulted() || FD->isImplicit()) &&
8917 isa<CXXMethodDecl>(FD);
8918}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008919
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008920/// \brief Mark the call operator of the given lambda closure type as "used".
8921static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8922 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008923 = cast<CXXMethodDecl>(
8924 *Lambda->lookup(
8925 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008926 CallOperator->setReferenced();
8927 CallOperator->setUsed();
8928}
8929
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008930void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8931 SourceLocation CurrentLocation,
8932 CXXConversionDecl *Conv)
8933{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008934 CXXRecordDecl *Lambda = Conv->getParent();
8935
8936 // Make sure that the lambda call operator is marked used.
8937 markLambdaCallOperatorUsed(*this, Lambda);
8938
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008939 Conv->setUsed();
8940
Eli Friedman9a14db32012-10-18 20:14:08 +00008941 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008942 DiagnosticErrorTrap Trap(Diags);
8943
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008944 // Return the address of the __invoke function.
8945 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8946 CXXMethodDecl *Invoke
8947 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8948 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8949 VK_LValue, Conv->getLocation()).take();
8950 assert(FunctionRef && "Can't refer to __invoke function?");
8951 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8952 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8953 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008954 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008955
8956 // Fill in the __invoke function with a dummy implementation. IR generation
8957 // will fill in the actual details.
8958 Invoke->setUsed();
8959 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008960 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008961
8962 if (ASTMutationListener *L = getASTMutationListener()) {
8963 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008964 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008965 }
8966}
8967
8968void Sema::DefineImplicitLambdaToBlockPointerConversion(
8969 SourceLocation CurrentLocation,
8970 CXXConversionDecl *Conv)
8971{
8972 Conv->setUsed();
8973
Eli Friedman9a14db32012-10-18 20:14:08 +00008974 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008975 DiagnosticErrorTrap Trap(Diags);
8976
Douglas Gregorac1303e2012-02-22 05:02:47 +00008977 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008978 Expr *This = ActOnCXXThis(CurrentLocation).take();
8979 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008980
Eli Friedman23f02672012-03-01 04:01:32 +00008981 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8982 Conv->getLocation(),
8983 Conv, DerefThis);
8984
8985 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8986 // behavior. Note that only the general conversion function does this
8987 // (since it's unusable otherwise); in the case where we inline the
8988 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008989 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008990 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8991 CK_CopyAndAutoreleaseBlockObject,
8992 BuildBlock.get(), 0, VK_RValue);
8993
8994 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008995 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008996 Conv->setInvalidDecl();
8997 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008998 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008999
Douglas Gregorac1303e2012-02-22 05:02:47 +00009000 // Create the return statement that returns the block from the conversion
9001 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009002 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009003 if (Return.isInvalid()) {
9004 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9005 Conv->setInvalidDecl();
9006 return;
9007 }
9008
9009 // Set the body of the conversion function.
9010 Stmt *ReturnS = Return.take();
9011 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9012 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009013 Conv->getLocation()));
9014
Douglas Gregorac1303e2012-02-22 05:02:47 +00009015 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009016 if (ASTMutationListener *L = getASTMutationListener()) {
9017 L->CompletedImplicitDefinition(Conv);
9018 }
9019}
9020
Douglas Gregorf52757d2012-03-10 06:53:13 +00009021/// \brief Determine whether the given list arguments contains exactly one
9022/// "real" (non-default) argument.
9023static bool hasOneRealArgument(MultiExprArg Args) {
9024 switch (Args.size()) {
9025 case 0:
9026 return false;
9027
9028 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009029 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009030 return false;
9031
9032 // fall through
9033 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009034 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009035 }
9036
9037 return false;
9038}
9039
John McCall60d7b3a2010-08-24 06:29:42 +00009040ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009041Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009042 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009043 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009044 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009045 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009046 unsigned ConstructKind,
9047 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009048 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009049
Douglas Gregor2f599792010-04-02 18:24:57 +00009050 // C++0x [class.copy]p34:
9051 // When certain criteria are met, an implementation is allowed to
9052 // omit the copy/move construction of a class object, even if the
9053 // copy/move constructor and/or destructor for the object have
9054 // side effects. [...]
9055 // - when a temporary class object that has not been bound to a
9056 // reference (12.2) would be copied/moved to a class object
9057 // with the same cv-unqualified type, the copy/move operation
9058 // can be omitted by constructing the temporary object
9059 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009060 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009061 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009062 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009063 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009064 }
Mike Stump1eb44332009-09-09 15:08:12 +00009065
9066 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009067 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009068 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009069}
9070
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009071/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9072/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009073ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009074Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9075 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009076 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009077 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009078 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009079 unsigned ConstructKind,
9080 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009081 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009082 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009083 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009084 HadMultipleCandidates, /*FIXME*/false,
9085 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009086 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9087 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009088}
9089
Mike Stump1eb44332009-09-09 15:08:12 +00009090bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009091 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009092 MultiExprArg Exprs,
9093 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009094 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009095 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009096 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009097 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009098 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009099 if (TempResult.isInvalid())
9100 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009101
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009102 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009103 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009104 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009105 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009106 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009107
Anders Carlssonfe2de492009-08-25 05:18:00 +00009108 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009109}
9110
John McCall68c6c9a2010-02-02 09:10:11 +00009111void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009112 if (VD->isInvalidDecl()) return;
9113
John McCall68c6c9a2010-02-02 09:10:11 +00009114 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009115 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009116 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009117 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009118
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009119 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009120 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009121 CheckDestructorAccess(VD->getLocation(), Destructor,
9122 PDiag(diag::err_access_dtor_var)
9123 << VD->getDeclName()
9124 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009125 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009126
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009127 if (!VD->hasGlobalStorage()) return;
9128
9129 // Emit warning for non-trivial dtor in global scope (a real global,
9130 // class-static, function-static).
9131 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9132
9133 // TODO: this should be re-enabled for static locals by !CXAAtExit
9134 if (!VD->isStaticLocal())
9135 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009136}
9137
Douglas Gregor39da0b82009-09-09 23:08:42 +00009138/// \brief Given a constructor and the set of arguments provided for the
9139/// constructor, convert the arguments and add any required default arguments
9140/// to form a proper call to this constructor.
9141///
9142/// \returns true if an error occurred, false otherwise.
9143bool
9144Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9145 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009146 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009147 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009148 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009149 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9150 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009151 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009152
9153 const FunctionProtoType *Proto
9154 = Constructor->getType()->getAs<FunctionProtoType>();
9155 assert(Proto && "Constructor without a prototype?");
9156 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009157
9158 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009159 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009160 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009161 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009162 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009163
9164 VariadicCallType CallType =
9165 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009166 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009167 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9168 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009169 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009170 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009171
9172 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9173
Richard Smith831421f2012-06-25 20:30:08 +00009174 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9175 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009176
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009177 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009178}
9179
Anders Carlsson20d45d22009-12-12 00:32:00 +00009180static inline bool
9181CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9182 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009183 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009184 if (isa<NamespaceDecl>(DC)) {
9185 return SemaRef.Diag(FnDecl->getLocation(),
9186 diag::err_operator_new_delete_declared_in_namespace)
9187 << FnDecl->getDeclName();
9188 }
9189
9190 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009191 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009192 return SemaRef.Diag(FnDecl->getLocation(),
9193 diag::err_operator_new_delete_declared_static)
9194 << FnDecl->getDeclName();
9195 }
9196
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009197 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009198}
9199
Anders Carlsson156c78e2009-12-13 17:53:43 +00009200static inline bool
9201CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9202 CanQualType ExpectedResultType,
9203 CanQualType ExpectedFirstParamType,
9204 unsigned DependentParamTypeDiag,
9205 unsigned InvalidParamTypeDiag) {
9206 QualType ResultType =
9207 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9208
9209 // Check that the result type is not dependent.
9210 if (ResultType->isDependentType())
9211 return SemaRef.Diag(FnDecl->getLocation(),
9212 diag::err_operator_new_delete_dependent_result_type)
9213 << FnDecl->getDeclName() << ExpectedResultType;
9214
9215 // Check that the result type is what we expect.
9216 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9217 return SemaRef.Diag(FnDecl->getLocation(),
9218 diag::err_operator_new_delete_invalid_result_type)
9219 << FnDecl->getDeclName() << ExpectedResultType;
9220
9221 // A function template must have at least 2 parameters.
9222 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9223 return SemaRef.Diag(FnDecl->getLocation(),
9224 diag::err_operator_new_delete_template_too_few_parameters)
9225 << FnDecl->getDeclName();
9226
9227 // The function decl must have at least 1 parameter.
9228 if (FnDecl->getNumParams() == 0)
9229 return SemaRef.Diag(FnDecl->getLocation(),
9230 diag::err_operator_new_delete_too_few_parameters)
9231 << FnDecl->getDeclName();
9232
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009233 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009234 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9235 if (FirstParamType->isDependentType())
9236 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9237 << FnDecl->getDeclName() << ExpectedFirstParamType;
9238
9239 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009240 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009241 ExpectedFirstParamType)
9242 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9243 << FnDecl->getDeclName() << ExpectedFirstParamType;
9244
9245 return false;
9246}
9247
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009248static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009249CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009250 // C++ [basic.stc.dynamic.allocation]p1:
9251 // A program is ill-formed if an allocation function is declared in a
9252 // namespace scope other than global scope or declared static in global
9253 // scope.
9254 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9255 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009256
9257 CanQualType SizeTy =
9258 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9259
9260 // C++ [basic.stc.dynamic.allocation]p1:
9261 // The return type shall be void*. The first parameter shall have type
9262 // std::size_t.
9263 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9264 SizeTy,
9265 diag::err_operator_new_dependent_param_type,
9266 diag::err_operator_new_param_type))
9267 return true;
9268
9269 // C++ [basic.stc.dynamic.allocation]p1:
9270 // The first parameter shall not have an associated default argument.
9271 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009272 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009273 diag::err_operator_new_default_arg)
9274 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9275
9276 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009277}
9278
9279static bool
Richard Smith444d3842012-10-20 08:26:51 +00009280CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009281 // C++ [basic.stc.dynamic.deallocation]p1:
9282 // A program is ill-formed if deallocation functions are declared in a
9283 // namespace scope other than global scope or declared static in global
9284 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009285 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9286 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009287
9288 // C++ [basic.stc.dynamic.deallocation]p2:
9289 // Each deallocation function shall return void and its first parameter
9290 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009291 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9292 SemaRef.Context.VoidPtrTy,
9293 diag::err_operator_delete_dependent_param_type,
9294 diag::err_operator_delete_param_type))
9295 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009296
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009297 return false;
9298}
9299
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009300/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9301/// of this overloaded operator is well-formed. If so, returns false;
9302/// otherwise, emits appropriate diagnostics and returns true.
9303bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009304 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009305 "Expected an overloaded operator declaration");
9306
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009307 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9308
Mike Stump1eb44332009-09-09 15:08:12 +00009309 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009310 // The allocation and deallocation functions, operator new,
9311 // operator new[], operator delete and operator delete[], are
9312 // described completely in 3.7.3. The attributes and restrictions
9313 // found in the rest of this subclause do not apply to them unless
9314 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009315 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009316 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009317
Anders Carlssona3ccda52009-12-12 00:26:23 +00009318 if (Op == OO_New || Op == OO_Array_New)
9319 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009320
9321 // C++ [over.oper]p6:
9322 // An operator function shall either be a non-static member
9323 // function or be a non-member function and have at least one
9324 // parameter whose type is a class, a reference to a class, an
9325 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009326 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9327 if (MethodDecl->isStatic())
9328 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009329 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009330 } else {
9331 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009332 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9333 ParamEnd = FnDecl->param_end();
9334 Param != ParamEnd; ++Param) {
9335 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009336 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9337 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009338 ClassOrEnumParam = true;
9339 break;
9340 }
9341 }
9342
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009343 if (!ClassOrEnumParam)
9344 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009345 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009346 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009347 }
9348
9349 // C++ [over.oper]p8:
9350 // An operator function cannot have default arguments (8.3.6),
9351 // except where explicitly stated below.
9352 //
Mike Stump1eb44332009-09-09 15:08:12 +00009353 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009354 // (C++ [over.call]p1).
9355 if (Op != OO_Call) {
9356 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9357 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009358 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009359 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009360 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009361 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009362 }
9363 }
9364
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009365 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9366 { false, false, false }
9367#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9368 , { Unary, Binary, MemberOnly }
9369#include "clang/Basic/OperatorKinds.def"
9370 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009371
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009372 bool CanBeUnaryOperator = OperatorUses[Op][0];
9373 bool CanBeBinaryOperator = OperatorUses[Op][1];
9374 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009375
9376 // C++ [over.oper]p8:
9377 // [...] Operator functions cannot have more or fewer parameters
9378 // than the number required for the corresponding operator, as
9379 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009380 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009381 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009382 if (Op != OO_Call &&
9383 ((NumParams == 1 && !CanBeUnaryOperator) ||
9384 (NumParams == 2 && !CanBeBinaryOperator) ||
9385 (NumParams < 1) || (NumParams > 2))) {
9386 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009387 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009388 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009389 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009390 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009391 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009392 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009393 assert(CanBeBinaryOperator &&
9394 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009395 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009396 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009397
Chris Lattner416e46f2008-11-21 07:57:12 +00009398 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009399 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009400 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009401
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009402 // Overloaded operators other than operator() cannot be variadic.
9403 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009404 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009405 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009406 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009407 }
9408
9409 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009410 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9411 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009412 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009413 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009414 }
9415
9416 // C++ [over.inc]p1:
9417 // The user-defined function called operator++ implements the
9418 // prefix and postfix ++ operator. If this function is a member
9419 // function with no parameters, or a non-member function with one
9420 // parameter of class or enumeration type, it defines the prefix
9421 // increment operator ++ for objects of that type. If the function
9422 // is a member function with one parameter (which shall be of type
9423 // int) or a non-member function with two parameters (the second
9424 // of which shall be of type int), it defines the postfix
9425 // increment operator ++ for objects of that type.
9426 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9427 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9428 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009429 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009430 ParamIsInt = BT->getKind() == BuiltinType::Int;
9431
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009432 if (!ParamIsInt)
9433 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009434 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009435 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009436 }
9437
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009438 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009439}
Chris Lattner5a003a42008-12-17 07:09:26 +00009440
Sean Hunta6c058d2010-01-13 09:01:02 +00009441/// CheckLiteralOperatorDeclaration - Check whether the declaration
9442/// of this literal operator function is well-formed. If so, returns
9443/// false; otherwise, emits appropriate diagnostics and returns true.
9444bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009445 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009446 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9447 << FnDecl->getDeclName();
9448 return true;
9449 }
9450
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009451 if (FnDecl->isExternC()) {
9452 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9453 return true;
9454 }
9455
Sean Hunta6c058d2010-01-13 09:01:02 +00009456 bool Valid = false;
9457
Richard Smith36f5cfe2012-03-09 08:00:36 +00009458 // This might be the definition of a literal operator template.
9459 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9460 // This might be a specialization of a literal operator template.
9461 if (!TpDecl)
9462 TpDecl = FnDecl->getPrimaryTemplate();
9463
Sean Hunt216c2782010-04-07 23:11:06 +00009464 // template <char...> type operator "" name() is the only valid template
9465 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009466 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009467 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009468 // Must have only one template parameter
9469 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9470 if (Params->size() == 1) {
9471 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009472 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009473
Sean Hunt216c2782010-04-07 23:11:06 +00009474 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009475 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9476 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9477 Valid = true;
9478 }
9479 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009480 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009481 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009482 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9483
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009484 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009485
Sean Hunt30019c02010-04-07 22:57:35 +00009486 // unsigned long long int, long double, and any character type are allowed
9487 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009488 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9489 Context.hasSameType(T, Context.LongDoubleTy) ||
9490 Context.hasSameType(T, Context.CharTy) ||
9491 Context.hasSameType(T, Context.WCharTy) ||
9492 Context.hasSameType(T, Context.Char16Ty) ||
9493 Context.hasSameType(T, Context.Char32Ty)) {
9494 if (++Param == FnDecl->param_end())
9495 Valid = true;
9496 goto FinishedParams;
9497 }
9498
Sean Hunt30019c02010-04-07 22:57:35 +00009499 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009500 const PointerType *PT = T->getAs<PointerType>();
9501 if (!PT)
9502 goto FinishedParams;
9503 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009504 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009505 goto FinishedParams;
9506 T = T.getUnqualifiedType();
9507
9508 // Move on to the second parameter;
9509 ++Param;
9510
9511 // If there is no second parameter, the first must be a const char *
9512 if (Param == FnDecl->param_end()) {
9513 if (Context.hasSameType(T, Context.CharTy))
9514 Valid = true;
9515 goto FinishedParams;
9516 }
9517
9518 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9519 // are allowed as the first parameter to a two-parameter function
9520 if (!(Context.hasSameType(T, Context.CharTy) ||
9521 Context.hasSameType(T, Context.WCharTy) ||
9522 Context.hasSameType(T, Context.Char16Ty) ||
9523 Context.hasSameType(T, Context.Char32Ty)))
9524 goto FinishedParams;
9525
9526 // The second and final parameter must be an std::size_t
9527 T = (*Param)->getType().getUnqualifiedType();
9528 if (Context.hasSameType(T, Context.getSizeType()) &&
9529 ++Param == FnDecl->param_end())
9530 Valid = true;
9531 }
9532
9533 // FIXME: This diagnostic is absolutely terrible.
9534FinishedParams:
9535 if (!Valid) {
9536 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9537 << FnDecl->getDeclName();
9538 return true;
9539 }
9540
Richard Smitha9e88b22012-03-09 08:16:22 +00009541 // A parameter-declaration-clause containing a default argument is not
9542 // equivalent to any of the permitted forms.
9543 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9544 ParamEnd = FnDecl->param_end();
9545 Param != ParamEnd; ++Param) {
9546 if ((*Param)->hasDefaultArg()) {
9547 Diag((*Param)->getDefaultArgRange().getBegin(),
9548 diag::err_literal_operator_default_argument)
9549 << (*Param)->getDefaultArgRange();
9550 break;
9551 }
9552 }
9553
Richard Smith2fb4ae32012-03-08 02:39:21 +00009554 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009555 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9556 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009557 // C++11 [usrlit.suffix]p1:
9558 // Literal suffix identifiers that do not start with an underscore
9559 // are reserved for future standardization.
9560 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009561 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009562
Sean Hunta6c058d2010-01-13 09:01:02 +00009563 return false;
9564}
9565
Douglas Gregor074149e2009-01-05 19:45:36 +00009566/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9567/// linkage specification, including the language and (if present)
9568/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9569/// the location of the language string literal, which is provided
9570/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9571/// the '{' brace. Otherwise, this linkage specification does not
9572/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009573Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9574 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009575 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009576 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009577 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009578 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009579 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009580 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009581 Language = LinkageSpecDecl::lang_cxx;
9582 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009583 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009584 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009585 }
Mike Stump1eb44332009-09-09 15:08:12 +00009586
Chris Lattnercc98eac2008-12-17 07:13:27 +00009587 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009588
Douglas Gregor074149e2009-01-05 19:45:36 +00009589 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009590 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009591 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009592 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009593 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009594}
9595
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009596/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009597/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9598/// valid, it's the position of the closing '}' brace in a linkage
9599/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009600Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009601 Decl *LinkageSpec,
9602 SourceLocation RBraceLoc) {
9603 if (LinkageSpec) {
9604 if (RBraceLoc.isValid()) {
9605 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9606 LSDecl->setRBraceLoc(RBraceLoc);
9607 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009608 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009609 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009610 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009611}
9612
Douglas Gregord308e622009-05-18 20:51:54 +00009613/// \brief Perform semantic analysis for the variable declaration that
9614/// occurs within a C++ catch clause, returning the newly-created
9615/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009616VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009617 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009618 SourceLocation StartLoc,
9619 SourceLocation Loc,
9620 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009621 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009622 QualType ExDeclType = TInfo->getType();
9623
Sebastian Redl4b07b292008-12-22 19:15:10 +00009624 // Arrays and functions decay.
9625 if (ExDeclType->isArrayType())
9626 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9627 else if (ExDeclType->isFunctionType())
9628 ExDeclType = Context.getPointerType(ExDeclType);
9629
9630 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9631 // The exception-declaration shall not denote a pointer or reference to an
9632 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009633 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009634 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009635 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009636 Invalid = true;
9637 }
Douglas Gregord308e622009-05-18 20:51:54 +00009638
Sebastian Redl4b07b292008-12-22 19:15:10 +00009639 QualType BaseType = ExDeclType;
9640 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009641 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009642 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009643 BaseType = Ptr->getPointeeType();
9644 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009645 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009646 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009647 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009648 BaseType = Ref->getPointeeType();
9649 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009650 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009651 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009652 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009653 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009654 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009655
Mike Stump1eb44332009-09-09 15:08:12 +00009656 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009657 RequireNonAbstractType(Loc, ExDeclType,
9658 diag::err_abstract_type_in_decl,
9659 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009660 Invalid = true;
9661
John McCall5a180392010-07-24 00:37:23 +00009662 // Only the non-fragile NeXT runtime currently supports C++ catches
9663 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009664 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009665 QualType T = ExDeclType;
9666 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9667 T = RT->getPointeeType();
9668
9669 if (T->isObjCObjectType()) {
9670 Diag(Loc, diag::err_objc_object_catch);
9671 Invalid = true;
9672 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009673 // FIXME: should this be a test for macosx-fragile specifically?
9674 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009675 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009676 }
9677 }
9678
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009679 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9680 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009681 ExDecl->setExceptionVariable(true);
9682
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009683 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009684 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009685 Invalid = true;
9686
Douglas Gregorc41b8782011-07-06 18:14:43 +00009687 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009688 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009689 // C++ [except.handle]p16:
9690 // The object declared in an exception-declaration or, if the
9691 // exception-declaration does not specify a name, a temporary (12.2) is
9692 // copy-initialized (8.5) from the exception object. [...]
9693 // The object is destroyed when the handler exits, after the destruction
9694 // of any automatic objects initialized within the handler.
9695 //
9696 // We just pretend to initialize the object with itself, then make sure
9697 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009698 QualType initType = ExDeclType;
9699
9700 InitializedEntity entity =
9701 InitializedEntity::InitializeVariable(ExDecl);
9702 InitializationKind initKind =
9703 InitializationKind::CreateCopy(Loc, SourceLocation());
9704
9705 Expr *opaqueValue =
9706 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9707 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9708 ExprResult result = sequence.Perform(*this, entity, initKind,
9709 MultiExprArg(&opaqueValue, 1));
9710 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009711 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009712 else {
9713 // If the constructor used was non-trivial, set this as the
9714 // "initializer".
9715 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9716 if (!construct->getConstructor()->isTrivial()) {
9717 Expr *init = MaybeCreateExprWithCleanups(construct);
9718 ExDecl->setInit(init);
9719 }
9720
9721 // And make sure it's destructable.
9722 FinalizeVarWithDestructor(ExDecl, recordType);
9723 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009724 }
9725 }
9726
Douglas Gregord308e622009-05-18 20:51:54 +00009727 if (Invalid)
9728 ExDecl->setInvalidDecl();
9729
9730 return ExDecl;
9731}
9732
9733/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9734/// handler.
John McCalld226f652010-08-21 09:40:31 +00009735Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009736 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009737 bool Invalid = D.isInvalidType();
9738
9739 // Check for unexpanded parameter packs.
9740 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9741 UPPC_ExceptionType)) {
9742 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9743 D.getIdentifierLoc());
9744 Invalid = true;
9745 }
9746
Sebastian Redl4b07b292008-12-22 19:15:10 +00009747 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009748 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009749 LookupOrdinaryName,
9750 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009751 // The scope should be freshly made just for us. There is just no way
9752 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009753 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009754 if (PrevDecl->isTemplateParameter()) {
9755 // Maybe we will complain about the shadowed template parameter.
9756 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009757 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009758 }
9759 }
9760
Chris Lattnereaaebc72009-04-25 08:06:05 +00009761 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009762 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9763 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009764 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009765 }
9766
Douglas Gregor83cb9422010-09-09 17:09:21 +00009767 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009768 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009769 D.getIdentifierLoc(),
9770 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009771 if (Invalid)
9772 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009773
Sebastian Redl4b07b292008-12-22 19:15:10 +00009774 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009775 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009776 PushOnScopeChains(ExDecl, S);
9777 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009778 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009779
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009780 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009781 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009782}
Anders Carlssonfb311762009-03-14 00:25:26 +00009783
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009784Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009785 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009786 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009787 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009788 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009789
Richard Smithe3f470a2012-07-11 22:37:56 +00009790 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9791 return 0;
9792
9793 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9794 AssertMessage, RParenLoc, false);
9795}
9796
9797Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9798 Expr *AssertExpr,
9799 StringLiteral *AssertMessage,
9800 SourceLocation RParenLoc,
9801 bool Failed) {
9802 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9803 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009804 // In a static_assert-declaration, the constant-expression shall be a
9805 // constant expression that can be contextually converted to bool.
9806 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9807 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009808 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009809
Richard Smithdaaefc52011-12-14 23:32:26 +00009810 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009811 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009812 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009813 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009814 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009815
Richard Smithe3f470a2012-07-11 22:37:56 +00009816 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009817 llvm::SmallString<256> MsgBuffer;
9818 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009819 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009820 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009821 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009822 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009823 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009824 }
Mike Stump1eb44332009-09-09 15:08:12 +00009825
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009826 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009827 AssertExpr, AssertMessage, RParenLoc,
9828 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009829
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009830 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009831 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009832}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009833
Douglas Gregor1d869352010-04-07 16:53:43 +00009834/// \brief Perform semantic analysis of the given friend type declaration.
9835///
9836/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +00009837FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +00009838 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009839 TypeSourceInfo *TSInfo) {
9840 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9841
9842 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009843 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009844
Richard Smith6b130222011-10-18 21:39:00 +00009845 // C++03 [class.friend]p2:
9846 // An elaborated-type-specifier shall be used in a friend declaration
9847 // for a class.*
9848 //
9849 // * The class-key of the elaborated-type-specifier is required.
9850 if (!ActiveTemplateInstantiations.empty()) {
9851 // Do not complain about the form of friend template types during
9852 // template instantiation; we will already have complained when the
9853 // template was declared.
9854 } else if (!T->isElaboratedTypeSpecifier()) {
9855 // If we evaluated the type to a record type, suggest putting
9856 // a tag in front.
9857 if (const RecordType *RT = T->getAs<RecordType>()) {
9858 RecordDecl *RD = RT->getDecl();
9859
9860 std::string InsertionText = std::string(" ") + RD->getKindName();
9861
9862 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009863 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009864 diag::warn_cxx98_compat_unelaborated_friend_type :
9865 diag::ext_unelaborated_friend_type)
9866 << (unsigned) RD->getTagKind()
9867 << T
9868 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9869 InsertionText);
9870 } else {
9871 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009872 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009873 diag::warn_cxx98_compat_nonclass_type_friend :
9874 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009875 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009876 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009877 }
Richard Smith6b130222011-10-18 21:39:00 +00009878 } else if (T->getAs<EnumType>()) {
9879 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009880 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009881 diag::warn_cxx98_compat_enum_friend :
9882 diag::ext_enum_friend)
9883 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009884 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009885 }
9886
Richard Smithd6f80da2012-09-20 01:31:00 +00009887 // C++11 [class.friend]p3:
9888 // A friend declaration that does not declare a function shall have one
9889 // of the following forms:
9890 // friend elaborated-type-specifier ;
9891 // friend simple-type-specifier ;
9892 // friend typename-specifier ;
9893 if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
9894 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
9895
Douglas Gregor06245bf2010-04-07 17:57:12 +00009896 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +00009897 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +00009898 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +00009899 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009900}
9901
John McCall9a34edb2010-10-19 01:40:49 +00009902/// Handle a friend tag declaration where the scope specifier was
9903/// templated.
9904Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9905 unsigned TagSpec, SourceLocation TagLoc,
9906 CXXScopeSpec &SS,
9907 IdentifierInfo *Name, SourceLocation NameLoc,
9908 AttributeList *Attr,
9909 MultiTemplateParamsArg TempParamLists) {
9910 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9911
9912 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009913 bool Invalid = false;
9914
9915 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009916 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009917 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009918 TempParamLists.size(),
9919 /*friend*/ true,
9920 isExplicitSpecialization,
9921 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009922 if (TemplateParams->size() > 0) {
9923 // This is a declaration of a class template.
9924 if (Invalid)
9925 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009926
Eric Christopher4110e132011-07-21 05:34:24 +00009927 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9928 SS, Name, NameLoc, Attr,
9929 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009930 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009931 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009932 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009933 } else {
9934 // The "template<>" header is extraneous.
9935 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9936 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9937 isExplicitSpecialization = true;
9938 }
9939 }
9940
9941 if (Invalid) return 0;
9942
John McCall9a34edb2010-10-19 01:40:49 +00009943 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009944 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009945 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +00009946 isAllExplicitSpecializations = false;
9947 break;
9948 }
9949 }
9950
9951 // FIXME: don't ignore attributes.
9952
9953 // If it's explicit specializations all the way down, just forget
9954 // about the template header and build an appropriate non-templated
9955 // friend. TODO: for source fidelity, remember the headers.
9956 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009957 if (SS.isEmpty()) {
9958 bool Owned = false;
9959 bool IsDependent = false;
9960 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9961 Attr, AS_public,
9962 /*ModulePrivateLoc=*/SourceLocation(),
9963 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009964 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009965 /*ScopedEnumUsesClassTag=*/false,
9966 /*UnderlyingType=*/TypeResult());
9967 }
9968
Douglas Gregor2494dd02011-03-01 01:34:45 +00009969 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009970 ElaboratedTypeKeyword Keyword
9971 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009972 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009973 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009974 if (T.isNull())
9975 return 0;
9976
9977 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9978 if (isa<DependentNameType>(T)) {
9979 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009980 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009981 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009982 TL.setNameLoc(NameLoc);
9983 } else {
9984 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009985 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009986 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009987 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9988 }
9989
9990 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9991 TSI, FriendLoc);
9992 Friend->setAccess(AS_public);
9993 CurContext->addDecl(Friend);
9994 return Friend;
9995 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009996
9997 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9998
9999
John McCall9a34edb2010-10-19 01:40:49 +000010000
10001 // Handle the case of a templated-scope friend class. e.g.
10002 // template <class T> class A<T>::B;
10003 // FIXME: we don't support these right now.
10004 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10005 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10006 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10007 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010008 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010009 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010010 TL.setNameLoc(NameLoc);
10011
10012 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10013 TSI, FriendLoc);
10014 Friend->setAccess(AS_public);
10015 Friend->setUnsupportedFriend(true);
10016 CurContext->addDecl(Friend);
10017 return Friend;
10018}
10019
10020
John McCalldd4a3b02009-09-16 22:47:08 +000010021/// Handle a friend type declaration. This works in tandem with
10022/// ActOnTag.
10023///
10024/// Notes on friend class templates:
10025///
10026/// We generally treat friend class declarations as if they were
10027/// declaring a class. So, for example, the elaborated type specifier
10028/// in a friend declaration is required to obey the restrictions of a
10029/// class-head (i.e. no typedefs in the scope chain), template
10030/// parameters are required to match up with simple template-ids, &c.
10031/// However, unlike when declaring a template specialization, it's
10032/// okay to refer to a template specialization without an empty
10033/// template parameter declaration, e.g.
10034/// friend class A<T>::B<unsigned>;
10035/// We permit this as a special case; if there are any template
10036/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010037/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010038Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010039 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010040 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010041
10042 assert(DS.isFriendSpecified());
10043 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10044
John McCalldd4a3b02009-09-16 22:47:08 +000010045 // Try to convert the decl specifier to a type. This works for
10046 // friend templates because ActOnTag never produces a ClassTemplateDecl
10047 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010048 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010049 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10050 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010051 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010052 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010053
Douglas Gregor6ccab972010-12-16 01:14:37 +000010054 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10055 return 0;
10056
John McCalldd4a3b02009-09-16 22:47:08 +000010057 // This is definitely an error in C++98. It's probably meant to
10058 // be forbidden in C++0x, too, but the specification is just
10059 // poorly written.
10060 //
10061 // The problem is with declarations like the following:
10062 // template <T> friend A<T>::foo;
10063 // where deciding whether a class C is a friend or not now hinges
10064 // on whether there exists an instantiation of A that causes
10065 // 'foo' to equal C. There are restrictions on class-heads
10066 // (which we declare (by fiat) elaborated friend declarations to
10067 // be) that makes this tractable.
10068 //
10069 // FIXME: handle "template <> friend class A<T>;", which
10070 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010071 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010072 Diag(Loc, diag::err_tagless_friend_type_template)
10073 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010074 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010075 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010076
John McCall02cace72009-08-28 07:59:38 +000010077 // C++98 [class.friend]p1: A friend of a class is a function
10078 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010079 // This is fixed in DR77, which just barely didn't make the C++03
10080 // deadline. It's also a very silly restriction that seriously
10081 // affects inner classes and which nobody else seems to implement;
10082 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010083 //
10084 // But note that we could warn about it: it's always useless to
10085 // friend one of your own members (it's not, however, worthless to
10086 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010087
John McCalldd4a3b02009-09-16 22:47:08 +000010088 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010089 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010090 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010091 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010092 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010093 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010094 DS.getFriendSpecLoc());
10095 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010096 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010097
10098 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010099 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010100
John McCalldd4a3b02009-09-16 22:47:08 +000010101 D->setAccess(AS_public);
10102 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010103
John McCalld226f652010-08-21 09:40:31 +000010104 return D;
John McCall02cace72009-08-28 07:59:38 +000010105}
10106
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010107Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010108 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010109 const DeclSpec &DS = D.getDeclSpec();
10110
10111 assert(DS.isFriendSpecified());
10112 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10113
10114 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010115 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010116
10117 // C++ [class.friend]p1
10118 // A friend of a class is a function or class....
10119 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010120 // It *doesn't* see through dependent types, which is correct
10121 // according to [temp.arg.type]p3:
10122 // If a declaration acquires a function type through a
10123 // type dependent on a template-parameter and this causes
10124 // a declaration that does not use the syntactic form of a
10125 // function declarator to have a function type, the program
10126 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010127 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010128 Diag(Loc, diag::err_unexpected_friend);
10129
10130 // It might be worthwhile to try to recover by creating an
10131 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010132 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010133 }
10134
10135 // C++ [namespace.memdef]p3
10136 // - If a friend declaration in a non-local class first declares a
10137 // class or function, the friend class or function is a member
10138 // of the innermost enclosing namespace.
10139 // - The name of the friend is not found by simple name lookup
10140 // until a matching declaration is provided in that namespace
10141 // scope (either before or after the class declaration granting
10142 // friendship).
10143 // - If a friend function is called, its name may be found by the
10144 // name lookup that considers functions from namespaces and
10145 // classes associated with the types of the function arguments.
10146 // - When looking for a prior declaration of a class or a function
10147 // declared as a friend, scopes outside the innermost enclosing
10148 // namespace scope are not considered.
10149
John McCall337ec3d2010-10-12 23:13:28 +000010150 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010151 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10152 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010153 assert(Name);
10154
Douglas Gregor6ccab972010-12-16 01:14:37 +000010155 // Check for unexpanded parameter packs.
10156 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10157 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10158 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10159 return 0;
10160
John McCall67d1a672009-08-06 02:15:43 +000010161 // The context we found the declaration in, or in which we should
10162 // create the declaration.
10163 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010164 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010165 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010166 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010167
John McCall337ec3d2010-10-12 23:13:28 +000010168 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010169
John McCall337ec3d2010-10-12 23:13:28 +000010170 // There are four cases here.
10171 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010172 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010173 // there as appropriate.
10174 // Recover from invalid scope qualifiers as if they just weren't there.
10175 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010176 // C++0x [namespace.memdef]p3:
10177 // If the name in a friend declaration is neither qualified nor
10178 // a template-id and the declaration is a function or an
10179 // elaborated-type-specifier, the lookup to determine whether
10180 // the entity has been previously declared shall not consider
10181 // any scopes outside the innermost enclosing namespace.
10182 // C++0x [class.friend]p11:
10183 // If a friend declaration appears in a local class and the name
10184 // specified is an unqualified name, a prior declaration is
10185 // looked up without considering scopes that are outside the
10186 // innermost enclosing non-class scope. For a friend function
10187 // declaration, if there is no prior declaration, the program is
10188 // ill-formed.
10189 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010190 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010191
John McCall29ae6e52010-10-13 05:45:15 +000010192 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010193 DC = CurContext;
10194 while (true) {
10195 // Skip class contexts. If someone can cite chapter and verse
10196 // for this behavior, that would be nice --- it's what GCC and
10197 // EDG do, and it seems like a reasonable intent, but the spec
10198 // really only says that checks for unqualified existing
10199 // declarations should stop at the nearest enclosing namespace,
10200 // not that they should only consider the nearest enclosing
10201 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010202 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010203 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010204
John McCall68263142009-11-18 22:49:29 +000010205 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010206
10207 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010208 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010209 break;
John McCall29ae6e52010-10-13 05:45:15 +000010210
John McCall8a407372010-10-14 22:22:28 +000010211 if (isTemplateId) {
10212 if (isa<TranslationUnitDecl>(DC)) break;
10213 } else {
10214 if (DC->isFileContext()) break;
10215 }
John McCall67d1a672009-08-06 02:15:43 +000010216 DC = DC->getParent();
10217 }
10218
10219 // C++ [class.friend]p1: A friend of a class is a function or
10220 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010221 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010222 // Most C++ 98 compilers do seem to give an error here, so
10223 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010224 if (!Previous.empty() && DC->Equals(CurContext))
10225 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010226 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010227 diag::warn_cxx98_compat_friend_is_member :
10228 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010229
John McCall380aaa42010-10-13 06:22:15 +000010230 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010231
Douglas Gregor883af832011-10-10 01:11:59 +000010232 // C++ [class.friend]p6:
10233 // A function can be defined in a friend declaration of a class if and
10234 // only if the class is a non-local class (9.8), the function name is
10235 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010236 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010237 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10238 }
10239
John McCall337ec3d2010-10-12 23:13:28 +000010240 // - There's a non-dependent scope specifier, in which case we
10241 // compute it and do a previous lookup there for a function
10242 // or function template.
10243 } else if (!SS.getScopeRep()->isDependent()) {
10244 DC = computeDeclContext(SS);
10245 if (!DC) return 0;
10246
10247 if (RequireCompleteDeclContext(SS, DC)) return 0;
10248
10249 LookupQualifiedName(Previous, DC);
10250
10251 // Ignore things found implicitly in the wrong scope.
10252 // TODO: better diagnostics for this case. Suggesting the right
10253 // qualified scope would be nice...
10254 LookupResult::Filter F = Previous.makeFilter();
10255 while (F.hasNext()) {
10256 NamedDecl *D = F.next();
10257 if (!DC->InEnclosingNamespaceSetOf(
10258 D->getDeclContext()->getRedeclContext()))
10259 F.erase();
10260 }
10261 F.done();
10262
10263 if (Previous.empty()) {
10264 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010265 Diag(Loc, diag::err_qualified_friend_not_found)
10266 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010267 return 0;
10268 }
10269
10270 // C++ [class.friend]p1: A friend of a class is a function or
10271 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010272 if (DC->Equals(CurContext))
10273 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010274 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010275 diag::warn_cxx98_compat_friend_is_member :
10276 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010277
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010278 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010279 // C++ [class.friend]p6:
10280 // A function can be defined in a friend declaration of a class if and
10281 // only if the class is a non-local class (9.8), the function name is
10282 // unqualified, and the function has namespace scope.
10283 SemaDiagnosticBuilder DB
10284 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10285
10286 DB << SS.getScopeRep();
10287 if (DC->isFileContext())
10288 DB << FixItHint::CreateRemoval(SS.getRange());
10289 SS.clear();
10290 }
John McCall337ec3d2010-10-12 23:13:28 +000010291
10292 // - There's a scope specifier that does not match any template
10293 // parameter lists, in which case we use some arbitrary context,
10294 // create a method or method template, and wait for instantiation.
10295 // - There's a scope specifier that does match some template
10296 // parameter lists, which we don't handle right now.
10297 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010298 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010299 // C++ [class.friend]p6:
10300 // A function can be defined in a friend declaration of a class if and
10301 // only if the class is a non-local class (9.8), the function name is
10302 // unqualified, and the function has namespace scope.
10303 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10304 << SS.getScopeRep();
10305 }
10306
John McCall337ec3d2010-10-12 23:13:28 +000010307 DC = CurContext;
10308 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010309 }
Douglas Gregor883af832011-10-10 01:11:59 +000010310
John McCall29ae6e52010-10-13 05:45:15 +000010311 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010312 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010313 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10314 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10315 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010316 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010317 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10318 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010319 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010320 }
John McCall67d1a672009-08-06 02:15:43 +000010321 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010322
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010323 // FIXME: This is an egregious hack to cope with cases where the scope stack
10324 // does not contain the declaration context, i.e., in an out-of-line
10325 // definition of a class.
10326 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10327 if (!DCScope) {
10328 FakeDCScope.setEntity(DC);
10329 DCScope = &FakeDCScope;
10330 }
10331
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010332 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010333 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010334 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010335 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010336
Douglas Gregor182ddf02009-09-28 00:08:27 +000010337 assert(ND->getDeclContext() == DC);
10338 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010339
John McCallab88d972009-08-31 22:39:49 +000010340 // Add the function declaration to the appropriate lookup tables,
10341 // adjusting the redeclarations list as necessary. We don't
10342 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010343 //
John McCallab88d972009-08-31 22:39:49 +000010344 // Also update the scope-based lookup if the target context's
10345 // lookup context is in lexical scope.
10346 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010347 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010348 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010349 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010350 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010351 }
John McCall02cace72009-08-28 07:59:38 +000010352
10353 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010354 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010355 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010356 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010357 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010358
John McCall1f2e1a92012-08-10 03:15:35 +000010359 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010360 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010361 } else {
10362 if (DC->isRecord()) CheckFriendAccess(ND);
10363
John McCall6102ca12010-10-16 06:59:13 +000010364 FunctionDecl *FD;
10365 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10366 FD = FTD->getTemplatedDecl();
10367 else
10368 FD = cast<FunctionDecl>(ND);
10369
10370 // Mark templated-scope function declarations as unsupported.
10371 if (FD->getNumTemplateParameterLists())
10372 FrD->setUnsupportedFriend(true);
10373 }
John McCall337ec3d2010-10-12 23:13:28 +000010374
John McCalld226f652010-08-21 09:40:31 +000010375 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010376}
10377
John McCalld226f652010-08-21 09:40:31 +000010378void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10379 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010380
Sebastian Redl50de12f2009-03-24 22:27:57 +000010381 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10382 if (!Fn) {
10383 Diag(DelLoc, diag::err_deleted_non_function);
10384 return;
10385 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010386 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010387 // Don't consider the implicit declaration we generate for explicit
10388 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010389 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10390 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010391 Diag(DelLoc, diag::err_deleted_decl_not_first);
10392 Diag(Prev->getLocation(), diag::note_previous_declaration);
10393 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010394 // If the declaration wasn't the first, we delete the function anyway for
10395 // recovery.
10396 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010397 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010398
10399 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10400 if (!MD)
10401 return;
10402
10403 // A deleted special member function is trivial if the corresponding
10404 // implicitly-declared function would have been.
10405 switch (getSpecialMember(MD)) {
10406 case CXXInvalid:
10407 break;
10408 case CXXDefaultConstructor:
10409 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10410 break;
10411 case CXXCopyConstructor:
10412 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10413 break;
10414 case CXXMoveConstructor:
10415 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10416 break;
10417 case CXXCopyAssignment:
10418 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10419 break;
10420 case CXXMoveAssignment:
10421 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10422 break;
10423 case CXXDestructor:
10424 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10425 break;
10426 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010427}
Sebastian Redl13e88542009-04-27 21:33:24 +000010428
Sean Hunte4246a62011-05-12 06:15:49 +000010429void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10430 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10431
10432 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010433 if (MD->getParent()->isDependentType()) {
10434 MD->setDefaulted();
10435 MD->setExplicitlyDefaulted();
10436 return;
10437 }
10438
Sean Hunte4246a62011-05-12 06:15:49 +000010439 CXXSpecialMember Member = getSpecialMember(MD);
10440 if (Member == CXXInvalid) {
10441 Diag(DefaultLoc, diag::err_default_special_members);
10442 return;
10443 }
10444
10445 MD->setDefaulted();
10446 MD->setExplicitlyDefaulted();
10447
Sean Huntcd10dec2011-05-23 23:14:04 +000010448 // If this definition appears within the record, do the checking when
10449 // the record is complete.
10450 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010451 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010452 // Find the uninstantiated declaration that actually had the '= default'
10453 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010454 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010455
10456 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010457 return;
10458
Richard Smithb9d0b762012-07-27 04:22:15 +000010459 CheckExplicitlyDefaultedSpecialMember(MD);
10460
Sean Hunte4246a62011-05-12 06:15:49 +000010461 switch (Member) {
10462 case CXXDefaultConstructor: {
10463 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010464 if (!CD->isInvalidDecl())
10465 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10466 break;
10467 }
10468
10469 case CXXCopyConstructor: {
10470 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010471 if (!CD->isInvalidDecl())
10472 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010473 break;
10474 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010475
Sean Hunt2b188082011-05-14 05:23:28 +000010476 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010477 if (!MD->isInvalidDecl())
10478 DefineImplicitCopyAssignment(DefaultLoc, MD);
10479 break;
10480 }
10481
Sean Huntcb45a0f2011-05-12 22:46:25 +000010482 case CXXDestructor: {
10483 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010484 if (!DD->isInvalidDecl())
10485 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010486 break;
10487 }
10488
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010489 case CXXMoveConstructor: {
10490 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010491 if (!CD->isInvalidDecl())
10492 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010493 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010494 }
Sean Hunt82713172011-05-25 23:16:36 +000010495
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010496 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010497 if (!MD->isInvalidDecl())
10498 DefineImplicitMoveAssignment(DefaultLoc, MD);
10499 break;
10500 }
10501
10502 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010503 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010504 }
10505 } else {
10506 Diag(DefaultLoc, diag::err_default_special_members);
10507 }
10508}
10509
Sebastian Redl13e88542009-04-27 21:33:24 +000010510static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010511 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010512 Stmt *SubStmt = *CI;
10513 if (!SubStmt)
10514 continue;
10515 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010516 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010517 diag::err_return_in_constructor_handler);
10518 if (!isa<Expr>(SubStmt))
10519 SearchForReturnInStmt(Self, SubStmt);
10520 }
10521}
10522
10523void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10524 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10525 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10526 SearchForReturnInStmt(*this, Handler);
10527 }
10528}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010529
Mike Stump1eb44332009-09-09 15:08:12 +000010530bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010531 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010532 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10533 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010534
Chandler Carruth73857792010-02-15 11:53:20 +000010535 if (Context.hasSameType(NewTy, OldTy) ||
10536 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010537 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010538
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010539 // Check if the return types are covariant
10540 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010541
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010542 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010543 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10544 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010545 NewClassTy = NewPT->getPointeeType();
10546 OldClassTy = OldPT->getPointeeType();
10547 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010548 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10549 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10550 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10551 NewClassTy = NewRT->getPointeeType();
10552 OldClassTy = OldRT->getPointeeType();
10553 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010554 }
10555 }
Mike Stump1eb44332009-09-09 15:08:12 +000010556
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010557 // The return types aren't either both pointers or references to a class type.
10558 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010559 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010560 diag::err_different_return_type_for_overriding_virtual_function)
10561 << New->getDeclName() << NewTy << OldTy;
10562 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010563
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010564 return true;
10565 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010566
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010567 // C++ [class.virtual]p6:
10568 // If the return type of D::f differs from the return type of B::f, the
10569 // class type in the return type of D::f shall be complete at the point of
10570 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010571 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10572 if (!RT->isBeingDefined() &&
10573 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010574 diag::err_covariant_return_incomplete,
10575 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010576 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010577 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010578
Douglas Gregora4923eb2009-11-16 21:35:15 +000010579 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010580 // Check if the new class derives from the old class.
10581 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10582 Diag(New->getLocation(),
10583 diag::err_covariant_return_not_derived)
10584 << New->getDeclName() << NewTy << OldTy;
10585 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10586 return true;
10587 }
Mike Stump1eb44332009-09-09 15:08:12 +000010588
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010589 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010590 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010591 diag::err_covariant_return_inaccessible_base,
10592 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10593 // FIXME: Should this point to the return type?
10594 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010595 // FIXME: this note won't trigger for delayed access control
10596 // diagnostics, and it's impossible to get an undelayed error
10597 // here from access control during the original parse because
10598 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010599 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10600 return true;
10601 }
10602 }
Mike Stump1eb44332009-09-09 15:08:12 +000010603
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010604 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010605 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010606 Diag(New->getLocation(),
10607 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010608 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010609 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10610 return true;
10611 };
Mike Stump1eb44332009-09-09 15:08:12 +000010612
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010613
10614 // The new class type must have the same or less qualifiers as the old type.
10615 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10616 Diag(New->getLocation(),
10617 diag::err_covariant_return_type_class_type_more_qualified)
10618 << New->getDeclName() << NewTy << OldTy;
10619 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10620 return true;
10621 };
Mike Stump1eb44332009-09-09 15:08:12 +000010622
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010623 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010624}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010625
Douglas Gregor4ba31362009-12-01 17:24:26 +000010626/// \brief Mark the given method pure.
10627///
10628/// \param Method the method to be marked pure.
10629///
10630/// \param InitRange the source range that covers the "0" initializer.
10631bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010632 SourceLocation EndLoc = InitRange.getEnd();
10633 if (EndLoc.isValid())
10634 Method->setRangeEnd(EndLoc);
10635
Douglas Gregor4ba31362009-12-01 17:24:26 +000010636 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10637 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010638 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010639 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010640
10641 if (!Method->isInvalidDecl())
10642 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10643 << Method->getDeclName() << InitRange;
10644 return true;
10645}
10646
Douglas Gregor552e2992012-02-21 02:22:07 +000010647/// \brief Determine whether the given declaration is a static data member.
10648static bool isStaticDataMember(Decl *D) {
10649 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10650 if (!Var)
10651 return false;
10652
10653 return Var->isStaticDataMember();
10654}
John McCall731ad842009-12-19 09:28:58 +000010655/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10656/// an initializer for the out-of-line declaration 'Dcl'. The scope
10657/// is a fresh scope pushed for just this purpose.
10658///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010659/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10660/// static data member of class X, names should be looked up in the scope of
10661/// class X.
John McCalld226f652010-08-21 09:40:31 +000010662void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010663 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010664 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010665
John McCall731ad842009-12-19 09:28:58 +000010666 // We should only get called for declarations with scope specifiers, like:
10667 // int foo::bar;
10668 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010669 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010670
10671 // If we are parsing the initializer for a static data member, push a
10672 // new expression evaluation context that is associated with this static
10673 // data member.
10674 if (isStaticDataMember(D))
10675 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010676}
10677
10678/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010679/// initializer for the out-of-line declaration 'D'.
10680void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010681 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010682 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010683
Douglas Gregor552e2992012-02-21 02:22:07 +000010684 if (isStaticDataMember(D))
10685 PopExpressionEvaluationContext();
10686
John McCall731ad842009-12-19 09:28:58 +000010687 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010688 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010689}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010690
10691/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10692/// C++ if/switch/while/for statement.
10693/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010694DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010695 // C++ 6.4p2:
10696 // The declarator shall not specify a function or an array.
10697 // The type-specifier-seq shall not contain typedef and shall not declare a
10698 // new class or enumeration.
10699 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10700 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010701
10702 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010703 if (!Dcl)
10704 return true;
10705
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010706 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10707 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010708 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010709 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010710 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010711
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010712 return Dcl;
10713}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010714
Douglas Gregordfe65432011-07-28 19:11:31 +000010715void Sema::LoadExternalVTableUses() {
10716 if (!ExternalSource)
10717 return;
10718
10719 SmallVector<ExternalVTableUse, 4> VTables;
10720 ExternalSource->ReadUsedVTables(VTables);
10721 SmallVector<VTableUse, 4> NewUses;
10722 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10723 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10724 = VTablesUsed.find(VTables[I].Record);
10725 // Even if a definition wasn't required before, it may be required now.
10726 if (Pos != VTablesUsed.end()) {
10727 if (!Pos->second && VTables[I].DefinitionRequired)
10728 Pos->second = true;
10729 continue;
10730 }
10731
10732 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10733 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10734 }
10735
10736 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10737}
10738
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010739void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10740 bool DefinitionRequired) {
10741 // Ignore any vtable uses in unevaluated operands or for classes that do
10742 // not have a vtable.
10743 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10744 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010745 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010746 return;
10747
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010748 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010749 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010750 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10751 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10752 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10753 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010754 // If we already had an entry, check to see if we are promoting this vtable
10755 // to required a definition. If so, we need to reappend to the VTableUses
10756 // list, since we may have already processed the first entry.
10757 if (DefinitionRequired && !Pos.first->second) {
10758 Pos.first->second = true;
10759 } else {
10760 // Otherwise, we can early exit.
10761 return;
10762 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010763 }
10764
10765 // Local classes need to have their virtual members marked
10766 // immediately. For all other classes, we mark their virtual members
10767 // at the end of the translation unit.
10768 if (Class->isLocalClass())
10769 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010770 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010771 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010772}
10773
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010774bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010775 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010776 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010777 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010778
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010779 // Note: The VTableUses vector could grow as a result of marking
10780 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010781 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010782 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010783 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010784 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010785 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010786 if (!Class)
10787 continue;
10788
10789 SourceLocation Loc = VTableUses[I].second;
10790
Richard Smithb9d0b762012-07-27 04:22:15 +000010791 bool DefineVTable = true;
10792
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010793 // If this class has a key function, but that key function is
10794 // defined in another translation unit, we don't need to emit the
10795 // vtable even though we're using it.
10796 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010797 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010798 switch (KeyFunction->getTemplateSpecializationKind()) {
10799 case TSK_Undeclared:
10800 case TSK_ExplicitSpecialization:
10801 case TSK_ExplicitInstantiationDeclaration:
10802 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010803 DefineVTable = false;
10804 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010805
10806 case TSK_ExplicitInstantiationDefinition:
10807 case TSK_ImplicitInstantiation:
10808 // We will be instantiating the key function.
10809 break;
10810 }
10811 } else if (!KeyFunction) {
10812 // If we have a class with no key function that is the subject
10813 // of an explicit instantiation declaration, suppress the
10814 // vtable; it will live with the explicit instantiation
10815 // definition.
10816 bool IsExplicitInstantiationDeclaration
10817 = Class->getTemplateSpecializationKind()
10818 == TSK_ExplicitInstantiationDeclaration;
10819 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10820 REnd = Class->redecls_end();
10821 R != REnd; ++R) {
10822 TemplateSpecializationKind TSK
10823 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10824 if (TSK == TSK_ExplicitInstantiationDeclaration)
10825 IsExplicitInstantiationDeclaration = true;
10826 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10827 IsExplicitInstantiationDeclaration = false;
10828 break;
10829 }
10830 }
10831
10832 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010833 DefineVTable = false;
10834 }
10835
10836 // The exception specifications for all virtual members may be needed even
10837 // if we are not providing an authoritative form of the vtable in this TU.
10838 // We may choose to emit it available_externally anyway.
10839 if (!DefineVTable) {
10840 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10841 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010842 }
10843
10844 // Mark all of the virtual members of this class as referenced, so
10845 // that we can build a vtable. Then, tell the AST consumer that a
10846 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010847 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010848 MarkVirtualMembersReferenced(Loc, Class);
10849 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10850 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10851
10852 // Optionally warn if we're emitting a weak vtable.
10853 if (Class->getLinkage() == ExternalLinkage &&
10854 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010855 const FunctionDecl *KeyFunctionDef = 0;
10856 if (!KeyFunction ||
10857 (KeyFunction->hasBody(KeyFunctionDef) &&
10858 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010859 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10860 TSK_ExplicitInstantiationDefinition
10861 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10862 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010863 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010864 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010865 VTableUses.clear();
10866
Douglas Gregor78844032011-04-22 22:25:37 +000010867 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010868}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010869
Richard Smithb9d0b762012-07-27 04:22:15 +000010870void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10871 const CXXRecordDecl *RD) {
10872 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10873 E = RD->method_end(); I != E; ++I)
10874 if ((*I)->isVirtual() && !(*I)->isPure())
10875 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10876}
10877
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010878void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10879 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010880 // Mark all functions which will appear in RD's vtable as used.
10881 CXXFinalOverriderMap FinalOverriders;
10882 RD->getFinalOverriders(FinalOverriders);
10883 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10884 E = FinalOverriders.end();
10885 I != E; ++I) {
10886 for (OverridingMethods::const_iterator OI = I->second.begin(),
10887 OE = I->second.end();
10888 OI != OE; ++OI) {
10889 assert(OI->second.size() > 0 && "no final overrider");
10890 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010891
Richard Smithff817f72012-07-07 06:59:51 +000010892 // C++ [basic.def.odr]p2:
10893 // [...] A virtual member function is used if it is not pure. [...]
10894 if (!Overrider->isPure())
10895 MarkFunctionReferenced(Loc, Overrider);
10896 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010897 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010898
10899 // Only classes that have virtual bases need a VTT.
10900 if (RD->getNumVBases() == 0)
10901 return;
10902
10903 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10904 e = RD->bases_end(); i != e; ++i) {
10905 const CXXRecordDecl *Base =
10906 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010907 if (Base->getNumVBases() == 0)
10908 continue;
10909 MarkVirtualMembersReferenced(Loc, Base);
10910 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010911}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010912
10913/// SetIvarInitializers - This routine builds initialization ASTs for the
10914/// Objective-C implementation whose ivars need be initialized.
10915void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010916 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010917 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010918 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010919 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010920 CollectIvarsToConstructOrDestruct(OID, ivars);
10921 if (ivars.empty())
10922 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010923 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010924 for (unsigned i = 0; i < ivars.size(); i++) {
10925 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010926 if (Field->isInvalidDecl())
10927 continue;
10928
Sean Huntcbb67482011-01-08 20:30:50 +000010929 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010930 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10931 InitializationKind InitKind =
10932 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10933
10934 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010935 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010936 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010937 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010938 // Note, MemberInit could actually come back empty if no initialization
10939 // is required (e.g., because it would call a trivial default constructor)
10940 if (!MemberInit.get() || MemberInit.isInvalid())
10941 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010942
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010943 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010944 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10945 SourceLocation(),
10946 MemberInit.takeAs<Expr>(),
10947 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010948 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010949
10950 // Be sure that the destructor is accessible and is marked as referenced.
10951 if (const RecordType *RecordTy
10952 = Context.getBaseElementType(Field->getType())
10953 ->getAs<RecordType>()) {
10954 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010955 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010956 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010957 CheckDestructorAccess(Field->getLocation(), Destructor,
10958 PDiag(diag::err_access_dtor_ivar)
10959 << Context.getBaseElementType(Field->getType()));
10960 }
10961 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010962 }
10963 ObjCImplementation->setIvarInitializers(Context,
10964 AllToInit.data(), AllToInit.size());
10965 }
10966}
Sean Huntfe57eef2011-05-04 05:57:24 +000010967
Sean Huntebcbe1d2011-05-04 23:29:54 +000010968static
10969void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10970 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10971 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10972 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10973 Sema &S) {
10974 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10975 CE = Current.end();
10976 if (Ctor->isInvalidDecl())
10977 return;
10978
Richard Smitha8eaf002012-08-23 06:16:52 +000010979 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
10980
10981 // Target may not be determinable yet, for instance if this is a dependent
10982 // call in an uninstantiated template.
10983 if (Target) {
10984 const FunctionDecl *FNTarget = 0;
10985 (void)Target->hasBody(FNTarget);
10986 Target = const_cast<CXXConstructorDecl*>(
10987 cast_or_null<CXXConstructorDecl>(FNTarget));
10988 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010989
10990 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10991 // Avoid dereferencing a null pointer here.
10992 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10993
10994 if (!Current.insert(Canonical))
10995 return;
10996
10997 // We know that beyond here, we aren't chaining into a cycle.
10998 if (!Target || !Target->isDelegatingConstructor() ||
10999 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11000 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11001 Valid.insert(*CI);
11002 Current.clear();
11003 // We've hit a cycle.
11004 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11005 Current.count(TCanonical)) {
11006 // If we haven't diagnosed this cycle yet, do so now.
11007 if (!Invalid.count(TCanonical)) {
11008 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011009 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011010 << Ctor;
11011
Richard Smitha8eaf002012-08-23 06:16:52 +000011012 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011013 if (TCanonical != Canonical)
11014 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11015
11016 CXXConstructorDecl *C = Target;
11017 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011018 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011019 (void)C->getTargetConstructor()->hasBody(FNTarget);
11020 assert(FNTarget && "Ctor cycle through bodiless function");
11021
Richard Smitha8eaf002012-08-23 06:16:52 +000011022 C = const_cast<CXXConstructorDecl*>(
11023 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011024 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11025 }
11026 }
11027
11028 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11029 Invalid.insert(*CI);
11030 Current.clear();
11031 } else {
11032 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11033 }
11034}
11035
11036
Sean Huntfe57eef2011-05-04 05:57:24 +000011037void Sema::CheckDelegatingCtorCycles() {
11038 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11039
Sean Huntebcbe1d2011-05-04 23:29:54 +000011040 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11041 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011042
Douglas Gregor0129b562011-07-27 21:57:17 +000011043 for (DelegatingCtorDeclsType::iterator
11044 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011045 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011046 I != E; ++I)
11047 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011048
11049 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11050 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011051}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011052
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011053namespace {
11054 /// \brief AST visitor that finds references to the 'this' expression.
11055 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11056 Sema &S;
11057
11058 public:
11059 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11060
11061 bool VisitCXXThisExpr(CXXThisExpr *E) {
11062 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11063 << E->isImplicit();
11064 return false;
11065 }
11066 };
11067}
11068
11069bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11070 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11071 if (!TSInfo)
11072 return false;
11073
11074 TypeLoc TL = TSInfo->getTypeLoc();
11075 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11076 if (!ProtoTL)
11077 return false;
11078
11079 // C++11 [expr.prim.general]p3:
11080 // [The expression this] shall not appear before the optional
11081 // cv-qualifier-seq and it shall not appear within the declaration of a
11082 // static member function (although its type and value category are defined
11083 // within a static member function as they are within a non-static member
11084 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011085 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011086 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11087 FindCXXThisExpr Finder(*this);
11088
11089 // If the return type came after the cv-qualifier-seq, check it now.
11090 if (Proto->hasTrailingReturn() &&
11091 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11092 return true;
11093
11094 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011095 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11096 return true;
11097
11098 return checkThisInStaticMemberFunctionAttributes(Method);
11099}
11100
11101bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11102 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11103 if (!TSInfo)
11104 return false;
11105
11106 TypeLoc TL = TSInfo->getTypeLoc();
11107 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11108 if (!ProtoTL)
11109 return false;
11110
11111 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11112 FindCXXThisExpr Finder(*this);
11113
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011114 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011115 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011116 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011117 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011118 case EST_DynamicNone:
11119 case EST_MSAny:
11120 case EST_None:
11121 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011122
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011123 case EST_ComputedNoexcept:
11124 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11125 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011126
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011127 case EST_Dynamic:
11128 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011129 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011130 E != EEnd; ++E) {
11131 if (!Finder.TraverseType(*E))
11132 return true;
11133 }
11134 break;
11135 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011136
11137 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011138}
11139
11140bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11141 FindCXXThisExpr Finder(*this);
11142
11143 // Check attributes.
11144 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11145 A != AEnd; ++A) {
11146 // FIXME: This should be emitted by tblgen.
11147 Expr *Arg = 0;
11148 ArrayRef<Expr *> Args;
11149 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11150 Arg = G->getArg();
11151 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11152 Arg = G->getArg();
11153 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11154 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11155 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11156 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11157 else if (ExclusiveLockFunctionAttr *ELF
11158 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11159 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11160 else if (SharedLockFunctionAttr *SLF
11161 = dyn_cast<SharedLockFunctionAttr>(*A))
11162 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11163 else if (ExclusiveTrylockFunctionAttr *ETLF
11164 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11165 Arg = ETLF->getSuccessValue();
11166 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11167 } else if (SharedTrylockFunctionAttr *STLF
11168 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11169 Arg = STLF->getSuccessValue();
11170 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11171 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11172 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11173 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11174 Arg = LR->getArg();
11175 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11176 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11177 else if (ExclusiveLocksRequiredAttr *ELR
11178 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11179 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11180 else if (SharedLocksRequiredAttr *SLR
11181 = dyn_cast<SharedLocksRequiredAttr>(*A))
11182 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11183
11184 if (Arg && !Finder.TraverseStmt(Arg))
11185 return true;
11186
11187 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11188 if (!Finder.TraverseStmt(Args[I]))
11189 return true;
11190 }
11191 }
11192
11193 return false;
11194}
11195
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011196void
11197Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11198 ArrayRef<ParsedType> DynamicExceptions,
11199 ArrayRef<SourceRange> DynamicExceptionRanges,
11200 Expr *NoexceptExpr,
11201 llvm::SmallVectorImpl<QualType> &Exceptions,
11202 FunctionProtoType::ExtProtoInfo &EPI) {
11203 Exceptions.clear();
11204 EPI.ExceptionSpecType = EST;
11205 if (EST == EST_Dynamic) {
11206 Exceptions.reserve(DynamicExceptions.size());
11207 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11208 // FIXME: Preserve type source info.
11209 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11210
11211 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11212 collectUnexpandedParameterPacks(ET, Unexpanded);
11213 if (!Unexpanded.empty()) {
11214 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11215 UPPC_ExceptionType,
11216 Unexpanded);
11217 continue;
11218 }
11219
11220 // Check that the type is valid for an exception spec, and
11221 // drop it if not.
11222 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11223 Exceptions.push_back(ET);
11224 }
11225 EPI.NumExceptions = Exceptions.size();
11226 EPI.Exceptions = Exceptions.data();
11227 return;
11228 }
11229
11230 if (EST == EST_ComputedNoexcept) {
11231 // If an error occurred, there's no expression here.
11232 if (NoexceptExpr) {
11233 assert((NoexceptExpr->isTypeDependent() ||
11234 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11235 Context.BoolTy) &&
11236 "Parser should have made sure that the expression is boolean");
11237 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11238 EPI.ExceptionSpecType = EST_BasicNoexcept;
11239 return;
11240 }
11241
11242 if (!NoexceptExpr->isValueDependent())
11243 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011244 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011245 /*AllowFold*/ false).take();
11246 EPI.NoexceptExpr = NoexceptExpr;
11247 }
11248 return;
11249 }
11250}
11251
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011252/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11253Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11254 // Implicitly declared functions (e.g. copy constructors) are
11255 // __host__ __device__
11256 if (D->isImplicit())
11257 return CFT_HostDevice;
11258
11259 if (D->hasAttr<CUDAGlobalAttr>())
11260 return CFT_Global;
11261
11262 if (D->hasAttr<CUDADeviceAttr>()) {
11263 if (D->hasAttr<CUDAHostAttr>())
11264 return CFT_HostDevice;
11265 else
11266 return CFT_Device;
11267 }
11268
11269 return CFT_Host;
11270}
11271
11272bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11273 CUDAFunctionTarget CalleeTarget) {
11274 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11275 // Callable from the device only."
11276 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11277 return true;
11278
11279 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11280 // Callable from the host only."
11281 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11282 // Callable from the host only."
11283 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11284 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11285 return true;
11286
11287 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11288 return true;
11289
11290 return false;
11291}