blob: f3a6fb5ab2581cc19c10fd49b5598fcbd2f4eb73 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000027#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000028#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000029#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000030#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000031#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000032#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000035#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000036#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000037#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Craig Topper1a6eac82012-09-21 04:33:26 +0000376/// MergeCXXFunctionDecl - Merge two declarations of the same C++
377/// function, once we already know that they have the same
378/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
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;
4226 }
4227
Richard Smith3003e1d2012-05-15 04:39:51 +00004228 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004229
Richard Smithb9d0b762012-07-27 04:22:15 +00004230 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004231 bool CanHaveConstParam = false;
Axel Naumann8f411c32012-09-17 14:26:53 +00004232 bool Trivial = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004233 switch (CSM) {
4234 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004235 Trivial = RD->hasTrivialDefaultConstructor();
4236 break;
4237 case CXXCopyConstructor:
Richard Smithacf796b2012-11-28 06:23:12 +00004238 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smith3003e1d2012-05-15 04:39:51 +00004239 Trivial = RD->hasTrivialCopyConstructor();
4240 break;
4241 case CXXCopyAssignment:
Richard Smithacf796b2012-11-28 06:23:12 +00004242 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Richard Smith3003e1d2012-05-15 04:39:51 +00004243 Trivial = RD->hasTrivialCopyAssignment();
4244 break;
4245 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004246 Trivial = RD->hasTrivialMoveConstructor();
4247 break;
4248 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004249 Trivial = RD->hasTrivialMoveAssignment();
4250 break;
4251 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004252 Trivial = RD->hasTrivialDestructor();
4253 break;
4254 case CXXInvalid:
4255 llvm_unreachable("non-special member explicitly defaulted!");
4256 }
Sean Hunt2b188082011-05-14 05:23:28 +00004257
Richard Smith3003e1d2012-05-15 04:39:51 +00004258 QualType ReturnType = Context.VoidTy;
4259 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4260 // Check for return type matching.
4261 ReturnType = Type->getResultType();
4262 QualType ExpectedReturnType =
4263 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4264 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4265 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4266 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4267 HadError = true;
4268 }
4269
4270 // A defaulted special member cannot have cv-qualifiers.
4271 if (Type->getTypeQuals()) {
4272 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4273 << (CSM == CXXMoveAssignment);
4274 HadError = true;
4275 }
4276 }
4277
4278 // Check for parameter type matching.
4279 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004280 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004281 if (ExpectedParams && ArgType->isReferenceType()) {
4282 // Argument must be reference to possibly-const T.
4283 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004284 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004285
4286 if (ReferentType.isVolatileQualified()) {
4287 Diag(MD->getLocation(),
4288 diag::err_defaulted_special_member_volatile_param) << CSM;
4289 HadError = true;
4290 }
4291
Richard Smith7756afa2012-06-10 05:43:50 +00004292 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004293 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4294 Diag(MD->getLocation(),
4295 diag::err_defaulted_special_member_copy_const_param)
4296 << (CSM == CXXCopyAssignment);
4297 // FIXME: Explain why this special member can't be const.
4298 } else {
4299 Diag(MD->getLocation(),
4300 diag::err_defaulted_special_member_move_const_param)
4301 << (CSM == CXXMoveAssignment);
4302 }
4303 HadError = true;
4304 }
4305
4306 // If a function is explicitly defaulted on its first declaration, it shall
4307 // have the same parameter type as if it had been implicitly declared.
4308 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004309 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004310 Diag(MD->getLocation(),
4311 diag::err_defaulted_special_member_copy_non_const_param)
4312 << (CSM == CXXCopyAssignment);
4313 } else if (ExpectedParams) {
4314 // A copy assignment operator can take its argument by value, but a
4315 // defaulted one cannot.
4316 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004317 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004318 HadError = true;
4319 }
Sean Huntbe631222011-05-17 20:44:43 +00004320
Richard Smithb9d0b762012-07-27 04:22:15 +00004321 // Rebuild the type with the implicit exception specification added, if we
4322 // are going to need it.
4323 const FunctionProtoType *ImplicitType = 0;
4324 if (First || Type->hasExceptionSpec()) {
4325 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4326 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4327 ImplicitType = cast<FunctionProtoType>(
4328 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4329 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004330
Richard Smith61802452011-12-22 02:22:31 +00004331 // C++11 [dcl.fct.def.default]p2:
4332 // An explicitly-defaulted function may be declared constexpr only if it
4333 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004334 // Do not apply this rule to members of class templates, since core issue 1358
4335 // makes such functions always instantiate to constexpr functions. For
4336 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004337 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4338 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004339 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4340 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4341 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004342 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004343 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004344 }
4345 // and may have an explicit exception-specification only if it is compatible
4346 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004347 if (Type->hasExceptionSpec() &&
4348 CheckEquivalentExceptionSpec(
4349 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4350 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4351 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004352
4353 // If a function is explicitly defaulted on its first declaration,
4354 if (First) {
4355 // -- it is implicitly considered to be constexpr if the implicit
4356 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004357 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004358
Richard Smith3003e1d2012-05-15 04:39:51 +00004359 // -- it is implicitly considered to have the same exception-specification
4360 // as if it had been implicitly declared,
4361 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004362
4363 // Such a function is also trivial if the implicitly-declared function
4364 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004365 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004366 }
4367
Richard Smith3003e1d2012-05-15 04:39:51 +00004368 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004369 if (First) {
4370 MD->setDeletedAsWritten();
4371 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004372 // C++11 [dcl.fct.def.default]p4:
4373 // [For a] user-provided explicitly-defaulted function [...] if such a
4374 // function is implicitly defined as deleted, the program is ill-formed.
4375 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4376 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004377 }
4378 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004379
Richard Smith3003e1d2012-05-15 04:39:51 +00004380 if (HadError)
4381 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004382}
4383
Richard Smith7d5088a2012-02-18 02:02:13 +00004384namespace {
4385struct SpecialMemberDeletionInfo {
4386 Sema &S;
4387 CXXMethodDecl *MD;
4388 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004389 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004390
4391 // Properties of the special member, computed for convenience.
4392 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4393 SourceLocation Loc;
4394
4395 bool AllFieldsAreConst;
4396
4397 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004398 Sema::CXXSpecialMember CSM, bool Diagnose)
4399 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004400 IsConstructor(false), IsAssignment(false), IsMove(false),
4401 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4402 AllFieldsAreConst(true) {
4403 switch (CSM) {
4404 case Sema::CXXDefaultConstructor:
4405 case Sema::CXXCopyConstructor:
4406 IsConstructor = true;
4407 break;
4408 case Sema::CXXMoveConstructor:
4409 IsConstructor = true;
4410 IsMove = true;
4411 break;
4412 case Sema::CXXCopyAssignment:
4413 IsAssignment = true;
4414 break;
4415 case Sema::CXXMoveAssignment:
4416 IsAssignment = true;
4417 IsMove = true;
4418 break;
4419 case Sema::CXXDestructor:
4420 break;
4421 case Sema::CXXInvalid:
4422 llvm_unreachable("invalid special member kind");
4423 }
4424
4425 if (MD->getNumParams()) {
4426 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4427 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4428 }
4429 }
4430
4431 bool inUnion() const { return MD->getParent()->isUnion(); }
4432
4433 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004434 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4435 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004436 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004437 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4438 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4439 Quals = 0;
4440 return S.LookupSpecialMember(Class, CSM,
4441 ConstArg || (Quals & Qualifiers::Const),
4442 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004443 MD->getRefQualifier() == RQ_RValue,
4444 TQ & Qualifiers::Const,
4445 TQ & Qualifiers::Volatile);
4446 }
4447
Richard Smith6c4c36c2012-03-30 20:53:28 +00004448 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004449
Richard Smith6c4c36c2012-03-30 20:53:28 +00004450 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004451 bool shouldDeleteForField(FieldDecl *FD);
4452 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004453
Richard Smith517bb842012-07-18 03:51:16 +00004454 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4455 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004456 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4457 Sema::SpecialMemberOverloadResult *SMOR,
4458 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004459
4460 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004461};
4462}
4463
John McCall12d8d802012-04-09 20:53:23 +00004464/// Is the given special member inaccessible when used on the given
4465/// sub-object.
4466bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4467 CXXMethodDecl *target) {
4468 /// If we're operating on a base class, the object type is the
4469 /// type of this special member.
4470 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004471 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004472 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4473 objectTy = S.Context.getTypeDeclType(MD->getParent());
4474 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4475
4476 // If we're operating on a field, the object type is the type of the field.
4477 } else {
4478 objectTy = S.Context.getTypeDeclType(target->getParent());
4479 }
4480
4481 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4482}
4483
Richard Smith6c4c36c2012-03-30 20:53:28 +00004484/// Check whether we should delete a special member due to the implicit
4485/// definition containing a call to a special member of a subobject.
4486bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4487 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4488 bool IsDtorCallInCtor) {
4489 CXXMethodDecl *Decl = SMOR->getMethod();
4490 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4491
4492 int DiagKind = -1;
4493
4494 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4495 DiagKind = !Decl ? 0 : 1;
4496 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4497 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004498 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004499 DiagKind = 3;
4500 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4501 !Decl->isTrivial()) {
4502 // A member of a union must have a trivial corresponding special member.
4503 // As a weird special case, a destructor call from a union's constructor
4504 // must be accessible and non-deleted, but need not be trivial. Such a
4505 // destructor is never actually called, but is semantically checked as
4506 // if it were.
4507 DiagKind = 4;
4508 }
4509
4510 if (DiagKind == -1)
4511 return false;
4512
4513 if (Diagnose) {
4514 if (Field) {
4515 S.Diag(Field->getLocation(),
4516 diag::note_deleted_special_member_class_subobject)
4517 << CSM << MD->getParent() << /*IsField*/true
4518 << Field << DiagKind << IsDtorCallInCtor;
4519 } else {
4520 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4521 S.Diag(Base->getLocStart(),
4522 diag::note_deleted_special_member_class_subobject)
4523 << CSM << MD->getParent() << /*IsField*/false
4524 << Base->getType() << DiagKind << IsDtorCallInCtor;
4525 }
4526
4527 if (DiagKind == 1)
4528 S.NoteDeletedFunction(Decl);
4529 // FIXME: Explain inaccessibility if DiagKind == 3.
4530 }
4531
4532 return true;
4533}
4534
Richard Smith9a561d52012-02-26 09:11:52 +00004535/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004536/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004537bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004538 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004539 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004540
4541 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004542 // -- any direct or virtual base class, or non-static data member with no
4543 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004544 // either M has no default constructor or overload resolution as applied
4545 // to M's default constructor results in an ambiguity or in a function
4546 // that is deleted or inaccessible
4547 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4548 // -- a direct or virtual base class B that cannot be copied/moved because
4549 // overload resolution, as applied to B's corresponding special member,
4550 // results in an ambiguity or a function that is deleted or inaccessible
4551 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004552 // C++11 [class.dtor]p5:
4553 // -- any direct or virtual base class [...] has a type with a destructor
4554 // that is deleted or inaccessible
4555 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004556 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004557 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004558 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004559
Richard Smith6c4c36c2012-03-30 20:53:28 +00004560 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4561 // -- any direct or virtual base class or non-static data member has a
4562 // type with a destructor that is deleted or inaccessible
4563 if (IsConstructor) {
4564 Sema::SpecialMemberOverloadResult *SMOR =
4565 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4566 false, false, false, false, false);
4567 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4568 return true;
4569 }
4570
Richard Smith9a561d52012-02-26 09:11:52 +00004571 return false;
4572}
4573
4574/// Check whether we should delete a special member function due to the class
4575/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004576bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004577 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004578 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004579}
4580
4581/// Check whether we should delete a special member function due to the class
4582/// having a particular non-static data member.
4583bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4584 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4585 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4586
4587 if (CSM == Sema::CXXDefaultConstructor) {
4588 // For a default constructor, all references must be initialized in-class
4589 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004590 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4591 if (Diagnose)
4592 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4593 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004594 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004595 }
Richard Smith79363f52012-02-27 06:07:25 +00004596 // C++11 [class.ctor]p5: any non-variant non-static data member of
4597 // const-qualified type (or array thereof) with no
4598 // brace-or-equal-initializer does not have a user-provided default
4599 // constructor.
4600 if (!inUnion() && FieldType.isConstQualified() &&
4601 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004602 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4603 if (Diagnose)
4604 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004605 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004606 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004607 }
4608
4609 if (inUnion() && !FieldType.isConstQualified())
4610 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004611 } else if (CSM == Sema::CXXCopyConstructor) {
4612 // For a copy constructor, data members must not be of rvalue reference
4613 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004614 if (FieldType->isRValueReferenceType()) {
4615 if (Diagnose)
4616 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4617 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004618 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004619 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004620 } else if (IsAssignment) {
4621 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004622 if (FieldType->isReferenceType()) {
4623 if (Diagnose)
4624 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4625 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004626 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004627 }
4628 if (!FieldRecord && FieldType.isConstQualified()) {
4629 // C++11 [class.copy]p23:
4630 // -- a non-static data member of const non-class type (or array thereof)
4631 if (Diagnose)
4632 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004633 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004634 return true;
4635 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004636 }
4637
4638 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004639 // Some additional restrictions exist on the variant members.
4640 if (!inUnion() && FieldRecord->isUnion() &&
4641 FieldRecord->isAnonymousStructOrUnion()) {
4642 bool AllVariantFieldsAreConst = true;
4643
Richard Smithdf8dc862012-03-29 19:00:10 +00004644 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004645 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4646 UE = FieldRecord->field_end();
4647 UI != UE; ++UI) {
4648 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004649
4650 if (!UnionFieldType.isConstQualified())
4651 AllVariantFieldsAreConst = false;
4652
Richard Smith9a561d52012-02-26 09:11:52 +00004653 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4654 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004655 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4656 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004657 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004658 }
4659
4660 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004661 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004662 FieldRecord->field_begin() != FieldRecord->field_end()) {
4663 if (Diagnose)
4664 S.Diag(FieldRecord->getLocation(),
4665 diag::note_deleted_default_ctor_all_const)
4666 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004667 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004668 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004669
Richard Smithdf8dc862012-03-29 19:00:10 +00004670 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004671 // This is technically non-conformant, but sanity demands it.
4672 return false;
4673 }
4674
Richard Smith517bb842012-07-18 03:51:16 +00004675 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4676 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004677 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004678 }
4679
4680 return false;
4681}
4682
4683/// C++11 [class.ctor] p5:
4684/// A defaulted default constructor for a class X is defined as deleted if
4685/// X is a union and all of its variant members are of const-qualified type.
4686bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004687 // This is a silly definition, because it gives an empty union a deleted
4688 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004689 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4690 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4691 if (Diagnose)
4692 S.Diag(MD->getParent()->getLocation(),
4693 diag::note_deleted_default_ctor_all_const)
4694 << MD->getParent() << /*not anonymous union*/0;
4695 return true;
4696 }
4697 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004698}
4699
4700/// Determine whether a defaulted special member function should be defined as
4701/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4702/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004703bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4704 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004705 if (MD->isInvalidDecl())
4706 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004707 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004708 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004709 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004710 return false;
4711
Richard Smith7d5088a2012-02-18 02:02:13 +00004712 // C++11 [expr.lambda.prim]p19:
4713 // The closure type associated with a lambda-expression has a
4714 // deleted (8.4.3) default constructor and a deleted copy
4715 // assignment operator.
4716 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004717 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4718 if (Diagnose)
4719 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004720 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004721 }
4722
Richard Smith5bdaac52012-04-02 20:59:25 +00004723 // For an anonymous struct or union, the copy and assignment special members
4724 // will never be used, so skip the check. For an anonymous union declared at
4725 // namespace scope, the constructor and destructor are used.
4726 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4727 RD->isAnonymousStructOrUnion())
4728 return false;
4729
Richard Smith6c4c36c2012-03-30 20:53:28 +00004730 // C++11 [class.copy]p7, p18:
4731 // If the class definition declares a move constructor or move assignment
4732 // operator, an implicitly declared copy constructor or copy assignment
4733 // operator is defined as deleted.
4734 if (MD->isImplicit() &&
4735 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4736 CXXMethodDecl *UserDeclaredMove = 0;
4737
4738 // In Microsoft mode, a user-declared move only causes the deletion of the
4739 // corresponding copy operation, not both copy operations.
4740 if (RD->hasUserDeclaredMoveConstructor() &&
4741 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4742 if (!Diagnose) return true;
4743 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004744 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004745 } else if (RD->hasUserDeclaredMoveAssignment() &&
4746 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4747 if (!Diagnose) return true;
4748 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004749 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004750 }
4751
4752 if (UserDeclaredMove) {
4753 Diag(UserDeclaredMove->getLocation(),
4754 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004755 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004756 << UserDeclaredMove->isMoveAssignmentOperator();
4757 return true;
4758 }
4759 }
Sean Hunte16da072011-10-10 06:18:57 +00004760
Richard Smith5bdaac52012-04-02 20:59:25 +00004761 // Do access control from the special member function
4762 ContextRAII MethodContext(*this, MD);
4763
Richard Smith9a561d52012-02-26 09:11:52 +00004764 // C++11 [class.dtor]p5:
4765 // -- for a virtual destructor, lookup of the non-array deallocation function
4766 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004767 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004768 FunctionDecl *OperatorDelete = 0;
4769 DeclarationName Name =
4770 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4771 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004772 OperatorDelete, false)) {
4773 if (Diagnose)
4774 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004775 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004776 }
Richard Smith9a561d52012-02-26 09:11:52 +00004777 }
4778
Richard Smith6c4c36c2012-03-30 20:53:28 +00004779 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004780
Sean Huntcdee3fe2011-05-11 22:34:38 +00004781 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004782 BE = RD->bases_end(); BI != BE; ++BI)
4783 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004784 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004785 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004786
4787 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004788 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004789 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004790 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004791
4792 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004793 FE = RD->field_end(); FI != FE; ++FI)
4794 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004795 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004796 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004797
Richard Smith7d5088a2012-02-18 02:02:13 +00004798 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004799 return true;
4800
4801 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004802}
4803
4804/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004805namespace {
4806 struct FindHiddenVirtualMethodData {
4807 Sema *S;
4808 CXXMethodDecl *Method;
4809 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004810 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004811 };
4812}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004813
David Blaikie5f750682012-10-19 00:53:08 +00004814/// \brief Check whether any most overriden method from MD in Methods
4815static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
4816 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4817 if (MD->size_overridden_methods() == 0)
4818 return Methods.count(MD->getCanonicalDecl());
4819 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4820 E = MD->end_overridden_methods();
4821 I != E; ++I)
4822 if (CheckMostOverridenMethods(*I, Methods))
4823 return true;
4824 return false;
4825}
4826
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004827/// \brief Member lookup function that determines whether a given C++
4828/// method overloads virtual methods in a base class without overriding any,
4829/// to be used with CXXRecordDecl::lookupInBases().
4830static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4831 CXXBasePath &Path,
4832 void *UserData) {
4833 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4834
4835 FindHiddenVirtualMethodData &Data
4836 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4837
4838 DeclarationName Name = Data.Method->getDeclName();
4839 assert(Name.getNameKind() == DeclarationName::Identifier);
4840
4841 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004842 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004843 for (Path.Decls = BaseRecord->lookup(Name);
4844 Path.Decls.first != Path.Decls.second;
4845 ++Path.Decls.first) {
4846 NamedDecl *D = *Path.Decls.first;
4847 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004848 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004849 foundSameNameMethod = true;
4850 // Interested only in hidden virtual methods.
4851 if (!MD->isVirtual())
4852 continue;
4853 // If the method we are checking overrides a method from its base
4854 // don't warn about the other overloaded methods.
4855 if (!Data.S->IsOverload(Data.Method, MD, false))
4856 return true;
4857 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00004858 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004859 overloadedMethods.push_back(MD);
4860 }
4861 }
4862
4863 if (foundSameNameMethod)
4864 Data.OverloadedMethods.append(overloadedMethods.begin(),
4865 overloadedMethods.end());
4866 return foundSameNameMethod;
4867}
4868
David Blaikie5f750682012-10-19 00:53:08 +00004869/// \brief Add the most overriden methods from MD to Methods
4870static void AddMostOverridenMethods(const CXXMethodDecl *MD,
4871 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4872 if (MD->size_overridden_methods() == 0)
4873 Methods.insert(MD->getCanonicalDecl());
4874 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4875 E = MD->end_overridden_methods();
4876 I != E; ++I)
4877 AddMostOverridenMethods(*I, Methods);
4878}
4879
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004880/// \brief See if a method overloads virtual methods in a base class without
4881/// overriding any.
4882void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4883 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004884 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004885 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004886 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004887 return;
4888
4889 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4890 /*bool RecordPaths=*/false,
4891 /*bool DetectVirtual=*/false);
4892 FindHiddenVirtualMethodData Data;
4893 Data.Method = MD;
4894 Data.S = this;
4895
4896 // Keep the base methods that were overriden or introduced in the subclass
4897 // by 'using' in a set. A base method not in this set is hidden.
4898 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4899 res.first != res.second; ++res.first) {
David Blaikie5f750682012-10-19 00:53:08 +00004900 NamedDecl *ND = *res.first;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004901 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
David Blaikie5f750682012-10-19 00:53:08 +00004902 ND = shad->getTargetDecl();
4903 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
4904 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004905 }
4906
4907 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4908 !Data.OverloadedMethods.empty()) {
4909 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4910 << MD << (Data.OverloadedMethods.size() > 1);
4911
4912 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4913 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4914 Diag(overloadedMD->getLocation(),
4915 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4916 }
4917 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004918}
4919
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004920void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004921 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004922 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004923 SourceLocation RBrac,
4924 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004925 if (!TagDecl)
4926 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004927
Douglas Gregor42af25f2009-05-11 19:58:34 +00004928 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004929
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004930 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4931 if (l->getKind() != AttributeList::AT_Visibility)
4932 continue;
4933 l->setInvalid();
4934 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4935 l->getName();
4936 }
4937
David Blaikie77b6de02011-09-22 02:58:26 +00004938 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004939 // strict aliasing violation!
4940 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004941 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004942
Douglas Gregor23c94db2010-07-02 17:43:08 +00004943 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004944 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004945}
4946
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004947/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4948/// special functions, such as the default constructor, copy
4949/// constructor, or destructor, to the given C++ class (C++
4950/// [special]p1). This routine can only be executed just before the
4951/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004952void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004953 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004954 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004955
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004956 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004957 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004958
David Blaikie4e4d0842012-03-11 07:00:24 +00004959 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004960 ++ASTContext::NumImplicitMoveConstructors;
4961
Douglas Gregora376d102010-07-02 21:50:04 +00004962 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4963 ++ASTContext::NumImplicitCopyAssignmentOperators;
4964
4965 // If we have a dynamic class, then the copy assignment operator may be
4966 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4967 // it shows up in the right place in the vtable and that we diagnose
4968 // problems with the implicit exception specification.
4969 if (ClassDecl->isDynamicClass())
4970 DeclareImplicitCopyAssignment(ClassDecl);
4971 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004972
Richard Smith1c931be2012-04-02 18:40:40 +00004973 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004974 ++ASTContext::NumImplicitMoveAssignmentOperators;
4975
4976 // Likewise for the move assignment operator.
4977 if (ClassDecl->isDynamicClass())
4978 DeclareImplicitMoveAssignment(ClassDecl);
4979 }
4980
Douglas Gregor4923aa22010-07-02 20:37:36 +00004981 if (!ClassDecl->hasUserDeclaredDestructor()) {
4982 ++ASTContext::NumImplicitDestructors;
4983
4984 // If we have a dynamic class, then the destructor may be virtual, so we
4985 // have to declare the destructor immediately. This ensures that, e.g., it
4986 // shows up in the right place in the vtable and that we diagnose problems
4987 // with the implicit exception specification.
4988 if (ClassDecl->isDynamicClass())
4989 DeclareImplicitDestructor(ClassDecl);
4990 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004991}
4992
Francois Pichet8387e2a2011-04-22 22:18:13 +00004993void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4994 if (!D)
4995 return;
4996
4997 int NumParamList = D->getNumTemplateParameterLists();
4998 for (int i = 0; i < NumParamList; i++) {
4999 TemplateParameterList* Params = D->getTemplateParameterList(i);
5000 for (TemplateParameterList::iterator Param = Params->begin(),
5001 ParamEnd = Params->end();
5002 Param != ParamEnd; ++Param) {
5003 NamedDecl *Named = cast<NamedDecl>(*Param);
5004 if (Named->getDeclName()) {
5005 S->AddDecl(Named);
5006 IdResolver.AddDecl(Named);
5007 }
5008 }
5009 }
5010}
5011
John McCalld226f652010-08-21 09:40:31 +00005012void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005013 if (!D)
5014 return;
5015
5016 TemplateParameterList *Params = 0;
5017 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5018 Params = Template->getTemplateParameters();
5019 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5020 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5021 Params = PartialSpec->getTemplateParameters();
5022 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005023 return;
5024
Douglas Gregor6569d682009-05-27 23:11:45 +00005025 for (TemplateParameterList::iterator Param = Params->begin(),
5026 ParamEnd = Params->end();
5027 Param != ParamEnd; ++Param) {
5028 NamedDecl *Named = cast<NamedDecl>(*Param);
5029 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005030 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005031 IdResolver.AddDecl(Named);
5032 }
5033 }
5034}
5035
John McCalld226f652010-08-21 09:40:31 +00005036void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005037 if (!RecordD) return;
5038 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005039 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005040 PushDeclContext(S, Record);
5041}
5042
John McCalld226f652010-08-21 09:40:31 +00005043void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005044 if (!RecordD) return;
5045 PopDeclContext();
5046}
5047
Douglas Gregor72b505b2008-12-16 21:30:33 +00005048/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5049/// parsing a top-level (non-nested) C++ class, and we are now
5050/// parsing those parts of the given Method declaration that could
5051/// not be parsed earlier (C++ [class.mem]p2), such as default
5052/// arguments. This action should enter the scope of the given
5053/// Method declaration as if we had just parsed the qualified method
5054/// name. However, it should not bring the parameters into scope;
5055/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005056void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005057}
5058
5059/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5060/// C++ method declaration. We're (re-)introducing the given
5061/// function parameter into scope for use in parsing later parts of
5062/// the method declaration. For example, we could see an
5063/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005064void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005065 if (!ParamD)
5066 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005067
John McCalld226f652010-08-21 09:40:31 +00005068 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005069
5070 // If this parameter has an unparsed default argument, clear it out
5071 // to make way for the parsed default argument.
5072 if (Param->hasUnparsedDefaultArg())
5073 Param->setDefaultArg(0);
5074
John McCalld226f652010-08-21 09:40:31 +00005075 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005076 if (Param->getDeclName())
5077 IdResolver.AddDecl(Param);
5078}
5079
5080/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5081/// processing the delayed method declaration for Method. The method
5082/// declaration is now considered finished. There may be a separate
5083/// ActOnStartOfFunctionDef action later (not necessarily
5084/// immediately!) for this method, if it was also defined inside the
5085/// class body.
John McCalld226f652010-08-21 09:40:31 +00005086void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005087 if (!MethodD)
5088 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005089
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005090 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005091
John McCalld226f652010-08-21 09:40:31 +00005092 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005093
5094 // Now that we have our default arguments, check the constructor
5095 // again. It could produce additional diagnostics or affect whether
5096 // the class has implicitly-declared destructors, among other
5097 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005098 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5099 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005100
5101 // Check the default arguments, which we may have added.
5102 if (!Method->isInvalidDecl())
5103 CheckCXXDefaultArguments(Method);
5104}
5105
Douglas Gregor42a552f2008-11-05 20:51:48 +00005106/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005107/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005108/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005109/// emit diagnostics and set the invalid bit to true. In any case, the type
5110/// will be updated to reflect a well-formed type for the constructor and
5111/// returned.
5112QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005113 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005114 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005115
5116 // C++ [class.ctor]p3:
5117 // A constructor shall not be virtual (10.3) or static (9.4). A
5118 // constructor can be invoked for a const, volatile or const
5119 // volatile object. A constructor shall not be declared const,
5120 // volatile, or const volatile (9.3.2).
5121 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005122 if (!D.isInvalidType())
5123 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5124 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5125 << SourceRange(D.getIdentifierLoc());
5126 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005127 }
John McCalld931b082010-08-26 03:08:43 +00005128 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005129 if (!D.isInvalidType())
5130 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5131 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5132 << SourceRange(D.getIdentifierLoc());
5133 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005134 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005135 }
Mike Stump1eb44332009-09-09 15:08:12 +00005136
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005137 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005138 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005139 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005140 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5141 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005142 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005143 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5144 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005145 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005146 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5147 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005148 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005149 }
Mike Stump1eb44332009-09-09 15:08:12 +00005150
Douglas Gregorc938c162011-01-26 05:01:58 +00005151 // C++0x [class.ctor]p4:
5152 // A constructor shall not be declared with a ref-qualifier.
5153 if (FTI.hasRefQualifier()) {
5154 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5155 << FTI.RefQualifierIsLValueRef
5156 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5157 D.setInvalidType();
5158 }
5159
Douglas Gregor42a552f2008-11-05 20:51:48 +00005160 // Rebuild the function type "R" without any type qualifiers (in
5161 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005162 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005163 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005164 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5165 return R;
5166
5167 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5168 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005169 EPI.RefQualifier = RQ_None;
5170
Chris Lattner65401802009-04-25 08:28:21 +00005171 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005172 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005173}
5174
Douglas Gregor72b505b2008-12-16 21:30:33 +00005175/// CheckConstructor - Checks a fully-formed constructor for
5176/// well-formedness, issuing any diagnostics required. Returns true if
5177/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005178void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005179 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005180 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5181 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005182 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005183
5184 // C++ [class.copy]p3:
5185 // A declaration of a constructor for a class X is ill-formed if
5186 // its first parameter is of type (optionally cv-qualified) X and
5187 // either there are no other parameters or else all other
5188 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005189 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005190 ((Constructor->getNumParams() == 1) ||
5191 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005192 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5193 Constructor->getTemplateSpecializationKind()
5194 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005195 QualType ParamType = Constructor->getParamDecl(0)->getType();
5196 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5197 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005198 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005199 const char *ConstRef
5200 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5201 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005202 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005203 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005204
5205 // FIXME: Rather that making the constructor invalid, we should endeavor
5206 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005207 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005208 }
5209 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005210}
5211
John McCall15442822010-08-04 01:04:25 +00005212/// CheckDestructor - Checks a fully-formed destructor definition for
5213/// well-formedness, issuing any diagnostics required. Returns true
5214/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005215bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005216 CXXRecordDecl *RD = Destructor->getParent();
5217
5218 if (Destructor->isVirtual()) {
5219 SourceLocation Loc;
5220
5221 if (!Destructor->isImplicit())
5222 Loc = Destructor->getLocation();
5223 else
5224 Loc = RD->getLocation();
5225
5226 // If we have a virtual destructor, look up the deallocation function
5227 FunctionDecl *OperatorDelete = 0;
5228 DeclarationName Name =
5229 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005230 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005231 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005232
Eli Friedman5f2987c2012-02-02 03:46:19 +00005233 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005234
5235 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005236 }
Anders Carlsson37909802009-11-30 21:24:50 +00005237
5238 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005239}
5240
Mike Stump1eb44332009-09-09 15:08:12 +00005241static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005242FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5243 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5244 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005245 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005246}
5247
Douglas Gregor42a552f2008-11-05 20:51:48 +00005248/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5249/// the well-formednes of the destructor declarator @p D with type @p
5250/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005251/// emit diagnostics and set the declarator to invalid. Even if this happens,
5252/// will be updated to reflect a well-formed type for the destructor and
5253/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005254QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005255 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005256 // C++ [class.dtor]p1:
5257 // [...] A typedef-name that names a class is a class-name
5258 // (7.1.3); however, a typedef-name that names a class shall not
5259 // be used as the identifier in the declarator for a destructor
5260 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005261 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005262 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005263 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005264 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005265 else if (const TemplateSpecializationType *TST =
5266 DeclaratorType->getAs<TemplateSpecializationType>())
5267 if (TST->isTypeAlias())
5268 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5269 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005270
5271 // C++ [class.dtor]p2:
5272 // A destructor is used to destroy objects of its class type. A
5273 // destructor takes no parameters, and no return type can be
5274 // specified for it (not even void). The address of a destructor
5275 // shall not be taken. A destructor shall not be static. A
5276 // destructor can be invoked for a const, volatile or const
5277 // volatile object. A destructor shall not be declared const,
5278 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005279 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005280 if (!D.isInvalidType())
5281 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5282 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005283 << SourceRange(D.getIdentifierLoc())
5284 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5285
John McCalld931b082010-08-26 03:08:43 +00005286 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005287 }
Chris Lattner65401802009-04-25 08:28:21 +00005288 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005289 // Destructors don't have return types, but the parser will
5290 // happily parse something like:
5291 //
5292 // class X {
5293 // float ~X();
5294 // };
5295 //
5296 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005297 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5298 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5299 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005300 }
Mike Stump1eb44332009-09-09 15:08:12 +00005301
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005302 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005303 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005304 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005305 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5306 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005307 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005308 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5309 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005310 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005311 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5312 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005313 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005314 }
5315
Douglas Gregorc938c162011-01-26 05:01:58 +00005316 // C++0x [class.dtor]p2:
5317 // A destructor shall not be declared with a ref-qualifier.
5318 if (FTI.hasRefQualifier()) {
5319 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5320 << FTI.RefQualifierIsLValueRef
5321 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5322 D.setInvalidType();
5323 }
5324
Douglas Gregor42a552f2008-11-05 20:51:48 +00005325 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005326 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005327 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5328
5329 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005330 FTI.freeArgs();
5331 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005332 }
5333
Mike Stump1eb44332009-09-09 15:08:12 +00005334 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005335 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005336 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005337 D.setInvalidType();
5338 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005339
5340 // Rebuild the function type "R" without any type qualifiers or
5341 // parameters (in case any of the errors above fired) and with
5342 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005343 // types.
John McCalle23cf432010-12-14 08:05:40 +00005344 if (!D.isInvalidType())
5345 return R;
5346
Douglas Gregord92ec472010-07-01 05:10:53 +00005347 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005348 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5349 EPI.Variadic = false;
5350 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005351 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005352 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005353}
5354
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005355/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5356/// well-formednes of the conversion function declarator @p D with
5357/// type @p R. If there are any errors in the declarator, this routine
5358/// will emit diagnostics and return true. Otherwise, it will return
5359/// false. Either way, the type @p R will be updated to reflect a
5360/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005361void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005362 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005363 // C++ [class.conv.fct]p1:
5364 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005365 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005366 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005367 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005368 if (!D.isInvalidType())
5369 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5370 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5371 << SourceRange(D.getIdentifierLoc());
5372 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005373 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005374 }
John McCalla3f81372010-04-13 00:04:31 +00005375
5376 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5377
Chris Lattner6e475012009-04-25 08:35:12 +00005378 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005379 // Conversion functions don't have return types, but the parser will
5380 // happily parse something like:
5381 //
5382 // class X {
5383 // float operator bool();
5384 // };
5385 //
5386 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005387 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5388 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5389 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005390 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005391 }
5392
John McCalla3f81372010-04-13 00:04:31 +00005393 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5394
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005395 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005396 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005397 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5398
5399 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005400 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005401 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005402 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005403 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005404 D.setInvalidType();
5405 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005406
John McCalla3f81372010-04-13 00:04:31 +00005407 // Diagnose "&operator bool()" and other such nonsense. This
5408 // is actually a gcc extension which we don't support.
5409 if (Proto->getResultType() != ConvType) {
5410 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5411 << Proto->getResultType();
5412 D.setInvalidType();
5413 ConvType = Proto->getResultType();
5414 }
5415
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005416 // C++ [class.conv.fct]p4:
5417 // The conversion-type-id shall not represent a function type nor
5418 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005419 if (ConvType->isArrayType()) {
5420 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5421 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005422 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005423 } else if (ConvType->isFunctionType()) {
5424 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5425 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005426 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005427 }
5428
5429 // Rebuild the function type "R" without any parameters (in case any
5430 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005431 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005432 if (D.isInvalidType())
5433 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005434
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005435 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005436 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005437 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005438 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005439 diag::warn_cxx98_compat_explicit_conversion_functions :
5440 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005441 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005442}
5443
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005444/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5445/// the declaration of the given C++ conversion function. This routine
5446/// is responsible for recording the conversion function in the C++
5447/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005448Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005449 assert(Conversion && "Expected to receive a conversion function declaration");
5450
Douglas Gregor9d350972008-12-12 08:25:50 +00005451 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005452
5453 // Make sure we aren't redeclaring the conversion function.
5454 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005455
5456 // C++ [class.conv.fct]p1:
5457 // [...] A conversion function is never used to convert a
5458 // (possibly cv-qualified) object to the (possibly cv-qualified)
5459 // same object type (or a reference to it), to a (possibly
5460 // cv-qualified) base class of that type (or a reference to it),
5461 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005462 // FIXME: Suppress this warning if the conversion function ends up being a
5463 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005464 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005465 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005466 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005467 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005468 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5469 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005470 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005471 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005472 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5473 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005474 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005475 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005476 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005477 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005478 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005479 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005480 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005481 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005482 }
5483
Douglas Gregore80622f2010-09-29 04:25:11 +00005484 if (FunctionTemplateDecl *ConversionTemplate
5485 = Conversion->getDescribedFunctionTemplate())
5486 return ConversionTemplate;
5487
John McCalld226f652010-08-21 09:40:31 +00005488 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005489}
5490
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005491//===----------------------------------------------------------------------===//
5492// Namespace Handling
5493//===----------------------------------------------------------------------===//
5494
Richard Smithd1a55a62012-10-04 22:13:39 +00005495/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5496/// reopened.
5497static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5498 SourceLocation Loc,
5499 IdentifierInfo *II, bool *IsInline,
5500 NamespaceDecl *PrevNS) {
5501 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005502
Richard Smithc969e6a2012-10-05 01:46:25 +00005503 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5504 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5505 // inline namespaces, with the intention of bringing names into namespace std.
5506 //
5507 // We support this just well enough to get that case working; this is not
5508 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005509 if (*IsInline && II && II->getName().startswith("__atomic") &&
5510 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005511 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005512 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5513 NS = NS->getPreviousDecl())
5514 NS->setInline(*IsInline);
5515 // Patch up the lookup table for the containing namespace. This isn't really
5516 // correct, but it's good enough for this particular case.
5517 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5518 E = PrevNS->decls_end(); I != E; ++I)
5519 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5520 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5521 return;
5522 }
5523
5524 if (PrevNS->isInline())
5525 // The user probably just forgot the 'inline', so suggest that it
5526 // be added back.
5527 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5528 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5529 else
5530 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5531 << IsInline;
5532
5533 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5534 *IsInline = PrevNS->isInline();
5535}
John McCallea318642010-08-26 09:15:37 +00005536
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005537/// ActOnStartNamespaceDef - This is called at the start of a namespace
5538/// definition.
John McCalld226f652010-08-21 09:40:31 +00005539Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005540 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005541 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005542 SourceLocation IdentLoc,
5543 IdentifierInfo *II,
5544 SourceLocation LBrace,
5545 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005546 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5547 // For anonymous namespace, take the location of the left brace.
5548 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005549 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005550 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005551 bool IsStd = false;
5552 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005553 Scope *DeclRegionScope = NamespcScope->getParent();
5554
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005555 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005556 if (II) {
5557 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005558 // The identifier in an original-namespace-definition shall not
5559 // have been previously defined in the declarative region in
5560 // which the original-namespace-definition appears. The
5561 // identifier in an original-namespace-definition is the name of
5562 // the namespace. Subsequently in that declarative region, it is
5563 // treated as an original-namespace-name.
5564 //
5565 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005566 // look through using directives, just look for any ordinary names.
5567
5568 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005569 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5570 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005571 NamedDecl *PrevDecl = 0;
5572 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005573 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005574 R.first != R.second; ++R.first) {
5575 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5576 PrevDecl = *R.first;
5577 break;
5578 }
5579 }
5580
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005581 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5582
5583 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005584 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00005585 if (IsInline != PrevNS->isInline())
5586 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5587 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00005588 } else if (PrevDecl) {
5589 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005590 Diag(Loc, diag::err_redefinition_different_kind)
5591 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005592 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005593 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005594 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005595 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005596 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005597 // This is the first "real" definition of the namespace "std", so update
5598 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005599 PrevNS = getStdNamespace();
5600 IsStd = true;
5601 AddToKnown = !IsInline;
5602 } else {
5603 // We've seen this namespace for the first time.
5604 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005605 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005606 } else {
John McCall9aeed322009-10-01 00:25:31 +00005607 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005608
5609 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005610 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005611 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005612 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005613 } else {
5614 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005615 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005616 }
5617
Richard Smithd1a55a62012-10-04 22:13:39 +00005618 if (PrevNS && IsInline != PrevNS->isInline())
5619 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
5620 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005621 }
5622
5623 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5624 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005625 if (IsInvalid)
5626 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005627
5628 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005629
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005630 // FIXME: Should we be merging attributes?
5631 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005632 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005633
5634 if (IsStd)
5635 StdNamespace = Namespc;
5636 if (AddToKnown)
5637 KnownNamespaces[Namespc] = false;
5638
5639 if (II) {
5640 PushOnScopeChains(Namespc, DeclRegionScope);
5641 } else {
5642 // Link the anonymous namespace into its parent.
5643 DeclContext *Parent = CurContext->getRedeclContext();
5644 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5645 TU->setAnonymousNamespace(Namespc);
5646 } else {
5647 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005648 }
John McCall9aeed322009-10-01 00:25:31 +00005649
Douglas Gregora4181472010-03-24 00:46:35 +00005650 CurContext->addDecl(Namespc);
5651
John McCall9aeed322009-10-01 00:25:31 +00005652 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5653 // behaves as if it were replaced by
5654 // namespace unique { /* empty body */ }
5655 // using namespace unique;
5656 // namespace unique { namespace-body }
5657 // where all occurrences of 'unique' in a translation unit are
5658 // replaced by the same identifier and this identifier differs
5659 // from all other identifiers in the entire program.
5660
5661 // We just create the namespace with an empty name and then add an
5662 // implicit using declaration, just like the standard suggests.
5663 //
5664 // CodeGen enforces the "universally unique" aspect by giving all
5665 // declarations semantically contained within an anonymous
5666 // namespace internal linkage.
5667
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005668 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005669 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005670 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00005671 /* 'using' */ LBrace,
5672 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005673 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005674 /* identifier */ SourceLocation(),
5675 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005676 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00005677 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005678 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00005679 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005680 }
5681
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005682 ActOnDocumentableDecl(Namespc);
5683
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005684 // Although we could have an invalid decl (i.e. the namespace name is a
5685 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005686 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5687 // for the namespace has the declarations that showed up in that particular
5688 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005689 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005690 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005691}
5692
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005693/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5694/// is a namespace alias, returns the namespace it points to.
5695static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5696 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5697 return AD->getNamespace();
5698 return dyn_cast_or_null<NamespaceDecl>(D);
5699}
5700
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005701/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5702/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005703void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005704 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5705 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005706 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005707 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005708 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005709 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005710}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005711
John McCall384aff82010-08-25 07:42:41 +00005712CXXRecordDecl *Sema::getStdBadAlloc() const {
5713 return cast_or_null<CXXRecordDecl>(
5714 StdBadAlloc.get(Context.getExternalSource()));
5715}
5716
5717NamespaceDecl *Sema::getStdNamespace() const {
5718 return cast_or_null<NamespaceDecl>(
5719 StdNamespace.get(Context.getExternalSource()));
5720}
5721
Douglas Gregor66992202010-06-29 17:53:46 +00005722/// \brief Retrieve the special "std" namespace, which may require us to
5723/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005724NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005725 if (!StdNamespace) {
5726 // The "std" namespace has not yet been defined, so build one implicitly.
5727 StdNamespace = NamespaceDecl::Create(Context,
5728 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005729 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005730 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005731 &PP.getIdentifierTable().get("std"),
5732 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005733 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005734 }
5735
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005736 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005737}
5738
Sebastian Redl395e04d2012-01-17 22:49:33 +00005739bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005740 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005741 "Looking for std::initializer_list outside of C++.");
5742
5743 // We're looking for implicit instantiations of
5744 // template <typename E> class std::initializer_list.
5745
5746 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5747 return false;
5748
Sebastian Redl84760e32012-01-17 22:49:58 +00005749 ClassTemplateDecl *Template = 0;
5750 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005751
Sebastian Redl84760e32012-01-17 22:49:58 +00005752 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005753
Sebastian Redl84760e32012-01-17 22:49:58 +00005754 ClassTemplateSpecializationDecl *Specialization =
5755 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5756 if (!Specialization)
5757 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005758
Sebastian Redl84760e32012-01-17 22:49:58 +00005759 Template = Specialization->getSpecializedTemplate();
5760 Arguments = Specialization->getTemplateArgs().data();
5761 } else if (const TemplateSpecializationType *TST =
5762 Ty->getAs<TemplateSpecializationType>()) {
5763 Template = dyn_cast_or_null<ClassTemplateDecl>(
5764 TST->getTemplateName().getAsTemplateDecl());
5765 Arguments = TST->getArgs();
5766 }
5767 if (!Template)
5768 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005769
5770 if (!StdInitializerList) {
5771 // Haven't recognized std::initializer_list yet, maybe this is it.
5772 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5773 if (TemplateClass->getIdentifier() !=
5774 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005775 !getStdNamespace()->InEnclosingNamespaceSetOf(
5776 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005777 return false;
5778 // This is a template called std::initializer_list, but is it the right
5779 // template?
5780 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005781 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005782 return false;
5783 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5784 return false;
5785
5786 // It's the right template.
5787 StdInitializerList = Template;
5788 }
5789
5790 if (Template != StdInitializerList)
5791 return false;
5792
5793 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005794 if (Element)
5795 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005796 return true;
5797}
5798
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005799static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5800 NamespaceDecl *Std = S.getStdNamespace();
5801 if (!Std) {
5802 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5803 return 0;
5804 }
5805
5806 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5807 Loc, Sema::LookupOrdinaryName);
5808 if (!S.LookupQualifiedName(Result, Std)) {
5809 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5810 return 0;
5811 }
5812 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5813 if (!Template) {
5814 Result.suppressDiagnostics();
5815 // We found something weird. Complain about the first thing we found.
5816 NamedDecl *Found = *Result.begin();
5817 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5818 return 0;
5819 }
5820
5821 // We found some template called std::initializer_list. Now verify that it's
5822 // correct.
5823 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005824 if (Params->getMinRequiredArguments() != 1 ||
5825 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005826 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5827 return 0;
5828 }
5829
5830 return Template;
5831}
5832
5833QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5834 if (!StdInitializerList) {
5835 StdInitializerList = LookupStdInitializerList(*this, Loc);
5836 if (!StdInitializerList)
5837 return QualType();
5838 }
5839
5840 TemplateArgumentListInfo Args(Loc, Loc);
5841 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5842 Context.getTrivialTypeSourceInfo(Element,
5843 Loc)));
5844 return Context.getCanonicalType(
5845 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5846}
5847
Sebastian Redl98d36062012-01-17 22:50:14 +00005848bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5849 // C++ [dcl.init.list]p2:
5850 // A constructor is an initializer-list constructor if its first parameter
5851 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5852 // std::initializer_list<E> for some type E, and either there are no other
5853 // parameters or else all other parameters have default arguments.
5854 if (Ctor->getNumParams() < 1 ||
5855 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5856 return false;
5857
5858 QualType ArgType = Ctor->getParamDecl(0)->getType();
5859 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5860 ArgType = RT->getPointeeType().getUnqualifiedType();
5861
5862 return isStdInitializerList(ArgType, 0);
5863}
5864
Douglas Gregor9172aa62011-03-26 22:25:30 +00005865/// \brief Determine whether a using statement is in a context where it will be
5866/// apply in all contexts.
5867static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5868 switch (CurContext->getDeclKind()) {
5869 case Decl::TranslationUnit:
5870 return true;
5871 case Decl::LinkageSpec:
5872 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5873 default:
5874 return false;
5875 }
5876}
5877
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005878namespace {
5879
5880// Callback to only accept typo corrections that are namespaces.
5881class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5882 public:
5883 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5884 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5885 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5886 }
5887 return false;
5888 }
5889};
5890
5891}
5892
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005893static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5894 CXXScopeSpec &SS,
5895 SourceLocation IdentLoc,
5896 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005897 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005898 R.clear();
5899 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005900 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005901 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005902 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5903 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005904 if (DeclContext *DC = S.computeDeclContext(SS, false))
5905 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5906 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00005907 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
5908 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005909 else
5910 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5911 << Ident << CorrectedQuotedStr
5912 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005913
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005914 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5915 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005916
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005917 R.addDecl(Corrected.getCorrectionDecl());
5918 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005919 }
5920 return false;
5921}
5922
John McCalld226f652010-08-21 09:40:31 +00005923Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005924 SourceLocation UsingLoc,
5925 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005926 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005927 SourceLocation IdentLoc,
5928 IdentifierInfo *NamespcName,
5929 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005930 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5931 assert(NamespcName && "Invalid NamespcName.");
5932 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005933
5934 // This can only happen along a recovery path.
5935 while (S->getFlags() & Scope::TemplateParamScope)
5936 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005937 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005938
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005939 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005940 NestedNameSpecifier *Qualifier = 0;
5941 if (SS.isSet())
5942 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5943
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005944 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005945 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5946 LookupParsedName(R, S, &SS);
5947 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005948 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005949
Douglas Gregor66992202010-06-29 17:53:46 +00005950 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005951 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005952 // Allow "using namespace std;" or "using namespace ::std;" even if
5953 // "std" hasn't been defined yet, for GCC compatibility.
5954 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5955 NamespcName->isStr("std")) {
5956 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005957 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005958 R.resolveKind();
5959 }
5960 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005961 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005962 }
5963
John McCallf36e02d2009-10-09 21:13:30 +00005964 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005965 NamedDecl *Named = R.getFoundDecl();
5966 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5967 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005968 // C++ [namespace.udir]p1:
5969 // A using-directive specifies that the names in the nominated
5970 // namespace can be used in the scope in which the
5971 // using-directive appears after the using-directive. During
5972 // unqualified name lookup (3.4.1), the names appear as if they
5973 // were declared in the nearest enclosing namespace which
5974 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005975 // namespace. [Note: in this context, "contains" means "contains
5976 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005977
5978 // Find enclosing context containing both using-directive and
5979 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005980 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005981 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5982 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5983 CommonAncestor = CommonAncestor->getParent();
5984
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005985 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005986 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005987 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005988
Douglas Gregor9172aa62011-03-26 22:25:30 +00005989 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005990 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005991 Diag(IdentLoc, diag::warn_using_directive_in_header);
5992 }
5993
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005994 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005995 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005996 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005997 }
5998
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005999 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00006000 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006001}
6002
6003void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006004 // If the scope has an associated entity and the using directive is at
6005 // namespace or translation unit scope, add the UsingDirectiveDecl into
6006 // its lookup structure so qualified name lookup can find it.
6007 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6008 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006009 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006010 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006011 // Otherwise, it is at block sope. The using-directives will affect lookup
6012 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006013 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006014}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006015
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006016
John McCalld226f652010-08-21 09:40:31 +00006017Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006018 AccessSpecifier AS,
6019 bool HasUsingKeyword,
6020 SourceLocation UsingLoc,
6021 CXXScopeSpec &SS,
6022 UnqualifiedId &Name,
6023 AttributeList *AttrList,
6024 bool IsTypeName,
6025 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006026 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006027
Douglas Gregor12c118a2009-11-04 16:30:06 +00006028 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006029 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006030 case UnqualifiedId::IK_Identifier:
6031 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006032 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006033 case UnqualifiedId::IK_ConversionFunctionId:
6034 break;
6035
6036 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006037 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006038 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006039 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00006040 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006041 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6042 // instead once inheriting constructors work.
6043 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006044 diag::err_using_decl_constructor)
6045 << SS.getRange();
6046
David Blaikie4e4d0842012-03-11 07:00:24 +00006047 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00006048
John McCalld226f652010-08-21 09:40:31 +00006049 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006050
6051 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006052 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006053 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006054 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006055
6056 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006057 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006058 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006059 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006060 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006061
6062 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6063 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006064 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006065 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006066
John McCall60fa3cf2009-12-11 02:10:03 +00006067 // Warn about using declarations.
6068 // TODO: store that the declaration was written without 'using' and
6069 // talk about access decls instead of using decls in the
6070 // diagnostics.
6071 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006072 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006073
6074 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006075 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006076 }
6077
Douglas Gregor56c04582010-12-16 00:46:58 +00006078 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6079 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6080 return 0;
6081
John McCall9488ea12009-11-17 05:59:44 +00006082 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006083 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006084 /* IsInstantiation */ false,
6085 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006086 if (UD)
6087 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006088
John McCalld226f652010-08-21 09:40:31 +00006089 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006090}
6091
Douglas Gregor09acc982010-07-07 23:08:52 +00006092/// \brief Determine whether a using declaration considers the given
6093/// declarations as "equivalent", e.g., if they are redeclarations of
6094/// the same entity or are both typedefs of the same type.
6095static bool
6096IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6097 bool &SuppressRedeclaration) {
6098 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6099 SuppressRedeclaration = false;
6100 return true;
6101 }
6102
Richard Smith162e1c12011-04-15 14:24:37 +00006103 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6104 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006105 SuppressRedeclaration = true;
6106 return Context.hasSameType(TD1->getUnderlyingType(),
6107 TD2->getUnderlyingType());
6108 }
6109
6110 return false;
6111}
6112
6113
John McCall9f54ad42009-12-10 09:41:52 +00006114/// Determines whether to create a using shadow decl for a particular
6115/// decl, given the set of decls existing prior to this using lookup.
6116bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6117 const LookupResult &Previous) {
6118 // Diagnose finding a decl which is not from a base class of the
6119 // current class. We do this now because there are cases where this
6120 // function will silently decide not to build a shadow decl, which
6121 // will pre-empt further diagnostics.
6122 //
6123 // We don't need to do this in C++0x because we do the check once on
6124 // the qualifier.
6125 //
6126 // FIXME: diagnose the following if we care enough:
6127 // struct A { int foo; };
6128 // struct B : A { using A::foo; };
6129 // template <class T> struct C : A {};
6130 // template <class T> struct D : C<T> { using B::foo; } // <---
6131 // This is invalid (during instantiation) in C++03 because B::foo
6132 // resolves to the using decl in B, which is not a base class of D<T>.
6133 // We can't diagnose it immediately because C<T> is an unknown
6134 // specialization. The UsingShadowDecl in D<T> then points directly
6135 // to A::foo, which will look well-formed when we instantiate.
6136 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00006137 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006138 DeclContext *OrigDC = Orig->getDeclContext();
6139
6140 // Handle enums and anonymous structs.
6141 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6142 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6143 while (OrigRec->isAnonymousStructOrUnion())
6144 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6145
6146 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6147 if (OrigDC == CurContext) {
6148 Diag(Using->getLocation(),
6149 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006150 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006151 Diag(Orig->getLocation(), diag::note_using_decl_target);
6152 return true;
6153 }
6154
Douglas Gregordc355712011-02-25 00:36:19 +00006155 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006156 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006157 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006158 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006159 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006160 Diag(Orig->getLocation(), diag::note_using_decl_target);
6161 return true;
6162 }
6163 }
6164
6165 if (Previous.empty()) return false;
6166
6167 NamedDecl *Target = Orig;
6168 if (isa<UsingShadowDecl>(Target))
6169 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6170
John McCalld7533ec2009-12-11 02:33:26 +00006171 // If the target happens to be one of the previous declarations, we
6172 // don't have a conflict.
6173 //
6174 // FIXME: but we might be increasing its access, in which case we
6175 // should redeclare it.
6176 NamedDecl *NonTag = 0, *Tag = 0;
6177 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6178 I != E; ++I) {
6179 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006180 bool Result;
6181 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6182 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006183
6184 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6185 }
6186
John McCall9f54ad42009-12-10 09:41:52 +00006187 if (Target->isFunctionOrFunctionTemplate()) {
6188 FunctionDecl *FD;
6189 if (isa<FunctionTemplateDecl>(Target))
6190 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6191 else
6192 FD = cast<FunctionDecl>(Target);
6193
6194 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006195 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006196 case Ovl_Overload:
6197 return false;
6198
6199 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006200 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006201 break;
6202
6203 // We found a decl with the exact signature.
6204 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006205 // If we're in a record, we want to hide the target, so we
6206 // return true (without a diagnostic) to tell the caller not to
6207 // build a shadow decl.
6208 if (CurContext->isRecord())
6209 return true;
6210
6211 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006212 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006213 break;
6214 }
6215
6216 Diag(Target->getLocation(), diag::note_using_decl_target);
6217 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6218 return true;
6219 }
6220
6221 // Target is not a function.
6222
John McCall9f54ad42009-12-10 09:41:52 +00006223 if (isa<TagDecl>(Target)) {
6224 // No conflict between a tag and a non-tag.
6225 if (!Tag) return false;
6226
John McCall41ce66f2009-12-10 19:51:03 +00006227 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006228 Diag(Target->getLocation(), diag::note_using_decl_target);
6229 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6230 return true;
6231 }
6232
6233 // No conflict between a tag and a non-tag.
6234 if (!NonTag) return false;
6235
John McCall41ce66f2009-12-10 19:51:03 +00006236 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006237 Diag(Target->getLocation(), diag::note_using_decl_target);
6238 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6239 return true;
6240}
6241
John McCall9488ea12009-11-17 05:59:44 +00006242/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006243UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006244 UsingDecl *UD,
6245 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006246
6247 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006248 NamedDecl *Target = Orig;
6249 if (isa<UsingShadowDecl>(Target)) {
6250 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6251 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006252 }
6253
6254 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006255 = UsingShadowDecl::Create(Context, CurContext,
6256 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006257 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006258
6259 Shadow->setAccess(UD->getAccess());
6260 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6261 Shadow->setInvalidDecl();
6262
John McCall9488ea12009-11-17 05:59:44 +00006263 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006264 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006265 else
John McCall604e7f12009-12-08 07:46:18 +00006266 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006267
John McCall604e7f12009-12-08 07:46:18 +00006268
John McCall9f54ad42009-12-10 09:41:52 +00006269 return Shadow;
6270}
John McCall604e7f12009-12-08 07:46:18 +00006271
John McCall9f54ad42009-12-10 09:41:52 +00006272/// Hides a using shadow declaration. This is required by the current
6273/// using-decl implementation when a resolvable using declaration in a
6274/// class is followed by a declaration which would hide or override
6275/// one or more of the using decl's targets; for example:
6276///
6277/// struct Base { void foo(int); };
6278/// struct Derived : Base {
6279/// using Base::foo;
6280/// void foo(int);
6281/// };
6282///
6283/// The governing language is C++03 [namespace.udecl]p12:
6284///
6285/// When a using-declaration brings names from a base class into a
6286/// derived class scope, member functions in the derived class
6287/// override and/or hide member functions with the same name and
6288/// parameter types in a base class (rather than conflicting).
6289///
6290/// There are two ways to implement this:
6291/// (1) optimistically create shadow decls when they're not hidden
6292/// by existing declarations, or
6293/// (2) don't create any shadow decls (or at least don't make them
6294/// visible) until we've fully parsed/instantiated the class.
6295/// The problem with (1) is that we might have to retroactively remove
6296/// a shadow decl, which requires several O(n) operations because the
6297/// decl structures are (very reasonably) not designed for removal.
6298/// (2) avoids this but is very fiddly and phase-dependent.
6299void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006300 if (Shadow->getDeclName().getNameKind() ==
6301 DeclarationName::CXXConversionFunctionName)
6302 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6303
John McCall9f54ad42009-12-10 09:41:52 +00006304 // Remove it from the DeclContext...
6305 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006306
John McCall9f54ad42009-12-10 09:41:52 +00006307 // ...and the scope, if applicable...
6308 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006309 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006310 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006311 }
6312
John McCall9f54ad42009-12-10 09:41:52 +00006313 // ...and the using decl.
6314 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6315
6316 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006317 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006318}
6319
John McCall7ba107a2009-11-18 02:36:19 +00006320/// Builds a using declaration.
6321///
6322/// \param IsInstantiation - Whether this call arises from an
6323/// instantiation of an unresolved using declaration. We treat
6324/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006325NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6326 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006327 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006328 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006329 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006330 bool IsInstantiation,
6331 bool IsTypeName,
6332 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006333 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006334 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006335 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006336
Anders Carlsson550b14b2009-08-28 05:49:21 +00006337 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006338
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006339 if (SS.isEmpty()) {
6340 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006341 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006342 }
Mike Stump1eb44332009-09-09 15:08:12 +00006343
John McCall9f54ad42009-12-10 09:41:52 +00006344 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006345 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006346 ForRedeclaration);
6347 Previous.setHideTags(false);
6348 if (S) {
6349 LookupName(Previous, S);
6350
6351 // It is really dumb that we have to do this.
6352 LookupResult::Filter F = Previous.makeFilter();
6353 while (F.hasNext()) {
6354 NamedDecl *D = F.next();
6355 if (!isDeclInScope(D, CurContext, S))
6356 F.erase();
6357 }
6358 F.done();
6359 } else {
6360 assert(IsInstantiation && "no scope in non-instantiation");
6361 assert(CurContext->isRecord() && "scope not record in instantiation");
6362 LookupQualifiedName(Previous, CurContext);
6363 }
6364
John McCall9f54ad42009-12-10 09:41:52 +00006365 // Check for invalid redeclarations.
6366 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6367 return 0;
6368
6369 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006370 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6371 return 0;
6372
John McCallaf8e6ed2009-11-12 03:15:40 +00006373 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006374 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006375 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006376 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006377 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006378 // FIXME: not all declaration name kinds are legal here
6379 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6380 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006381 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006382 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006383 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006384 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6385 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006386 }
John McCalled976492009-12-04 22:46:56 +00006387 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006388 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6389 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006390 }
John McCalled976492009-12-04 22:46:56 +00006391 D->setAccess(AS);
6392 CurContext->addDecl(D);
6393
6394 if (!LookupContext) return D;
6395 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006396
John McCall77bb1aa2010-05-01 00:40:08 +00006397 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006398 UD->setInvalidDecl();
6399 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006400 }
6401
Richard Smithc5a89a12012-04-02 01:30:27 +00006402 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006403 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006404 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006405 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006406 return UD;
6407 }
6408
6409 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006410
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006411 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006412
John McCall604e7f12009-12-08 07:46:18 +00006413 // Unlike most lookups, we don't always want to hide tag
6414 // declarations: tag names are visible through the using declaration
6415 // even if hidden by ordinary names, *except* in a dependent context
6416 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006417 if (!IsInstantiation)
6418 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006419
John McCallb9abd8722012-04-07 03:04:20 +00006420 // For the purposes of this lookup, we have a base object type
6421 // equal to that of the current context.
6422 if (CurContext->isRecord()) {
6423 R.setBaseObjectType(
6424 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6425 }
6426
John McCalla24dc2e2009-11-17 02:14:36 +00006427 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006428
John McCallf36e02d2009-10-09 21:13:30 +00006429 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006430 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006431 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006432 UD->setInvalidDecl();
6433 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006434 }
6435
John McCalled976492009-12-04 22:46:56 +00006436 if (R.isAmbiguous()) {
6437 UD->setInvalidDecl();
6438 return UD;
6439 }
Mike Stump1eb44332009-09-09 15:08:12 +00006440
John McCall7ba107a2009-11-18 02:36:19 +00006441 if (IsTypeName) {
6442 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006443 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006444 Diag(IdentLoc, diag::err_using_typename_non_type);
6445 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6446 Diag((*I)->getUnderlyingDecl()->getLocation(),
6447 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006448 UD->setInvalidDecl();
6449 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006450 }
6451 } else {
6452 // If we asked for a non-typename and we got a type, error out,
6453 // but only if this is an instantiation of an unresolved using
6454 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006455 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006456 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6457 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006458 UD->setInvalidDecl();
6459 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006460 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006461 }
6462
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006463 // C++0x N2914 [namespace.udecl]p6:
6464 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006465 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006466 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6467 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006468 UD->setInvalidDecl();
6469 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006470 }
Mike Stump1eb44332009-09-09 15:08:12 +00006471
John McCall9f54ad42009-12-10 09:41:52 +00006472 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6473 if (!CheckUsingShadowDecl(UD, *I, Previous))
6474 BuildUsingShadowDecl(S, UD, *I);
6475 }
John McCall9488ea12009-11-17 05:59:44 +00006476
6477 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006478}
6479
Sebastian Redlf677ea32011-02-05 19:23:19 +00006480/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006481bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6482 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006483
Douglas Gregordc355712011-02-25 00:36:19 +00006484 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006485 assert(SourceType &&
6486 "Using decl naming constructor doesn't have type in scope spec.");
6487 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6488
6489 // Check whether the named type is a direct base class.
6490 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6491 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6492 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6493 BaseIt != BaseE; ++BaseIt) {
6494 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6495 if (CanonicalSourceType == BaseType)
6496 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006497 if (BaseIt->getType()->isDependentType())
6498 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006499 }
6500
6501 if (BaseIt == BaseE) {
6502 // Did not find SourceType in the bases.
6503 Diag(UD->getUsingLocation(),
6504 diag::err_using_decl_constructor_not_in_direct_base)
6505 << UD->getNameInfo().getSourceRange()
6506 << QualType(SourceType, 0) << TargetClass;
6507 return true;
6508 }
6509
Richard Smithc5a89a12012-04-02 01:30:27 +00006510 if (!CurContext->isDependentContext())
6511 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006512
6513 return false;
6514}
6515
John McCall9f54ad42009-12-10 09:41:52 +00006516/// Checks that the given using declaration is not an invalid
6517/// redeclaration. Note that this is checking only for the using decl
6518/// itself, not for any ill-formedness among the UsingShadowDecls.
6519bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6520 bool isTypeName,
6521 const CXXScopeSpec &SS,
6522 SourceLocation NameLoc,
6523 const LookupResult &Prev) {
6524 // C++03 [namespace.udecl]p8:
6525 // C++0x [namespace.udecl]p10:
6526 // A using-declaration is a declaration and can therefore be used
6527 // repeatedly where (and only where) multiple declarations are
6528 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006529 //
John McCall8a726212010-11-29 18:01:58 +00006530 // That's in non-member contexts.
6531 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006532 return false;
6533
6534 NestedNameSpecifier *Qual
6535 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6536
6537 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6538 NamedDecl *D = *I;
6539
6540 bool DTypename;
6541 NestedNameSpecifier *DQual;
6542 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6543 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006544 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006545 } else if (UnresolvedUsingValueDecl *UD
6546 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6547 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006548 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006549 } else if (UnresolvedUsingTypenameDecl *UD
6550 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6551 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006552 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006553 } else continue;
6554
6555 // using decls differ if one says 'typename' and the other doesn't.
6556 // FIXME: non-dependent using decls?
6557 if (isTypeName != DTypename) continue;
6558
6559 // using decls differ if they name different scopes (but note that
6560 // template instantiation can cause this check to trigger when it
6561 // didn't before instantiation).
6562 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6563 Context.getCanonicalNestedNameSpecifier(DQual))
6564 continue;
6565
6566 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006567 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006568 return true;
6569 }
6570
6571 return false;
6572}
6573
John McCall604e7f12009-12-08 07:46:18 +00006574
John McCalled976492009-12-04 22:46:56 +00006575/// Checks that the given nested-name qualifier used in a using decl
6576/// in the current context is appropriately related to the current
6577/// scope. If an error is found, diagnoses it and returns true.
6578bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6579 const CXXScopeSpec &SS,
6580 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006581 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006582
John McCall604e7f12009-12-08 07:46:18 +00006583 if (!CurContext->isRecord()) {
6584 // C++03 [namespace.udecl]p3:
6585 // C++0x [namespace.udecl]p8:
6586 // A using-declaration for a class member shall be a member-declaration.
6587
6588 // If we weren't able to compute a valid scope, it must be a
6589 // dependent class scope.
6590 if (!NamedContext || NamedContext->isRecord()) {
6591 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6592 << SS.getRange();
6593 return true;
6594 }
6595
6596 // Otherwise, everything is known to be fine.
6597 return false;
6598 }
6599
6600 // The current scope is a record.
6601
6602 // If the named context is dependent, we can't decide much.
6603 if (!NamedContext) {
6604 // FIXME: in C++0x, we can diagnose if we can prove that the
6605 // nested-name-specifier does not refer to a base class, which is
6606 // still possible in some cases.
6607
6608 // Otherwise we have to conservatively report that things might be
6609 // okay.
6610 return false;
6611 }
6612
6613 if (!NamedContext->isRecord()) {
6614 // Ideally this would point at the last name in the specifier,
6615 // but we don't have that level of source info.
6616 Diag(SS.getRange().getBegin(),
6617 diag::err_using_decl_nested_name_specifier_is_not_class)
6618 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6619 return true;
6620 }
6621
Douglas Gregor6fb07292010-12-21 07:41:49 +00006622 if (!NamedContext->isDependentContext() &&
6623 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6624 return true;
6625
David Blaikie4e4d0842012-03-11 07:00:24 +00006626 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006627 // C++0x [namespace.udecl]p3:
6628 // In a using-declaration used as a member-declaration, the
6629 // nested-name-specifier shall name a base class of the class
6630 // being defined.
6631
6632 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6633 cast<CXXRecordDecl>(NamedContext))) {
6634 if (CurContext == NamedContext) {
6635 Diag(NameLoc,
6636 diag::err_using_decl_nested_name_specifier_is_current_class)
6637 << SS.getRange();
6638 return true;
6639 }
6640
6641 Diag(SS.getRange().getBegin(),
6642 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6643 << (NestedNameSpecifier*) SS.getScopeRep()
6644 << cast<CXXRecordDecl>(CurContext)
6645 << SS.getRange();
6646 return true;
6647 }
6648
6649 return false;
6650 }
6651
6652 // C++03 [namespace.udecl]p4:
6653 // A using-declaration used as a member-declaration shall refer
6654 // to a member of a base class of the class being defined [etc.].
6655
6656 // Salient point: SS doesn't have to name a base class as long as
6657 // lookup only finds members from base classes. Therefore we can
6658 // diagnose here only if we can prove that that can't happen,
6659 // i.e. if the class hierarchies provably don't intersect.
6660
6661 // TODO: it would be nice if "definitely valid" results were cached
6662 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6663 // need to be repeated.
6664
6665 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006666 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006667
6668 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6669 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6670 Data->Bases.insert(Base);
6671 return true;
6672 }
6673
6674 bool hasDependentBases(const CXXRecordDecl *Class) {
6675 return !Class->forallBases(collect, this);
6676 }
6677
6678 /// Returns true if the base is dependent or is one of the
6679 /// accumulated base classes.
6680 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6681 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6682 return !Data->Bases.count(Base);
6683 }
6684
6685 bool mightShareBases(const CXXRecordDecl *Class) {
6686 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6687 }
6688 };
6689
6690 UserData Data;
6691
6692 // Returns false if we find a dependent base.
6693 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6694 return false;
6695
6696 // Returns false if the class has a dependent base or if it or one
6697 // of its bases is present in the base set of the current context.
6698 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6699 return false;
6700
6701 Diag(SS.getRange().getBegin(),
6702 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6703 << (NestedNameSpecifier*) SS.getScopeRep()
6704 << cast<CXXRecordDecl>(CurContext)
6705 << SS.getRange();
6706
6707 return true;
John McCalled976492009-12-04 22:46:56 +00006708}
6709
Richard Smith162e1c12011-04-15 14:24:37 +00006710Decl *Sema::ActOnAliasDeclaration(Scope *S,
6711 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006712 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006713 SourceLocation UsingLoc,
6714 UnqualifiedId &Name,
6715 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006716 // Skip up to the relevant declaration scope.
6717 while (S->getFlags() & Scope::TemplateParamScope)
6718 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006719 assert((S->getFlags() & Scope::DeclScope) &&
6720 "got alias-declaration outside of declaration scope");
6721
6722 if (Type.isInvalid())
6723 return 0;
6724
6725 bool Invalid = false;
6726 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6727 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006728 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006729
6730 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6731 return 0;
6732
6733 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006734 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006735 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006736 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6737 TInfo->getTypeLoc().getBeginLoc());
6738 }
Richard Smith162e1c12011-04-15 14:24:37 +00006739
6740 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6741 LookupName(Previous, S);
6742
6743 // Warn about shadowing the name of a template parameter.
6744 if (Previous.isSingleResult() &&
6745 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006746 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006747 Previous.clear();
6748 }
6749
6750 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6751 "name in alias declaration must be an identifier");
6752 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6753 Name.StartLocation,
6754 Name.Identifier, TInfo);
6755
6756 NewTD->setAccess(AS);
6757
6758 if (Invalid)
6759 NewTD->setInvalidDecl();
6760
Richard Smith3e4c6c42011-05-05 21:57:07 +00006761 CheckTypedefForVariablyModifiedType(S, NewTD);
6762 Invalid |= NewTD->isInvalidDecl();
6763
Richard Smith162e1c12011-04-15 14:24:37 +00006764 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006765
6766 NamedDecl *NewND;
6767 if (TemplateParamLists.size()) {
6768 TypeAliasTemplateDecl *OldDecl = 0;
6769 TemplateParameterList *OldTemplateParams = 0;
6770
6771 if (TemplateParamLists.size() != 1) {
6772 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006773 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6774 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006775 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006776 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006777
6778 // Only consider previous declarations in the same scope.
6779 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6780 /*ExplicitInstantiationOrSpecialization*/false);
6781 if (!Previous.empty()) {
6782 Redeclaration = true;
6783
6784 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6785 if (!OldDecl && !Invalid) {
6786 Diag(UsingLoc, diag::err_redefinition_different_kind)
6787 << Name.Identifier;
6788
6789 NamedDecl *OldD = Previous.getRepresentativeDecl();
6790 if (OldD->getLocation().isValid())
6791 Diag(OldD->getLocation(), diag::note_previous_definition);
6792
6793 Invalid = true;
6794 }
6795
6796 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6797 if (TemplateParameterListsAreEqual(TemplateParams,
6798 OldDecl->getTemplateParameters(),
6799 /*Complain=*/true,
6800 TPL_TemplateMatch))
6801 OldTemplateParams = OldDecl->getTemplateParameters();
6802 else
6803 Invalid = true;
6804
6805 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6806 if (!Invalid &&
6807 !Context.hasSameType(OldTD->getUnderlyingType(),
6808 NewTD->getUnderlyingType())) {
6809 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6810 // but we can't reasonably accept it.
6811 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6812 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6813 if (OldTD->getLocation().isValid())
6814 Diag(OldTD->getLocation(), diag::note_previous_definition);
6815 Invalid = true;
6816 }
6817 }
6818 }
6819
6820 // Merge any previous default template arguments into our parameters,
6821 // and check the parameter list.
6822 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6823 TPC_TypeAliasTemplate))
6824 return 0;
6825
6826 TypeAliasTemplateDecl *NewDecl =
6827 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6828 Name.Identifier, TemplateParams,
6829 NewTD);
6830
6831 NewDecl->setAccess(AS);
6832
6833 if (Invalid)
6834 NewDecl->setInvalidDecl();
6835 else if (OldDecl)
6836 NewDecl->setPreviousDeclaration(OldDecl);
6837
6838 NewND = NewDecl;
6839 } else {
6840 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6841 NewND = NewTD;
6842 }
Richard Smith162e1c12011-04-15 14:24:37 +00006843
6844 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006845 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006846
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006847 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006848 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006849}
6850
John McCalld226f652010-08-21 09:40:31 +00006851Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006852 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006853 SourceLocation AliasLoc,
6854 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006855 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006856 SourceLocation IdentLoc,
6857 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006858
Anders Carlsson81c85c42009-03-28 23:53:49 +00006859 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006860 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6861 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006862
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006863 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006864 NamedDecl *PrevDecl
6865 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6866 ForRedeclaration);
6867 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6868 PrevDecl = 0;
6869
6870 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006871 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006872 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006873 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006874 // FIXME: At some point, we'll want to create the (redundant)
6875 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006876 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006877 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006878 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006879 }
Mike Stump1eb44332009-09-09 15:08:12 +00006880
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006881 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6882 diag::err_redefinition_different_kind;
6883 Diag(AliasLoc, DiagID) << Alias;
6884 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006885 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006886 }
6887
John McCalla24dc2e2009-11-17 02:14:36 +00006888 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006889 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006890
John McCallf36e02d2009-10-09 21:13:30 +00006891 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006892 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006893 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006894 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006895 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006896 }
Mike Stump1eb44332009-09-09 15:08:12 +00006897
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006898 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006899 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006900 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006901 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006902
John McCall3dbd3d52010-02-16 06:53:13 +00006903 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006904 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006905}
6906
Sean Hunt001cad92011-05-10 00:49:42 +00006907Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006908Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6909 CXXMethodDecl *MD) {
6910 CXXRecordDecl *ClassDecl = MD->getParent();
6911
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006912 // C++ [except.spec]p14:
6913 // An implicitly declared special member function (Clause 12) shall have an
6914 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006915 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006916 if (ClassDecl->isInvalidDecl())
6917 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006918
Sebastian Redl60618fa2011-03-12 11:50:43 +00006919 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006920 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6921 BEnd = ClassDecl->bases_end();
6922 B != BEnd; ++B) {
6923 if (B->isVirtual()) // Handled below.
6924 continue;
6925
Douglas Gregor18274032010-07-03 00:47:00 +00006926 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6927 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006928 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6929 // If this is a deleted function, add it anyway. This might be conformant
6930 // with the standard. This might not. I'm not sure. It might not matter.
6931 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006932 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006933 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006934 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006935
6936 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006937 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6938 BEnd = ClassDecl->vbases_end();
6939 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006940 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6941 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006942 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6943 // If this is a deleted function, add it anyway. This might be conformant
6944 // with the standard. This might not. I'm not sure. It might not matter.
6945 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006946 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006947 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006948 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006949
6950 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006951 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6952 FEnd = ClassDecl->field_end();
6953 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006954 if (F->hasInClassInitializer()) {
6955 if (Expr *E = F->getInClassInitializer())
6956 ExceptSpec.CalledExpr(E);
6957 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006958 // DR1351:
6959 // If the brace-or-equal-initializer of a non-static data member
6960 // invokes a defaulted default constructor of its class or of an
6961 // enclosing class in a potentially evaluated subexpression, the
6962 // program is ill-formed.
6963 //
6964 // This resolution is unworkable: the exception specification of the
6965 // default constructor can be needed in an unevaluated context, in
6966 // particular, in the operand of a noexcept-expression, and we can be
6967 // unable to compute an exception specification for an enclosed class.
6968 //
6969 // We do not allow an in-class initializer to require the evaluation
6970 // of the exception specification for any in-class initializer whose
6971 // definition is not lexically complete.
6972 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006973 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006974 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006975 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6976 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6977 // If this is a deleted function, add it anyway. This might be conformant
6978 // with the standard. This might not. I'm not sure. It might not matter.
6979 // In particular, the problem is that this function never gets called. It
6980 // might just be ill-formed because this function attempts to refer to
6981 // a deleted function here.
6982 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006983 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006984 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006985 }
John McCalle23cf432010-12-14 08:05:40 +00006986
Sean Hunt001cad92011-05-10 00:49:42 +00006987 return ExceptSpec;
6988}
6989
Richard Smithafb49182012-11-29 01:34:07 +00006990namespace {
6991/// RAII object to register a special member as being currently declared.
6992struct DeclaringSpecialMember {
6993 Sema &S;
6994 Sema::SpecialMemberDecl D;
6995 bool WasAlreadyBeingDeclared;
6996
6997 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
6998 : S(S), D(RD, CSM) {
6999 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
7000 if (WasAlreadyBeingDeclared)
7001 // This almost never happens, but if it does, ensure that our cache
7002 // doesn't contain a stale result.
7003 S.SpecialMemberCache.clear();
7004
7005 // FIXME: Register a note to be produced if we encounter an error while
7006 // declaring the special member.
7007 }
7008 ~DeclaringSpecialMember() {
7009 if (!WasAlreadyBeingDeclared)
7010 S.SpecialMembersBeingDeclared.erase(D);
7011 }
7012
7013 /// \brief Are we already trying to declare this special member?
7014 bool isAlreadyBeingDeclared() const {
7015 return WasAlreadyBeingDeclared;
7016 }
7017};
7018}
7019
Sean Hunt001cad92011-05-10 00:49:42 +00007020CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
7021 CXXRecordDecl *ClassDecl) {
7022 // C++ [class.ctor]p5:
7023 // A default constructor for a class X is a constructor of class X
7024 // that can be called without an argument. If there is no
7025 // user-declared constructor for class X, a default constructor is
7026 // implicitly declared. An implicitly-declared default constructor
7027 // is an inline public member of its class.
Richard Smithd0adeb62012-11-27 21:20:31 +00007028 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00007029 "Should not build implicit default constructor!");
7030
Richard Smithafb49182012-11-29 01:34:07 +00007031 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
7032 if (DSM.isAlreadyBeingDeclared())
7033 return 0;
7034
Richard Smith7756afa2012-06-10 05:43:50 +00007035 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
7036 CXXDefaultConstructor,
7037 false);
7038
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007039 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007040 CanQualType ClassType
7041 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007042 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007043 DeclarationName Name
7044 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007045 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007046 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007047 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007048 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007049 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007050 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007051 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007052 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00007053 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007054
7055 // Build an exception specification pointing back at this constructor.
7056 FunctionProtoType::ExtProtoInfo EPI;
7057 EPI.ExceptionSpecType = EST_Unevaluated;
7058 EPI.ExceptionSpecDecl = DefaultCon;
7059 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7060
Douglas Gregor18274032010-07-03 00:47:00 +00007061 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007062 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
7063
Douglas Gregor23c94db2010-07-02 17:43:08 +00007064 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007065 PushOnScopeChains(DefaultCon, S, false);
7066 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007067
Sean Hunte16da072011-10-10 06:18:57 +00007068 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00007069 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00007070
Douglas Gregor32df23e2010-07-01 22:02:46 +00007071 return DefaultCon;
7072}
7073
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007074void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7075 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007076 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007077 !Constructor->doesThisDeclarationHaveABody() &&
7078 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007079 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007080
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007081 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007082 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007083
Eli Friedman9a14db32012-10-18 20:14:08 +00007084 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007085 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007086 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007087 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007088 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007089 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007090 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007091 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007092 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007093
7094 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007095 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007096
7097 Constructor->setUsed();
7098 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007099
7100 if (ASTMutationListener *L = getASTMutationListener()) {
7101 L->CompletedImplicitDefinition(Constructor);
7102 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007103}
7104
Richard Smith7a614d82011-06-11 17:19:42 +00007105void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7106 if (!D) return;
7107 AdjustDeclIfTemplate(D);
7108
7109 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00007110
Richard Smithb9d0b762012-07-27 04:22:15 +00007111 if (!ClassDecl->isDependentType())
7112 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00007113}
7114
Sebastian Redlf677ea32011-02-05 19:23:19 +00007115void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7116 // We start with an initial pass over the base classes to collect those that
7117 // inherit constructors from. If there are none, we can forgo all further
7118 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007119 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007120 BasesVector BasesToInheritFrom;
7121 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7122 BaseE = ClassDecl->bases_end();
7123 BaseIt != BaseE; ++BaseIt) {
7124 if (BaseIt->getInheritConstructors()) {
7125 QualType Base = BaseIt->getType();
7126 if (Base->isDependentType()) {
7127 // If we inherit constructors from anything that is dependent, just
7128 // abort processing altogether. We'll get another chance for the
7129 // instantiations.
7130 return;
7131 }
7132 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7133 }
7134 }
7135 if (BasesToInheritFrom.empty())
7136 return;
7137
7138 // Now collect the constructors that we already have in the current class.
7139 // Those take precedence over inherited constructors.
7140 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7141 // unless there is a user-declared constructor with the same signature in
7142 // the class where the using-declaration appears.
7143 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7144 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7145 CtorE = ClassDecl->ctor_end();
7146 CtorIt != CtorE; ++CtorIt) {
7147 ExistingConstructors.insert(
7148 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7149 }
7150
Sebastian Redlf677ea32011-02-05 19:23:19 +00007151 DeclarationName CreatedCtorName =
7152 Context.DeclarationNames.getCXXConstructorName(
7153 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7154
7155 // Now comes the true work.
7156 // First, we keep a map from constructor types to the base that introduced
7157 // them. Needed for finding conflicting constructors. We also keep the
7158 // actually inserted declarations in there, for pretty diagnostics.
7159 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7160 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7161 ConstructorToSourceMap InheritedConstructors;
7162 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7163 BaseE = BasesToInheritFrom.end();
7164 BaseIt != BaseE; ++BaseIt) {
7165 const RecordType *Base = *BaseIt;
7166 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7167 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7168 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7169 CtorE = BaseDecl->ctor_end();
7170 CtorIt != CtorE; ++CtorIt) {
7171 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007172 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007173 DeclarationName Name =
7174 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007175 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7176 LookupQualifiedName(Result, CurContext);
7177 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007178 SourceLocation UsingLoc = UD ? UD->getLocation() :
7179 ClassDecl->getLocation();
7180
7181 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7182 // from the class X named in the using-declaration consists of actual
7183 // constructors and notional constructors that result from the
7184 // transformation of defaulted parameters as follows:
7185 // - all non-template default constructors of X, and
7186 // - for each non-template constructor of X that has at least one
7187 // parameter with a default argument, the set of constructors that
7188 // results from omitting any ellipsis parameter specification and
7189 // successively omitting parameters with a default argument from the
7190 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007191 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007192 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7193 const FunctionProtoType *BaseCtorType =
7194 BaseCtor->getType()->getAs<FunctionProtoType>();
7195
7196 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7197 maxParams = BaseCtor->getNumParams();
7198 params <= maxParams; ++params) {
7199 // Skip default constructors. They're never inherited.
7200 if (params == 0)
7201 continue;
7202 // Skip copy and move constructors for the same reason.
7203 if (CanBeCopyOrMove && params == 1)
7204 continue;
7205
7206 // Build up a function type for this particular constructor.
7207 // FIXME: The working paper does not consider that the exception spec
7208 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007209 // source. This code doesn't yet, either. When it does, this code will
7210 // need to be delayed until after exception specifications and in-class
7211 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007212 const Type *NewCtorType;
7213 if (params == maxParams)
7214 NewCtorType = BaseCtorType;
7215 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007216 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007217 for (unsigned i = 0; i < params; ++i) {
7218 Args.push_back(BaseCtorType->getArgType(i));
7219 }
7220 FunctionProtoType::ExtProtoInfo ExtInfo =
7221 BaseCtorType->getExtProtoInfo();
7222 ExtInfo.Variadic = false;
7223 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7224 Args.data(), params, ExtInfo)
7225 .getTypePtr();
7226 }
7227 const Type *CanonicalNewCtorType =
7228 Context.getCanonicalType(NewCtorType);
7229
7230 // Now that we have the type, first check if the class already has a
7231 // constructor with this signature.
7232 if (ExistingConstructors.count(CanonicalNewCtorType))
7233 continue;
7234
7235 // Then we check if we have already declared an inherited constructor
7236 // with this signature.
7237 std::pair<ConstructorToSourceMap::iterator, bool> result =
7238 InheritedConstructors.insert(std::make_pair(
7239 CanonicalNewCtorType,
7240 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7241 if (!result.second) {
7242 // Already in the map. If it came from a different class, that's an
7243 // error. Not if it's from the same.
7244 CanQualType PreviousBase = result.first->second.first;
7245 if (CanonicalBase != PreviousBase) {
7246 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7247 const CXXConstructorDecl *PrevBaseCtor =
7248 PrevCtor->getInheritedConstructor();
7249 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7250
7251 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7252 Diag(BaseCtor->getLocation(),
7253 diag::note_using_decl_constructor_conflict_current_ctor);
7254 Diag(PrevBaseCtor->getLocation(),
7255 diag::note_using_decl_constructor_conflict_previous_ctor);
7256 Diag(PrevCtor->getLocation(),
7257 diag::note_using_decl_constructor_conflict_previous_using);
7258 }
7259 continue;
7260 }
7261
7262 // OK, we're there, now add the constructor.
7263 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007264 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007265 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7266 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007267 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7268 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007269 /*ImplicitlyDeclared=*/true,
7270 // FIXME: Due to a defect in the standard, we treat inherited
7271 // constructors as constexpr even if that makes them ill-formed.
7272 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007273 NewCtor->setAccess(BaseCtor->getAccess());
7274
7275 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007276 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007277 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007278 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7279 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007280 /*IdentifierInfo=*/0,
7281 BaseCtorType->getArgType(i),
7282 /*TInfo=*/0, SC_None,
7283 SC_None, /*DefaultArg=*/0));
7284 }
David Blaikie4278c652011-09-21 18:16:56 +00007285 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007286 NewCtor->setInheritedConstructor(BaseCtor);
7287
Sebastian Redlf677ea32011-02-05 19:23:19 +00007288 ClassDecl->addDecl(NewCtor);
7289 result.first->second.second = NewCtor;
7290 }
7291 }
7292 }
7293}
7294
Sean Huntcb45a0f2011-05-12 22:46:25 +00007295Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007296Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7297 CXXRecordDecl *ClassDecl = MD->getParent();
7298
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007299 // C++ [except.spec]p14:
7300 // An implicitly declared special member function (Clause 12) shall have
7301 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007302 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007303 if (ClassDecl->isInvalidDecl())
7304 return ExceptSpec;
7305
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007306 // Direct base-class destructors.
7307 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7308 BEnd = ClassDecl->bases_end();
7309 B != BEnd; ++B) {
7310 if (B->isVirtual()) // Handled below.
7311 continue;
7312
7313 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007314 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007315 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007316 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007317
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007318 // Virtual base-class destructors.
7319 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7320 BEnd = ClassDecl->vbases_end();
7321 B != BEnd; ++B) {
7322 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007323 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007324 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007325 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007326
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007327 // Field destructors.
7328 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7329 FEnd = ClassDecl->field_end();
7330 F != FEnd; ++F) {
7331 if (const RecordType *RecordTy
7332 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007333 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007334 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007335 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007336
Sean Huntcb45a0f2011-05-12 22:46:25 +00007337 return ExceptSpec;
7338}
7339
7340CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7341 // C++ [class.dtor]p2:
7342 // If a class has no user-declared destructor, a destructor is
7343 // declared implicitly. An implicitly-declared destructor is an
7344 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00007345 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00007346
Richard Smithafb49182012-11-29 01:34:07 +00007347 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
7348 if (DSM.isAlreadyBeingDeclared())
7349 return 0;
7350
Douglas Gregor4923aa22010-07-02 20:37:36 +00007351 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007352 CanQualType ClassType
7353 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007354 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007355 DeclarationName Name
7356 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007357 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007358 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007359 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7360 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007361 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007362 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007363 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007364 Destructor->setImplicit();
7365 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007366
7367 // Build an exception specification pointing back at this destructor.
7368 FunctionProtoType::ExtProtoInfo EPI;
7369 EPI.ExceptionSpecType = EST_Unevaluated;
7370 EPI.ExceptionSpecDecl = Destructor;
7371 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7372
Douglas Gregor4923aa22010-07-02 20:37:36 +00007373 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007374 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007375
Douglas Gregor4923aa22010-07-02 20:37:36 +00007376 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007377 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007378 PushOnScopeChains(Destructor, S, false);
7379 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007380
Richard Smith9a561d52012-02-26 09:11:52 +00007381 AddOverriddenMethods(ClassDecl, Destructor);
7382
Richard Smith7d5088a2012-02-18 02:02:13 +00007383 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007384 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007385
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007386 return Destructor;
7387}
7388
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007389void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007390 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007391 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007392 !Destructor->doesThisDeclarationHaveABody() &&
7393 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007394 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007395 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007396 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007397
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007398 if (Destructor->isInvalidDecl())
7399 return;
7400
Eli Friedman9a14db32012-10-18 20:14:08 +00007401 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007402
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007403 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007404 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7405 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007406
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007407 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007408 Diag(CurrentLocation, diag::note_member_synthesized_at)
7409 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7410
7411 Destructor->setInvalidDecl();
7412 return;
7413 }
7414
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007415 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007416 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007417 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007418 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007419 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007420
7421 if (ASTMutationListener *L = getASTMutationListener()) {
7422 L->CompletedImplicitDefinition(Destructor);
7423 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007424}
7425
Richard Smitha4156b82012-04-21 18:42:51 +00007426/// \brief Perform any semantic analysis which needs to be delayed until all
7427/// pending class member declarations have been parsed.
7428void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007429 // Perform any deferred checking of exception specifications for virtual
7430 // destructors.
7431 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7432 i != e; ++i) {
7433 const CXXDestructorDecl *Dtor =
7434 DelayedDestructorExceptionSpecChecks[i].first;
7435 assert(!Dtor->getParent()->isDependentType() &&
7436 "Should not ever add destructors of templates into the list.");
7437 CheckOverridingFunctionExceptionSpec(Dtor,
7438 DelayedDestructorExceptionSpecChecks[i].second);
7439 }
7440 DelayedDestructorExceptionSpecChecks.clear();
7441}
7442
Richard Smithb9d0b762012-07-27 04:22:15 +00007443void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7444 CXXDestructorDecl *Destructor) {
7445 assert(getLangOpts().CPlusPlus0x &&
7446 "adjusting dtor exception specs was introduced in c++11");
7447
Sebastian Redl0ee33912011-05-19 05:13:44 +00007448 // C++11 [class.dtor]p3:
7449 // A declaration of a destructor that does not have an exception-
7450 // specification is implicitly considered to have the same exception-
7451 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007452 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007453 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007454 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007455 return;
7456
Chandler Carruth3f224b22011-09-20 04:55:26 +00007457 // Replace the destructor's type, building off the existing one. Fortunately,
7458 // the only thing of interest in the destructor type is its extended info.
7459 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007460 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7461 EPI.ExceptionSpecType = EST_Unevaluated;
7462 EPI.ExceptionSpecDecl = Destructor;
7463 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007464
Sebastian Redl0ee33912011-05-19 05:13:44 +00007465 // FIXME: If the destructor has a body that could throw, and the newly created
7466 // spec doesn't allow exceptions, we should emit a warning, because this
7467 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007468 // However, we don't have a body or an exception specification yet, so it
7469 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007470}
7471
Richard Smith8c889532012-11-14 00:50:40 +00007472/// When generating a defaulted copy or move assignment operator, if a field
7473/// should be copied with __builtin_memcpy rather than via explicit assignments,
7474/// do so. This optimization only applies for arrays of scalars, and for arrays
7475/// of class type where the selected copy/move-assignment operator is trivial.
7476static StmtResult
7477buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7478 Expr *To, Expr *From) {
7479 // Compute the size of the memory buffer to be copied.
7480 QualType SizeType = S.Context.getSizeType();
7481 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7482 S.Context.getTypeSizeInChars(T).getQuantity());
7483
7484 // Take the address of the field references for "from" and "to". We
7485 // directly construct UnaryOperators here because semantic analysis
7486 // does not permit us to take the address of an xvalue.
7487 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7488 S.Context.getPointerType(From->getType()),
7489 VK_RValue, OK_Ordinary, Loc);
7490 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7491 S.Context.getPointerType(To->getType()),
7492 VK_RValue, OK_Ordinary, Loc);
7493
7494 const Type *E = T->getBaseElementTypeUnsafe();
7495 bool NeedsCollectableMemCpy =
7496 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7497
7498 // Create a reference to the __builtin_objc_memmove_collectable function
7499 StringRef MemCpyName = NeedsCollectableMemCpy ?
7500 "__builtin_objc_memmove_collectable" :
7501 "__builtin_memcpy";
7502 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7503 Sema::LookupOrdinaryName);
7504 S.LookupName(R, S.TUScope, true);
7505
7506 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7507 if (!MemCpy)
7508 // Something went horribly wrong earlier, and we will have complained
7509 // about it.
7510 return StmtError();
7511
7512 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7513 VK_RValue, Loc, 0);
7514 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7515
7516 Expr *CallArgs[] = {
7517 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7518 };
7519 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7520 Loc, CallArgs, Loc);
7521
7522 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7523 return S.Owned(Call.takeAs<Stmt>());
7524}
7525
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007526/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007527/// \c To.
7528///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007529/// This routine is used to copy/move the members of a class with an
7530/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007531/// copied are arrays, this routine builds for loops to copy them.
7532///
7533/// \param S The Sema object used for type-checking.
7534///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007535/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007536///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007537/// \param T The type of the expressions being copied/moved. Both expressions
7538/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007539///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007540/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007541///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007542/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007543///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007544/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007545/// Otherwise, it's a non-static member subobject.
7546///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007547/// \param Copying Whether we're copying or moving.
7548///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007549/// \param Depth Internal parameter recording the depth of the recursion.
7550///
Richard Smith8c889532012-11-14 00:50:40 +00007551/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7552/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007553static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007554buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7555 Expr *To, Expr *From,
7556 bool CopyingBaseSubobject, bool Copying,
7557 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007558 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007559 // Each subobject is assigned in the manner appropriate to its type:
7560 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007561 // - if the subobject is of class type, as if by a call to operator= with
7562 // the subobject as the object expression and the corresponding
7563 // subobject of x as a single function argument (as if by explicit
7564 // qualification; that is, ignoring any possible virtual overriding
7565 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00007566 //
7567 // C++03 [class.copy]p13:
7568 // - if the subobject is of class type, the copy assignment operator for
7569 // the class is used (as if by explicit qualification; that is,
7570 // ignoring any possible virtual overriding functions in more derived
7571 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007572 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7573 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00007574
Douglas Gregor06a9f362010-05-01 20:49:11 +00007575 // Look for operator=.
7576 DeclarationName Name
7577 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7578 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7579 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007580
Richard Smith044c8aa2012-11-13 00:54:12 +00007581 // Prior to C++11, filter out any result that isn't a copy/move-assignment
7582 // operator.
7583 if (!S.getLangOpts().CPlusPlus0x) {
7584 LookupResult::Filter F = OpLookup.makeFilter();
7585 while (F.hasNext()) {
7586 NamedDecl *D = F.next();
7587 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
7588 if (Method->isCopyAssignmentOperator() ||
7589 (!Copying && Method->isMoveAssignmentOperator()))
7590 continue;
7591
7592 F.erase();
7593 }
7594 F.done();
John McCallb0207482010-03-16 06:11:48 +00007595 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007596
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007597 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00007598 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007599 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00007600 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007601 // ambiguities), we need to cast "this" to that subobject type; to
7602 // ensure that we don't go through the virtual call mechanism, we need
7603 // to qualify the operator= name with the base class (see below). However,
7604 // this means that if the base class has a protected copy assignment
7605 // operator, the protected member access check will fail. So, we
7606 // rewrite "protected" access to "public" access in this case, since we
7607 // know by construction that we're calling from a derived class.
7608 if (CopyingBaseSubobject) {
7609 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7610 L != LEnd; ++L) {
7611 if (L.getAccess() == AS_protected)
7612 L.setAccess(AS_public);
7613 }
7614 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007615
Douglas Gregor06a9f362010-05-01 20:49:11 +00007616 // Create the nested-name-specifier that will be used to qualify the
7617 // reference to operator=; this is required to suppress the virtual
7618 // call mechanism.
7619 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007620 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00007621 SS.MakeTrivial(S.Context,
7622 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007623 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007624 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00007625
Douglas Gregor06a9f362010-05-01 20:49:11 +00007626 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007627 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00007628 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007629 /*TemplateKWLoc=*/SourceLocation(),
7630 /*FirstQualifierInScope=*/0,
7631 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007632 /*TemplateArgs=*/0,
7633 /*SuppressQualifierCheck=*/true);
7634 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007635 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007636
Douglas Gregor06a9f362010-05-01 20:49:11 +00007637 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007638
Richard Smith044c8aa2012-11-13 00:54:12 +00007639 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007640 OpEqualRef.takeAs<Expr>(),
7641 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007642 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007643 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007644
Richard Smith8c889532012-11-14 00:50:40 +00007645 // If we built a call to a trivial 'operator=' while copying an array,
7646 // bail out. We'll replace the whole shebang with a memcpy.
7647 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
7648 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
7649 return StmtResult((Stmt*)0);
7650
Richard Smith044c8aa2012-11-13 00:54:12 +00007651 // Convert to an expression-statement, and clean up any produced
7652 // temporaries.
7653 return S.ActOnExprStmt(S.MakeFullExpr(Call.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007654 }
John McCallb0207482010-03-16 06:11:48 +00007655
Richard Smith044c8aa2012-11-13 00:54:12 +00007656 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00007657 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00007658 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007659 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007660 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007661 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007662 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007663 return S.ActOnExprStmt(S.MakeFullExpr(Assignment.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007664 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007665
7666 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00007667 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00007668
Douglas Gregor06a9f362010-05-01 20:49:11 +00007669 // Construct a loop over the array bounds, e.g.,
7670 //
7671 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7672 //
7673 // that will copy each of the array elements.
7674 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00007675
Douglas Gregor06a9f362010-05-01 20:49:11 +00007676 // Create the iteration variable.
7677 IdentifierInfo *IterationVarName = 0;
7678 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007679 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007680 llvm::raw_svector_ostream OS(Str);
7681 OS << "__i" << Depth;
7682 IterationVarName = &S.Context.Idents.get(OS.str());
7683 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007684 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007685 IterationVarName, SizeType,
7686 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007687 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00007688
Douglas Gregor06a9f362010-05-01 20:49:11 +00007689 // Initialize the iteration variable to zero.
7690 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007691 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007692
7693 // Create a reference to the iteration variable; we'll use this several
7694 // times throughout.
7695 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007696 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007697 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007698 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7699 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7700
Douglas Gregor06a9f362010-05-01 20:49:11 +00007701 // Create the DeclStmt that holds the iteration variable.
7702 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00007703
Douglas Gregor06a9f362010-05-01 20:49:11 +00007704 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007705 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007706 IterationVarRefRVal,
7707 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007708 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007709 IterationVarRefRVal,
7710 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007711 if (!Copying) // Cast to rvalue
7712 From = CastForMoving(S, From);
7713
7714 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00007715 StmtResult Copy =
7716 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
7717 To, From, CopyingBaseSubobject,
7718 Copying, Depth + 1);
7719 // Bail out if copying fails or if we determined that we should use memcpy.
7720 if (Copy.isInvalid() || !Copy.get())
7721 return Copy;
7722
7723 // Create the comparison against the array bound.
7724 llvm::APInt Upper
7725 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
7726 Expr *Comparison
7727 = new (S.Context) BinaryOperator(IterationVarRefRVal,
7728 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7729 BO_NE, S.Context.BoolTy,
7730 VK_RValue, OK_Ordinary, Loc, false);
7731
7732 // Create the pre-increment of the iteration variable.
7733 Expr *Increment
7734 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7735 VK_LValue, OK_Ordinary, Loc);
7736
Douglas Gregor06a9f362010-05-01 20:49:11 +00007737 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007738 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007739 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007740 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007741 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007742}
7743
Richard Smith8c889532012-11-14 00:50:40 +00007744static StmtResult
7745buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
7746 Expr *To, Expr *From,
7747 bool CopyingBaseSubobject, bool Copying) {
7748 // Maybe we should use a memcpy?
7749 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
7750 T.isTriviallyCopyableType(S.Context))
7751 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7752
7753 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
7754 CopyingBaseSubobject,
7755 Copying, 0));
7756
7757 // If we ended up picking a trivial assignment operator for an array of a
7758 // non-trivially-copyable class type, just emit a memcpy.
7759 if (!Result.isInvalid() && !Result.get())
7760 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7761
7762 return Result;
7763}
7764
Richard Smithb9d0b762012-07-27 04:22:15 +00007765Sema::ImplicitExceptionSpecification
7766Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7767 CXXRecordDecl *ClassDecl = MD->getParent();
7768
7769 ImplicitExceptionSpecification ExceptSpec(*this);
7770 if (ClassDecl->isInvalidDecl())
7771 return ExceptSpec;
7772
7773 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7774 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7775 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7776
Douglas Gregorb87786f2010-07-01 17:48:08 +00007777 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007778 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007779 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007780
7781 // It is unspecified whether or not an implicit copy assignment operator
7782 // attempts to deduplicate calls to assignment operators of virtual bases are
7783 // made. As such, this exception specification is effectively unspecified.
7784 // Based on a similar decision made for constness in C++0x, we're erring on
7785 // the side of assuming such calls to be made regardless of whether they
7786 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007787 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7788 BaseEnd = ClassDecl->bases_end();
7789 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007790 if (Base->isVirtual())
7791 continue;
7792
Douglas Gregora376d102010-07-02 21:50:04 +00007793 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007794 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007795 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7796 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007797 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007798 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007799
7800 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7801 BaseEnd = ClassDecl->vbases_end();
7802 Base != BaseEnd; ++Base) {
7803 CXXRecordDecl *BaseClassDecl
7804 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7805 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7806 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007807 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007808 }
7809
Douglas Gregorb87786f2010-07-01 17:48:08 +00007810 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7811 FieldEnd = ClassDecl->field_end();
7812 Field != FieldEnd;
7813 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007814 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007815 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7816 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007817 LookupCopyingAssignment(FieldClassDecl,
7818 ArgQuals | FieldType.getCVRQualifiers(),
7819 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007820 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007821 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007822 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007823
Richard Smithb9d0b762012-07-27 04:22:15 +00007824 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007825}
7826
7827CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7828 // Note: The following rules are largely analoguous to the copy
7829 // constructor rules. Note that virtual bases are not taken into account
7830 // for determining the argument type of the operator. Note also that
7831 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00007832 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00007833
Richard Smithafb49182012-11-29 01:34:07 +00007834 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
7835 if (DSM.isAlreadyBeingDeclared())
7836 return 0;
7837
Sean Hunt30de05c2011-05-14 05:23:20 +00007838 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7839 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithacf796b2012-11-28 06:23:12 +00007840 if (ClassDecl->implicitCopyAssignmentHasConstParam())
Sean Hunt30de05c2011-05-14 05:23:20 +00007841 ArgType = ArgType.withConst();
7842 ArgType = Context.getLValueReferenceType(ArgType);
7843
Douglas Gregord3c35902010-07-01 16:36:15 +00007844 // An implicitly-declared copy assignment operator is an inline public
7845 // member of its class.
7846 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007847 SourceLocation ClassLoc = ClassDecl->getLocation();
7848 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007849 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007850 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007851 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007852 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007853 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007854 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007855 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007856 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007857 CopyAssignment->setImplicit();
7858 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007859
7860 // Build an exception specification pointing back at this member.
7861 FunctionProtoType::ExtProtoInfo EPI;
7862 EPI.ExceptionSpecType = EST_Unevaluated;
7863 EPI.ExceptionSpecDecl = CopyAssignment;
7864 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7865
Douglas Gregord3c35902010-07-01 16:36:15 +00007866 // Add the parameter to the operator.
7867 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007868 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007869 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007870 SC_None,
7871 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007872 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007873
Douglas Gregora376d102010-07-02 21:50:04 +00007874 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007875 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007876
Douglas Gregor23c94db2010-07-02 17:43:08 +00007877 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007878 PushOnScopeChains(CopyAssignment, S, false);
7879 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007880
Nico Weberafcc96a2012-01-23 03:19:29 +00007881 // C++0x [class.copy]p19:
7882 // .... If the class definition does not explicitly declare a copy
7883 // assignment operator, there is no user-declared move constructor, and
7884 // there is no user-declared move assignment operator, a copy assignment
7885 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007886 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007887 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007888
Douglas Gregord3c35902010-07-01 16:36:15 +00007889 AddOverriddenMethods(ClassDecl, CopyAssignment);
7890 return CopyAssignment;
7891}
7892
Douglas Gregor06a9f362010-05-01 20:49:11 +00007893void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7894 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007895 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007896 CopyAssignOperator->isOverloadedOperator() &&
7897 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007898 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7899 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007900 "DefineImplicitCopyAssignment called for wrong function");
7901
7902 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7903
7904 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7905 CopyAssignOperator->setInvalidDecl();
7906 return;
7907 }
7908
7909 CopyAssignOperator->setUsed();
7910
Eli Friedman9a14db32012-10-18 20:14:08 +00007911 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007912 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007913
7914 // C++0x [class.copy]p30:
7915 // The implicitly-defined or explicitly-defaulted copy assignment operator
7916 // for a non-union class X performs memberwise copy assignment of its
7917 // subobjects. The direct base classes of X are assigned first, in the
7918 // order of their declaration in the base-specifier-list, and then the
7919 // immediate non-static data members of X are assigned, in the order in
7920 // which they were declared in the class definition.
7921
7922 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007923 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007924
7925 // The parameter for the "other" object, which we are copying from.
7926 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7927 Qualifiers OtherQuals = Other->getType().getQualifiers();
7928 QualType OtherRefType = Other->getType();
7929 if (const LValueReferenceType *OtherRef
7930 = OtherRefType->getAs<LValueReferenceType>()) {
7931 OtherRefType = OtherRef->getPointeeType();
7932 OtherQuals = OtherRefType.getQualifiers();
7933 }
7934
7935 // Our location for everything implicitly-generated.
7936 SourceLocation Loc = CopyAssignOperator->getLocation();
7937
7938 // Construct a reference to the "other" object. We'll be using this
7939 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007940 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007941 assert(OtherRef && "Reference to parameter cannot fail!");
7942
7943 // Construct the "this" pointer. We'll be using this throughout the generated
7944 // ASTs.
7945 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7946 assert(This && "Reference to this cannot fail!");
7947
7948 // Assign base classes.
7949 bool Invalid = false;
7950 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7951 E = ClassDecl->bases_end(); Base != E; ++Base) {
7952 // Form the assignment:
7953 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7954 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007955 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007956 Invalid = true;
7957 continue;
7958 }
7959
John McCallf871d0c2010-08-07 06:22:56 +00007960 CXXCastPath BasePath;
7961 BasePath.push_back(Base);
7962
Douglas Gregor06a9f362010-05-01 20:49:11 +00007963 // Construct the "from" expression, which is an implicit cast to the
7964 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007965 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007966 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7967 CK_UncheckedDerivedToBase,
7968 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007969
7970 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007971 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007972
7973 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007974 To = ImpCastExprToType(To.take(),
7975 Context.getCVRQualifiedType(BaseType,
7976 CopyAssignOperator->getTypeQualifiers()),
7977 CK_UncheckedDerivedToBase,
7978 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007979
7980 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00007981 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007982 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007983 /*CopyingBaseSubobject=*/true,
7984 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007985 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007986 Diag(CurrentLocation, diag::note_member_synthesized_at)
7987 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7988 CopyAssignOperator->setInvalidDecl();
7989 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007990 }
7991
7992 // Success! Record the copy.
7993 Statements.push_back(Copy.takeAs<Expr>());
7994 }
7995
Douglas Gregor06a9f362010-05-01 20:49:11 +00007996 // Assign non-static members.
7997 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7998 FieldEnd = ClassDecl->field_end();
7999 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008000 if (Field->isUnnamedBitfield())
8001 continue;
8002
Douglas Gregor06a9f362010-05-01 20:49:11 +00008003 // Check for members of reference type; we can't copy those.
8004 if (Field->getType()->isReferenceType()) {
8005 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8006 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8007 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008008 Diag(CurrentLocation, diag::note_member_synthesized_at)
8009 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008010 Invalid = true;
8011 continue;
8012 }
8013
8014 // Check for members of const-qualified, non-class type.
8015 QualType BaseType = Context.getBaseElementType(Field->getType());
8016 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8017 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8018 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8019 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008020 Diag(CurrentLocation, diag::note_member_synthesized_at)
8021 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008022 Invalid = true;
8023 continue;
8024 }
John McCallb77115d2011-06-17 00:18:42 +00008025
8026 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008027 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8028 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008029
8030 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008031 if (FieldType->isIncompleteArrayType()) {
8032 assert(ClassDecl->hasFlexibleArrayMember() &&
8033 "Incomplete array type is not valid");
8034 continue;
8035 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008036
8037 // Build references to the field in the object we're copying from and to.
8038 CXXScopeSpec SS; // Intentionally empty
8039 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8040 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008041 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008042 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008043 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008044 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008045 SS, SourceLocation(), 0,
8046 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008047 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008048 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008049 SS, SourceLocation(), 0,
8050 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008051 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8052 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008053
Douglas Gregor06a9f362010-05-01 20:49:11 +00008054 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008055 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008056 To.get(), From.get(),
8057 /*CopyingBaseSubobject=*/false,
8058 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008059 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008060 Diag(CurrentLocation, diag::note_member_synthesized_at)
8061 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8062 CopyAssignOperator->setInvalidDecl();
8063 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008064 }
8065
8066 // Success! Record the copy.
8067 Statements.push_back(Copy.takeAs<Stmt>());
8068 }
8069
8070 if (!Invalid) {
8071 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008072 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008073
John McCall60d7b3a2010-08-24 06:29:42 +00008074 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008075 if (Return.isInvalid())
8076 Invalid = true;
8077 else {
8078 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008079
8080 if (Trap.hasErrorOccurred()) {
8081 Diag(CurrentLocation, diag::note_member_synthesized_at)
8082 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8083 Invalid = true;
8084 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008085 }
8086 }
8087
8088 if (Invalid) {
8089 CopyAssignOperator->setInvalidDecl();
8090 return;
8091 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008092
8093 StmtResult Body;
8094 {
8095 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008096 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008097 /*isStmtExpr=*/false);
8098 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8099 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008100 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008101
8102 if (ASTMutationListener *L = getASTMutationListener()) {
8103 L->CompletedImplicitDefinition(CopyAssignOperator);
8104 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008105}
8106
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008107Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008108Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8109 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008110
Richard Smithb9d0b762012-07-27 04:22:15 +00008111 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008112 if (ClassDecl->isInvalidDecl())
8113 return ExceptSpec;
8114
8115 // C++0x [except.spec]p14:
8116 // An implicitly declared special member function (Clause 12) shall have an
8117 // exception-specification. [...]
8118
8119 // It is unspecified whether or not an implicit move assignment operator
8120 // attempts to deduplicate calls to assignment operators of virtual bases are
8121 // made. As such, this exception specification is effectively unspecified.
8122 // Based on a similar decision made for constness in C++0x, we're erring on
8123 // the side of assuming such calls to be made regardless of whether they
8124 // actually happen.
8125 // Note that a move constructor is not implicitly declared when there are
8126 // virtual bases, but it can still be user-declared and explicitly defaulted.
8127 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8128 BaseEnd = ClassDecl->bases_end();
8129 Base != BaseEnd; ++Base) {
8130 if (Base->isVirtual())
8131 continue;
8132
8133 CXXRecordDecl *BaseClassDecl
8134 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8135 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008136 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008137 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008138 }
8139
8140 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8141 BaseEnd = ClassDecl->vbases_end();
8142 Base != BaseEnd; ++Base) {
8143 CXXRecordDecl *BaseClassDecl
8144 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8145 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008146 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008147 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008148 }
8149
8150 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8151 FieldEnd = ClassDecl->field_end();
8152 Field != FieldEnd;
8153 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008154 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008155 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008156 if (CXXMethodDecl *MoveAssign =
8157 LookupMovingAssignment(FieldClassDecl,
8158 FieldType.getCVRQualifiers(),
8159 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008160 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008161 }
8162 }
8163
8164 return ExceptSpec;
8165}
8166
Richard Smith1c931be2012-04-02 18:40:40 +00008167/// Determine whether the class type has any direct or indirect virtual base
8168/// classes which have a non-trivial move assignment operator.
8169static bool
8170hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8171 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8172 BaseEnd = ClassDecl->vbases_end();
8173 Base != BaseEnd; ++Base) {
8174 CXXRecordDecl *BaseClass =
8175 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8176
8177 // Try to declare the move assignment. If it would be deleted, then the
8178 // class does not have a non-trivial move assignment.
8179 if (BaseClass->needsImplicitMoveAssignment())
8180 S.DeclareImplicitMoveAssignment(BaseClass);
8181
Richard Smith426391c2012-11-16 00:53:38 +00008182 if (BaseClass->hasNonTrivialMoveAssignment())
Richard Smith1c931be2012-04-02 18:40:40 +00008183 return true;
8184 }
8185
8186 return false;
8187}
8188
8189/// Determine whether the given type either has a move constructor or is
8190/// trivially copyable.
8191static bool
8192hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8193 Type = S.Context.getBaseElementType(Type);
8194
8195 // FIXME: Technically, non-trivially-copyable non-class types, such as
8196 // reference types, are supposed to return false here, but that appears
8197 // to be a standard defect.
8198 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008199 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008200 return true;
8201
8202 if (Type.isTriviallyCopyableType(S.Context))
8203 return true;
8204
8205 if (IsConstructor) {
Richard Smithe5411b72012-12-01 02:35:44 +00008206 // FIXME: Need this because otherwise hasMoveConstructor isn't guaranteed to
8207 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008208 if (ClassDecl->needsImplicitMoveConstructor())
8209 S.DeclareImplicitMoveConstructor(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008210 return ClassDecl->hasMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00008211 }
8212
Richard Smithe5411b72012-12-01 02:35:44 +00008213 // FIXME: Need this because otherwise hasMoveAssignment isn't guaranteed to
8214 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008215 if (ClassDecl->needsImplicitMoveAssignment())
8216 S.DeclareImplicitMoveAssignment(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008217 return ClassDecl->hasMoveAssignment();
Richard Smith1c931be2012-04-02 18:40:40 +00008218}
8219
8220/// Determine whether all non-static data members and direct or virtual bases
8221/// of class \p ClassDecl have either a move operation, or are trivially
8222/// copyable.
8223static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8224 bool IsConstructor) {
8225 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8226 BaseEnd = ClassDecl->bases_end();
8227 Base != BaseEnd; ++Base) {
8228 if (Base->isVirtual())
8229 continue;
8230
8231 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8232 return false;
8233 }
8234
8235 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8236 BaseEnd = ClassDecl->vbases_end();
8237 Base != BaseEnd; ++Base) {
8238 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8239 return false;
8240 }
8241
8242 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8243 FieldEnd = ClassDecl->field_end();
8244 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008245 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008246 return false;
8247 }
8248
8249 return true;
8250}
8251
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008252CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008253 // C++11 [class.copy]p20:
8254 // If the definition of a class X does not explicitly declare a move
8255 // assignment operator, one will be implicitly declared as defaulted
8256 // if and only if:
8257 //
8258 // - [first 4 bullets]
8259 assert(ClassDecl->needsImplicitMoveAssignment());
8260
Richard Smithafb49182012-11-29 01:34:07 +00008261 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
8262 if (DSM.isAlreadyBeingDeclared())
8263 return 0;
8264
Richard Smith1c931be2012-04-02 18:40:40 +00008265 // [Checked after we build the declaration]
8266 // - the move assignment operator would not be implicitly defined as
8267 // deleted,
8268
8269 // [DR1402]:
8270 // - X has no direct or indirect virtual base class with a non-trivial
8271 // move assignment operator, and
8272 // - each of X's non-static data members and direct or virtual base classes
8273 // has a type that either has a move assignment operator or is trivially
8274 // copyable.
8275 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8276 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8277 ClassDecl->setFailedImplicitMoveAssignment();
8278 return 0;
8279 }
8280
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008281 // Note: The following rules are largely analoguous to the move
8282 // constructor rules.
8283
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008284 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8285 QualType RetType = Context.getLValueReferenceType(ArgType);
8286 ArgType = Context.getRValueReferenceType(ArgType);
8287
8288 // An implicitly-declared move assignment operator is an inline public
8289 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008290 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8291 SourceLocation ClassLoc = ClassDecl->getLocation();
8292 DeclarationNameInfo NameInfo(Name, ClassLoc);
8293 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008294 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008295 /*TInfo=*/0, /*isStatic=*/false,
8296 /*StorageClassAsWritten=*/SC_None,
8297 /*isInline=*/true,
8298 /*isConstexpr=*/false,
8299 SourceLocation());
8300 MoveAssignment->setAccess(AS_public);
8301 MoveAssignment->setDefaulted();
8302 MoveAssignment->setImplicit();
8303 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8304
Richard Smithb9d0b762012-07-27 04:22:15 +00008305 // Build an exception specification pointing back at this member.
8306 FunctionProtoType::ExtProtoInfo EPI;
8307 EPI.ExceptionSpecType = EST_Unevaluated;
8308 EPI.ExceptionSpecDecl = MoveAssignment;
8309 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8310
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008311 // Add the parameter to the operator.
8312 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8313 ClassLoc, ClassLoc, /*Id=*/0,
8314 ArgType, /*TInfo=*/0,
8315 SC_None,
8316 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008317 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008318
8319 // Note that we have added this copy-assignment operator.
8320 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8321
8322 // C++0x [class.copy]p9:
8323 // If the definition of a class X does not explicitly declare a move
8324 // assignment operator, one will be implicitly declared as defaulted if and
8325 // only if:
8326 // [...]
8327 // - the move assignment operator would not be implicitly defined as
8328 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008329 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008330 // Cache this result so that we don't try to generate this over and over
8331 // on every lookup, leaking memory and wasting time.
8332 ClassDecl->setFailedImplicitMoveAssignment();
8333 return 0;
8334 }
8335
8336 if (Scope *S = getScopeForContext(ClassDecl))
8337 PushOnScopeChains(MoveAssignment, S, false);
8338 ClassDecl->addDecl(MoveAssignment);
8339
8340 AddOverriddenMethods(ClassDecl, MoveAssignment);
8341 return MoveAssignment;
8342}
8343
8344void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8345 CXXMethodDecl *MoveAssignOperator) {
8346 assert((MoveAssignOperator->isDefaulted() &&
8347 MoveAssignOperator->isOverloadedOperator() &&
8348 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008349 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8350 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008351 "DefineImplicitMoveAssignment called for wrong function");
8352
8353 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8354
8355 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8356 MoveAssignOperator->setInvalidDecl();
8357 return;
8358 }
8359
8360 MoveAssignOperator->setUsed();
8361
Eli Friedman9a14db32012-10-18 20:14:08 +00008362 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008363 DiagnosticErrorTrap Trap(Diags);
8364
8365 // C++0x [class.copy]p28:
8366 // The implicitly-defined or move assignment operator for a non-union class
8367 // X performs memberwise move assignment of its subobjects. The direct base
8368 // classes of X are assigned first, in the order of their declaration in the
8369 // base-specifier-list, and then the immediate non-static data members of X
8370 // are assigned, in the order in which they were declared in the class
8371 // definition.
8372
8373 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008374 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008375
8376 // The parameter for the "other" object, which we are move from.
8377 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8378 QualType OtherRefType = Other->getType()->
8379 getAs<RValueReferenceType>()->getPointeeType();
8380 assert(OtherRefType.getQualifiers() == 0 &&
8381 "Bad argument type of defaulted move assignment");
8382
8383 // Our location for everything implicitly-generated.
8384 SourceLocation Loc = MoveAssignOperator->getLocation();
8385
8386 // Construct a reference to the "other" object. We'll be using this
8387 // throughout the generated ASTs.
8388 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8389 assert(OtherRef && "Reference to parameter cannot fail!");
8390 // Cast to rvalue.
8391 OtherRef = CastForMoving(*this, OtherRef);
8392
8393 // Construct the "this" pointer. We'll be using this throughout the generated
8394 // ASTs.
8395 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8396 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008397
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008398 // Assign base classes.
8399 bool Invalid = false;
8400 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8401 E = ClassDecl->bases_end(); Base != E; ++Base) {
8402 // Form the assignment:
8403 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8404 QualType BaseType = Base->getType().getUnqualifiedType();
8405 if (!BaseType->isRecordType()) {
8406 Invalid = true;
8407 continue;
8408 }
8409
8410 CXXCastPath BasePath;
8411 BasePath.push_back(Base);
8412
8413 // Construct the "from" expression, which is an implicit cast to the
8414 // appropriately-qualified base type.
8415 Expr *From = OtherRef;
8416 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008417 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008418
8419 // Dereference "this".
8420 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8421
8422 // Implicitly cast "this" to the appropriately-qualified base type.
8423 To = ImpCastExprToType(To.take(),
8424 Context.getCVRQualifiedType(BaseType,
8425 MoveAssignOperator->getTypeQualifiers()),
8426 CK_UncheckedDerivedToBase,
8427 VK_LValue, &BasePath);
8428
8429 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008430 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008431 To.get(), From,
8432 /*CopyingBaseSubobject=*/true,
8433 /*Copying=*/false);
8434 if (Move.isInvalid()) {
8435 Diag(CurrentLocation, diag::note_member_synthesized_at)
8436 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8437 MoveAssignOperator->setInvalidDecl();
8438 return;
8439 }
8440
8441 // Success! Record the move.
8442 Statements.push_back(Move.takeAs<Expr>());
8443 }
8444
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008445 // Assign non-static members.
8446 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8447 FieldEnd = ClassDecl->field_end();
8448 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008449 if (Field->isUnnamedBitfield())
8450 continue;
8451
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008452 // Check for members of reference type; we can't move those.
8453 if (Field->getType()->isReferenceType()) {
8454 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8455 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8456 Diag(Field->getLocation(), diag::note_declared_at);
8457 Diag(CurrentLocation, diag::note_member_synthesized_at)
8458 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8459 Invalid = true;
8460 continue;
8461 }
8462
8463 // Check for members of const-qualified, non-class type.
8464 QualType BaseType = Context.getBaseElementType(Field->getType());
8465 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8466 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8467 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8468 Diag(Field->getLocation(), diag::note_declared_at);
8469 Diag(CurrentLocation, diag::note_member_synthesized_at)
8470 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8471 Invalid = true;
8472 continue;
8473 }
8474
8475 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008476 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8477 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008478
8479 QualType FieldType = Field->getType().getNonReferenceType();
8480 if (FieldType->isIncompleteArrayType()) {
8481 assert(ClassDecl->hasFlexibleArrayMember() &&
8482 "Incomplete array type is not valid");
8483 continue;
8484 }
8485
8486 // Build references to the field in the object we're copying from and to.
8487 CXXScopeSpec SS; // Intentionally empty
8488 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8489 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008490 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008491 MemberLookup.resolveKind();
8492 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8493 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008494 SS, SourceLocation(), 0,
8495 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008496 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8497 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008498 SS, SourceLocation(), 0,
8499 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008500 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8501 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8502
8503 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8504 "Member reference with rvalue base must be rvalue except for reference "
8505 "members, which aren't allowed for move assignment.");
8506
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008507 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008508 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008509 To.get(), From.get(),
8510 /*CopyingBaseSubobject=*/false,
8511 /*Copying=*/false);
8512 if (Move.isInvalid()) {
8513 Diag(CurrentLocation, diag::note_member_synthesized_at)
8514 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8515 MoveAssignOperator->setInvalidDecl();
8516 return;
8517 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008518
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008519 // Success! Record the copy.
8520 Statements.push_back(Move.takeAs<Stmt>());
8521 }
8522
8523 if (!Invalid) {
8524 // Add a "return *this;"
8525 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8526
8527 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8528 if (Return.isInvalid())
8529 Invalid = true;
8530 else {
8531 Statements.push_back(Return.takeAs<Stmt>());
8532
8533 if (Trap.hasErrorOccurred()) {
8534 Diag(CurrentLocation, diag::note_member_synthesized_at)
8535 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8536 Invalid = true;
8537 }
8538 }
8539 }
8540
8541 if (Invalid) {
8542 MoveAssignOperator->setInvalidDecl();
8543 return;
8544 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008545
8546 StmtResult Body;
8547 {
8548 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008549 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008550 /*isStmtExpr=*/false);
8551 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8552 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008553 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8554
8555 if (ASTMutationListener *L = getASTMutationListener()) {
8556 L->CompletedImplicitDefinition(MoveAssignOperator);
8557 }
8558}
8559
Richard Smithb9d0b762012-07-27 04:22:15 +00008560Sema::ImplicitExceptionSpecification
8561Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8562 CXXRecordDecl *ClassDecl = MD->getParent();
8563
8564 ImplicitExceptionSpecification ExceptSpec(*this);
8565 if (ClassDecl->isInvalidDecl())
8566 return ExceptSpec;
8567
8568 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8569 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8570 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8571
Douglas Gregor0d405db2010-07-01 20:59:04 +00008572 // C++ [except.spec]p14:
8573 // An implicitly declared special member function (Clause 12) shall have an
8574 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008575 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8576 BaseEnd = ClassDecl->bases_end();
8577 Base != BaseEnd;
8578 ++Base) {
8579 // Virtual bases are handled below.
8580 if (Base->isVirtual())
8581 continue;
8582
Douglas Gregor22584312010-07-02 23:41:54 +00008583 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008584 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008585 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008586 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008587 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008588 }
8589 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8590 BaseEnd = ClassDecl->vbases_end();
8591 Base != BaseEnd;
8592 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008593 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008594 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008595 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008596 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008597 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008598 }
8599 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8600 FieldEnd = ClassDecl->field_end();
8601 Field != FieldEnd;
8602 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008603 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008604 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8605 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008606 LookupCopyingConstructor(FieldClassDecl,
8607 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008608 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008609 }
8610 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008611
Richard Smithb9d0b762012-07-27 04:22:15 +00008612 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008613}
8614
8615CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8616 CXXRecordDecl *ClassDecl) {
8617 // C++ [class.copy]p4:
8618 // If the class definition does not explicitly declare a copy
8619 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +00008620 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +00008621
Richard Smithafb49182012-11-29 01:34:07 +00008622 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
8623 if (DSM.isAlreadyBeingDeclared())
8624 return 0;
8625
Sean Hunt49634cf2011-05-13 06:10:58 +00008626 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8627 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +00008628 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +00008629 if (Const)
8630 ArgType = ArgType.withConst();
8631 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008632
Richard Smith7756afa2012-06-10 05:43:50 +00008633 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8634 CXXCopyConstructor,
8635 Const);
8636
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008637 DeclarationName Name
8638 = Context.DeclarationNames.getCXXConstructorName(
8639 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008640 SourceLocation ClassLoc = ClassDecl->getLocation();
8641 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008642
8643 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008644 // member of its class.
8645 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008646 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008647 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008648 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008649 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008650 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008651 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008652
Richard Smithb9d0b762012-07-27 04:22:15 +00008653 // Build an exception specification pointing back at this member.
8654 FunctionProtoType::ExtProtoInfo EPI;
8655 EPI.ExceptionSpecType = EST_Unevaluated;
8656 EPI.ExceptionSpecDecl = CopyConstructor;
8657 CopyConstructor->setType(
8658 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8659
Douglas Gregor22584312010-07-02 23:41:54 +00008660 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008661 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8662
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008663 // Add the parameter to the constructor.
8664 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008665 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008666 /*IdentifierInfo=*/0,
8667 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008668 SC_None,
8669 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008670 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008671
Douglas Gregor23c94db2010-07-02 17:43:08 +00008672 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008673 PushOnScopeChains(CopyConstructor, S, false);
8674 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008675
Nico Weberafcc96a2012-01-23 03:19:29 +00008676 // C++11 [class.copy]p8:
8677 // ... If the class definition does not explicitly declare a copy
8678 // constructor, there is no user-declared move constructor, and there is no
8679 // user-declared move assignment operator, a copy constructor is implicitly
8680 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008681 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008682 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008683
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008684 return CopyConstructor;
8685}
8686
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008687void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008688 CXXConstructorDecl *CopyConstructor) {
8689 assert((CopyConstructor->isDefaulted() &&
8690 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008691 !CopyConstructor->doesThisDeclarationHaveABody() &&
8692 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008693 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008694
Anders Carlsson63010a72010-04-23 16:24:12 +00008695 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008696 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008697
Eli Friedman9a14db32012-10-18 20:14:08 +00008698 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008699 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008700
Sean Huntcbb67482011-01-08 20:30:50 +00008701 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008702 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008703 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008704 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008705 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008706 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008707 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008708 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8709 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008710 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008711 /*isStmtExpr=*/false)
8712 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008713 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008714 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008715
8716 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008717 if (ASTMutationListener *L = getASTMutationListener()) {
8718 L->CompletedImplicitDefinition(CopyConstructor);
8719 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008720}
8721
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008722Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008723Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8724 CXXRecordDecl *ClassDecl = MD->getParent();
8725
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008726 // C++ [except.spec]p14:
8727 // An implicitly declared special member function (Clause 12) shall have an
8728 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008729 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008730 if (ClassDecl->isInvalidDecl())
8731 return ExceptSpec;
8732
8733 // Direct base-class constructors.
8734 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8735 BEnd = ClassDecl->bases_end();
8736 B != BEnd; ++B) {
8737 if (B->isVirtual()) // Handled below.
8738 continue;
8739
8740 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8741 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008742 CXXConstructorDecl *Constructor =
8743 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008744 // If this is a deleted function, add it anyway. This might be conformant
8745 // with the standard. This might not. I'm not sure. It might not matter.
8746 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008747 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008748 }
8749 }
8750
8751 // Virtual base-class constructors.
8752 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8753 BEnd = ClassDecl->vbases_end();
8754 B != BEnd; ++B) {
8755 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8756 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008757 CXXConstructorDecl *Constructor =
8758 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008759 // If this is a deleted function, add it anyway. This might be conformant
8760 // with the standard. This might not. I'm not sure. It might not matter.
8761 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008762 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008763 }
8764 }
8765
8766 // Field constructors.
8767 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8768 FEnd = ClassDecl->field_end();
8769 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008770 QualType FieldType = Context.getBaseElementType(F->getType());
8771 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8772 CXXConstructorDecl *Constructor =
8773 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008774 // If this is a deleted function, add it anyway. This might be conformant
8775 // with the standard. This might not. I'm not sure. It might not matter.
8776 // In particular, the problem is that this function never gets called. It
8777 // might just be ill-formed because this function attempts to refer to
8778 // a deleted function here.
8779 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008780 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008781 }
8782 }
8783
8784 return ExceptSpec;
8785}
8786
8787CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8788 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008789 // C++11 [class.copy]p9:
8790 // If the definition of a class X does not explicitly declare a move
8791 // constructor, one will be implicitly declared as defaulted if and only if:
8792 //
8793 // - [first 4 bullets]
8794 assert(ClassDecl->needsImplicitMoveConstructor());
8795
Richard Smithafb49182012-11-29 01:34:07 +00008796 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
8797 if (DSM.isAlreadyBeingDeclared())
8798 return 0;
8799
Richard Smith1c931be2012-04-02 18:40:40 +00008800 // [Checked after we build the declaration]
8801 // - the move assignment operator would not be implicitly defined as
8802 // deleted,
8803
8804 // [DR1402]:
8805 // - each of X's non-static data members and direct or virtual base classes
8806 // has a type that either has a move constructor or is trivially copyable.
8807 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8808 ClassDecl->setFailedImplicitMoveConstructor();
8809 return 0;
8810 }
8811
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008812 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8813 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008814
Richard Smith7756afa2012-06-10 05:43:50 +00008815 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8816 CXXMoveConstructor,
8817 false);
8818
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008819 DeclarationName Name
8820 = Context.DeclarationNames.getCXXConstructorName(
8821 Context.getCanonicalType(ClassType));
8822 SourceLocation ClassLoc = ClassDecl->getLocation();
8823 DeclarationNameInfo NameInfo(Name, ClassLoc);
8824
8825 // C++0x [class.copy]p11:
8826 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008827 // member of its class.
8828 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008829 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008830 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008831 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008832 MoveConstructor->setAccess(AS_public);
8833 MoveConstructor->setDefaulted();
8834 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008835
Richard Smithb9d0b762012-07-27 04:22:15 +00008836 // Build an exception specification pointing back at this member.
8837 FunctionProtoType::ExtProtoInfo EPI;
8838 EPI.ExceptionSpecType = EST_Unevaluated;
8839 EPI.ExceptionSpecDecl = MoveConstructor;
8840 MoveConstructor->setType(
8841 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8842
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008843 // Add the parameter to the constructor.
8844 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8845 ClassLoc, ClassLoc,
8846 /*IdentifierInfo=*/0,
8847 ArgType, /*TInfo=*/0,
8848 SC_None,
8849 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008850 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008851
8852 // C++0x [class.copy]p9:
8853 // If the definition of a class X does not explicitly declare a move
8854 // constructor, one will be implicitly declared as defaulted if and only if:
8855 // [...]
8856 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008857 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008858 // Cache this result so that we don't try to generate this over and over
8859 // on every lookup, leaking memory and wasting time.
8860 ClassDecl->setFailedImplicitMoveConstructor();
8861 return 0;
8862 }
8863
8864 // Note that we have declared this constructor.
8865 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8866
8867 if (Scope *S = getScopeForContext(ClassDecl))
8868 PushOnScopeChains(MoveConstructor, S, false);
8869 ClassDecl->addDecl(MoveConstructor);
8870
8871 return MoveConstructor;
8872}
8873
8874void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8875 CXXConstructorDecl *MoveConstructor) {
8876 assert((MoveConstructor->isDefaulted() &&
8877 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008878 !MoveConstructor->doesThisDeclarationHaveABody() &&
8879 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008880 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8881
8882 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8883 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8884
Eli Friedman9a14db32012-10-18 20:14:08 +00008885 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008886 DiagnosticErrorTrap Trap(Diags);
8887
8888 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8889 Trap.hasErrorOccurred()) {
8890 Diag(CurrentLocation, diag::note_member_synthesized_at)
8891 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8892 MoveConstructor->setInvalidDecl();
8893 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008894 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008895 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8896 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008897 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008898 /*isStmtExpr=*/false)
8899 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008900 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008901 }
8902
8903 MoveConstructor->setUsed();
8904
8905 if (ASTMutationListener *L = getASTMutationListener()) {
8906 L->CompletedImplicitDefinition(MoveConstructor);
8907 }
8908}
8909
Douglas Gregore4e68d42012-02-15 19:33:52 +00008910bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8911 return FD->isDeleted() &&
8912 (FD->isDefaulted() || FD->isImplicit()) &&
8913 isa<CXXMethodDecl>(FD);
8914}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008915
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008916/// \brief Mark the call operator of the given lambda closure type as "used".
8917static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8918 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008919 = cast<CXXMethodDecl>(
8920 *Lambda->lookup(
8921 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008922 CallOperator->setReferenced();
8923 CallOperator->setUsed();
8924}
8925
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008926void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8927 SourceLocation CurrentLocation,
8928 CXXConversionDecl *Conv)
8929{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008930 CXXRecordDecl *Lambda = Conv->getParent();
8931
8932 // Make sure that the lambda call operator is marked used.
8933 markLambdaCallOperatorUsed(*this, Lambda);
8934
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008935 Conv->setUsed();
8936
Eli Friedman9a14db32012-10-18 20:14:08 +00008937 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008938 DiagnosticErrorTrap Trap(Diags);
8939
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008940 // Return the address of the __invoke function.
8941 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8942 CXXMethodDecl *Invoke
8943 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8944 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8945 VK_LValue, Conv->getLocation()).take();
8946 assert(FunctionRef && "Can't refer to __invoke function?");
8947 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8948 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8949 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008950 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008951
8952 // Fill in the __invoke function with a dummy implementation. IR generation
8953 // will fill in the actual details.
8954 Invoke->setUsed();
8955 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008956 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008957
8958 if (ASTMutationListener *L = getASTMutationListener()) {
8959 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008960 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008961 }
8962}
8963
8964void Sema::DefineImplicitLambdaToBlockPointerConversion(
8965 SourceLocation CurrentLocation,
8966 CXXConversionDecl *Conv)
8967{
8968 Conv->setUsed();
8969
Eli Friedman9a14db32012-10-18 20:14:08 +00008970 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008971 DiagnosticErrorTrap Trap(Diags);
8972
Douglas Gregorac1303e2012-02-22 05:02:47 +00008973 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008974 Expr *This = ActOnCXXThis(CurrentLocation).take();
8975 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008976
Eli Friedman23f02672012-03-01 04:01:32 +00008977 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8978 Conv->getLocation(),
8979 Conv, DerefThis);
8980
8981 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8982 // behavior. Note that only the general conversion function does this
8983 // (since it's unusable otherwise); in the case where we inline the
8984 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008985 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008986 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8987 CK_CopyAndAutoreleaseBlockObject,
8988 BuildBlock.get(), 0, VK_RValue);
8989
8990 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008991 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008992 Conv->setInvalidDecl();
8993 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008994 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008995
Douglas Gregorac1303e2012-02-22 05:02:47 +00008996 // Create the return statement that returns the block from the conversion
8997 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00008998 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00008999 if (Return.isInvalid()) {
9000 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9001 Conv->setInvalidDecl();
9002 return;
9003 }
9004
9005 // Set the body of the conversion function.
9006 Stmt *ReturnS = Return.take();
9007 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9008 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009009 Conv->getLocation()));
9010
Douglas Gregorac1303e2012-02-22 05:02:47 +00009011 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009012 if (ASTMutationListener *L = getASTMutationListener()) {
9013 L->CompletedImplicitDefinition(Conv);
9014 }
9015}
9016
Douglas Gregorf52757d2012-03-10 06:53:13 +00009017/// \brief Determine whether the given list arguments contains exactly one
9018/// "real" (non-default) argument.
9019static bool hasOneRealArgument(MultiExprArg Args) {
9020 switch (Args.size()) {
9021 case 0:
9022 return false;
9023
9024 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009025 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009026 return false;
9027
9028 // fall through
9029 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009030 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009031 }
9032
9033 return false;
9034}
9035
John McCall60d7b3a2010-08-24 06:29:42 +00009036ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009037Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009038 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009039 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009040 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009041 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009042 unsigned ConstructKind,
9043 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009044 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009045
Douglas Gregor2f599792010-04-02 18:24:57 +00009046 // C++0x [class.copy]p34:
9047 // When certain criteria are met, an implementation is allowed to
9048 // omit the copy/move construction of a class object, even if the
9049 // copy/move constructor and/or destructor for the object have
9050 // side effects. [...]
9051 // - when a temporary class object that has not been bound to a
9052 // reference (12.2) would be copied/moved to a class object
9053 // with the same cv-unqualified type, the copy/move operation
9054 // can be omitted by constructing the temporary object
9055 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009056 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009057 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009058 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009059 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009060 }
Mike Stump1eb44332009-09-09 15:08:12 +00009061
9062 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009063 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009064 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009065}
9066
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009067/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9068/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009069ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009070Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9071 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009072 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009073 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009074 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009075 unsigned ConstructKind,
9076 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009077 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009078 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009079 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009080 HadMultipleCandidates, /*FIXME*/false,
9081 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009082 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9083 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009084}
9085
Mike Stump1eb44332009-09-09 15:08:12 +00009086bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009087 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009088 MultiExprArg Exprs,
9089 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009090 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009091 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009092 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009093 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009094 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009095 if (TempResult.isInvalid())
9096 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009097
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009098 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009099 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009100 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009101 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009102 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009103
Anders Carlssonfe2de492009-08-25 05:18:00 +00009104 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009105}
9106
John McCall68c6c9a2010-02-02 09:10:11 +00009107void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009108 if (VD->isInvalidDecl()) return;
9109
John McCall68c6c9a2010-02-02 09:10:11 +00009110 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009111 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009112 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009113 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009114
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009115 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009116 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009117 CheckDestructorAccess(VD->getLocation(), Destructor,
9118 PDiag(diag::err_access_dtor_var)
9119 << VD->getDeclName()
9120 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009121 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009122
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009123 if (!VD->hasGlobalStorage()) return;
9124
9125 // Emit warning for non-trivial dtor in global scope (a real global,
9126 // class-static, function-static).
9127 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9128
9129 // TODO: this should be re-enabled for static locals by !CXAAtExit
9130 if (!VD->isStaticLocal())
9131 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009132}
9133
Douglas Gregor39da0b82009-09-09 23:08:42 +00009134/// \brief Given a constructor and the set of arguments provided for the
9135/// constructor, convert the arguments and add any required default arguments
9136/// to form a proper call to this constructor.
9137///
9138/// \returns true if an error occurred, false otherwise.
9139bool
9140Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9141 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009142 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009143 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009144 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009145 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9146 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009147 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009148
9149 const FunctionProtoType *Proto
9150 = Constructor->getType()->getAs<FunctionProtoType>();
9151 assert(Proto && "Constructor without a prototype?");
9152 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009153
9154 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009155 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009156 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009157 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009158 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009159
9160 VariadicCallType CallType =
9161 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009162 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009163 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9164 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009165 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009166 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009167
9168 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9169
Richard Smith831421f2012-06-25 20:30:08 +00009170 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9171 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009172
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009173 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009174}
9175
Anders Carlsson20d45d22009-12-12 00:32:00 +00009176static inline bool
9177CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9178 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009179 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009180 if (isa<NamespaceDecl>(DC)) {
9181 return SemaRef.Diag(FnDecl->getLocation(),
9182 diag::err_operator_new_delete_declared_in_namespace)
9183 << FnDecl->getDeclName();
9184 }
9185
9186 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009187 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009188 return SemaRef.Diag(FnDecl->getLocation(),
9189 diag::err_operator_new_delete_declared_static)
9190 << FnDecl->getDeclName();
9191 }
9192
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009193 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009194}
9195
Anders Carlsson156c78e2009-12-13 17:53:43 +00009196static inline bool
9197CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9198 CanQualType ExpectedResultType,
9199 CanQualType ExpectedFirstParamType,
9200 unsigned DependentParamTypeDiag,
9201 unsigned InvalidParamTypeDiag) {
9202 QualType ResultType =
9203 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9204
9205 // Check that the result type is not dependent.
9206 if (ResultType->isDependentType())
9207 return SemaRef.Diag(FnDecl->getLocation(),
9208 diag::err_operator_new_delete_dependent_result_type)
9209 << FnDecl->getDeclName() << ExpectedResultType;
9210
9211 // Check that the result type is what we expect.
9212 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9213 return SemaRef.Diag(FnDecl->getLocation(),
9214 diag::err_operator_new_delete_invalid_result_type)
9215 << FnDecl->getDeclName() << ExpectedResultType;
9216
9217 // A function template must have at least 2 parameters.
9218 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9219 return SemaRef.Diag(FnDecl->getLocation(),
9220 diag::err_operator_new_delete_template_too_few_parameters)
9221 << FnDecl->getDeclName();
9222
9223 // The function decl must have at least 1 parameter.
9224 if (FnDecl->getNumParams() == 0)
9225 return SemaRef.Diag(FnDecl->getLocation(),
9226 diag::err_operator_new_delete_too_few_parameters)
9227 << FnDecl->getDeclName();
9228
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009229 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009230 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9231 if (FirstParamType->isDependentType())
9232 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9233 << FnDecl->getDeclName() << ExpectedFirstParamType;
9234
9235 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009236 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009237 ExpectedFirstParamType)
9238 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9239 << FnDecl->getDeclName() << ExpectedFirstParamType;
9240
9241 return false;
9242}
9243
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009244static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009245CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009246 // C++ [basic.stc.dynamic.allocation]p1:
9247 // A program is ill-formed if an allocation function is declared in a
9248 // namespace scope other than global scope or declared static in global
9249 // scope.
9250 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9251 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009252
9253 CanQualType SizeTy =
9254 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9255
9256 // C++ [basic.stc.dynamic.allocation]p1:
9257 // The return type shall be void*. The first parameter shall have type
9258 // std::size_t.
9259 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9260 SizeTy,
9261 diag::err_operator_new_dependent_param_type,
9262 diag::err_operator_new_param_type))
9263 return true;
9264
9265 // C++ [basic.stc.dynamic.allocation]p1:
9266 // The first parameter shall not have an associated default argument.
9267 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009268 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009269 diag::err_operator_new_default_arg)
9270 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9271
9272 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009273}
9274
9275static bool
Richard Smith444d3842012-10-20 08:26:51 +00009276CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009277 // C++ [basic.stc.dynamic.deallocation]p1:
9278 // A program is ill-formed if deallocation functions are declared in a
9279 // namespace scope other than global scope or declared static in global
9280 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009281 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9282 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009283
9284 // C++ [basic.stc.dynamic.deallocation]p2:
9285 // Each deallocation function shall return void and its first parameter
9286 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009287 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9288 SemaRef.Context.VoidPtrTy,
9289 diag::err_operator_delete_dependent_param_type,
9290 diag::err_operator_delete_param_type))
9291 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009292
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009293 return false;
9294}
9295
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009296/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9297/// of this overloaded operator is well-formed. If so, returns false;
9298/// otherwise, emits appropriate diagnostics and returns true.
9299bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009300 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009301 "Expected an overloaded operator declaration");
9302
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009303 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9304
Mike Stump1eb44332009-09-09 15:08:12 +00009305 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009306 // The allocation and deallocation functions, operator new,
9307 // operator new[], operator delete and operator delete[], are
9308 // described completely in 3.7.3. The attributes and restrictions
9309 // found in the rest of this subclause do not apply to them unless
9310 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009311 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009312 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009313
Anders Carlssona3ccda52009-12-12 00:26:23 +00009314 if (Op == OO_New || Op == OO_Array_New)
9315 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009316
9317 // C++ [over.oper]p6:
9318 // An operator function shall either be a non-static member
9319 // function or be a non-member function and have at least one
9320 // parameter whose type is a class, a reference to a class, an
9321 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009322 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9323 if (MethodDecl->isStatic())
9324 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009325 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009326 } else {
9327 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009328 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9329 ParamEnd = FnDecl->param_end();
9330 Param != ParamEnd; ++Param) {
9331 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009332 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9333 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009334 ClassOrEnumParam = true;
9335 break;
9336 }
9337 }
9338
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009339 if (!ClassOrEnumParam)
9340 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009341 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009342 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009343 }
9344
9345 // C++ [over.oper]p8:
9346 // An operator function cannot have default arguments (8.3.6),
9347 // except where explicitly stated below.
9348 //
Mike Stump1eb44332009-09-09 15:08:12 +00009349 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009350 // (C++ [over.call]p1).
9351 if (Op != OO_Call) {
9352 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9353 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009354 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009355 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009356 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009357 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009358 }
9359 }
9360
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009361 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9362 { false, false, false }
9363#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9364 , { Unary, Binary, MemberOnly }
9365#include "clang/Basic/OperatorKinds.def"
9366 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009367
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009368 bool CanBeUnaryOperator = OperatorUses[Op][0];
9369 bool CanBeBinaryOperator = OperatorUses[Op][1];
9370 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009371
9372 // C++ [over.oper]p8:
9373 // [...] Operator functions cannot have more or fewer parameters
9374 // than the number required for the corresponding operator, as
9375 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009376 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009377 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009378 if (Op != OO_Call &&
9379 ((NumParams == 1 && !CanBeUnaryOperator) ||
9380 (NumParams == 2 && !CanBeBinaryOperator) ||
9381 (NumParams < 1) || (NumParams > 2))) {
9382 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009383 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009384 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009385 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009386 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009387 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009388 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009389 assert(CanBeBinaryOperator &&
9390 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009391 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009392 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009393
Chris Lattner416e46f2008-11-21 07:57:12 +00009394 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009395 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009396 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009397
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009398 // Overloaded operators other than operator() cannot be variadic.
9399 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009400 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009401 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009402 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009403 }
9404
9405 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009406 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9407 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009408 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009409 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009410 }
9411
9412 // C++ [over.inc]p1:
9413 // The user-defined function called operator++ implements the
9414 // prefix and postfix ++ operator. If this function is a member
9415 // function with no parameters, or a non-member function with one
9416 // parameter of class or enumeration type, it defines the prefix
9417 // increment operator ++ for objects of that type. If the function
9418 // is a member function with one parameter (which shall be of type
9419 // int) or a non-member function with two parameters (the second
9420 // of which shall be of type int), it defines the postfix
9421 // increment operator ++ for objects of that type.
9422 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9423 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9424 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009425 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009426 ParamIsInt = BT->getKind() == BuiltinType::Int;
9427
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009428 if (!ParamIsInt)
9429 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009430 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009431 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009432 }
9433
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009434 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009435}
Chris Lattner5a003a42008-12-17 07:09:26 +00009436
Sean Hunta6c058d2010-01-13 09:01:02 +00009437/// CheckLiteralOperatorDeclaration - Check whether the declaration
9438/// of this literal operator function is well-formed. If so, returns
9439/// false; otherwise, emits appropriate diagnostics and returns true.
9440bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009441 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009442 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9443 << FnDecl->getDeclName();
9444 return true;
9445 }
9446
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009447 if (FnDecl->isExternC()) {
9448 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9449 return true;
9450 }
9451
Sean Hunta6c058d2010-01-13 09:01:02 +00009452 bool Valid = false;
9453
Richard Smith36f5cfe2012-03-09 08:00:36 +00009454 // This might be the definition of a literal operator template.
9455 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9456 // This might be a specialization of a literal operator template.
9457 if (!TpDecl)
9458 TpDecl = FnDecl->getPrimaryTemplate();
9459
Sean Hunt216c2782010-04-07 23:11:06 +00009460 // template <char...> type operator "" name() is the only valid template
9461 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009462 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009463 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009464 // Must have only one template parameter
9465 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9466 if (Params->size() == 1) {
9467 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009468 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009469
Sean Hunt216c2782010-04-07 23:11:06 +00009470 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009471 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9472 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9473 Valid = true;
9474 }
9475 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009476 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009477 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009478 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9479
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009480 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009481
Sean Hunt30019c02010-04-07 22:57:35 +00009482 // unsigned long long int, long double, and any character type are allowed
9483 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009484 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9485 Context.hasSameType(T, Context.LongDoubleTy) ||
9486 Context.hasSameType(T, Context.CharTy) ||
9487 Context.hasSameType(T, Context.WCharTy) ||
9488 Context.hasSameType(T, Context.Char16Ty) ||
9489 Context.hasSameType(T, Context.Char32Ty)) {
9490 if (++Param == FnDecl->param_end())
9491 Valid = true;
9492 goto FinishedParams;
9493 }
9494
Sean Hunt30019c02010-04-07 22:57:35 +00009495 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009496 const PointerType *PT = T->getAs<PointerType>();
9497 if (!PT)
9498 goto FinishedParams;
9499 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009500 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009501 goto FinishedParams;
9502 T = T.getUnqualifiedType();
9503
9504 // Move on to the second parameter;
9505 ++Param;
9506
9507 // If there is no second parameter, the first must be a const char *
9508 if (Param == FnDecl->param_end()) {
9509 if (Context.hasSameType(T, Context.CharTy))
9510 Valid = true;
9511 goto FinishedParams;
9512 }
9513
9514 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9515 // are allowed as the first parameter to a two-parameter function
9516 if (!(Context.hasSameType(T, Context.CharTy) ||
9517 Context.hasSameType(T, Context.WCharTy) ||
9518 Context.hasSameType(T, Context.Char16Ty) ||
9519 Context.hasSameType(T, Context.Char32Ty)))
9520 goto FinishedParams;
9521
9522 // The second and final parameter must be an std::size_t
9523 T = (*Param)->getType().getUnqualifiedType();
9524 if (Context.hasSameType(T, Context.getSizeType()) &&
9525 ++Param == FnDecl->param_end())
9526 Valid = true;
9527 }
9528
9529 // FIXME: This diagnostic is absolutely terrible.
9530FinishedParams:
9531 if (!Valid) {
9532 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9533 << FnDecl->getDeclName();
9534 return true;
9535 }
9536
Richard Smitha9e88b22012-03-09 08:16:22 +00009537 // A parameter-declaration-clause containing a default argument is not
9538 // equivalent to any of the permitted forms.
9539 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9540 ParamEnd = FnDecl->param_end();
9541 Param != ParamEnd; ++Param) {
9542 if ((*Param)->hasDefaultArg()) {
9543 Diag((*Param)->getDefaultArgRange().getBegin(),
9544 diag::err_literal_operator_default_argument)
9545 << (*Param)->getDefaultArgRange();
9546 break;
9547 }
9548 }
9549
Richard Smith2fb4ae32012-03-08 02:39:21 +00009550 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009551 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9552 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009553 // C++11 [usrlit.suffix]p1:
9554 // Literal suffix identifiers that do not start with an underscore
9555 // are reserved for future standardization.
9556 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009557 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009558
Sean Hunta6c058d2010-01-13 09:01:02 +00009559 return false;
9560}
9561
Douglas Gregor074149e2009-01-05 19:45:36 +00009562/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9563/// linkage specification, including the language and (if present)
9564/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9565/// the location of the language string literal, which is provided
9566/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9567/// the '{' brace. Otherwise, this linkage specification does not
9568/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009569Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9570 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009571 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009572 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009573 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009574 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009575 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009576 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009577 Language = LinkageSpecDecl::lang_cxx;
9578 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009579 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009580 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009581 }
Mike Stump1eb44332009-09-09 15:08:12 +00009582
Chris Lattnercc98eac2008-12-17 07:13:27 +00009583 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009584
Douglas Gregor074149e2009-01-05 19:45:36 +00009585 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009586 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009587 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009588 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009589 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009590}
9591
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009592/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009593/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9594/// valid, it's the position of the closing '}' brace in a linkage
9595/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009596Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009597 Decl *LinkageSpec,
9598 SourceLocation RBraceLoc) {
9599 if (LinkageSpec) {
9600 if (RBraceLoc.isValid()) {
9601 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9602 LSDecl->setRBraceLoc(RBraceLoc);
9603 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009604 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009605 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009606 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009607}
9608
Douglas Gregord308e622009-05-18 20:51:54 +00009609/// \brief Perform semantic analysis for the variable declaration that
9610/// occurs within a C++ catch clause, returning the newly-created
9611/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009612VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009613 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009614 SourceLocation StartLoc,
9615 SourceLocation Loc,
9616 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009617 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009618 QualType ExDeclType = TInfo->getType();
9619
Sebastian Redl4b07b292008-12-22 19:15:10 +00009620 // Arrays and functions decay.
9621 if (ExDeclType->isArrayType())
9622 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9623 else if (ExDeclType->isFunctionType())
9624 ExDeclType = Context.getPointerType(ExDeclType);
9625
9626 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9627 // The exception-declaration shall not denote a pointer or reference to an
9628 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009629 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009630 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009631 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009632 Invalid = true;
9633 }
Douglas Gregord308e622009-05-18 20:51:54 +00009634
Sebastian Redl4b07b292008-12-22 19:15:10 +00009635 QualType BaseType = ExDeclType;
9636 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009637 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009638 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009639 BaseType = Ptr->getPointeeType();
9640 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009641 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009642 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009643 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009644 BaseType = Ref->getPointeeType();
9645 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009646 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009647 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009648 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009649 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009650 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009651
Mike Stump1eb44332009-09-09 15:08:12 +00009652 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009653 RequireNonAbstractType(Loc, ExDeclType,
9654 diag::err_abstract_type_in_decl,
9655 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009656 Invalid = true;
9657
John McCall5a180392010-07-24 00:37:23 +00009658 // Only the non-fragile NeXT runtime currently supports C++ catches
9659 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009660 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009661 QualType T = ExDeclType;
9662 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9663 T = RT->getPointeeType();
9664
9665 if (T->isObjCObjectType()) {
9666 Diag(Loc, diag::err_objc_object_catch);
9667 Invalid = true;
9668 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009669 // FIXME: should this be a test for macosx-fragile specifically?
9670 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009671 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009672 }
9673 }
9674
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009675 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9676 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009677 ExDecl->setExceptionVariable(true);
9678
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009679 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009680 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009681 Invalid = true;
9682
Douglas Gregorc41b8782011-07-06 18:14:43 +00009683 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009684 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009685 // C++ [except.handle]p16:
9686 // The object declared in an exception-declaration or, if the
9687 // exception-declaration does not specify a name, a temporary (12.2) is
9688 // copy-initialized (8.5) from the exception object. [...]
9689 // The object is destroyed when the handler exits, after the destruction
9690 // of any automatic objects initialized within the handler.
9691 //
9692 // We just pretend to initialize the object with itself, then make sure
9693 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009694 QualType initType = ExDeclType;
9695
9696 InitializedEntity entity =
9697 InitializedEntity::InitializeVariable(ExDecl);
9698 InitializationKind initKind =
9699 InitializationKind::CreateCopy(Loc, SourceLocation());
9700
9701 Expr *opaqueValue =
9702 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9703 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9704 ExprResult result = sequence.Perform(*this, entity, initKind,
9705 MultiExprArg(&opaqueValue, 1));
9706 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009707 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009708 else {
9709 // If the constructor used was non-trivial, set this as the
9710 // "initializer".
9711 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9712 if (!construct->getConstructor()->isTrivial()) {
9713 Expr *init = MaybeCreateExprWithCleanups(construct);
9714 ExDecl->setInit(init);
9715 }
9716
9717 // And make sure it's destructable.
9718 FinalizeVarWithDestructor(ExDecl, recordType);
9719 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009720 }
9721 }
9722
Douglas Gregord308e622009-05-18 20:51:54 +00009723 if (Invalid)
9724 ExDecl->setInvalidDecl();
9725
9726 return ExDecl;
9727}
9728
9729/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9730/// handler.
John McCalld226f652010-08-21 09:40:31 +00009731Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009732 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009733 bool Invalid = D.isInvalidType();
9734
9735 // Check for unexpanded parameter packs.
9736 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9737 UPPC_ExceptionType)) {
9738 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9739 D.getIdentifierLoc());
9740 Invalid = true;
9741 }
9742
Sebastian Redl4b07b292008-12-22 19:15:10 +00009743 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009744 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009745 LookupOrdinaryName,
9746 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009747 // The scope should be freshly made just for us. There is just no way
9748 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009749 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009750 if (PrevDecl->isTemplateParameter()) {
9751 // Maybe we will complain about the shadowed template parameter.
9752 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009753 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009754 }
9755 }
9756
Chris Lattnereaaebc72009-04-25 08:06:05 +00009757 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009758 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9759 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009760 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009761 }
9762
Douglas Gregor83cb9422010-09-09 17:09:21 +00009763 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009764 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009765 D.getIdentifierLoc(),
9766 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009767 if (Invalid)
9768 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009769
Sebastian Redl4b07b292008-12-22 19:15:10 +00009770 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009771 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009772 PushOnScopeChains(ExDecl, S);
9773 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009774 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009775
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009776 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009777 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009778}
Anders Carlssonfb311762009-03-14 00:25:26 +00009779
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009780Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009781 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009782 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009783 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009784 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009785
Richard Smithe3f470a2012-07-11 22:37:56 +00009786 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9787 return 0;
9788
9789 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9790 AssertMessage, RParenLoc, false);
9791}
9792
9793Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9794 Expr *AssertExpr,
9795 StringLiteral *AssertMessage,
9796 SourceLocation RParenLoc,
9797 bool Failed) {
9798 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9799 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009800 // In a static_assert-declaration, the constant-expression shall be a
9801 // constant expression that can be contextually converted to bool.
9802 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9803 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009804 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009805
Richard Smithdaaefc52011-12-14 23:32:26 +00009806 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009807 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009808 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009809 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009810 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009811
Richard Smithe3f470a2012-07-11 22:37:56 +00009812 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009813 llvm::SmallString<256> MsgBuffer;
9814 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009815 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009816 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009817 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009818 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009819 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009820 }
Mike Stump1eb44332009-09-09 15:08:12 +00009821
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009822 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009823 AssertExpr, AssertMessage, RParenLoc,
9824 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009825
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009826 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009827 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009828}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009829
Douglas Gregor1d869352010-04-07 16:53:43 +00009830/// \brief Perform semantic analysis of the given friend type declaration.
9831///
9832/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +00009833FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +00009834 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009835 TypeSourceInfo *TSInfo) {
9836 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9837
9838 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009839 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009840
Richard Smith6b130222011-10-18 21:39:00 +00009841 // C++03 [class.friend]p2:
9842 // An elaborated-type-specifier shall be used in a friend declaration
9843 // for a class.*
9844 //
9845 // * The class-key of the elaborated-type-specifier is required.
9846 if (!ActiveTemplateInstantiations.empty()) {
9847 // Do not complain about the form of friend template types during
9848 // template instantiation; we will already have complained when the
9849 // template was declared.
9850 } else if (!T->isElaboratedTypeSpecifier()) {
9851 // If we evaluated the type to a record type, suggest putting
9852 // a tag in front.
9853 if (const RecordType *RT = T->getAs<RecordType>()) {
9854 RecordDecl *RD = RT->getDecl();
9855
9856 std::string InsertionText = std::string(" ") + RD->getKindName();
9857
9858 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009859 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009860 diag::warn_cxx98_compat_unelaborated_friend_type :
9861 diag::ext_unelaborated_friend_type)
9862 << (unsigned) RD->getTagKind()
9863 << T
9864 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9865 InsertionText);
9866 } else {
9867 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009868 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009869 diag::warn_cxx98_compat_nonclass_type_friend :
9870 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009871 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009872 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009873 }
Richard Smith6b130222011-10-18 21:39:00 +00009874 } else if (T->getAs<EnumType>()) {
9875 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009876 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009877 diag::warn_cxx98_compat_enum_friend :
9878 diag::ext_enum_friend)
9879 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009880 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009881 }
9882
Richard Smithd6f80da2012-09-20 01:31:00 +00009883 // C++11 [class.friend]p3:
9884 // A friend declaration that does not declare a function shall have one
9885 // of the following forms:
9886 // friend elaborated-type-specifier ;
9887 // friend simple-type-specifier ;
9888 // friend typename-specifier ;
9889 if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
9890 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
9891
Douglas Gregor06245bf2010-04-07 17:57:12 +00009892 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +00009893 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +00009894 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +00009895 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009896}
9897
John McCall9a34edb2010-10-19 01:40:49 +00009898/// Handle a friend tag declaration where the scope specifier was
9899/// templated.
9900Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9901 unsigned TagSpec, SourceLocation TagLoc,
9902 CXXScopeSpec &SS,
9903 IdentifierInfo *Name, SourceLocation NameLoc,
9904 AttributeList *Attr,
9905 MultiTemplateParamsArg TempParamLists) {
9906 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9907
9908 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009909 bool Invalid = false;
9910
9911 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009912 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009913 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009914 TempParamLists.size(),
9915 /*friend*/ true,
9916 isExplicitSpecialization,
9917 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009918 if (TemplateParams->size() > 0) {
9919 // This is a declaration of a class template.
9920 if (Invalid)
9921 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009922
Eric Christopher4110e132011-07-21 05:34:24 +00009923 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9924 SS, Name, NameLoc, Attr,
9925 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009926 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009927 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009928 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009929 } else {
9930 // The "template<>" header is extraneous.
9931 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9932 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9933 isExplicitSpecialization = true;
9934 }
9935 }
9936
9937 if (Invalid) return 0;
9938
John McCall9a34edb2010-10-19 01:40:49 +00009939 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009940 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009941 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +00009942 isAllExplicitSpecializations = false;
9943 break;
9944 }
9945 }
9946
9947 // FIXME: don't ignore attributes.
9948
9949 // If it's explicit specializations all the way down, just forget
9950 // about the template header and build an appropriate non-templated
9951 // friend. TODO: for source fidelity, remember the headers.
9952 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009953 if (SS.isEmpty()) {
9954 bool Owned = false;
9955 bool IsDependent = false;
9956 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9957 Attr, AS_public,
9958 /*ModulePrivateLoc=*/SourceLocation(),
9959 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009960 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009961 /*ScopedEnumUsesClassTag=*/false,
9962 /*UnderlyingType=*/TypeResult());
9963 }
9964
Douglas Gregor2494dd02011-03-01 01:34:45 +00009965 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009966 ElaboratedTypeKeyword Keyword
9967 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009968 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009969 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009970 if (T.isNull())
9971 return 0;
9972
9973 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9974 if (isa<DependentNameType>(T)) {
9975 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009976 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009977 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009978 TL.setNameLoc(NameLoc);
9979 } else {
9980 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009981 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009982 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009983 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9984 }
9985
9986 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9987 TSI, FriendLoc);
9988 Friend->setAccess(AS_public);
9989 CurContext->addDecl(Friend);
9990 return Friend;
9991 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009992
9993 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9994
9995
John McCall9a34edb2010-10-19 01:40:49 +00009996
9997 // Handle the case of a templated-scope friend class. e.g.
9998 // template <class T> class A<T>::B;
9999 // FIXME: we don't support these right now.
10000 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10001 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10002 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10003 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010004 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010005 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010006 TL.setNameLoc(NameLoc);
10007
10008 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10009 TSI, FriendLoc);
10010 Friend->setAccess(AS_public);
10011 Friend->setUnsupportedFriend(true);
10012 CurContext->addDecl(Friend);
10013 return Friend;
10014}
10015
10016
John McCalldd4a3b02009-09-16 22:47:08 +000010017/// Handle a friend type declaration. This works in tandem with
10018/// ActOnTag.
10019///
10020/// Notes on friend class templates:
10021///
10022/// We generally treat friend class declarations as if they were
10023/// declaring a class. So, for example, the elaborated type specifier
10024/// in a friend declaration is required to obey the restrictions of a
10025/// class-head (i.e. no typedefs in the scope chain), template
10026/// parameters are required to match up with simple template-ids, &c.
10027/// However, unlike when declaring a template specialization, it's
10028/// okay to refer to a template specialization without an empty
10029/// template parameter declaration, e.g.
10030/// friend class A<T>::B<unsigned>;
10031/// We permit this as a special case; if there are any template
10032/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010033/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010034Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010035 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010036 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010037
10038 assert(DS.isFriendSpecified());
10039 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10040
John McCalldd4a3b02009-09-16 22:47:08 +000010041 // Try to convert the decl specifier to a type. This works for
10042 // friend templates because ActOnTag never produces a ClassTemplateDecl
10043 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010044 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010045 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10046 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010047 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010048 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010049
Douglas Gregor6ccab972010-12-16 01:14:37 +000010050 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10051 return 0;
10052
John McCalldd4a3b02009-09-16 22:47:08 +000010053 // This is definitely an error in C++98. It's probably meant to
10054 // be forbidden in C++0x, too, but the specification is just
10055 // poorly written.
10056 //
10057 // The problem is with declarations like the following:
10058 // template <T> friend A<T>::foo;
10059 // where deciding whether a class C is a friend or not now hinges
10060 // on whether there exists an instantiation of A that causes
10061 // 'foo' to equal C. There are restrictions on class-heads
10062 // (which we declare (by fiat) elaborated friend declarations to
10063 // be) that makes this tractable.
10064 //
10065 // FIXME: handle "template <> friend class A<T>;", which
10066 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010067 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010068 Diag(Loc, diag::err_tagless_friend_type_template)
10069 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010070 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010071 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010072
John McCall02cace72009-08-28 07:59:38 +000010073 // C++98 [class.friend]p1: A friend of a class is a function
10074 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010075 // This is fixed in DR77, which just barely didn't make the C++03
10076 // deadline. It's also a very silly restriction that seriously
10077 // affects inner classes and which nobody else seems to implement;
10078 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010079 //
10080 // But note that we could warn about it: it's always useless to
10081 // friend one of your own members (it's not, however, worthless to
10082 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010083
John McCalldd4a3b02009-09-16 22:47:08 +000010084 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010085 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010086 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010087 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010088 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010089 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010090 DS.getFriendSpecLoc());
10091 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010092 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010093
10094 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010095 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010096
John McCalldd4a3b02009-09-16 22:47:08 +000010097 D->setAccess(AS_public);
10098 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010099
John McCalld226f652010-08-21 09:40:31 +000010100 return D;
John McCall02cace72009-08-28 07:59:38 +000010101}
10102
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010103Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010104 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010105 const DeclSpec &DS = D.getDeclSpec();
10106
10107 assert(DS.isFriendSpecified());
10108 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10109
10110 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010111 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010112
10113 // C++ [class.friend]p1
10114 // A friend of a class is a function or class....
10115 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010116 // It *doesn't* see through dependent types, which is correct
10117 // according to [temp.arg.type]p3:
10118 // If a declaration acquires a function type through a
10119 // type dependent on a template-parameter and this causes
10120 // a declaration that does not use the syntactic form of a
10121 // function declarator to have a function type, the program
10122 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010123 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010124 Diag(Loc, diag::err_unexpected_friend);
10125
10126 // It might be worthwhile to try to recover by creating an
10127 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010128 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010129 }
10130
10131 // C++ [namespace.memdef]p3
10132 // - If a friend declaration in a non-local class first declares a
10133 // class or function, the friend class or function is a member
10134 // of the innermost enclosing namespace.
10135 // - The name of the friend is not found by simple name lookup
10136 // until a matching declaration is provided in that namespace
10137 // scope (either before or after the class declaration granting
10138 // friendship).
10139 // - If a friend function is called, its name may be found by the
10140 // name lookup that considers functions from namespaces and
10141 // classes associated with the types of the function arguments.
10142 // - When looking for a prior declaration of a class or a function
10143 // declared as a friend, scopes outside the innermost enclosing
10144 // namespace scope are not considered.
10145
John McCall337ec3d2010-10-12 23:13:28 +000010146 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010147 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10148 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010149 assert(Name);
10150
Douglas Gregor6ccab972010-12-16 01:14:37 +000010151 // Check for unexpanded parameter packs.
10152 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10153 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10154 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10155 return 0;
10156
John McCall67d1a672009-08-06 02:15:43 +000010157 // The context we found the declaration in, or in which we should
10158 // create the declaration.
10159 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010160 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010161 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010162 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010163
John McCall337ec3d2010-10-12 23:13:28 +000010164 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010165
John McCall337ec3d2010-10-12 23:13:28 +000010166 // There are four cases here.
10167 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010168 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010169 // there as appropriate.
10170 // Recover from invalid scope qualifiers as if they just weren't there.
10171 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010172 // C++0x [namespace.memdef]p3:
10173 // If the name in a friend declaration is neither qualified nor
10174 // a template-id and the declaration is a function or an
10175 // elaborated-type-specifier, the lookup to determine whether
10176 // the entity has been previously declared shall not consider
10177 // any scopes outside the innermost enclosing namespace.
10178 // C++0x [class.friend]p11:
10179 // If a friend declaration appears in a local class and the name
10180 // specified is an unqualified name, a prior declaration is
10181 // looked up without considering scopes that are outside the
10182 // innermost enclosing non-class scope. For a friend function
10183 // declaration, if there is no prior declaration, the program is
10184 // ill-formed.
10185 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010186 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010187
John McCall29ae6e52010-10-13 05:45:15 +000010188 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010189 DC = CurContext;
10190 while (true) {
10191 // Skip class contexts. If someone can cite chapter and verse
10192 // for this behavior, that would be nice --- it's what GCC and
10193 // EDG do, and it seems like a reasonable intent, but the spec
10194 // really only says that checks for unqualified existing
10195 // declarations should stop at the nearest enclosing namespace,
10196 // not that they should only consider the nearest enclosing
10197 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010198 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010199 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010200
John McCall68263142009-11-18 22:49:29 +000010201 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010202
10203 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010204 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010205 break;
John McCall29ae6e52010-10-13 05:45:15 +000010206
John McCall8a407372010-10-14 22:22:28 +000010207 if (isTemplateId) {
10208 if (isa<TranslationUnitDecl>(DC)) break;
10209 } else {
10210 if (DC->isFileContext()) break;
10211 }
John McCall67d1a672009-08-06 02:15:43 +000010212 DC = DC->getParent();
10213 }
10214
10215 // C++ [class.friend]p1: A friend of a class is a function or
10216 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010217 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010218 // Most C++ 98 compilers do seem to give an error here, so
10219 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010220 if (!Previous.empty() && DC->Equals(CurContext))
10221 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010222 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010223 diag::warn_cxx98_compat_friend_is_member :
10224 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010225
John McCall380aaa42010-10-13 06:22:15 +000010226 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010227
Douglas Gregor883af832011-10-10 01:11:59 +000010228 // C++ [class.friend]p6:
10229 // A function can be defined in a friend declaration of a class if and
10230 // only if the class is a non-local class (9.8), the function name is
10231 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010232 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010233 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10234 }
10235
John McCall337ec3d2010-10-12 23:13:28 +000010236 // - There's a non-dependent scope specifier, in which case we
10237 // compute it and do a previous lookup there for a function
10238 // or function template.
10239 } else if (!SS.getScopeRep()->isDependent()) {
10240 DC = computeDeclContext(SS);
10241 if (!DC) return 0;
10242
10243 if (RequireCompleteDeclContext(SS, DC)) return 0;
10244
10245 LookupQualifiedName(Previous, DC);
10246
10247 // Ignore things found implicitly in the wrong scope.
10248 // TODO: better diagnostics for this case. Suggesting the right
10249 // qualified scope would be nice...
10250 LookupResult::Filter F = Previous.makeFilter();
10251 while (F.hasNext()) {
10252 NamedDecl *D = F.next();
10253 if (!DC->InEnclosingNamespaceSetOf(
10254 D->getDeclContext()->getRedeclContext()))
10255 F.erase();
10256 }
10257 F.done();
10258
10259 if (Previous.empty()) {
10260 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010261 Diag(Loc, diag::err_qualified_friend_not_found)
10262 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010263 return 0;
10264 }
10265
10266 // C++ [class.friend]p1: A friend of a class is a function or
10267 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010268 if (DC->Equals(CurContext))
10269 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010270 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010271 diag::warn_cxx98_compat_friend_is_member :
10272 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010273
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010274 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010275 // C++ [class.friend]p6:
10276 // A function can be defined in a friend declaration of a class if and
10277 // only if the class is a non-local class (9.8), the function name is
10278 // unqualified, and the function has namespace scope.
10279 SemaDiagnosticBuilder DB
10280 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10281
10282 DB << SS.getScopeRep();
10283 if (DC->isFileContext())
10284 DB << FixItHint::CreateRemoval(SS.getRange());
10285 SS.clear();
10286 }
John McCall337ec3d2010-10-12 23:13:28 +000010287
10288 // - There's a scope specifier that does not match any template
10289 // parameter lists, in which case we use some arbitrary context,
10290 // create a method or method template, and wait for instantiation.
10291 // - There's a scope specifier that does match some template
10292 // parameter lists, which we don't handle right now.
10293 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010294 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010295 // C++ [class.friend]p6:
10296 // A function can be defined in a friend declaration of a class if and
10297 // only if the class is a non-local class (9.8), the function name is
10298 // unqualified, and the function has namespace scope.
10299 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10300 << SS.getScopeRep();
10301 }
10302
John McCall337ec3d2010-10-12 23:13:28 +000010303 DC = CurContext;
10304 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010305 }
Douglas Gregor883af832011-10-10 01:11:59 +000010306
John McCall29ae6e52010-10-13 05:45:15 +000010307 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010308 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010309 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10310 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10311 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010312 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010313 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10314 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010315 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010316 }
John McCall67d1a672009-08-06 02:15:43 +000010317 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010318
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010319 // FIXME: This is an egregious hack to cope with cases where the scope stack
10320 // does not contain the declaration context, i.e., in an out-of-line
10321 // definition of a class.
10322 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10323 if (!DCScope) {
10324 FakeDCScope.setEntity(DC);
10325 DCScope = &FakeDCScope;
10326 }
10327
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010328 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010329 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010330 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010331 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010332
Douglas Gregor182ddf02009-09-28 00:08:27 +000010333 assert(ND->getDeclContext() == DC);
10334 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010335
John McCallab88d972009-08-31 22:39:49 +000010336 // Add the function declaration to the appropriate lookup tables,
10337 // adjusting the redeclarations list as necessary. We don't
10338 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010339 //
John McCallab88d972009-08-31 22:39:49 +000010340 // Also update the scope-based lookup if the target context's
10341 // lookup context is in lexical scope.
10342 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010343 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010344 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010345 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010346 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010347 }
John McCall02cace72009-08-28 07:59:38 +000010348
10349 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010350 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010351 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010352 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010353 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010354
John McCall1f2e1a92012-08-10 03:15:35 +000010355 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010356 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010357 } else {
10358 if (DC->isRecord()) CheckFriendAccess(ND);
10359
John McCall6102ca12010-10-16 06:59:13 +000010360 FunctionDecl *FD;
10361 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10362 FD = FTD->getTemplatedDecl();
10363 else
10364 FD = cast<FunctionDecl>(ND);
10365
10366 // Mark templated-scope function declarations as unsupported.
10367 if (FD->getNumTemplateParameterLists())
10368 FrD->setUnsupportedFriend(true);
10369 }
John McCall337ec3d2010-10-12 23:13:28 +000010370
John McCalld226f652010-08-21 09:40:31 +000010371 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010372}
10373
John McCalld226f652010-08-21 09:40:31 +000010374void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10375 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010376
Sebastian Redl50de12f2009-03-24 22:27:57 +000010377 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10378 if (!Fn) {
10379 Diag(DelLoc, diag::err_deleted_non_function);
10380 return;
10381 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010382 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010383 // Don't consider the implicit declaration we generate for explicit
10384 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010385 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10386 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010387 Diag(DelLoc, diag::err_deleted_decl_not_first);
10388 Diag(Prev->getLocation(), diag::note_previous_declaration);
10389 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010390 // If the declaration wasn't the first, we delete the function anyway for
10391 // recovery.
10392 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010393 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010394
10395 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10396 if (!MD)
10397 return;
10398
10399 // A deleted special member function is trivial if the corresponding
10400 // implicitly-declared function would have been.
10401 switch (getSpecialMember(MD)) {
10402 case CXXInvalid:
10403 break;
10404 case CXXDefaultConstructor:
10405 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10406 break;
10407 case CXXCopyConstructor:
10408 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10409 break;
10410 case CXXMoveConstructor:
10411 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10412 break;
10413 case CXXCopyAssignment:
10414 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10415 break;
10416 case CXXMoveAssignment:
10417 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10418 break;
10419 case CXXDestructor:
10420 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10421 break;
10422 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010423}
Sebastian Redl13e88542009-04-27 21:33:24 +000010424
Sean Hunte4246a62011-05-12 06:15:49 +000010425void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10426 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10427
10428 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010429 if (MD->getParent()->isDependentType()) {
10430 MD->setDefaulted();
10431 MD->setExplicitlyDefaulted();
10432 return;
10433 }
10434
Sean Hunte4246a62011-05-12 06:15:49 +000010435 CXXSpecialMember Member = getSpecialMember(MD);
10436 if (Member == CXXInvalid) {
10437 Diag(DefaultLoc, diag::err_default_special_members);
10438 return;
10439 }
10440
10441 MD->setDefaulted();
10442 MD->setExplicitlyDefaulted();
10443
Sean Huntcd10dec2011-05-23 23:14:04 +000010444 // If this definition appears within the record, do the checking when
10445 // the record is complete.
10446 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010447 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010448 // Find the uninstantiated declaration that actually had the '= default'
10449 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010450 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010451
10452 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010453 return;
10454
Richard Smithb9d0b762012-07-27 04:22:15 +000010455 CheckExplicitlyDefaultedSpecialMember(MD);
10456
Sean Hunte4246a62011-05-12 06:15:49 +000010457 switch (Member) {
10458 case CXXDefaultConstructor: {
10459 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010460 if (!CD->isInvalidDecl())
10461 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10462 break;
10463 }
10464
10465 case CXXCopyConstructor: {
10466 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010467 if (!CD->isInvalidDecl())
10468 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010469 break;
10470 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010471
Sean Hunt2b188082011-05-14 05:23:28 +000010472 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010473 if (!MD->isInvalidDecl())
10474 DefineImplicitCopyAssignment(DefaultLoc, MD);
10475 break;
10476 }
10477
Sean Huntcb45a0f2011-05-12 22:46:25 +000010478 case CXXDestructor: {
10479 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010480 if (!DD->isInvalidDecl())
10481 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010482 break;
10483 }
10484
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010485 case CXXMoveConstructor: {
10486 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010487 if (!CD->isInvalidDecl())
10488 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010489 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010490 }
Sean Hunt82713172011-05-25 23:16:36 +000010491
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010492 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010493 if (!MD->isInvalidDecl())
10494 DefineImplicitMoveAssignment(DefaultLoc, MD);
10495 break;
10496 }
10497
10498 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010499 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010500 }
10501 } else {
10502 Diag(DefaultLoc, diag::err_default_special_members);
10503 }
10504}
10505
Sebastian Redl13e88542009-04-27 21:33:24 +000010506static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010507 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010508 Stmt *SubStmt = *CI;
10509 if (!SubStmt)
10510 continue;
10511 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010512 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010513 diag::err_return_in_constructor_handler);
10514 if (!isa<Expr>(SubStmt))
10515 SearchForReturnInStmt(Self, SubStmt);
10516 }
10517}
10518
10519void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10520 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10521 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10522 SearchForReturnInStmt(*this, Handler);
10523 }
10524}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010525
Mike Stump1eb44332009-09-09 15:08:12 +000010526bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010527 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010528 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10529 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010530
Chandler Carruth73857792010-02-15 11:53:20 +000010531 if (Context.hasSameType(NewTy, OldTy) ||
10532 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010533 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010534
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010535 // Check if the return types are covariant
10536 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010537
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010538 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010539 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10540 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010541 NewClassTy = NewPT->getPointeeType();
10542 OldClassTy = OldPT->getPointeeType();
10543 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010544 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10545 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10546 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10547 NewClassTy = NewRT->getPointeeType();
10548 OldClassTy = OldRT->getPointeeType();
10549 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010550 }
10551 }
Mike Stump1eb44332009-09-09 15:08:12 +000010552
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010553 // The return types aren't either both pointers or references to a class type.
10554 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010555 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010556 diag::err_different_return_type_for_overriding_virtual_function)
10557 << New->getDeclName() << NewTy << OldTy;
10558 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010559
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010560 return true;
10561 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010562
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010563 // C++ [class.virtual]p6:
10564 // If the return type of D::f differs from the return type of B::f, the
10565 // class type in the return type of D::f shall be complete at the point of
10566 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010567 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10568 if (!RT->isBeingDefined() &&
10569 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010570 diag::err_covariant_return_incomplete,
10571 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010572 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010573 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010574
Douglas Gregora4923eb2009-11-16 21:35:15 +000010575 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010576 // Check if the new class derives from the old class.
10577 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10578 Diag(New->getLocation(),
10579 diag::err_covariant_return_not_derived)
10580 << New->getDeclName() << NewTy << OldTy;
10581 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10582 return true;
10583 }
Mike Stump1eb44332009-09-09 15:08:12 +000010584
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010585 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010586 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010587 diag::err_covariant_return_inaccessible_base,
10588 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10589 // FIXME: Should this point to the return type?
10590 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010591 // FIXME: this note won't trigger for delayed access control
10592 // diagnostics, and it's impossible to get an undelayed error
10593 // here from access control during the original parse because
10594 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010595 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10596 return true;
10597 }
10598 }
Mike Stump1eb44332009-09-09 15:08:12 +000010599
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010600 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010601 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010602 Diag(New->getLocation(),
10603 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010604 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010605 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10606 return true;
10607 };
Mike Stump1eb44332009-09-09 15:08:12 +000010608
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010609
10610 // The new class type must have the same or less qualifiers as the old type.
10611 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10612 Diag(New->getLocation(),
10613 diag::err_covariant_return_type_class_type_more_qualified)
10614 << New->getDeclName() << NewTy << OldTy;
10615 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10616 return true;
10617 };
Mike Stump1eb44332009-09-09 15:08:12 +000010618
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010619 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010620}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010621
Douglas Gregor4ba31362009-12-01 17:24:26 +000010622/// \brief Mark the given method pure.
10623///
10624/// \param Method the method to be marked pure.
10625///
10626/// \param InitRange the source range that covers the "0" initializer.
10627bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010628 SourceLocation EndLoc = InitRange.getEnd();
10629 if (EndLoc.isValid())
10630 Method->setRangeEnd(EndLoc);
10631
Douglas Gregor4ba31362009-12-01 17:24:26 +000010632 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10633 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010634 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010635 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010636
10637 if (!Method->isInvalidDecl())
10638 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10639 << Method->getDeclName() << InitRange;
10640 return true;
10641}
10642
Douglas Gregor552e2992012-02-21 02:22:07 +000010643/// \brief Determine whether the given declaration is a static data member.
10644static bool isStaticDataMember(Decl *D) {
10645 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10646 if (!Var)
10647 return false;
10648
10649 return Var->isStaticDataMember();
10650}
John McCall731ad842009-12-19 09:28:58 +000010651/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10652/// an initializer for the out-of-line declaration 'Dcl'. The scope
10653/// is a fresh scope pushed for just this purpose.
10654///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010655/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10656/// static data member of class X, names should be looked up in the scope of
10657/// class X.
John McCalld226f652010-08-21 09:40:31 +000010658void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010659 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010660 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010661
John McCall731ad842009-12-19 09:28:58 +000010662 // We should only get called for declarations with scope specifiers, like:
10663 // int foo::bar;
10664 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010665 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010666
10667 // If we are parsing the initializer for a static data member, push a
10668 // new expression evaluation context that is associated with this static
10669 // data member.
10670 if (isStaticDataMember(D))
10671 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010672}
10673
10674/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010675/// initializer for the out-of-line declaration 'D'.
10676void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010677 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010678 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010679
Douglas Gregor552e2992012-02-21 02:22:07 +000010680 if (isStaticDataMember(D))
10681 PopExpressionEvaluationContext();
10682
John McCall731ad842009-12-19 09:28:58 +000010683 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010684 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010685}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010686
10687/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10688/// C++ if/switch/while/for statement.
10689/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010690DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010691 // C++ 6.4p2:
10692 // The declarator shall not specify a function or an array.
10693 // The type-specifier-seq shall not contain typedef and shall not declare a
10694 // new class or enumeration.
10695 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10696 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010697
10698 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010699 if (!Dcl)
10700 return true;
10701
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010702 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10703 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010704 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010705 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010706 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010707
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010708 return Dcl;
10709}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010710
Douglas Gregordfe65432011-07-28 19:11:31 +000010711void Sema::LoadExternalVTableUses() {
10712 if (!ExternalSource)
10713 return;
10714
10715 SmallVector<ExternalVTableUse, 4> VTables;
10716 ExternalSource->ReadUsedVTables(VTables);
10717 SmallVector<VTableUse, 4> NewUses;
10718 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10719 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10720 = VTablesUsed.find(VTables[I].Record);
10721 // Even if a definition wasn't required before, it may be required now.
10722 if (Pos != VTablesUsed.end()) {
10723 if (!Pos->second && VTables[I].DefinitionRequired)
10724 Pos->second = true;
10725 continue;
10726 }
10727
10728 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10729 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10730 }
10731
10732 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10733}
10734
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010735void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10736 bool DefinitionRequired) {
10737 // Ignore any vtable uses in unevaluated operands or for classes that do
10738 // not have a vtable.
10739 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10740 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010741 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010742 return;
10743
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010744 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010745 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010746 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10747 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10748 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10749 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010750 // If we already had an entry, check to see if we are promoting this vtable
10751 // to required a definition. If so, we need to reappend to the VTableUses
10752 // list, since we may have already processed the first entry.
10753 if (DefinitionRequired && !Pos.first->second) {
10754 Pos.first->second = true;
10755 } else {
10756 // Otherwise, we can early exit.
10757 return;
10758 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010759 }
10760
10761 // Local classes need to have their virtual members marked
10762 // immediately. For all other classes, we mark their virtual members
10763 // at the end of the translation unit.
10764 if (Class->isLocalClass())
10765 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010766 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010767 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010768}
10769
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010770bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010771 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010772 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010773 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010774
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010775 // Note: The VTableUses vector could grow as a result of marking
10776 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010777 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010778 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010779 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010780 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010781 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010782 if (!Class)
10783 continue;
10784
10785 SourceLocation Loc = VTableUses[I].second;
10786
Richard Smithb9d0b762012-07-27 04:22:15 +000010787 bool DefineVTable = true;
10788
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010789 // If this class has a key function, but that key function is
10790 // defined in another translation unit, we don't need to emit the
10791 // vtable even though we're using it.
10792 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010793 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010794 switch (KeyFunction->getTemplateSpecializationKind()) {
10795 case TSK_Undeclared:
10796 case TSK_ExplicitSpecialization:
10797 case TSK_ExplicitInstantiationDeclaration:
10798 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010799 DefineVTable = false;
10800 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010801
10802 case TSK_ExplicitInstantiationDefinition:
10803 case TSK_ImplicitInstantiation:
10804 // We will be instantiating the key function.
10805 break;
10806 }
10807 } else if (!KeyFunction) {
10808 // If we have a class with no key function that is the subject
10809 // of an explicit instantiation declaration, suppress the
10810 // vtable; it will live with the explicit instantiation
10811 // definition.
10812 bool IsExplicitInstantiationDeclaration
10813 = Class->getTemplateSpecializationKind()
10814 == TSK_ExplicitInstantiationDeclaration;
10815 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10816 REnd = Class->redecls_end();
10817 R != REnd; ++R) {
10818 TemplateSpecializationKind TSK
10819 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10820 if (TSK == TSK_ExplicitInstantiationDeclaration)
10821 IsExplicitInstantiationDeclaration = true;
10822 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10823 IsExplicitInstantiationDeclaration = false;
10824 break;
10825 }
10826 }
10827
10828 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010829 DefineVTable = false;
10830 }
10831
10832 // The exception specifications for all virtual members may be needed even
10833 // if we are not providing an authoritative form of the vtable in this TU.
10834 // We may choose to emit it available_externally anyway.
10835 if (!DefineVTable) {
10836 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10837 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010838 }
10839
10840 // Mark all of the virtual members of this class as referenced, so
10841 // that we can build a vtable. Then, tell the AST consumer that a
10842 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010843 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010844 MarkVirtualMembersReferenced(Loc, Class);
10845 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10846 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10847
10848 // Optionally warn if we're emitting a weak vtable.
10849 if (Class->getLinkage() == ExternalLinkage &&
10850 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010851 const FunctionDecl *KeyFunctionDef = 0;
10852 if (!KeyFunction ||
10853 (KeyFunction->hasBody(KeyFunctionDef) &&
10854 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010855 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10856 TSK_ExplicitInstantiationDefinition
10857 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10858 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010859 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010860 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010861 VTableUses.clear();
10862
Douglas Gregor78844032011-04-22 22:25:37 +000010863 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010864}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010865
Richard Smithb9d0b762012-07-27 04:22:15 +000010866void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10867 const CXXRecordDecl *RD) {
10868 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10869 E = RD->method_end(); I != E; ++I)
10870 if ((*I)->isVirtual() && !(*I)->isPure())
10871 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10872}
10873
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010874void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10875 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010876 // Mark all functions which will appear in RD's vtable as used.
10877 CXXFinalOverriderMap FinalOverriders;
10878 RD->getFinalOverriders(FinalOverriders);
10879 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10880 E = FinalOverriders.end();
10881 I != E; ++I) {
10882 for (OverridingMethods::const_iterator OI = I->second.begin(),
10883 OE = I->second.end();
10884 OI != OE; ++OI) {
10885 assert(OI->second.size() > 0 && "no final overrider");
10886 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010887
Richard Smithff817f72012-07-07 06:59:51 +000010888 // C++ [basic.def.odr]p2:
10889 // [...] A virtual member function is used if it is not pure. [...]
10890 if (!Overrider->isPure())
10891 MarkFunctionReferenced(Loc, Overrider);
10892 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010893 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010894
10895 // Only classes that have virtual bases need a VTT.
10896 if (RD->getNumVBases() == 0)
10897 return;
10898
10899 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10900 e = RD->bases_end(); i != e; ++i) {
10901 const CXXRecordDecl *Base =
10902 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010903 if (Base->getNumVBases() == 0)
10904 continue;
10905 MarkVirtualMembersReferenced(Loc, Base);
10906 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010907}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010908
10909/// SetIvarInitializers - This routine builds initialization ASTs for the
10910/// Objective-C implementation whose ivars need be initialized.
10911void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010912 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010913 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010914 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010915 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010916 CollectIvarsToConstructOrDestruct(OID, ivars);
10917 if (ivars.empty())
10918 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010919 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010920 for (unsigned i = 0; i < ivars.size(); i++) {
10921 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010922 if (Field->isInvalidDecl())
10923 continue;
10924
Sean Huntcbb67482011-01-08 20:30:50 +000010925 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010926 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10927 InitializationKind InitKind =
10928 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10929
10930 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010931 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010932 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010933 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010934 // Note, MemberInit could actually come back empty if no initialization
10935 // is required (e.g., because it would call a trivial default constructor)
10936 if (!MemberInit.get() || MemberInit.isInvalid())
10937 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010938
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010939 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010940 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10941 SourceLocation(),
10942 MemberInit.takeAs<Expr>(),
10943 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010944 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010945
10946 // Be sure that the destructor is accessible and is marked as referenced.
10947 if (const RecordType *RecordTy
10948 = Context.getBaseElementType(Field->getType())
10949 ->getAs<RecordType>()) {
10950 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010951 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010952 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010953 CheckDestructorAccess(Field->getLocation(), Destructor,
10954 PDiag(diag::err_access_dtor_ivar)
10955 << Context.getBaseElementType(Field->getType()));
10956 }
10957 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010958 }
10959 ObjCImplementation->setIvarInitializers(Context,
10960 AllToInit.data(), AllToInit.size());
10961 }
10962}
Sean Huntfe57eef2011-05-04 05:57:24 +000010963
Sean Huntebcbe1d2011-05-04 23:29:54 +000010964static
10965void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10966 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10967 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10968 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10969 Sema &S) {
10970 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10971 CE = Current.end();
10972 if (Ctor->isInvalidDecl())
10973 return;
10974
Richard Smitha8eaf002012-08-23 06:16:52 +000010975 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
10976
10977 // Target may not be determinable yet, for instance if this is a dependent
10978 // call in an uninstantiated template.
10979 if (Target) {
10980 const FunctionDecl *FNTarget = 0;
10981 (void)Target->hasBody(FNTarget);
10982 Target = const_cast<CXXConstructorDecl*>(
10983 cast_or_null<CXXConstructorDecl>(FNTarget));
10984 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010985
10986 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10987 // Avoid dereferencing a null pointer here.
10988 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10989
10990 if (!Current.insert(Canonical))
10991 return;
10992
10993 // We know that beyond here, we aren't chaining into a cycle.
10994 if (!Target || !Target->isDelegatingConstructor() ||
10995 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10996 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10997 Valid.insert(*CI);
10998 Current.clear();
10999 // We've hit a cycle.
11000 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11001 Current.count(TCanonical)) {
11002 // If we haven't diagnosed this cycle yet, do so now.
11003 if (!Invalid.count(TCanonical)) {
11004 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011005 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011006 << Ctor;
11007
Richard Smitha8eaf002012-08-23 06:16:52 +000011008 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011009 if (TCanonical != Canonical)
11010 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11011
11012 CXXConstructorDecl *C = Target;
11013 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011014 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011015 (void)C->getTargetConstructor()->hasBody(FNTarget);
11016 assert(FNTarget && "Ctor cycle through bodiless function");
11017
Richard Smitha8eaf002012-08-23 06:16:52 +000011018 C = const_cast<CXXConstructorDecl*>(
11019 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011020 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11021 }
11022 }
11023
11024 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11025 Invalid.insert(*CI);
11026 Current.clear();
11027 } else {
11028 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11029 }
11030}
11031
11032
Sean Huntfe57eef2011-05-04 05:57:24 +000011033void Sema::CheckDelegatingCtorCycles() {
11034 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11035
Sean Huntebcbe1d2011-05-04 23:29:54 +000011036 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11037 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011038
Douglas Gregor0129b562011-07-27 21:57:17 +000011039 for (DelegatingCtorDeclsType::iterator
11040 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011041 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011042 I != E; ++I)
11043 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011044
11045 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11046 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011047}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011048
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011049namespace {
11050 /// \brief AST visitor that finds references to the 'this' expression.
11051 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11052 Sema &S;
11053
11054 public:
11055 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11056
11057 bool VisitCXXThisExpr(CXXThisExpr *E) {
11058 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11059 << E->isImplicit();
11060 return false;
11061 }
11062 };
11063}
11064
11065bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11066 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11067 if (!TSInfo)
11068 return false;
11069
11070 TypeLoc TL = TSInfo->getTypeLoc();
11071 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11072 if (!ProtoTL)
11073 return false;
11074
11075 // C++11 [expr.prim.general]p3:
11076 // [The expression this] shall not appear before the optional
11077 // cv-qualifier-seq and it shall not appear within the declaration of a
11078 // static member function (although its type and value category are defined
11079 // within a static member function as they are within a non-static member
11080 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011081 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011082 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11083 FindCXXThisExpr Finder(*this);
11084
11085 // If the return type came after the cv-qualifier-seq, check it now.
11086 if (Proto->hasTrailingReturn() &&
11087 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11088 return true;
11089
11090 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011091 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11092 return true;
11093
11094 return checkThisInStaticMemberFunctionAttributes(Method);
11095}
11096
11097bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11098 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11099 if (!TSInfo)
11100 return false;
11101
11102 TypeLoc TL = TSInfo->getTypeLoc();
11103 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11104 if (!ProtoTL)
11105 return false;
11106
11107 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11108 FindCXXThisExpr Finder(*this);
11109
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011110 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011111 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011112 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011113 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011114 case EST_DynamicNone:
11115 case EST_MSAny:
11116 case EST_None:
11117 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011118
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011119 case EST_ComputedNoexcept:
11120 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11121 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011122
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011123 case EST_Dynamic:
11124 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011125 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011126 E != EEnd; ++E) {
11127 if (!Finder.TraverseType(*E))
11128 return true;
11129 }
11130 break;
11131 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011132
11133 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011134}
11135
11136bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11137 FindCXXThisExpr Finder(*this);
11138
11139 // Check attributes.
11140 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11141 A != AEnd; ++A) {
11142 // FIXME: This should be emitted by tblgen.
11143 Expr *Arg = 0;
11144 ArrayRef<Expr *> Args;
11145 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11146 Arg = G->getArg();
11147 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11148 Arg = G->getArg();
11149 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11150 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11151 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11152 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11153 else if (ExclusiveLockFunctionAttr *ELF
11154 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11155 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11156 else if (SharedLockFunctionAttr *SLF
11157 = dyn_cast<SharedLockFunctionAttr>(*A))
11158 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11159 else if (ExclusiveTrylockFunctionAttr *ETLF
11160 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11161 Arg = ETLF->getSuccessValue();
11162 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11163 } else if (SharedTrylockFunctionAttr *STLF
11164 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11165 Arg = STLF->getSuccessValue();
11166 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11167 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11168 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11169 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11170 Arg = LR->getArg();
11171 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11172 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11173 else if (ExclusiveLocksRequiredAttr *ELR
11174 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11175 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11176 else if (SharedLocksRequiredAttr *SLR
11177 = dyn_cast<SharedLocksRequiredAttr>(*A))
11178 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11179
11180 if (Arg && !Finder.TraverseStmt(Arg))
11181 return true;
11182
11183 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11184 if (!Finder.TraverseStmt(Args[I]))
11185 return true;
11186 }
11187 }
11188
11189 return false;
11190}
11191
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011192void
11193Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11194 ArrayRef<ParsedType> DynamicExceptions,
11195 ArrayRef<SourceRange> DynamicExceptionRanges,
11196 Expr *NoexceptExpr,
11197 llvm::SmallVectorImpl<QualType> &Exceptions,
11198 FunctionProtoType::ExtProtoInfo &EPI) {
11199 Exceptions.clear();
11200 EPI.ExceptionSpecType = EST;
11201 if (EST == EST_Dynamic) {
11202 Exceptions.reserve(DynamicExceptions.size());
11203 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11204 // FIXME: Preserve type source info.
11205 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11206
11207 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11208 collectUnexpandedParameterPacks(ET, Unexpanded);
11209 if (!Unexpanded.empty()) {
11210 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11211 UPPC_ExceptionType,
11212 Unexpanded);
11213 continue;
11214 }
11215
11216 // Check that the type is valid for an exception spec, and
11217 // drop it if not.
11218 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11219 Exceptions.push_back(ET);
11220 }
11221 EPI.NumExceptions = Exceptions.size();
11222 EPI.Exceptions = Exceptions.data();
11223 return;
11224 }
11225
11226 if (EST == EST_ComputedNoexcept) {
11227 // If an error occurred, there's no expression here.
11228 if (NoexceptExpr) {
11229 assert((NoexceptExpr->isTypeDependent() ||
11230 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11231 Context.BoolTy) &&
11232 "Parser should have made sure that the expression is boolean");
11233 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11234 EPI.ExceptionSpecType = EST_BasicNoexcept;
11235 return;
11236 }
11237
11238 if (!NoexceptExpr->isValueDependent())
11239 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011240 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011241 /*AllowFold*/ false).take();
11242 EPI.NoexceptExpr = NoexceptExpr;
11243 }
11244 return;
11245 }
11246}
11247
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011248/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11249Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11250 // Implicitly declared functions (e.g. copy constructors) are
11251 // __host__ __device__
11252 if (D->isImplicit())
11253 return CFT_HostDevice;
11254
11255 if (D->hasAttr<CUDAGlobalAttr>())
11256 return CFT_Global;
11257
11258 if (D->hasAttr<CUDADeviceAttr>()) {
11259 if (D->hasAttr<CUDAHostAttr>())
11260 return CFT_HostDevice;
11261 else
11262 return CFT_Device;
11263 }
11264
11265 return CFT_Host;
11266}
11267
11268bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11269 CUDAFunctionTarget CalleeTarget) {
11270 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11271 // Callable from the device only."
11272 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11273 return true;
11274
11275 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11276 // Callable from the host only."
11277 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11278 // Callable from the host only."
11279 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11280 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11281 return true;
11282
11283 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11284 return true;
11285
11286 return false;
11287}