blob: 8666453c311c35032b3b9ddfbec7e5eeb4314254 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/AST/CharUnits.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000020#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000024#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000025#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000030#include "clang/Sema/CXXFieldCollector.h"
31#include "clang/Sema/DeclSpec.h"
32#include "clang/Sema/Initialization.h"
33#include "clang/Sema/Lookup.h"
34#include "clang/Sema/ParsedTemplate.h"
35#include "clang/Sema/Scope.h"
36#include "clang/Sema/ScopeInfo.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000037#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000038#include "llvm/ADT/SmallString.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Craig Topper1a6eac82012-09-21 04:33:26 +0000376/// MergeCXXFunctionDecl - Merge two declarations of the same C++
377/// function, once we already know that they have the same
378/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
520 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000521 }
522 }
523
Richard Smithb8abff62012-11-28 03:45:24 +0000524 // DR1344: If a default argument is added outside a class definition and that
525 // default argument makes the function a special member function, the program
526 // is ill-formed. This can only happen for constructors.
527 if (isa<CXXConstructorDecl>(New) &&
528 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
529 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
530 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
531 if (NewSM != OldSM) {
532 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
533 assert(NewParam->hasDefaultArg());
534 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
535 << NewParam->getDefaultArgRange() << NewSM;
536 Diag(Old->getLocation(), diag::note_previous_declaration);
537 }
538 }
539
Richard Smithff234882012-02-20 23:28:05 +0000540 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000541 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000542 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000543 if (New->isConstexpr() != Old->isConstexpr()) {
544 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
545 << New << New->isConstexpr();
546 Diag(Old->getLocation(), diag::note_previous_declaration);
547 Invalid = true;
548 }
549
Douglas Gregore13ad832010-02-12 07:32:17 +0000550 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000551 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000552
Douglas Gregorcda9c672009-02-16 17:45:42 +0000553 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000554}
555
Sebastian Redl60618fa2011-03-12 11:50:43 +0000556/// \brief Merge the exception specifications of two variable declarations.
557///
558/// This is called when there's a redeclaration of a VarDecl. The function
559/// checks if the redeclaration might have an exception specification and
560/// validates compatibility and merges the specs if necessary.
561void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
562 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000563 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000564 return;
565
566 assert(Context.hasSameType(New->getType(), Old->getType()) &&
567 "Should only be called if types are otherwise the same.");
568
569 QualType NewType = New->getType();
570 QualType OldType = Old->getType();
571
572 // We're only interested in pointers and references to functions, as well
573 // as pointers to member functions.
574 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
575 NewType = R->getPointeeType();
576 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
577 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
578 NewType = P->getPointeeType();
579 OldType = OldType->getAs<PointerType>()->getPointeeType();
580 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
581 NewType = M->getPointeeType();
582 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
583 }
584
585 if (!NewType->isFunctionProtoType())
586 return;
587
588 // There's lots of special cases for functions. For function pointers, system
589 // libraries are hopefully not as broken so that we don't need these
590 // workarounds.
591 if (CheckEquivalentExceptionSpec(
592 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
593 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
594 New->setInvalidDecl();
595 }
596}
597
Chris Lattner3d1cee32008-04-08 05:04:30 +0000598/// CheckCXXDefaultArguments - Verify that the default arguments for a
599/// function declaration are well-formed according to C++
600/// [dcl.fct.default].
601void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
602 unsigned NumParams = FD->getNumParams();
603 unsigned p;
604
Douglas Gregorc6889e72012-02-14 22:28:59 +0000605 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
606 isa<CXXMethodDecl>(FD) &&
607 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
608
Chris Lattner3d1cee32008-04-08 05:04:30 +0000609 // Find first parameter with a default argument
610 for (p = 0; p < NumParams; ++p) {
611 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000612 if (Param->hasDefaultArg()) {
613 // C++11 [expr.prim.lambda]p5:
614 // [...] Default arguments (8.3.6) shall not be specified in the
615 // parameter-declaration-clause of a lambda-declarator.
616 //
617 // FIXME: Core issue 974 strikes this sentence, we only provide an
618 // extension warning.
619 if (IsLambda)
620 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
621 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000622 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000623 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000624 }
625
626 // C++ [dcl.fct.default]p4:
627 // In a given function declaration, all parameters
628 // subsequent to a parameter with a default argument shall
629 // have default arguments supplied in this or previous
630 // declarations. A default argument shall not be redefined
631 // by a later declaration (not even to the same value).
632 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000633 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000634 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000635 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000636 if (Param->isInvalidDecl())
637 /* We already complained about this parameter. */;
638 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000639 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000640 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000641 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000642 else
Mike Stump1eb44332009-09-09 15:08:12 +0000643 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000644 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Chris Lattner3d1cee32008-04-08 05:04:30 +0000646 LastMissingDefaultArg = p;
647 }
648 }
649
650 if (LastMissingDefaultArg > 0) {
651 // Some default arguments were missing. Clear out all of the
652 // default arguments up to (and including) the last missing
653 // default argument, so that we leave the function parameters
654 // in a semantically valid state.
655 for (p = 0; p <= LastMissingDefaultArg; ++p) {
656 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000657 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000658 Param->setDefaultArg(0);
659 }
660 }
661 }
662}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000663
Richard Smith9f569cc2011-10-01 02:31:28 +0000664// CheckConstexprParameterTypes - Check whether a function's parameter types
665// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000666// diagnostic and return false.
667static bool CheckConstexprParameterTypes(Sema &SemaRef,
668 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000669 unsigned ArgIndex = 0;
670 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
671 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
672 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
673 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
674 SourceLocation ParamLoc = PD->getLocation();
675 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000676 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000677 diag::err_constexpr_non_literal_param,
678 ArgIndex+1, PD->getSourceRange(),
679 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000680 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000681 }
Joao Matos17d35c32012-08-31 22:18:20 +0000682 return true;
683}
684
685/// \brief Get diagnostic %select index for tag kind for
686/// record diagnostic message.
687/// WARNING: Indexes apply to particular diagnostics only!
688///
689/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000690static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000691 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000692 case TTK_Struct: return 0;
693 case TTK_Interface: return 1;
694 case TTK_Class: return 2;
695 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000696 }
Joao Matos17d35c32012-08-31 22:18:20 +0000697}
698
699// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
700// the requirements of a constexpr function definition or a constexpr
701// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000702// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000703//
Richard Smith86c3ae42012-02-13 03:54:03 +0000704// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
705bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000706 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
707 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000708 // C++11 [dcl.constexpr]p4:
709 // The definition of a constexpr constructor shall satisfy the following
710 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000711 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000712 const CXXRecordDecl *RD = MD->getParent();
713 if (RD->getNumVBases()) {
714 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
715 << isa<CXXConstructorDecl>(NewFD)
716 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
717 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
718 E = RD->vbases_end(); I != E; ++I)
719 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000720 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000721 return false;
722 }
Richard Smith35340502012-01-13 04:54:00 +0000723 }
724
725 if (!isa<CXXConstructorDecl>(NewFD)) {
726 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000727 // The definition of a constexpr function shall satisfy the following
728 // constraints:
729 // - it shall not be virtual;
730 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
731 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000732 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000733
Richard Smith86c3ae42012-02-13 03:54:03 +0000734 // If it's not obvious why this function is virtual, find an overridden
735 // function which uses the 'virtual' keyword.
736 const CXXMethodDecl *WrittenVirtual = Method;
737 while (!WrittenVirtual->isVirtualAsWritten())
738 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
739 if (WrittenVirtual != Method)
740 Diag(WrittenVirtual->getLocation(),
741 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000742 return false;
743 }
744
745 // - its return type shall be a literal type;
746 QualType RT = NewFD->getResultType();
747 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000748 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000749 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000750 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000751 }
752
Richard Smith35340502012-01-13 04:54:00 +0000753 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000754 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000755 return false;
756
Richard Smith9f569cc2011-10-01 02:31:28 +0000757 return true;
758}
759
760/// Check the given declaration statement is legal within a constexpr function
761/// body. C++0x [dcl.constexpr]p3,p4.
762///
763/// \return true if the body is OK, false if we have diagnosed a problem.
764static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
765 DeclStmt *DS) {
766 // C++0x [dcl.constexpr]p3 and p4:
767 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
768 // contain only
769 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
770 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
771 switch ((*DclIt)->getKind()) {
772 case Decl::StaticAssert:
773 case Decl::Using:
774 case Decl::UsingShadow:
775 case Decl::UsingDirective:
776 case Decl::UnresolvedUsingTypename:
777 // - static_assert-declarations
778 // - using-declarations,
779 // - using-directives,
780 continue;
781
782 case Decl::Typedef:
783 case Decl::TypeAlias: {
784 // - typedef declarations and alias-declarations that do not define
785 // classes or enumerations,
786 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
787 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
788 // Don't allow variably-modified types in constexpr functions.
789 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
790 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
791 << TL.getSourceRange() << TL.getType()
792 << isa<CXXConstructorDecl>(Dcl);
793 return false;
794 }
795 continue;
796 }
797
798 case Decl::Enum:
799 case Decl::CXXRecord:
800 // As an extension, we allow the declaration (but not the definition) of
801 // classes and enumerations in all declarations, not just in typedef and
802 // alias declarations.
803 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
804 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
805 << isa<CXXConstructorDecl>(Dcl);
806 return false;
807 }
808 continue;
809
810 case Decl::Var:
811 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
812 << isa<CXXConstructorDecl>(Dcl);
813 return false;
814
815 default:
816 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
817 << isa<CXXConstructorDecl>(Dcl);
818 return false;
819 }
820 }
821
822 return true;
823}
824
825/// Check that the given field is initialized within a constexpr constructor.
826///
827/// \param Dcl The constexpr constructor being checked.
828/// \param Field The field being checked. This may be a member of an anonymous
829/// struct or union nested within the class being checked.
830/// \param Inits All declarations, including anonymous struct/union members and
831/// indirect members, for which any initialization was provided.
832/// \param Diagnosed Set to true if an error is produced.
833static void CheckConstexprCtorInitializer(Sema &SemaRef,
834 const FunctionDecl *Dcl,
835 FieldDecl *Field,
836 llvm::SmallSet<Decl*, 16> &Inits,
837 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000838 if (Field->isUnnamedBitfield())
839 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000840
841 if (Field->isAnonymousStructOrUnion() &&
842 Field->getType()->getAsCXXRecordDecl()->isEmpty())
843 return;
844
Richard Smith9f569cc2011-10-01 02:31:28 +0000845 if (!Inits.count(Field)) {
846 if (!Diagnosed) {
847 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
848 Diagnosed = true;
849 }
850 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
851 } else if (Field->isAnonymousStructOrUnion()) {
852 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
853 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
854 I != E; ++I)
855 // If an anonymous union contains an anonymous struct of which any member
856 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000857 if (!RD->isUnion() || Inits.count(*I))
858 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000859 }
860}
861
862/// Check the body for the given constexpr function declaration only contains
863/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
864///
865/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000866bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000867 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000868 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000869 // The definition of a constexpr function shall satisfy the following
870 // constraints: [...]
871 // - its function-body shall be = delete, = default, or a
872 // compound-statement
873 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000874 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000875 // In the definition of a constexpr constructor, [...]
876 // - its function-body shall not be a function-try-block;
877 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
878 << isa<CXXConstructorDecl>(Dcl);
879 return false;
880 }
881
882 // - its function-body shall be [...] a compound-statement that contains only
883 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
884
885 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
886 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
887 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
888 switch ((*BodyIt)->getStmtClass()) {
889 case Stmt::NullStmtClass:
890 // - null statements,
891 continue;
892
893 case Stmt::DeclStmtClass:
894 // - static_assert-declarations
895 // - using-declarations,
896 // - using-directives,
897 // - typedef declarations and alias-declarations that do not define
898 // classes or enumerations,
899 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
900 return false;
901 continue;
902
903 case Stmt::ReturnStmtClass:
904 // - and exactly one return statement;
905 if (isa<CXXConstructorDecl>(Dcl))
906 break;
907
908 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000909 continue;
910
911 default:
912 break;
913 }
914
915 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
916 << isa<CXXConstructorDecl>(Dcl);
917 return false;
918 }
919
920 if (const CXXConstructorDecl *Constructor
921 = dyn_cast<CXXConstructorDecl>(Dcl)) {
922 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000923 // DR1359:
924 // - every non-variant non-static data member and base class sub-object
925 // shall be initialized;
926 // - if the class is a non-empty union, or for each non-empty anonymous
927 // union member of a non-union class, exactly one non-static data member
928 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000929 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000930 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000931 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
932 return false;
933 }
Richard Smith6e433752011-10-10 16:38:04 +0000934 } else if (!Constructor->isDependentContext() &&
935 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000936 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
937
938 // Skip detailed checking if we have enough initializers, and we would
939 // allow at most one initializer per member.
940 bool AnyAnonStructUnionMembers = false;
941 unsigned Fields = 0;
942 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
943 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000944 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000945 AnyAnonStructUnionMembers = true;
946 break;
947 }
948 }
949 if (AnyAnonStructUnionMembers ||
950 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
951 // Check initialization of non-static data members. Base classes are
952 // always initialized so do not need to be checked. Dependent bases
953 // might not have initializers in the member initializer list.
954 llvm::SmallSet<Decl*, 16> Inits;
955 for (CXXConstructorDecl::init_const_iterator
956 I = Constructor->init_begin(), E = Constructor->init_end();
957 I != E; ++I) {
958 if (FieldDecl *FD = (*I)->getMember())
959 Inits.insert(FD);
960 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
961 Inits.insert(ID->chain_begin(), ID->chain_end());
962 }
963
964 bool Diagnosed = false;
965 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
966 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000967 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000968 if (Diagnosed)
969 return false;
970 }
971 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000972 } else {
973 if (ReturnStmts.empty()) {
974 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
975 return false;
976 }
977 if (ReturnStmts.size() > 1) {
978 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
979 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
980 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
981 return false;
982 }
983 }
984
Richard Smith5ba73e12012-02-04 00:33:54 +0000985 // C++11 [dcl.constexpr]p5:
986 // if no function argument values exist such that the function invocation
987 // substitution would produce a constant expression, the program is
988 // ill-formed; no diagnostic required.
989 // C++11 [dcl.constexpr]p3:
990 // - every constructor call and implicit conversion used in initializing the
991 // return value shall be one of those allowed in a constant expression.
992 // C++11 [dcl.constexpr]p4:
993 // - every constructor involved in initializing non-static data members and
994 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000995 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000996 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000997 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
998 << isa<CXXConstructorDecl>(Dcl);
999 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1000 Diag(Diags[I].first, Diags[I].second);
1001 return false;
1002 }
1003
Richard Smith9f569cc2011-10-01 02:31:28 +00001004 return true;
1005}
1006
Douglas Gregorb48fe382008-10-31 09:07:45 +00001007/// isCurrentClassName - Determine whether the identifier II is the
1008/// name of the class type currently being defined. In the case of
1009/// nested classes, this will only return true if II is the name of
1010/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001011bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1012 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001013 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001014
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001015 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001016 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001017 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001018 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1019 } else
1020 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1021
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001022 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001023 return &II == CurDecl->getIdentifier();
1024 else
1025 return false;
1026}
1027
Douglas Gregor229d47a2012-11-10 07:24:09 +00001028/// \brief Determine whether the given class is a base class of the given
1029/// class, including looking at dependent bases.
1030static bool findCircularInheritance(const CXXRecordDecl *Class,
1031 const CXXRecordDecl *Current) {
1032 SmallVector<const CXXRecordDecl*, 8> Queue;
1033
1034 Class = Class->getCanonicalDecl();
1035 while (true) {
1036 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1037 E = Current->bases_end();
1038 I != E; ++I) {
1039 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1040 if (!Base)
1041 continue;
1042
1043 Base = Base->getDefinition();
1044 if (!Base)
1045 continue;
1046
1047 if (Base->getCanonicalDecl() == Class)
1048 return true;
1049
1050 Queue.push_back(Base);
1051 }
1052
1053 if (Queue.empty())
1054 return false;
1055
1056 Current = Queue.back();
1057 Queue.pop_back();
1058 }
1059
1060 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001061}
1062
Mike Stump1eb44332009-09-09 15:08:12 +00001063/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001064///
1065/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1066/// and returns NULL otherwise.
1067CXXBaseSpecifier *
1068Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1069 SourceRange SpecifierRange,
1070 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001071 TypeSourceInfo *TInfo,
1072 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001073 QualType BaseType = TInfo->getType();
1074
Douglas Gregor2943aed2009-03-03 04:44:36 +00001075 // C++ [class.union]p1:
1076 // A union shall not have base classes.
1077 if (Class->isUnion()) {
1078 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1079 << SpecifierRange;
1080 return 0;
1081 }
1082
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001083 if (EllipsisLoc.isValid() &&
1084 !TInfo->getType()->containsUnexpandedParameterPack()) {
1085 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1086 << TInfo->getTypeLoc().getSourceRange();
1087 EllipsisLoc = SourceLocation();
1088 }
Douglas Gregord777e282012-11-10 01:18:17 +00001089
1090 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1091
1092 if (BaseType->isDependentType()) {
1093 // Make sure that we don't have circular inheritance among our dependent
1094 // bases. For non-dependent bases, the check for completeness below handles
1095 // this.
1096 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1097 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1098 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001099 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001100 Diag(BaseLoc, diag::err_circular_inheritance)
1101 << BaseType << Context.getTypeDeclType(Class);
1102
1103 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1104 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1105 << BaseType;
1106
1107 return 0;
1108 }
1109 }
1110
Mike Stump1eb44332009-09-09 15:08:12 +00001111 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001112 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001113 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001114 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001115
1116 // Base specifiers must be record types.
1117 if (!BaseType->isRecordType()) {
1118 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1119 return 0;
1120 }
1121
1122 // C++ [class.union]p1:
1123 // A union shall not be used as a base class.
1124 if (BaseType->isUnionType()) {
1125 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1126 return 0;
1127 }
1128
1129 // C++ [class.derived]p2:
1130 // The class-name in a base-specifier shall not be an incompletely
1131 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001132 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001133 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001134 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001135 return 0;
John McCall572fc622010-08-17 07:23:57 +00001136 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001137
Eli Friedman1d954f62009-08-15 21:55:26 +00001138 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001139 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001140 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001141 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001142 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001143 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1144 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001145
Anders Carlsson1d209272011-03-25 14:55:14 +00001146 // C++ [class]p3:
1147 // If a class is marked final and it appears as a base-type-specifier in
1148 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001149 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001150 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1151 << CXXBaseDecl->getDeclName();
1152 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1153 << CXXBaseDecl->getDeclName();
1154 return 0;
1155 }
1156
John McCall572fc622010-08-17 07:23:57 +00001157 if (BaseDecl->isInvalidDecl())
1158 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001159
1160 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001161 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001162 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001163 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001164}
1165
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001166/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1167/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001168/// example:
1169/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001170/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001171BaseResult
John McCalld226f652010-08-21 09:40:31 +00001172Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001173 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001174 ParsedType basetype, SourceLocation BaseLoc,
1175 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001176 if (!classdecl)
1177 return true;
1178
Douglas Gregor40808ce2009-03-09 23:48:35 +00001179 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001180 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001181 if (!Class)
1182 return true;
1183
Nick Lewycky56062202010-07-26 16:56:01 +00001184 TypeSourceInfo *TInfo = 0;
1185 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001186
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001187 if (EllipsisLoc.isInvalid() &&
1188 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001189 UPPC_BaseType))
1190 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001191
Douglas Gregor2943aed2009-03-03 04:44:36 +00001192 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001193 Virtual, Access, TInfo,
1194 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001195 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001196 else
1197 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001198
Douglas Gregor2943aed2009-03-03 04:44:36 +00001199 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001200}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001201
Douglas Gregor2943aed2009-03-03 04:44:36 +00001202/// \brief Performs the actual work of attaching the given base class
1203/// specifiers to a C++ class.
1204bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1205 unsigned NumBases) {
1206 if (NumBases == 0)
1207 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001208
1209 // Used to keep track of which base types we have already seen, so
1210 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001211 // that the key is always the unqualified canonical type of the base
1212 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001213 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1214
1215 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001216 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001217 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001218 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001219 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001220 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001221 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001222
1223 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1224 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001225 // C++ [class.mi]p3:
1226 // A class shall not be specified as a direct base class of a
1227 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001228 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001229 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001230 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001231 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001232
1233 // Delete the duplicate base class specifier; we're going to
1234 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001235 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001236
1237 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001238 } else {
1239 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001240 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001241 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001242 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1243 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1244 if (Class->isInterface() &&
1245 (!RD->isInterface() ||
1246 KnownBase->getAccessSpecifier() != AS_public)) {
1247 // The Microsoft extension __interface does not permit bases that
1248 // are not themselves public interfaces.
1249 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1250 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1251 << RD->getSourceRange();
1252 Invalid = true;
1253 }
1254 if (RD->hasAttr<WeakAttr>())
1255 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1256 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001257 }
1258 }
1259
1260 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001261 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001262
1263 // Delete the remaining (good) base class specifiers, since their
1264 // data has been copied into the CXXRecordDecl.
1265 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001266 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001267
1268 return Invalid;
1269}
1270
1271/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1272/// class, after checking whether there are any duplicate base
1273/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001274void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001275 unsigned NumBases) {
1276 if (!ClassDecl || !Bases || !NumBases)
1277 return;
1278
1279 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001280 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001281 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001282}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001283
John McCall3cb0ebd2010-03-10 03:28:59 +00001284static CXXRecordDecl *GetClassForType(QualType T) {
1285 if (const RecordType *RT = T->getAs<RecordType>())
1286 return cast<CXXRecordDecl>(RT->getDecl());
1287 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1288 return ICT->getDecl();
1289 else
1290 return 0;
1291}
1292
Douglas Gregora8f32e02009-10-06 17:59:45 +00001293/// \brief Determine whether the type \p Derived is a C++ class that is
1294/// derived from the type \p Base.
1295bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001296 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001297 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001298
1299 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1300 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001301 return false;
1302
John McCall3cb0ebd2010-03-10 03:28:59 +00001303 CXXRecordDecl *BaseRD = GetClassForType(Base);
1304 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001305 return false;
1306
John McCall86ff3082010-02-04 22:26:26 +00001307 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1308 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001309}
1310
1311/// \brief Determine whether the type \p Derived is a C++ class that is
1312/// derived from the type \p Base.
1313bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001314 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001315 return false;
1316
John McCall3cb0ebd2010-03-10 03:28:59 +00001317 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1318 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001319 return false;
1320
John McCall3cb0ebd2010-03-10 03:28:59 +00001321 CXXRecordDecl *BaseRD = GetClassForType(Base);
1322 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001323 return false;
1324
Douglas Gregora8f32e02009-10-06 17:59:45 +00001325 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1326}
1327
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001328void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001329 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001330 assert(BasePathArray.empty() && "Base path array must be empty!");
1331 assert(Paths.isRecordingPaths() && "Must record paths!");
1332
1333 const CXXBasePath &Path = Paths.front();
1334
1335 // We first go backward and check if we have a virtual base.
1336 // FIXME: It would be better if CXXBasePath had the base specifier for
1337 // the nearest virtual base.
1338 unsigned Start = 0;
1339 for (unsigned I = Path.size(); I != 0; --I) {
1340 if (Path[I - 1].Base->isVirtual()) {
1341 Start = I - 1;
1342 break;
1343 }
1344 }
1345
1346 // Now add all bases.
1347 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001348 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001349}
1350
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001351/// \brief Determine whether the given base path includes a virtual
1352/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001353bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1354 for (CXXCastPath::const_iterator B = BasePath.begin(),
1355 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001356 B != BEnd; ++B)
1357 if ((*B)->isVirtual())
1358 return true;
1359
1360 return false;
1361}
1362
Douglas Gregora8f32e02009-10-06 17:59:45 +00001363/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1364/// conversion (where Derived and Base are class types) is
1365/// well-formed, meaning that the conversion is unambiguous (and
1366/// that all of the base classes are accessible). Returns true
1367/// and emits a diagnostic if the code is ill-formed, returns false
1368/// otherwise. Loc is the location where this routine should point to
1369/// if there is an error, and Range is the source range to highlight
1370/// if there is an error.
1371bool
1372Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001373 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001374 unsigned AmbigiousBaseConvID,
1375 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001376 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001377 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001378 // First, determine whether the path from Derived to Base is
1379 // ambiguous. This is slightly more expensive than checking whether
1380 // the Derived to Base conversion exists, because here we need to
1381 // explore multiple paths to determine if there is an ambiguity.
1382 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1383 /*DetectVirtual=*/false);
1384 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1385 assert(DerivationOkay &&
1386 "Can only be used with a derived-to-base conversion");
1387 (void)DerivationOkay;
1388
1389 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001390 if (InaccessibleBaseID) {
1391 // Check that the base class can be accessed.
1392 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1393 InaccessibleBaseID)) {
1394 case AR_inaccessible:
1395 return true;
1396 case AR_accessible:
1397 case AR_dependent:
1398 case AR_delayed:
1399 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001400 }
John McCall6b2accb2010-02-10 09:31:12 +00001401 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001402
1403 // Build a base path if necessary.
1404 if (BasePath)
1405 BuildBasePathArray(Paths, *BasePath);
1406 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001407 }
1408
1409 // We know that the derived-to-base conversion is ambiguous, and
1410 // we're going to produce a diagnostic. Perform the derived-to-base
1411 // search just one more time to compute all of the possible paths so
1412 // that we can print them out. This is more expensive than any of
1413 // the previous derived-to-base checks we've done, but at this point
1414 // performance isn't as much of an issue.
1415 Paths.clear();
1416 Paths.setRecordingPaths(true);
1417 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1418 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1419 (void)StillOkay;
1420
1421 // Build up a textual representation of the ambiguous paths, e.g.,
1422 // D -> B -> A, that will be used to illustrate the ambiguous
1423 // conversions in the diagnostic. We only print one of the paths
1424 // to each base class subobject.
1425 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1426
1427 Diag(Loc, AmbigiousBaseConvID)
1428 << Derived << Base << PathDisplayStr << Range << Name;
1429 return true;
1430}
1431
1432bool
1433Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001434 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001435 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001436 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001437 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001438 IgnoreAccess ? 0
1439 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001440 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001441 Loc, Range, DeclarationName(),
1442 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001443}
1444
1445
1446/// @brief Builds a string representing ambiguous paths from a
1447/// specific derived class to different subobjects of the same base
1448/// class.
1449///
1450/// This function builds a string that can be used in error messages
1451/// to show the different paths that one can take through the
1452/// inheritance hierarchy to go from the derived class to different
1453/// subobjects of a base class. The result looks something like this:
1454/// @code
1455/// struct D -> struct B -> struct A
1456/// struct D -> struct C -> struct A
1457/// @endcode
1458std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1459 std::string PathDisplayStr;
1460 std::set<unsigned> DisplayedPaths;
1461 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1462 Path != Paths.end(); ++Path) {
1463 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1464 // We haven't displayed a path to this particular base
1465 // class subobject yet.
1466 PathDisplayStr += "\n ";
1467 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1468 for (CXXBasePath::const_iterator Element = Path->begin();
1469 Element != Path->end(); ++Element)
1470 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1471 }
1472 }
1473
1474 return PathDisplayStr;
1475}
1476
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001477//===----------------------------------------------------------------------===//
1478// C++ class member Handling
1479//===----------------------------------------------------------------------===//
1480
Abramo Bagnara6206d532010-06-05 05:09:32 +00001481/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001482bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1483 SourceLocation ASLoc,
1484 SourceLocation ColonLoc,
1485 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001486 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001487 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001488 ASLoc, ColonLoc);
1489 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001490 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001491}
1492
Richard Smitha4b39652012-08-06 03:25:17 +00001493/// CheckOverrideControl - Check C++11 override control semantics.
1494void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001495 if (D->isInvalidDecl())
1496 return;
1497
Chris Lattner5f9e2722011-07-23 10:55:15 +00001498 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001499
Richard Smitha4b39652012-08-06 03:25:17 +00001500 // Do we know which functions this declaration might be overriding?
1501 bool OverridesAreKnown = !MD ||
1502 (!MD->getParent()->hasAnyDependentBases() &&
1503 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001504
Richard Smitha4b39652012-08-06 03:25:17 +00001505 if (!MD || !MD->isVirtual()) {
1506 if (OverridesAreKnown) {
1507 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1508 Diag(OA->getLocation(),
1509 diag::override_keyword_only_allowed_on_virtual_member_functions)
1510 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1511 D->dropAttr<OverrideAttr>();
1512 }
1513 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1514 Diag(FA->getLocation(),
1515 diag::override_keyword_only_allowed_on_virtual_member_functions)
1516 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1517 D->dropAttr<FinalAttr>();
1518 }
1519 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001520 return;
1521 }
Richard Smitha4b39652012-08-06 03:25:17 +00001522
1523 if (!OverridesAreKnown)
1524 return;
1525
1526 // C++11 [class.virtual]p5:
1527 // If a virtual function is marked with the virt-specifier override and
1528 // does not override a member function of a base class, the program is
1529 // ill-formed.
1530 bool HasOverriddenMethods =
1531 MD->begin_overridden_methods() != MD->end_overridden_methods();
1532 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1533 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1534 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001535}
1536
Richard Smitha4b39652012-08-06 03:25:17 +00001537/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001538/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001539/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001540bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1541 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001542 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001543 return false;
1544
1545 Diag(New->getLocation(), diag::err_final_function_overridden)
1546 << New->getDeclName();
1547 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1548 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001549}
1550
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001551static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001552 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1553 // FIXME: Destruction of ObjC lifetime types has side-effects.
1554 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1555 return !RD->isCompleteDefinition() ||
1556 !RD->hasTrivialDefaultConstructor() ||
1557 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001558 return false;
1559}
1560
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001561/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1562/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001563/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001564/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1565/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001566Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001567Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001568 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001569 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001570 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001571 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001572 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1573 DeclarationName Name = NameInfo.getName();
1574 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001575
1576 // For anonymous bitfields, the location should point to the type.
1577 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001578 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001579
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001580 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001581
John McCall4bde1e12010-06-04 08:34:12 +00001582 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001583 assert(!DS.isFriendSpecified());
1584
Richard Smith1ab0d902011-06-25 02:28:38 +00001585 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001586
John McCalle402e722012-09-25 07:32:39 +00001587 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1588 // The Microsoft extension __interface only permits public member functions
1589 // and prohibits constructors, destructors, operators, non-public member
1590 // functions, static methods and data members.
1591 unsigned InvalidDecl;
1592 bool ShowDeclName = true;
1593 if (!isFunc)
1594 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1595 else if (AS != AS_public)
1596 InvalidDecl = 2;
1597 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1598 InvalidDecl = 3;
1599 else switch (Name.getNameKind()) {
1600 case DeclarationName::CXXConstructorName:
1601 InvalidDecl = 4;
1602 ShowDeclName = false;
1603 break;
1604
1605 case DeclarationName::CXXDestructorName:
1606 InvalidDecl = 5;
1607 ShowDeclName = false;
1608 break;
1609
1610 case DeclarationName::CXXOperatorName:
1611 case DeclarationName::CXXConversionFunctionName:
1612 InvalidDecl = 6;
1613 break;
1614
1615 default:
1616 InvalidDecl = 0;
1617 break;
1618 }
1619
1620 if (InvalidDecl) {
1621 if (ShowDeclName)
1622 Diag(Loc, diag::err_invalid_member_in_interface)
1623 << (InvalidDecl-1) << Name;
1624 else
1625 Diag(Loc, diag::err_invalid_member_in_interface)
1626 << (InvalidDecl-1) << "";
1627 return 0;
1628 }
1629 }
1630
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001631 // C++ 9.2p6: A member shall not be declared to have automatic storage
1632 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001633 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1634 // data members and cannot be applied to names declared const or static,
1635 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001636 switch (DS.getStorageClassSpec()) {
1637 case DeclSpec::SCS_unspecified:
1638 case DeclSpec::SCS_typedef:
1639 case DeclSpec::SCS_static:
1640 // FALL THROUGH.
1641 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001642 case DeclSpec::SCS_mutable:
1643 if (isFunc) {
1644 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001645 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001646 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001647 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001648
Sebastian Redla11f42f2008-11-17 23:24:37 +00001649 // FIXME: It would be nicer if the keyword was ignored only for this
1650 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001651 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001652 }
1653 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001654 default:
1655 if (DS.getStorageClassSpecLoc().isValid())
1656 Diag(DS.getStorageClassSpecLoc(),
1657 diag::err_storageclass_invalid_for_member);
1658 else
1659 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1660 D.getMutableDeclSpec().ClearStorageClassSpecs();
1661 }
1662
Sebastian Redl669d5d72008-11-14 23:42:31 +00001663 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1664 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001665 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001666
1667 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001668 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001669 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001670
1671 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001672 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001673 Diag(Loc, diag::err_bad_variable_name)
1674 << Name;
1675 return 0;
1676 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001677
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001678 IdentifierInfo *II = Name.getAsIdentifierInfo();
1679
Douglas Gregorf2503652011-09-21 14:40:46 +00001680 // Member field could not be with "template" keyword.
1681 // So TemplateParameterLists should be empty in this case.
1682 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001683 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001684 if (TemplateParams->size()) {
1685 // There is no such thing as a member field template.
1686 Diag(D.getIdentifierLoc(), diag::err_template_member)
1687 << II
1688 << SourceRange(TemplateParams->getTemplateLoc(),
1689 TemplateParams->getRAngleLoc());
1690 } else {
1691 // There is an extraneous 'template<>' for this member.
1692 Diag(TemplateParams->getTemplateLoc(),
1693 diag::err_template_member_noparams)
1694 << II
1695 << SourceRange(TemplateParams->getTemplateLoc(),
1696 TemplateParams->getRAngleLoc());
1697 }
1698 return 0;
1699 }
1700
Douglas Gregor922fff22010-10-13 22:19:53 +00001701 if (SS.isSet() && !SS.isInvalid()) {
1702 // The user provided a superfluous scope specifier inside a class
1703 // definition:
1704 //
1705 // class X {
1706 // int X::member;
1707 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001708 if (DeclContext *DC = computeDeclContext(SS, false))
1709 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001710 else
1711 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1712 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001713
Douglas Gregor922fff22010-10-13 22:19:53 +00001714 SS.clear();
1715 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001716
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001717 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001718 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001719 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001720 } else {
Richard Smithca523302012-06-10 03:12:00 +00001721 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001722
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001723 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001724 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001725 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001726 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001727
1728 // Non-instance-fields can't have a bitfield.
1729 if (BitWidth) {
1730 if (Member->isInvalidDecl()) {
1731 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001732 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001733 // C++ 9.6p3: A bit-field shall not be a static member.
1734 // "static member 'A' cannot be a bit-field"
1735 Diag(Loc, diag::err_static_not_bitfield)
1736 << Name << BitWidth->getSourceRange();
1737 } else if (isa<TypedefDecl>(Member)) {
1738 // "typedef member 'x' cannot be a bit-field"
1739 Diag(Loc, diag::err_typedef_not_bitfield)
1740 << Name << BitWidth->getSourceRange();
1741 } else {
1742 // A function typedef ("typedef int f(); f a;").
1743 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1744 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001745 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001746 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001747 }
Mike Stump1eb44332009-09-09 15:08:12 +00001748
Chris Lattner8b963ef2009-03-05 23:01:03 +00001749 BitWidth = 0;
1750 Member->setInvalidDecl();
1751 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001752
1753 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001754
Douglas Gregor37b372b2009-08-20 22:52:58 +00001755 // If we have declared a member function template, set the access of the
1756 // templated declaration as well.
1757 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1758 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001759 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001760
Richard Smitha4b39652012-08-06 03:25:17 +00001761 if (VS.isOverrideSpecified())
1762 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1763 if (VS.isFinalSpecified())
1764 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001765
Douglas Gregorf5251602011-03-08 17:10:18 +00001766 if (VS.getLastLocation().isValid()) {
1767 // Update the end location of a method that has a virt-specifiers.
1768 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1769 MD->setRangeEnd(VS.getLastLocation());
1770 }
Richard Smitha4b39652012-08-06 03:25:17 +00001771
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001772 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001773
Douglas Gregor10bd3682008-11-17 22:58:34 +00001774 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001775
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001776 if (isInstField) {
1777 FieldDecl *FD = cast<FieldDecl>(Member);
1778 FieldCollector->Add(FD);
1779
1780 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1781 FD->getLocation())
1782 != DiagnosticsEngine::Ignored) {
1783 // Remember all explicit private FieldDecls that have a name, no side
1784 // effects and are not part of a dependent type declaration.
1785 if (!FD->isImplicit() && FD->getDeclName() &&
1786 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001787 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001788 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001789 !InitializationHasSideEffects(*FD))
1790 UnusedPrivateFields.insert(FD);
1791 }
1792 }
1793
John McCalld226f652010-08-21 09:40:31 +00001794 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001795}
1796
Hans Wennborg471f9852012-09-18 15:58:06 +00001797namespace {
1798 class UninitializedFieldVisitor
1799 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1800 Sema &S;
1801 ValueDecl *VD;
1802 public:
1803 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1804 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001805 S(S) {
1806 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(VD))
1807 this->VD = IFD->getAnonField();
1808 else
1809 this->VD = VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001810 }
1811
1812 void HandleExpr(Expr *E) {
1813 if (!E) return;
1814
1815 // Expressions like x(x) sometimes lack the surrounding expressions
1816 // but need to be checked anyways.
1817 HandleValue(E);
1818 Visit(E);
1819 }
1820
1821 void HandleValue(Expr *E) {
1822 E = E->IgnoreParens();
1823
1824 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1825 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001826 return;
1827
1828 // FieldME is the inner-most MemberExpr that is not an anonymous struct
1829 // or union.
1830 MemberExpr *FieldME = ME;
1831
Hans Wennborg471f9852012-09-18 15:58:06 +00001832 Expr *Base = E;
1833 while (isa<MemberExpr>(Base)) {
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001834 ME = cast<MemberExpr>(Base);
1835
1836 if (isa<VarDecl>(ME->getMemberDecl()))
1837 return;
1838
1839 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
1840 if (!FD->isAnonymousStructOrUnion())
1841 FieldME = ME;
1842
Hans Wennborg471f9852012-09-18 15:58:06 +00001843 Base = ME->getBase();
1844 }
1845
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001846 if (VD == FieldME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg471f9852012-09-18 15:58:06 +00001847 unsigned diag = VD->getType()->isReferenceType()
1848 ? diag::warn_reference_field_is_uninit
1849 : diag::warn_field_is_uninit;
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001850 S.Diag(FieldME->getExprLoc(), diag) << VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001851 }
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001852 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00001853 }
1854
1855 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1856 HandleValue(CO->getTrueExpr());
1857 HandleValue(CO->getFalseExpr());
1858 return;
1859 }
1860
1861 if (BinaryConditionalOperator *BCO =
1862 dyn_cast<BinaryConditionalOperator>(E)) {
1863 HandleValue(BCO->getCommon());
1864 HandleValue(BCO->getFalseExpr());
1865 return;
1866 }
1867
1868 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1869 switch (BO->getOpcode()) {
1870 default:
1871 return;
1872 case(BO_PtrMemD):
1873 case(BO_PtrMemI):
1874 HandleValue(BO->getLHS());
1875 return;
1876 case(BO_Comma):
1877 HandleValue(BO->getRHS());
1878 return;
1879 }
1880 }
1881 }
1882
1883 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1884 if (E->getCastKind() == CK_LValueToRValue)
1885 HandleValue(E->getSubExpr());
1886
1887 Inherited::VisitImplicitCastExpr(E);
1888 }
1889
1890 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1891 Expr *Callee = E->getCallee();
1892 if (isa<MemberExpr>(Callee))
1893 HandleValue(Callee);
1894
1895 Inherited::VisitCXXMemberCallExpr(E);
1896 }
1897 };
1898 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1899 ValueDecl *VD) {
1900 UninitializedFieldVisitor(S, VD).HandleExpr(E);
1901 }
1902} // namespace
1903
Richard Smith7a614d82011-06-11 17:19:42 +00001904/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001905/// in-class initializer for a non-static C++ class member, and after
1906/// instantiating an in-class initializer in a class template. Such actions
1907/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001908void
Richard Smithca523302012-06-10 03:12:00 +00001909Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001910 Expr *InitExpr) {
1911 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001912 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1913 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001914
1915 if (!InitExpr) {
1916 FD->setInvalidDecl();
1917 FD->removeInClassInitializer();
1918 return;
1919 }
1920
Peter Collingbournefef21892011-10-23 18:59:44 +00001921 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1922 FD->setInvalidDecl();
1923 FD->removeInClassInitializer();
1924 return;
1925 }
1926
Hans Wennborg471f9852012-09-18 15:58:06 +00001927 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1928 != DiagnosticsEngine::Ignored) {
1929 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1930 }
1931
Richard Smith7a614d82011-06-11 17:19:42 +00001932 ExprResult Init = InitExpr;
Douglas Gregordd084272012-09-14 04:20:37 +00001933 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent() &&
1934 !FD->getDeclContext()->isDependentContext()) {
1935 // Note: We don't type-check when we're in a dependent context, because
1936 // the initialization-substitution code does not properly handle direct
1937 // list initialization. We have the same hackaround for ctor-initializers.
Sebastian Redl772291a2012-02-19 16:31:05 +00001938 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001939 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001940 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1941 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001942 Expr **Inits = &InitExpr;
1943 unsigned NumInits = 1;
1944 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001945 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001946 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001947 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001948 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1949 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001950 if (Init.isInvalid()) {
1951 FD->setInvalidDecl();
1952 return;
1953 }
1954
Richard Smithca523302012-06-10 03:12:00 +00001955 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001956 }
1957
1958 // C++0x [class.base.init]p7:
1959 // The initialization of each base and member constitutes a
1960 // full-expression.
1961 Init = MaybeCreateExprWithCleanups(Init);
1962 if (Init.isInvalid()) {
1963 FD->setInvalidDecl();
1964 return;
1965 }
1966
1967 InitExpr = Init.release();
1968
1969 FD->setInClassInitializer(InitExpr);
1970}
1971
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001972/// \brief Find the direct and/or virtual base specifiers that
1973/// correspond to the given base type, for use in base initialization
1974/// within a constructor.
1975static bool FindBaseInitializer(Sema &SemaRef,
1976 CXXRecordDecl *ClassDecl,
1977 QualType BaseType,
1978 const CXXBaseSpecifier *&DirectBaseSpec,
1979 const CXXBaseSpecifier *&VirtualBaseSpec) {
1980 // First, check for a direct base class.
1981 DirectBaseSpec = 0;
1982 for (CXXRecordDecl::base_class_const_iterator Base
1983 = ClassDecl->bases_begin();
1984 Base != ClassDecl->bases_end(); ++Base) {
1985 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1986 // We found a direct base of this type. That's what we're
1987 // initializing.
1988 DirectBaseSpec = &*Base;
1989 break;
1990 }
1991 }
1992
1993 // Check for a virtual base class.
1994 // FIXME: We might be able to short-circuit this if we know in advance that
1995 // there are no virtual bases.
1996 VirtualBaseSpec = 0;
1997 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1998 // We haven't found a base yet; search the class hierarchy for a
1999 // virtual base class.
2000 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2001 /*DetectVirtual=*/false);
2002 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
2003 BaseType, Paths)) {
2004 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2005 Path != Paths.end(); ++Path) {
2006 if (Path->back().Base->isVirtual()) {
2007 VirtualBaseSpec = Path->back().Base;
2008 break;
2009 }
2010 }
2011 }
2012 }
2013
2014 return DirectBaseSpec || VirtualBaseSpec;
2015}
2016
Sebastian Redl6df65482011-09-24 17:48:25 +00002017/// \brief Handle a C++ member initializer using braced-init-list syntax.
2018MemInitResult
2019Sema::ActOnMemInitializer(Decl *ConstructorD,
2020 Scope *S,
2021 CXXScopeSpec &SS,
2022 IdentifierInfo *MemberOrBase,
2023 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002024 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002025 SourceLocation IdLoc,
2026 Expr *InitList,
2027 SourceLocation EllipsisLoc) {
2028 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002029 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002030 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002031}
2032
2033/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002034MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002035Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002036 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002037 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002038 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002039 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002040 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002041 SourceLocation IdLoc,
2042 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002043 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002044 SourceLocation RParenLoc,
2045 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002046 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
2047 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002048 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002049 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002050 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002051}
2052
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002053namespace {
2054
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002055// Callback to only accept typo corrections that can be a valid C++ member
2056// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002057class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2058 public:
2059 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2060 : ClassDecl(ClassDecl) {}
2061
2062 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2063 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2064 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2065 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2066 else
2067 return isa<TypeDecl>(ND);
2068 }
2069 return false;
2070 }
2071
2072 private:
2073 CXXRecordDecl *ClassDecl;
2074};
2075
2076}
2077
Sebastian Redl6df65482011-09-24 17:48:25 +00002078/// \brief Handle a C++ member initializer.
2079MemInitResult
2080Sema::BuildMemInitializer(Decl *ConstructorD,
2081 Scope *S,
2082 CXXScopeSpec &SS,
2083 IdentifierInfo *MemberOrBase,
2084 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002085 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002086 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002087 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002088 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002089 if (!ConstructorD)
2090 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002091
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002092 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002093
2094 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002095 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002096 if (!Constructor) {
2097 // The user wrote a constructor initializer on a function that is
2098 // not a C++ constructor. Ignore the error for now, because we may
2099 // have more member initializers coming; we'll diagnose it just
2100 // once in ActOnMemInitializers.
2101 return true;
2102 }
2103
2104 CXXRecordDecl *ClassDecl = Constructor->getParent();
2105
2106 // C++ [class.base.init]p2:
2107 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002108 // constructor's class and, if not found in that scope, are looked
2109 // up in the scope containing the constructor's definition.
2110 // [Note: if the constructor's class contains a member with the
2111 // same name as a direct or virtual base class of the class, a
2112 // mem-initializer-id naming the member or base class and composed
2113 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002114 // mem-initializer-id for the hidden base class may be specified
2115 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002116 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002117 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002118 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002119 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00002120 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002121 ValueDecl *Member;
2122 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
2123 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002124 if (EllipsisLoc.isValid())
2125 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002126 << MemberOrBase
2127 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002128
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002129 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002130 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002131 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002132 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002133 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002134 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002135 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002136
2137 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002138 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002139 } else if (DS.getTypeSpecType() == TST_decltype) {
2140 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002141 } else {
2142 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2143 LookupParsedName(R, S, &SS);
2144
2145 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2146 if (!TyD) {
2147 if (R.isAmbiguous()) return true;
2148
John McCallfd225442010-04-09 19:01:14 +00002149 // We don't want access-control diagnostics here.
2150 R.suppressDiagnostics();
2151
Douglas Gregor7a886e12010-01-19 06:46:48 +00002152 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2153 bool NotUnknownSpecialization = false;
2154 DeclContext *DC = computeDeclContext(SS, false);
2155 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2156 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2157
2158 if (!NotUnknownSpecialization) {
2159 // When the scope specifier can refer to a member of an unknown
2160 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002161 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2162 SS.getWithLocInContext(Context),
2163 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002164 if (BaseType.isNull())
2165 return true;
2166
Douglas Gregor7a886e12010-01-19 06:46:48 +00002167 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002168 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002169 }
2170 }
2171
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002172 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002173 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002174 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002175 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002176 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002177 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002178 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2179 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002180 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002181 // We have found a non-static data member with a similar
2182 // name to what was typed; complain and initialize that
2183 // member.
2184 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2185 << MemberOrBase << true << CorrectedQuotedStr
2186 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2187 Diag(Member->getLocation(), diag::note_previous_decl)
2188 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002189
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002190 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002191 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002192 const CXXBaseSpecifier *DirectBaseSpec;
2193 const CXXBaseSpecifier *VirtualBaseSpec;
2194 if (FindBaseInitializer(*this, ClassDecl,
2195 Context.getTypeDeclType(Type),
2196 DirectBaseSpec, VirtualBaseSpec)) {
2197 // We have found a direct or virtual base class with a
2198 // similar name to what was typed; complain and initialize
2199 // that base class.
2200 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002201 << MemberOrBase << false << CorrectedQuotedStr
2202 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002203
2204 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2205 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002206 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002207 diag::note_base_class_specified_here)
2208 << BaseSpec->getType()
2209 << BaseSpec->getSourceRange();
2210
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002211 TyD = Type;
2212 }
2213 }
2214 }
2215
Douglas Gregor7a886e12010-01-19 06:46:48 +00002216 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002217 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002218 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002219 return true;
2220 }
John McCall2b194412009-12-21 10:41:20 +00002221 }
2222
Douglas Gregor7a886e12010-01-19 06:46:48 +00002223 if (BaseType.isNull()) {
2224 BaseType = Context.getTypeDeclType(TyD);
2225 if (SS.isSet()) {
2226 NestedNameSpecifier *Qualifier =
2227 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002228
Douglas Gregor7a886e12010-01-19 06:46:48 +00002229 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002230 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002231 }
John McCall2b194412009-12-21 10:41:20 +00002232 }
2233 }
Mike Stump1eb44332009-09-09 15:08:12 +00002234
John McCalla93c9342009-12-07 02:54:59 +00002235 if (!TInfo)
2236 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002237
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002238 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002239}
2240
Chandler Carruth81c64772011-09-03 01:14:15 +00002241/// Checks a member initializer expression for cases where reference (or
2242/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002243static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2244 Expr *Init,
2245 SourceLocation IdLoc) {
2246 QualType MemberTy = Member->getType();
2247
2248 // We only handle pointers and references currently.
2249 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2250 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2251 return;
2252
2253 const bool IsPointer = MemberTy->isPointerType();
2254 if (IsPointer) {
2255 if (const UnaryOperator *Op
2256 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2257 // The only case we're worried about with pointers requires taking the
2258 // address.
2259 if (Op->getOpcode() != UO_AddrOf)
2260 return;
2261
2262 Init = Op->getSubExpr();
2263 } else {
2264 // We only handle address-of expression initializers for pointers.
2265 return;
2266 }
2267 }
2268
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002269 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2270 // Taking the address of a temporary will be diagnosed as a hard error.
2271 if (IsPointer)
2272 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002273
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002274 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2275 << Member << Init->getSourceRange();
2276 } else if (const DeclRefExpr *DRE
2277 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2278 // We only warn when referring to a non-reference parameter declaration.
2279 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2280 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002281 return;
2282
2283 S.Diag(Init->getExprLoc(),
2284 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2285 : diag::warn_bind_ref_member_to_parameter)
2286 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002287 } else {
2288 // Other initializers are fine.
2289 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002290 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002291
2292 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2293 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002294}
2295
John McCallf312b1e2010-08-26 23:41:50 +00002296MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002297Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002298 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002299 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2300 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2301 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002302 "Member must be a FieldDecl or IndirectFieldDecl");
2303
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002304 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002305 return true;
2306
Douglas Gregor464b2f02010-11-05 22:21:31 +00002307 if (Member->isInvalidDecl())
2308 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002309
John McCallb4190042009-11-04 23:02:40 +00002310 // Diagnose value-uses of fields to initialize themselves, e.g.
2311 // foo(foo)
2312 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002313 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002314 Expr **Args;
2315 unsigned NumArgs;
2316 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2317 Args = ParenList->getExprs();
2318 NumArgs = ParenList->getNumExprs();
2319 } else {
2320 InitListExpr *InitList = cast<InitListExpr>(Init);
2321 Args = InitList->getInits();
2322 NumArgs = InitList->getNumInits();
2323 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002324
Richard Trieude5e75c2012-06-14 23:11:34 +00002325 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2326 != DiagnosticsEngine::Ignored)
2327 for (unsigned i = 0; i < NumArgs; ++i)
2328 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002329 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002330 // initializing the i'th field, throw a warning if any of the >= i'th
2331 // fields are used, as they are not yet initialized.
2332 // Right now we are only handling the case where the i'th field uses
2333 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002334 // Also need to take into account that some fields may be initialized by
2335 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002336 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002337
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002338 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002339
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002340 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002341 // Can't check initialization for a member of dependent type or when
2342 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002343 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002344 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002345 bool InitList = false;
2346 if (isa<InitListExpr>(Init)) {
2347 InitList = true;
2348 Args = &Init;
2349 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002350
2351 if (isStdInitializerList(Member->getType(), 0)) {
2352 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2353 << /*at end of ctor*/1 << InitRange;
2354 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002355 }
2356
Chandler Carruth894aed92010-12-06 09:23:57 +00002357 // Initialize the member.
2358 InitializedEntity MemberEntity =
2359 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2360 : InitializedEntity::InitializeMember(IndirectMember, 0);
2361 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002362 InitList ? InitializationKind::CreateDirectList(IdLoc)
2363 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2364 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002365
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002366 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2367 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002368 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002369 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002370 if (MemberInit.isInvalid())
2371 return true;
2372
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002373 CheckImplicitConversions(MemberInit.get(),
2374 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002375
2376 // C++0x [class.base.init]p7:
2377 // The initialization of each base and member constitutes a
2378 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002379 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002380 if (MemberInit.isInvalid())
2381 return true;
2382
2383 // If we are in a dependent context, template instantiation will
2384 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002385 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002386 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2387 // of the information that we have about the member
2388 // initializer. However, deconstructing the ASTs is a dicey process,
2389 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002390 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002391 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002392 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002393 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002394 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2395 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002396 }
2397
Chandler Carruth894aed92010-12-06 09:23:57 +00002398 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002399 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2400 InitRange.getBegin(), Init,
2401 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002402 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002403 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2404 InitRange.getBegin(), Init,
2405 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002406 }
Eli Friedman59c04372009-07-29 19:44:27 +00002407}
2408
John McCallf312b1e2010-08-26 23:41:50 +00002409MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002410Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002411 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002412 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002413 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002414 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002415 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002416 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002417
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002418 bool InitList = true;
2419 Expr **Args = &Init;
2420 unsigned NumArgs = 1;
2421 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2422 InitList = false;
2423 Args = ParenList->getExprs();
2424 NumArgs = ParenList->getNumExprs();
2425 }
2426
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002427 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002428 // Initialize the object.
2429 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2430 QualType(ClassDecl->getTypeForDecl(), 0));
2431 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002432 InitList ? InitializationKind::CreateDirectList(NameLoc)
2433 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2434 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002435 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2436 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002437 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002438 0);
Sean Hunt41717662011-02-26 19:13:13 +00002439 if (DelegationInit.isInvalid())
2440 return true;
2441
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002442 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2443 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002444
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002445 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002446
2447 // C++0x [class.base.init]p7:
2448 // The initialization of each base and member constitutes a
2449 // full-expression.
2450 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2451 if (DelegationInit.isInvalid())
2452 return true;
2453
Eli Friedmand21016f2012-05-19 23:35:23 +00002454 // If we are in a dependent context, template instantiation will
2455 // perform this type-checking again. Just save the arguments that we
2456 // received in a ParenListExpr.
2457 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2458 // of the information that we have about the base
2459 // initializer. However, deconstructing the ASTs is a dicey process,
2460 // and this approach is far more likely to get the corner cases right.
2461 if (CurContext->isDependentContext())
2462 DelegationInit = Owned(Init);
2463
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002464 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002465 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002466 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002467}
2468
2469MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002470Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002471 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002472 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002473 SourceLocation BaseLoc
2474 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002475
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002476 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2477 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2478 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2479
2480 // C++ [class.base.init]p2:
2481 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002482 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002483 // of that class, the mem-initializer is ill-formed. A
2484 // mem-initializer-list can initialize a base class using any
2485 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002486 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002487
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002488 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002489 if (EllipsisLoc.isValid()) {
2490 // This is a pack expansion.
2491 if (!BaseType->containsUnexpandedParameterPack()) {
2492 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002493 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002494
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002495 EllipsisLoc = SourceLocation();
2496 }
2497 } else {
2498 // Check for any unexpanded parameter packs.
2499 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2500 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002501
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002502 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002503 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002504 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002505
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002506 // Check for direct and virtual base classes.
2507 const CXXBaseSpecifier *DirectBaseSpec = 0;
2508 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2509 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002510 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2511 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002512 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002513
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002514 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2515 VirtualBaseSpec);
2516
2517 // C++ [base.class.init]p2:
2518 // Unless the mem-initializer-id names a nonstatic data member of the
2519 // constructor's class or a direct or virtual base of that class, the
2520 // mem-initializer is ill-formed.
2521 if (!DirectBaseSpec && !VirtualBaseSpec) {
2522 // If the class has any dependent bases, then it's possible that
2523 // one of those types will resolve to the same type as
2524 // BaseType. Therefore, just treat this as a dependent base
2525 // class initialization. FIXME: Should we try to check the
2526 // initialization anyway? It seems odd.
2527 if (ClassDecl->hasAnyDependentBases())
2528 Dependent = true;
2529 else
2530 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2531 << BaseType << Context.getTypeDeclType(ClassDecl)
2532 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2533 }
2534 }
2535
2536 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002537 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002538
Sebastian Redl6df65482011-09-24 17:48:25 +00002539 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2540 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002541 InitRange.getBegin(), Init,
2542 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002543 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002544
2545 // C++ [base.class.init]p2:
2546 // If a mem-initializer-id is ambiguous because it designates both
2547 // a direct non-virtual base class and an inherited virtual base
2548 // class, the mem-initializer is ill-formed.
2549 if (DirectBaseSpec && VirtualBaseSpec)
2550 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002551 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002552
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002553 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002554 if (!BaseSpec)
2555 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2556
2557 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002558 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002559 Expr **Args = &Init;
2560 unsigned NumArgs = 1;
2561 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002562 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002563 Args = ParenList->getExprs();
2564 NumArgs = ParenList->getNumExprs();
2565 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002566
2567 InitializedEntity BaseEntity =
2568 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2569 InitializationKind Kind =
2570 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2571 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2572 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002573 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2574 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002575 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002576 if (BaseInit.isInvalid())
2577 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002578
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002579 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002580
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002581 // C++0x [class.base.init]p7:
2582 // The initialization of each base and member constitutes a
2583 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002584 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002585 if (BaseInit.isInvalid())
2586 return true;
2587
2588 // If we are in a dependent context, template instantiation will
2589 // perform this type-checking again. Just save the arguments that we
2590 // received in a ParenListExpr.
2591 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2592 // of the information that we have about the base
2593 // initializer. However, deconstructing the ASTs is a dicey process,
2594 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002595 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002596 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002597
Sean Huntcbb67482011-01-08 20:30:50 +00002598 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002599 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002600 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002601 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002602 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002603}
2604
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002605// Create a static_cast\<T&&>(expr).
2606static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2607 QualType ExprType = E->getType();
2608 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2609 SourceLocation ExprLoc = E->getLocStart();
2610 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2611 TargetType, ExprLoc);
2612
2613 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2614 SourceRange(ExprLoc, ExprLoc),
2615 E->getSourceRange()).take();
2616}
2617
Anders Carlssone5ef7402010-04-23 03:10:23 +00002618/// ImplicitInitializerKind - How an implicit base or member initializer should
2619/// initialize its base or member.
2620enum ImplicitInitializerKind {
2621 IIK_Default,
2622 IIK_Copy,
2623 IIK_Move
2624};
2625
Anders Carlssondefefd22010-04-23 02:00:02 +00002626static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002627BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002628 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002629 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002630 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002631 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002632 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002633 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2634 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002635
John McCall60d7b3a2010-08-24 06:29:42 +00002636 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002637
2638 switch (ImplicitInitKind) {
2639 case IIK_Default: {
2640 InitializationKind InitKind
2641 = InitializationKind::CreateDefault(Constructor->getLocation());
2642 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002643 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002644 break;
2645 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002646
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002647 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002648 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002649 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002650 ParmVarDecl *Param = Constructor->getParamDecl(0);
2651 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002652
Anders Carlssone5ef7402010-04-23 03:10:23 +00002653 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002654 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002655 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002656 Constructor->getLocation(), ParamType,
2657 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002658
Eli Friedman5f2987c2012-02-02 03:46:19 +00002659 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2660
Anders Carlssonc7957502010-04-24 22:02:54 +00002661 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002662 QualType ArgTy =
2663 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2664 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002665
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002666 if (Moving) {
2667 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2668 }
2669
John McCallf871d0c2010-08-07 06:22:56 +00002670 CXXCastPath BasePath;
2671 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002672 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2673 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002674 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002675 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002676
Anders Carlssone5ef7402010-04-23 03:10:23 +00002677 InitializationKind InitKind
2678 = InitializationKind::CreateDirect(Constructor->getLocation(),
2679 SourceLocation(), SourceLocation());
2680 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2681 &CopyCtorArg, 1);
2682 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002683 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002684 break;
2685 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002686 }
John McCall9ae2f072010-08-23 23:25:46 +00002687
Douglas Gregor53c374f2010-12-07 00:41:46 +00002688 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002689 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002690 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002691
Anders Carlssondefefd22010-04-23 02:00:02 +00002692 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002693 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002694 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2695 SourceLocation()),
2696 BaseSpec->isVirtual(),
2697 SourceLocation(),
2698 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002699 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002700 SourceLocation());
2701
Anders Carlssondefefd22010-04-23 02:00:02 +00002702 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002703}
2704
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002705static bool RefersToRValueRef(Expr *MemRef) {
2706 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2707 return Referenced->getType()->isRValueReferenceType();
2708}
2709
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002710static bool
2711BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002712 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002713 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002714 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002715 if (Field->isInvalidDecl())
2716 return true;
2717
Chandler Carruthf186b542010-06-29 23:50:44 +00002718 SourceLocation Loc = Constructor->getLocation();
2719
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002720 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2721 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002722 ParmVarDecl *Param = Constructor->getParamDecl(0);
2723 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002724
2725 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002726 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2727 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002728
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002729 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002730 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002731 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002732 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002733
Eli Friedman5f2987c2012-02-02 03:46:19 +00002734 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2735
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002736 if (Moving) {
2737 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2738 }
2739
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002740 // Build a reference to this field within the parameter.
2741 CXXScopeSpec SS;
2742 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2743 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002744 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2745 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002746 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002747 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002748 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002749 ParamType, Loc,
2750 /*IsArrow=*/false,
2751 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002752 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002753 /*FirstQualifierInScope=*/0,
2754 MemberLookup,
2755 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002756 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002757 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002758
2759 // C++11 [class.copy]p15:
2760 // - if a member m has rvalue reference type T&&, it is direct-initialized
2761 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002762 if (RefersToRValueRef(CtorArg.get())) {
2763 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002764 }
2765
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002766 // When the field we are copying is an array, create index variables for
2767 // each dimension of the array. We use these index variables to subscript
2768 // the source array, and other clients (e.g., CodeGen) will perform the
2769 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002770 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002771 QualType BaseType = Field->getType();
2772 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002773 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002774 while (const ConstantArrayType *Array
2775 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002776 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002777 // Create the iteration variable for this array index.
2778 IdentifierInfo *IterationVarName = 0;
2779 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002780 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002781 llvm::raw_svector_ostream OS(Str);
2782 OS << "__i" << IndexVariables.size();
2783 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2784 }
2785 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002786 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002787 IterationVarName, SizeType,
2788 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002789 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002790 IndexVariables.push_back(IterationVar);
2791
2792 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002793 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002794 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002795 assert(!IterationVarRef.isInvalid() &&
2796 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002797 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2798 assert(!IterationVarRef.isInvalid() &&
2799 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002800
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002801 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002802 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002803 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002804 Loc);
2805 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002806 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002807
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002808 BaseType = Array->getElementType();
2809 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002810
2811 // The array subscript expression is an lvalue, which is wrong for moving.
2812 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002813 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002814
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002815 // Construct the entity that we will be initializing. For an array, this
2816 // will be first element in the array, which may require several levels
2817 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002818 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002819 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002820 if (Indirect)
2821 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2822 else
2823 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002824 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2825 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2826 0,
2827 Entities.back()));
2828
2829 // Direct-initialize to use the copy constructor.
2830 InitializationKind InitKind =
2831 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2832
Sebastian Redl74e611a2011-09-04 18:14:28 +00002833 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002834 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002835 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002836
John McCall60d7b3a2010-08-24 06:29:42 +00002837 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002838 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002839 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002840 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002841 if (MemberInit.isInvalid())
2842 return true;
2843
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002844 if (Indirect) {
2845 assert(IndexVariables.size() == 0 &&
2846 "Indirect field improperly initialized");
2847 CXXMemberInit
2848 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2849 Loc, Loc,
2850 MemberInit.takeAs<Expr>(),
2851 Loc);
2852 } else
2853 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2854 Loc, MemberInit.takeAs<Expr>(),
2855 Loc,
2856 IndexVariables.data(),
2857 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002858 return false;
2859 }
2860
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002861 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2862
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002863 QualType FieldBaseElementType =
2864 SemaRef.Context.getBaseElementType(Field->getType());
2865
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002866 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002867 InitializedEntity InitEntity
2868 = Indirect? InitializedEntity::InitializeMember(Indirect)
2869 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002870 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002871 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002872
2873 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002874 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002875 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002876
Douglas Gregor53c374f2010-12-07 00:41:46 +00002877 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002878 if (MemberInit.isInvalid())
2879 return true;
2880
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002881 if (Indirect)
2882 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2883 Indirect, Loc,
2884 Loc,
2885 MemberInit.get(),
2886 Loc);
2887 else
2888 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2889 Field, Loc, Loc,
2890 MemberInit.get(),
2891 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002892 return false;
2893 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002894
Sean Hunt1f2f3842011-05-17 00:19:05 +00002895 if (!Field->getParent()->isUnion()) {
2896 if (FieldBaseElementType->isReferenceType()) {
2897 SemaRef.Diag(Constructor->getLocation(),
2898 diag::err_uninitialized_member_in_ctor)
2899 << (int)Constructor->isImplicit()
2900 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2901 << 0 << Field->getDeclName();
2902 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2903 return true;
2904 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002905
Sean Hunt1f2f3842011-05-17 00:19:05 +00002906 if (FieldBaseElementType.isConstQualified()) {
2907 SemaRef.Diag(Constructor->getLocation(),
2908 diag::err_uninitialized_member_in_ctor)
2909 << (int)Constructor->isImplicit()
2910 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2911 << 1 << Field->getDeclName();
2912 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2913 return true;
2914 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002915 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002916
David Blaikie4e4d0842012-03-11 07:00:24 +00002917 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002918 FieldBaseElementType->isObjCRetainableType() &&
2919 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2920 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002921 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002922 // Default-initialize Objective-C pointers to NULL.
2923 CXXMemberInit
2924 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2925 Loc, Loc,
2926 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2927 Loc);
2928 return false;
2929 }
2930
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002931 // Nothing to initialize.
2932 CXXMemberInit = 0;
2933 return false;
2934}
John McCallf1860e52010-05-20 23:23:51 +00002935
2936namespace {
2937struct BaseAndFieldInfo {
2938 Sema &S;
2939 CXXConstructorDecl *Ctor;
2940 bool AnyErrorsInInits;
2941 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002942 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002943 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002944
2945 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2946 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002947 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2948 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002949 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002950 else if (Generated && Ctor->isMoveConstructor())
2951 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002952 else
2953 IIK = IIK_Default;
2954 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002955
2956 bool isImplicitCopyOrMove() const {
2957 switch (IIK) {
2958 case IIK_Copy:
2959 case IIK_Move:
2960 return true;
2961
2962 case IIK_Default:
2963 return false;
2964 }
David Blaikie30263482012-01-20 21:50:17 +00002965
2966 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002967 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002968
2969 bool addFieldInitializer(CXXCtorInitializer *Init) {
2970 AllToInit.push_back(Init);
2971
2972 // Check whether this initializer makes the field "used".
2973 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2974 S.UnusedPrivateFields.remove(Init->getAnyMember());
2975
2976 return false;
2977 }
John McCallf1860e52010-05-20 23:23:51 +00002978};
2979}
2980
Richard Smitha4950662011-09-19 13:34:43 +00002981/// \brief Determine whether the given indirect field declaration is somewhere
2982/// within an anonymous union.
2983static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2984 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2985 CEnd = F->chain_end();
2986 C != CEnd; ++C)
2987 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2988 if (Record->isUnion())
2989 return true;
2990
2991 return false;
2992}
2993
Douglas Gregorddb21472011-11-02 23:04:16 +00002994/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2995/// array type.
2996static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2997 if (T->isIncompleteArrayType())
2998 return true;
2999
3000 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
3001 if (!ArrayT->getSize())
3002 return true;
3003
3004 T = ArrayT->getElementType();
3005 }
3006
3007 return false;
3008}
3009
Richard Smith7a614d82011-06-11 17:19:42 +00003010static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003011 FieldDecl *Field,
3012 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00003013
Chandler Carruthe861c602010-06-30 02:59:29 +00003014 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00003015 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
3016 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003017
Richard Smith0b8220a2012-08-07 21:30:42 +00003018 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00003019 // has a brace-or-equal-initializer, the entity is initialized as specified
3020 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003021 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003022 CXXCtorInitializer *Init;
3023 if (Indirect)
3024 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3025 SourceLocation(),
3026 SourceLocation(), 0,
3027 SourceLocation());
3028 else
3029 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3030 SourceLocation(),
3031 SourceLocation(), 0,
3032 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003033 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003034 }
3035
Richard Smithc115f632011-09-18 11:14:50 +00003036 // Don't build an implicit initializer for union members if none was
3037 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003038 if (Field->getParent()->isUnion() ||
3039 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003040 return false;
3041
Douglas Gregorddb21472011-11-02 23:04:16 +00003042 // Don't initialize incomplete or zero-length arrays.
3043 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3044 return false;
3045
John McCallf1860e52010-05-20 23:23:51 +00003046 // Don't try to build an implicit initializer if there were semantic
3047 // errors in any of the initializers (and therefore we might be
3048 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003049 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003050 return false;
3051
Sean Huntcbb67482011-01-08 20:30:50 +00003052 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003053 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3054 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003055 return true;
John McCallf1860e52010-05-20 23:23:51 +00003056
Richard Smith0b8220a2012-08-07 21:30:42 +00003057 if (!Init)
3058 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003059
Richard Smith0b8220a2012-08-07 21:30:42 +00003060 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003061}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003062
3063bool
3064Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3065 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003066 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003067 Constructor->setNumCtorInitializers(1);
3068 CXXCtorInitializer **initializer =
3069 new (Context) CXXCtorInitializer*[1];
3070 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3071 Constructor->setCtorInitializers(initializer);
3072
Sean Huntb76af9c2011-05-03 23:05:34 +00003073 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003074 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003075 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3076 }
3077
Sean Huntc1598702011-05-05 00:05:47 +00003078 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003079
Sean Hunt059ce0d2011-05-01 07:04:31 +00003080 return false;
3081}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003082
John McCallb77115d2011-06-17 00:18:42 +00003083bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3084 CXXCtorInitializer **Initializers,
3085 unsigned NumInitializers,
3086 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003087 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003088 // Just store the initializers as written, they will be checked during
3089 // instantiation.
3090 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003091 Constructor->setNumCtorInitializers(NumInitializers);
3092 CXXCtorInitializer **baseOrMemberInitializers =
3093 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003094 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00003095 NumInitializers * sizeof(CXXCtorInitializer*));
3096 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003097 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003098
3099 // Let template instantiation know whether we had errors.
3100 if (AnyErrors)
3101 Constructor->setInvalidDecl();
3102
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003103 return false;
3104 }
3105
John McCallf1860e52010-05-20 23:23:51 +00003106 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003107
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003108 // We need to build the initializer AST according to order of construction
3109 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003110 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003111 if (!ClassDecl)
3112 return true;
3113
Eli Friedman80c30da2009-11-09 19:20:36 +00003114 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003115
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003116 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003117 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003118
3119 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003120 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003121 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003122 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003123 }
3124
Anders Carlsson711f34a2010-04-21 19:52:01 +00003125 // Keep track of the direct virtual bases.
3126 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3127 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3128 E = ClassDecl->bases_end(); I != E; ++I) {
3129 if (I->isVirtual())
3130 DirectVBases.insert(I);
3131 }
3132
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003133 // Push virtual bases before others.
3134 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3135 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3136
Sean Huntcbb67482011-01-08 20:30:50 +00003137 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003138 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3139 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003140 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003141 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003142 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003143 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003144 VBase, IsInheritedVirtualBase,
3145 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003146 HadError = true;
3147 continue;
3148 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003149
John McCallf1860e52010-05-20 23:23:51 +00003150 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003151 }
3152 }
Mike Stump1eb44332009-09-09 15:08:12 +00003153
John McCallf1860e52010-05-20 23:23:51 +00003154 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003155 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3156 E = ClassDecl->bases_end(); Base != E; ++Base) {
3157 // Virtuals are in the virtual base list and already constructed.
3158 if (Base->isVirtual())
3159 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003160
Sean Huntcbb67482011-01-08 20:30:50 +00003161 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003162 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3163 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003164 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003165 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003166 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003167 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003168 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003169 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003170 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003171 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003172
John McCallf1860e52010-05-20 23:23:51 +00003173 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003174 }
3175 }
Mike Stump1eb44332009-09-09 15:08:12 +00003176
John McCallf1860e52010-05-20 23:23:51 +00003177 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003178 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3179 MemEnd = ClassDecl->decls_end();
3180 Mem != MemEnd; ++Mem) {
3181 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003182 // C++ [class.bit]p2:
3183 // A declaration for a bit-field that omits the identifier declares an
3184 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3185 // initialized.
3186 if (F->isUnnamedBitfield())
3187 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003188
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003189 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003190 // handle anonymous struct/union fields based on their individual
3191 // indirect fields.
3192 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3193 continue;
3194
3195 if (CollectFieldInitializer(*this, Info, F))
3196 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003197 continue;
3198 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003199
3200 // Beyond this point, we only consider default initialization.
3201 if (Info.IIK != IIK_Default)
3202 continue;
3203
3204 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3205 if (F->getType()->isIncompleteArrayType()) {
3206 assert(ClassDecl->hasFlexibleArrayMember() &&
3207 "Incomplete array type is not valid");
3208 continue;
3209 }
3210
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003211 // Initialize each field of an anonymous struct individually.
3212 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3213 HadError = true;
3214
3215 continue;
3216 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003217 }
Mike Stump1eb44332009-09-09 15:08:12 +00003218
John McCallf1860e52010-05-20 23:23:51 +00003219 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003220 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003221 Constructor->setNumCtorInitializers(NumInitializers);
3222 CXXCtorInitializer **baseOrMemberInitializers =
3223 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003224 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003225 NumInitializers * sizeof(CXXCtorInitializer*));
3226 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003227
John McCallef027fe2010-03-16 21:39:52 +00003228 // Constructors implicitly reference the base and member
3229 // destructors.
3230 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3231 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003232 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003233
3234 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003235}
3236
Eli Friedman6347f422009-07-21 19:28:10 +00003237static void *GetKeyForTopLevelField(FieldDecl *Field) {
3238 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003239 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003240 if (RT->getDecl()->isAnonymousStructOrUnion())
3241 return static_cast<void *>(RT->getDecl());
3242 }
3243 return static_cast<void *>(Field);
3244}
3245
Anders Carlssonea356fb2010-04-02 05:42:15 +00003246static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003247 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003248}
3249
Anders Carlssonea356fb2010-04-02 05:42:15 +00003250static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003251 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003252 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003253 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003254
Eli Friedman6347f422009-07-21 19:28:10 +00003255 // For fields injected into the class via declaration of an anonymous union,
3256 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003257 FieldDecl *Field = Member->getAnyMember();
3258
John McCall3c3ccdb2010-04-10 09:28:51 +00003259 // If the field is a member of an anonymous struct or union, our key
3260 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003261 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003262 if (RD->isAnonymousStructOrUnion()) {
3263 while (true) {
3264 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3265 if (Parent->isAnonymousStructOrUnion())
3266 RD = Parent;
3267 else
3268 break;
3269 }
3270
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003271 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003272 }
Mike Stump1eb44332009-09-09 15:08:12 +00003273
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003274 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003275}
3276
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003277static void
3278DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003279 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003280 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003281 unsigned NumInits) {
3282 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003283 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003284
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003285 // Don't check initializers order unless the warning is enabled at the
3286 // location of at least one initializer.
3287 bool ShouldCheckOrder = false;
3288 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003289 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003290 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3291 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003292 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003293 ShouldCheckOrder = true;
3294 break;
3295 }
3296 }
3297 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003298 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003299
John McCalld6ca8da2010-04-10 07:37:23 +00003300 // Build the list of bases and members in the order that they'll
3301 // actually be initialized. The explicit initializers should be in
3302 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003303 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003304
Anders Carlsson071d6102010-04-02 03:38:04 +00003305 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3306
John McCalld6ca8da2010-04-10 07:37:23 +00003307 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003308 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003309 ClassDecl->vbases_begin(),
3310 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003311 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003312
John McCalld6ca8da2010-04-10 07:37:23 +00003313 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003314 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003315 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003316 if (Base->isVirtual())
3317 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003318 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003319 }
Mike Stump1eb44332009-09-09 15:08:12 +00003320
John McCalld6ca8da2010-04-10 07:37:23 +00003321 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003322 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003323 E = ClassDecl->field_end(); Field != E; ++Field) {
3324 if (Field->isUnnamedBitfield())
3325 continue;
3326
David Blaikie581deb32012-06-06 20:45:41 +00003327 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003328 }
3329
John McCalld6ca8da2010-04-10 07:37:23 +00003330 unsigned NumIdealInits = IdealInitKeys.size();
3331 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003332
Sean Huntcbb67482011-01-08 20:30:50 +00003333 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003334 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003335 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003336 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003337
3338 // Scan forward to try to find this initializer in the idealized
3339 // initializers list.
3340 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3341 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003342 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003343
3344 // If we didn't find this initializer, it must be because we
3345 // scanned past it on a previous iteration. That can only
3346 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003347 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003348 Sema::SemaDiagnosticBuilder D =
3349 SemaRef.Diag(PrevInit->getSourceLocation(),
3350 diag::warn_initializer_out_of_order);
3351
Francois Pichet00eb3f92010-12-04 09:14:42 +00003352 if (PrevInit->isAnyMemberInitializer())
3353 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003354 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003355 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003356
Francois Pichet00eb3f92010-12-04 09:14:42 +00003357 if (Init->isAnyMemberInitializer())
3358 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003359 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003360 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003361
3362 // Move back to the initializer's location in the ideal list.
3363 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3364 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003365 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003366
3367 assert(IdealIndex != NumIdealInits &&
3368 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003369 }
John McCalld6ca8da2010-04-10 07:37:23 +00003370
3371 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003372 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003373}
3374
John McCall3c3ccdb2010-04-10 09:28:51 +00003375namespace {
3376bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003377 CXXCtorInitializer *Init,
3378 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003379 if (!PrevInit) {
3380 PrevInit = Init;
3381 return false;
3382 }
3383
3384 if (FieldDecl *Field = Init->getMember())
3385 S.Diag(Init->getSourceLocation(),
3386 diag::err_multiple_mem_initialization)
3387 << Field->getDeclName()
3388 << Init->getSourceRange();
3389 else {
John McCallf4c73712011-01-19 06:33:43 +00003390 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003391 assert(BaseClass && "neither field nor base");
3392 S.Diag(Init->getSourceLocation(),
3393 diag::err_multiple_base_initialization)
3394 << QualType(BaseClass, 0)
3395 << Init->getSourceRange();
3396 }
3397 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3398 << 0 << PrevInit->getSourceRange();
3399
3400 return true;
3401}
3402
Sean Huntcbb67482011-01-08 20:30:50 +00003403typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003404typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3405
3406bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003407 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003408 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003409 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003410 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003411 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003412
3413 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003414 if (Parent->isUnion()) {
3415 UnionEntry &En = Unions[Parent];
3416 if (En.first && En.first != Child) {
3417 S.Diag(Init->getSourceLocation(),
3418 diag::err_multiple_mem_union_initialization)
3419 << Field->getDeclName()
3420 << Init->getSourceRange();
3421 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3422 << 0 << En.second->getSourceRange();
3423 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003424 }
3425 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003426 En.first = Child;
3427 En.second = Init;
3428 }
David Blaikie6fe29652011-11-17 06:01:57 +00003429 if (!Parent->isAnonymousStructOrUnion())
3430 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003431 }
3432
3433 Child = Parent;
3434 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003435 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003436
3437 return false;
3438}
3439}
3440
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003441/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003442void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003443 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003444 CXXCtorInitializer **meminits,
3445 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003446 bool AnyErrors) {
3447 if (!ConstructorDecl)
3448 return;
3449
3450 AdjustDeclIfTemplate(ConstructorDecl);
3451
3452 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003453 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003454
3455 if (!Constructor) {
3456 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3457 return;
3458 }
3459
Sean Huntcbb67482011-01-08 20:30:50 +00003460 CXXCtorInitializer **MemInits =
3461 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003462
3463 // Mapping for the duplicate initializers check.
3464 // For member initializers, this is keyed with a FieldDecl*.
3465 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003466 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003467
3468 // Mapping for the inconsistent anonymous-union initializers check.
3469 RedundantUnionMap MemberUnions;
3470
Anders Carlssonea356fb2010-04-02 05:42:15 +00003471 bool HadError = false;
3472 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003473 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003474
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003475 // Set the source order index.
3476 Init->setSourceOrder(i);
3477
Francois Pichet00eb3f92010-12-04 09:14:42 +00003478 if (Init->isAnyMemberInitializer()) {
3479 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003480 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3481 CheckRedundantUnionInit(*this, Init, MemberUnions))
3482 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003483 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003484 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3485 if (CheckRedundantInit(*this, Init, Members[Key]))
3486 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003487 } else {
3488 assert(Init->isDelegatingInitializer());
3489 // This must be the only initializer
Richard Smitha6ddea62012-09-14 18:21:10 +00003490 if (NumMemInits != 1) {
3491 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003492 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003493 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003494 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003495 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003496 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003497 // Return immediately as the initializer is set.
3498 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003499 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003500 }
3501
Anders Carlssonea356fb2010-04-02 05:42:15 +00003502 if (HadError)
3503 return;
3504
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003505 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003506
Sean Huntcbb67482011-01-08 20:30:50 +00003507 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003508}
3509
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003510void
John McCallef027fe2010-03-16 21:39:52 +00003511Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3512 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003513 // Ignore dependent contexts. Also ignore unions, since their members never
3514 // have destructors implicitly called.
3515 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003516 return;
John McCall58e6f342010-03-16 05:22:47 +00003517
3518 // FIXME: all the access-control diagnostics are positioned on the
3519 // field/base declaration. That's probably good; that said, the
3520 // user might reasonably want to know why the destructor is being
3521 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003522
Anders Carlsson9f853df2009-11-17 04:44:12 +00003523 // Non-static data members.
3524 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3525 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003526 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003527 if (Field->isInvalidDecl())
3528 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003529
3530 // Don't destroy incomplete or zero-length arrays.
3531 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3532 continue;
3533
Anders Carlsson9f853df2009-11-17 04:44:12 +00003534 QualType FieldType = Context.getBaseElementType(Field->getType());
3535
3536 const RecordType* RT = FieldType->getAs<RecordType>();
3537 if (!RT)
3538 continue;
3539
3540 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003541 if (FieldClassDecl->isInvalidDecl())
3542 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003543 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003544 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003545 // The destructor for an implicit anonymous union member is never invoked.
3546 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3547 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003548
Douglas Gregordb89f282010-07-01 22:47:18 +00003549 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003550 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003551 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003552 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003553 << Field->getDeclName()
3554 << FieldType);
3555
Eli Friedman5f2987c2012-02-02 03:46:19 +00003556 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003557 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003558 }
3559
John McCall58e6f342010-03-16 05:22:47 +00003560 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3561
Anders Carlsson9f853df2009-11-17 04:44:12 +00003562 // Bases.
3563 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3564 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003565 // Bases are always records in a well-formed non-dependent class.
3566 const RecordType *RT = Base->getType()->getAs<RecordType>();
3567
3568 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003569 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003570 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003571
John McCall58e6f342010-03-16 05:22:47 +00003572 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003573 // If our base class is invalid, we probably can't get its dtor anyway.
3574 if (BaseClassDecl->isInvalidDecl())
3575 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003576 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003577 continue;
John McCall58e6f342010-03-16 05:22:47 +00003578
Douglas Gregordb89f282010-07-01 22:47:18 +00003579 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003580 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003581
3582 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003583 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003584 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003585 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003586 << Base->getSourceRange(),
3587 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003588
Eli Friedman5f2987c2012-02-02 03:46:19 +00003589 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003590 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003591 }
3592
3593 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003594 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3595 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003596
3597 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003598 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003599
3600 // Ignore direct virtual bases.
3601 if (DirectVirtualBases.count(RT))
3602 continue;
3603
John McCall58e6f342010-03-16 05:22:47 +00003604 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003605 // If our base class is invalid, we probably can't get its dtor anyway.
3606 if (BaseClassDecl->isInvalidDecl())
3607 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003608 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003609 continue;
John McCall58e6f342010-03-16 05:22:47 +00003610
Douglas Gregordb89f282010-07-01 22:47:18 +00003611 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003612 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003613 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003614 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003615 << VBase->getType(),
3616 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003617
Eli Friedman5f2987c2012-02-02 03:46:19 +00003618 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003619 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003620 }
3621}
3622
John McCalld226f652010-08-21 09:40:31 +00003623void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003624 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003625 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003626
Mike Stump1eb44332009-09-09 15:08:12 +00003627 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003628 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003629 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003630}
3631
Mike Stump1eb44332009-09-09 15:08:12 +00003632bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003633 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003634 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3635 unsigned DiagID;
3636 AbstractDiagSelID SelID;
3637
3638 public:
3639 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3640 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3641
3642 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003643 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003644 if (SelID == -1)
3645 S.Diag(Loc, DiagID) << T;
3646 else
3647 S.Diag(Loc, DiagID) << SelID << T;
3648 }
3649 } Diagnoser(DiagID, SelID);
3650
3651 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003652}
3653
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003654bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003655 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003656 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003657 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003658
Anders Carlsson11f21a02009-03-23 19:10:31 +00003659 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003660 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003661
Ted Kremenek6217b802009-07-29 21:53:49 +00003662 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003663 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003664 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003665 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003666
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003667 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003668 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003669 }
Mike Stump1eb44332009-09-09 15:08:12 +00003670
Ted Kremenek6217b802009-07-29 21:53:49 +00003671 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003672 if (!RT)
3673 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003674
John McCall86ff3082010-02-04 22:26:26 +00003675 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003676
John McCall94c3b562010-08-18 09:41:07 +00003677 // We can't answer whether something is abstract until it has a
3678 // definition. If it's currently being defined, we'll walk back
3679 // over all the declarations when we have a full definition.
3680 const CXXRecordDecl *Def = RD->getDefinition();
3681 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003682 return false;
3683
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003684 if (!RD->isAbstract())
3685 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003686
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003687 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003688 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003689
John McCall94c3b562010-08-18 09:41:07 +00003690 return true;
3691}
3692
3693void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3694 // Check if we've already emitted the list of pure virtual functions
3695 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003696 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003697 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003698
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003699 CXXFinalOverriderMap FinalOverriders;
3700 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003701
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003702 // Keep a set of seen pure methods so we won't diagnose the same method
3703 // more than once.
3704 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3705
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003706 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3707 MEnd = FinalOverriders.end();
3708 M != MEnd;
3709 ++M) {
3710 for (OverridingMethods::iterator SO = M->second.begin(),
3711 SOEnd = M->second.end();
3712 SO != SOEnd; ++SO) {
3713 // C++ [class.abstract]p4:
3714 // A class is abstract if it contains or inherits at least one
3715 // pure virtual function for which the final overrider is pure
3716 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003717
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003718 //
3719 if (SO->second.size() != 1)
3720 continue;
3721
3722 if (!SO->second.front().Method->isPure())
3723 continue;
3724
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003725 if (!SeenPureMethods.insert(SO->second.front().Method))
3726 continue;
3727
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003728 Diag(SO->second.front().Method->getLocation(),
3729 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003730 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003731 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003732 }
3733
3734 if (!PureVirtualClassDiagSet)
3735 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3736 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003737}
3738
Anders Carlsson8211eff2009-03-24 01:19:16 +00003739namespace {
John McCall94c3b562010-08-18 09:41:07 +00003740struct AbstractUsageInfo {
3741 Sema &S;
3742 CXXRecordDecl *Record;
3743 CanQualType AbstractType;
3744 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003745
John McCall94c3b562010-08-18 09:41:07 +00003746 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3747 : S(S), Record(Record),
3748 AbstractType(S.Context.getCanonicalType(
3749 S.Context.getTypeDeclType(Record))),
3750 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003751
John McCall94c3b562010-08-18 09:41:07 +00003752 void DiagnoseAbstractType() {
3753 if (Invalid) return;
3754 S.DiagnoseAbstractType(Record);
3755 Invalid = true;
3756 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003757
John McCall94c3b562010-08-18 09:41:07 +00003758 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3759};
3760
3761struct CheckAbstractUsage {
3762 AbstractUsageInfo &Info;
3763 const NamedDecl *Ctx;
3764
3765 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3766 : Info(Info), Ctx(Ctx) {}
3767
3768 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3769 switch (TL.getTypeLocClass()) {
3770#define ABSTRACT_TYPELOC(CLASS, PARENT)
3771#define TYPELOC(CLASS, PARENT) \
3772 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3773#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003774 }
John McCall94c3b562010-08-18 09:41:07 +00003775 }
Mike Stump1eb44332009-09-09 15:08:12 +00003776
John McCall94c3b562010-08-18 09:41:07 +00003777 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3778 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3779 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003780 if (!TL.getArg(I))
3781 continue;
3782
John McCall94c3b562010-08-18 09:41:07 +00003783 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3784 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003785 }
John McCall94c3b562010-08-18 09:41:07 +00003786 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003787
John McCall94c3b562010-08-18 09:41:07 +00003788 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3789 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3790 }
Mike Stump1eb44332009-09-09 15:08:12 +00003791
John McCall94c3b562010-08-18 09:41:07 +00003792 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3793 // Visit the type parameters from a permissive context.
3794 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3795 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3796 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3797 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3798 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3799 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003800 }
John McCall94c3b562010-08-18 09:41:07 +00003801 }
Mike Stump1eb44332009-09-09 15:08:12 +00003802
John McCall94c3b562010-08-18 09:41:07 +00003803 // Visit pointee types from a permissive context.
3804#define CheckPolymorphic(Type) \
3805 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3806 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3807 }
3808 CheckPolymorphic(PointerTypeLoc)
3809 CheckPolymorphic(ReferenceTypeLoc)
3810 CheckPolymorphic(MemberPointerTypeLoc)
3811 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003812 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003813
John McCall94c3b562010-08-18 09:41:07 +00003814 /// Handle all the types we haven't given a more specific
3815 /// implementation for above.
3816 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3817 // Every other kind of type that we haven't called out already
3818 // that has an inner type is either (1) sugar or (2) contains that
3819 // inner type in some way as a subobject.
3820 if (TypeLoc Next = TL.getNextTypeLoc())
3821 return Visit(Next, Sel);
3822
3823 // If there's no inner type and we're in a permissive context,
3824 // don't diagnose.
3825 if (Sel == Sema::AbstractNone) return;
3826
3827 // Check whether the type matches the abstract type.
3828 QualType T = TL.getType();
3829 if (T->isArrayType()) {
3830 Sel = Sema::AbstractArrayType;
3831 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003832 }
John McCall94c3b562010-08-18 09:41:07 +00003833 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3834 if (CT != Info.AbstractType) return;
3835
3836 // It matched; do some magic.
3837 if (Sel == Sema::AbstractArrayType) {
3838 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3839 << T << TL.getSourceRange();
3840 } else {
3841 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3842 << Sel << T << TL.getSourceRange();
3843 }
3844 Info.DiagnoseAbstractType();
3845 }
3846};
3847
3848void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3849 Sema::AbstractDiagSelID Sel) {
3850 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3851}
3852
3853}
3854
3855/// Check for invalid uses of an abstract type in a method declaration.
3856static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3857 CXXMethodDecl *MD) {
3858 // No need to do the check on definitions, which require that
3859 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003860 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003861 return;
3862
3863 // For safety's sake, just ignore it if we don't have type source
3864 // information. This should never happen for non-implicit methods,
3865 // but...
3866 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3867 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3868}
3869
3870/// Check for invalid uses of an abstract type within a class definition.
3871static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3872 CXXRecordDecl *RD) {
3873 for (CXXRecordDecl::decl_iterator
3874 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3875 Decl *D = *I;
3876 if (D->isImplicit()) continue;
3877
3878 // Methods and method templates.
3879 if (isa<CXXMethodDecl>(D)) {
3880 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3881 } else if (isa<FunctionTemplateDecl>(D)) {
3882 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3883 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3884
3885 // Fields and static variables.
3886 } else if (isa<FieldDecl>(D)) {
3887 FieldDecl *FD = cast<FieldDecl>(D);
3888 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3889 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3890 } else if (isa<VarDecl>(D)) {
3891 VarDecl *VD = cast<VarDecl>(D);
3892 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3893 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3894
3895 // Nested classes and class templates.
3896 } else if (isa<CXXRecordDecl>(D)) {
3897 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3898 } else if (isa<ClassTemplateDecl>(D)) {
3899 CheckAbstractClassUsage(Info,
3900 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3901 }
3902 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003903}
3904
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003905/// \brief Perform semantic checks on a class definition that has been
3906/// completing, introducing implicitly-declared members, checking for
3907/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003908void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003909 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003910 return;
3911
John McCall94c3b562010-08-18 09:41:07 +00003912 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3913 AbstractUsageInfo Info(*this, Record);
3914 CheckAbstractClassUsage(Info, Record);
3915 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003916
3917 // If this is not an aggregate type and has no user-declared constructor,
3918 // complain about any non-static data members of reference or const scalar
3919 // type, since they will never get initializers.
3920 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003921 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3922 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003923 bool Complained = false;
3924 for (RecordDecl::field_iterator F = Record->field_begin(),
3925 FEnd = Record->field_end();
3926 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003927 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003928 continue;
3929
Douglas Gregor325e5932010-04-15 00:00:53 +00003930 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003931 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003932 if (!Complained) {
3933 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3934 << Record->getTagKind() << Record;
3935 Complained = true;
3936 }
3937
3938 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3939 << F->getType()->isReferenceType()
3940 << F->getDeclName();
3941 }
3942 }
3943 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003944
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003945 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003946 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003947
3948 if (Record->getIdentifier()) {
3949 // C++ [class.mem]p13:
3950 // If T is the name of a class, then each of the following shall have a
3951 // name different from T:
3952 // - every member of every anonymous union that is a member of class T.
3953 //
3954 // C++ [class.mem]p14:
3955 // In addition, if class T has a user-declared constructor (12.1), every
3956 // non-static data member of class T shall have a name different from T.
3957 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003958 R.first != R.second; ++R.first) {
3959 NamedDecl *D = *R.first;
3960 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3961 isa<IndirectFieldDecl>(D)) {
3962 Diag(D->getLocation(), diag::err_member_name_of_class)
3963 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003964 break;
3965 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003966 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003967 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003968
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003969 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003970 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003971 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003972 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003973 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3974 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3975 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003976
David Blaikieb6b5b972012-09-21 03:21:07 +00003977 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3978 Diag(Record->getLocation(), diag::warn_abstract_final_class);
3979 DiagnoseAbstractType(Record);
3980 }
3981
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003982 // See if a method overloads virtual methods in a base
3983 /// class without overriding any.
3984 if (!Record->isDependentType()) {
3985 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3986 MEnd = Record->method_end();
3987 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003988 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003989 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003990 }
3991 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003992
3993 // Declare inherited constructors. We do this eagerly here because:
3994 // - The standard requires an eager diagnostic for conflicting inherited
3995 // constructors from different classes.
3996 // - The lazy declaration of the other implicit constructors is so as to not
3997 // waste space and performance on classes that are not meant to be
3998 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3999 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004000 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004001}
4002
Richard Smithac713512012-12-08 02:53:02 +00004003void Sema::CheckExplicitlyDefaultedAndDeletedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00004004 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
4005 ME = Record->method_end();
Richard Smithac713512012-12-08 02:53:02 +00004006 MI != ME; ++MI) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004007 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00004008 CheckExplicitlyDefaultedSpecialMember(*MI);
Richard Smithac713512012-12-08 02:53:02 +00004009
4010 if (!MI->isImplicit() && !MI->isUserProvided()) {
4011 // For an explicitly defaulted or deleted special member, we defer
4012 // determining triviality until the class is complete. That time is now!
4013 CXXSpecialMember CSM = getSpecialMember(*MI);
4014 if (CSM != CXXInvalid) {
4015 MI->setTrivial(SpecialMemberIsTrivial(*MI, CSM));
4016
4017 // Inform the class that we've finished declaring this member.
4018 Record->finishedDefaultedOrDeletedMember(*MI);
4019 }
4020 }
4021 }
Sean Hunt001cad92011-05-10 00:49:42 +00004022}
4023
Richard Smith7756afa2012-06-10 05:43:50 +00004024/// Is the special member function which would be selected to perform the
4025/// specified operation on the specified class type a constexpr constructor?
4026static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4027 Sema::CXXSpecialMember CSM,
4028 bool ConstArg) {
4029 Sema::SpecialMemberOverloadResult *SMOR =
4030 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4031 false, false, false, false);
4032 if (!SMOR || !SMOR->getMethod())
4033 // A constructor we wouldn't select can't be "involved in initializing"
4034 // anything.
4035 return true;
4036 return SMOR->getMethod()->isConstexpr();
4037}
4038
4039/// Determine whether the specified special member function would be constexpr
4040/// if it were implicitly defined.
4041static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4042 Sema::CXXSpecialMember CSM,
4043 bool ConstArg) {
4044 if (!S.getLangOpts().CPlusPlus0x)
4045 return false;
4046
4047 // C++11 [dcl.constexpr]p4:
4048 // In the definition of a constexpr constructor [...]
4049 switch (CSM) {
4050 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004051 // Since default constructor lookup is essentially trivial (and cannot
4052 // involve, for instance, template instantiation), we compute whether a
4053 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4054 //
4055 // This is important for performance; we need to know whether the default
4056 // constructor is constexpr to determine whether the type is a literal type.
4057 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4058
Richard Smith7756afa2012-06-10 05:43:50 +00004059 case Sema::CXXCopyConstructor:
4060 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004061 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004062 break;
4063
4064 case Sema::CXXCopyAssignment:
4065 case Sema::CXXMoveAssignment:
4066 case Sema::CXXDestructor:
4067 case Sema::CXXInvalid:
4068 return false;
4069 }
4070
4071 // -- if the class is a non-empty union, or for each non-empty anonymous
4072 // union member of a non-union class, exactly one non-static data member
4073 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004074 //
4075 // If we squint, this is guaranteed, since exactly one non-static data member
4076 // will be initialized (if the constructor isn't deleted), we just don't know
4077 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00004078 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004079 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004080
4081 // -- the class shall not have any virtual base classes;
4082 if (ClassDecl->getNumVBases())
4083 return false;
4084
4085 // -- every constructor involved in initializing [...] base class
4086 // sub-objects shall be a constexpr constructor;
4087 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4088 BEnd = ClassDecl->bases_end();
4089 B != BEnd; ++B) {
4090 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4091 if (!BaseType) continue;
4092
4093 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4094 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4095 return false;
4096 }
4097
4098 // -- every constructor involved in initializing non-static data members
4099 // [...] shall be a constexpr constructor;
4100 // -- every non-static data member and base class sub-object shall be
4101 // initialized
4102 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4103 FEnd = ClassDecl->field_end();
4104 F != FEnd; ++F) {
4105 if (F->isInvalidDecl())
4106 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004107 if (const RecordType *RecordTy =
4108 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004109 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4110 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4111 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004112 }
4113 }
4114
4115 // All OK, it's constexpr!
4116 return true;
4117}
4118
Richard Smithb9d0b762012-07-27 04:22:15 +00004119static Sema::ImplicitExceptionSpecification
4120computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4121 switch (S.getSpecialMember(MD)) {
4122 case Sema::CXXDefaultConstructor:
4123 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4124 case Sema::CXXCopyConstructor:
4125 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4126 case Sema::CXXCopyAssignment:
4127 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4128 case Sema::CXXMoveConstructor:
4129 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4130 case Sema::CXXMoveAssignment:
4131 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4132 case Sema::CXXDestructor:
4133 return S.ComputeDefaultedDtorExceptionSpec(MD);
4134 case Sema::CXXInvalid:
4135 break;
4136 }
4137 llvm_unreachable("only special members have implicit exception specs");
4138}
4139
Richard Smithdd25e802012-07-30 23:48:14 +00004140static void
4141updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4142 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4143 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4144 ExceptSpec.getEPI(EPI);
4145 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4146 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4147 FPT->getNumArgs(), EPI));
4148 FD->setType(QualType(NewFPT, 0));
4149}
4150
Richard Smithb9d0b762012-07-27 04:22:15 +00004151void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4152 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4153 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4154 return;
4155
Richard Smithdd25e802012-07-30 23:48:14 +00004156 // Evaluate the exception specification.
4157 ImplicitExceptionSpecification ExceptSpec =
4158 computeImplicitExceptionSpec(*this, Loc, MD);
4159
4160 // Update the type of the special member to use it.
4161 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4162
4163 // A user-provided destructor can be defined outside the class. When that
4164 // happens, be sure to update the exception specification on both
4165 // declarations.
4166 const FunctionProtoType *CanonicalFPT =
4167 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4168 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4169 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4170 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004171}
4172
Richard Smith3003e1d2012-05-15 04:39:51 +00004173void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4174 CXXRecordDecl *RD = MD->getParent();
4175 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004176
Richard Smith3003e1d2012-05-15 04:39:51 +00004177 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4178 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004179
4180 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004181 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004182 bool First = MD == MD->getCanonicalDecl();
4183
4184 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004185
4186 // C++11 [dcl.fct.def.default]p1:
4187 // A function that is explicitly defaulted shall
4188 // -- be a special member function (checked elsewhere),
4189 // -- have the same type (except for ref-qualifiers, and except that a
4190 // copy operation can take a non-const reference) as an implicit
4191 // declaration, and
4192 // -- not have default arguments.
4193 unsigned ExpectedParams = 1;
4194 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4195 ExpectedParams = 0;
4196 if (MD->getNumParams() != ExpectedParams) {
4197 // This also checks for default arguments: a copy or move constructor with a
4198 // default argument is classified as a default constructor, and assignment
4199 // operations and destructors can't have default arguments.
4200 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4201 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004202 HadError = true;
Richard Smith50464392012-12-07 02:10:28 +00004203 } else if (MD->isVariadic()) {
4204 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
4205 << CSM << MD->getSourceRange();
4206 HadError = true;
Sean Hunt2b188082011-05-14 05:23:28 +00004207 }
4208
Richard Smith3003e1d2012-05-15 04:39:51 +00004209 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004210
Richard Smith7756afa2012-06-10 05:43:50 +00004211 bool CanHaveConstParam = false;
Richard Smithac713512012-12-08 02:53:02 +00004212 if (CSM == CXXCopyConstructor)
Richard Smithacf796b2012-11-28 06:23:12 +00004213 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smithac713512012-12-08 02:53:02 +00004214 else if (CSM == CXXCopyAssignment)
Richard Smithacf796b2012-11-28 06:23:12 +00004215 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Sean Hunt2b188082011-05-14 05:23:28 +00004216
Richard Smith3003e1d2012-05-15 04:39:51 +00004217 QualType ReturnType = Context.VoidTy;
4218 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4219 // Check for return type matching.
4220 ReturnType = Type->getResultType();
4221 QualType ExpectedReturnType =
4222 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4223 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4224 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4225 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4226 HadError = true;
4227 }
4228
4229 // A defaulted special member cannot have cv-qualifiers.
4230 if (Type->getTypeQuals()) {
4231 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4232 << (CSM == CXXMoveAssignment);
4233 HadError = true;
4234 }
4235 }
4236
4237 // Check for parameter type matching.
4238 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004239 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004240 if (ExpectedParams && ArgType->isReferenceType()) {
4241 // Argument must be reference to possibly-const T.
4242 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004243 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004244
4245 if (ReferentType.isVolatileQualified()) {
4246 Diag(MD->getLocation(),
4247 diag::err_defaulted_special_member_volatile_param) << CSM;
4248 HadError = true;
4249 }
4250
Richard Smith7756afa2012-06-10 05:43:50 +00004251 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004252 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4253 Diag(MD->getLocation(),
4254 diag::err_defaulted_special_member_copy_const_param)
4255 << (CSM == CXXCopyAssignment);
4256 // FIXME: Explain why this special member can't be const.
4257 } else {
4258 Diag(MD->getLocation(),
4259 diag::err_defaulted_special_member_move_const_param)
4260 << (CSM == CXXMoveAssignment);
4261 }
4262 HadError = true;
4263 }
Richard Smith3003e1d2012-05-15 04:39:51 +00004264 } else if (ExpectedParams) {
4265 // A copy assignment operator can take its argument by value, but a
4266 // defaulted one cannot.
4267 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004268 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004269 HadError = true;
4270 }
Sean Huntbe631222011-05-17 20:44:43 +00004271
Richard Smithb9d0b762012-07-27 04:22:15 +00004272 // Rebuild the type with the implicit exception specification added, if we
4273 // are going to need it.
4274 const FunctionProtoType *ImplicitType = 0;
4275 if (First || Type->hasExceptionSpec()) {
4276 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4277 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4278 ImplicitType = cast<FunctionProtoType>(
4279 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4280 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004281
Richard Smith61802452011-12-22 02:22:31 +00004282 // C++11 [dcl.fct.def.default]p2:
4283 // An explicitly-defaulted function may be declared constexpr only if it
4284 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004285 // Do not apply this rule to members of class templates, since core issue 1358
4286 // makes such functions always instantiate to constexpr functions. For
4287 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004288 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4289 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004290 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4291 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4292 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004293 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004294 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004295 }
4296 // and may have an explicit exception-specification only if it is compatible
4297 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004298 if (Type->hasExceptionSpec() &&
4299 CheckEquivalentExceptionSpec(
4300 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4301 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4302 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004303
4304 // If a function is explicitly defaulted on its first declaration,
4305 if (First) {
4306 // -- it is implicitly considered to be constexpr if the implicit
4307 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004308 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004309
Richard Smith3003e1d2012-05-15 04:39:51 +00004310 // -- it is implicitly considered to have the same exception-specification
4311 // as if it had been implicitly declared,
4312 MD->setType(QualType(ImplicitType, 0));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004313 }
4314
Richard Smith3003e1d2012-05-15 04:39:51 +00004315 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004316 if (First) {
4317 MD->setDeletedAsWritten();
4318 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004319 // C++11 [dcl.fct.def.default]p4:
4320 // [For a] user-provided explicitly-defaulted function [...] if such a
4321 // function is implicitly defined as deleted, the program is ill-formed.
4322 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4323 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004324 }
4325 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004326
Richard Smith3003e1d2012-05-15 04:39:51 +00004327 if (HadError)
4328 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004329}
4330
Richard Smith7d5088a2012-02-18 02:02:13 +00004331namespace {
4332struct SpecialMemberDeletionInfo {
4333 Sema &S;
4334 CXXMethodDecl *MD;
4335 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004336 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004337
4338 // Properties of the special member, computed for convenience.
4339 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4340 SourceLocation Loc;
4341
4342 bool AllFieldsAreConst;
4343
4344 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004345 Sema::CXXSpecialMember CSM, bool Diagnose)
4346 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004347 IsConstructor(false), IsAssignment(false), IsMove(false),
4348 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4349 AllFieldsAreConst(true) {
4350 switch (CSM) {
4351 case Sema::CXXDefaultConstructor:
4352 case Sema::CXXCopyConstructor:
4353 IsConstructor = true;
4354 break;
4355 case Sema::CXXMoveConstructor:
4356 IsConstructor = true;
4357 IsMove = true;
4358 break;
4359 case Sema::CXXCopyAssignment:
4360 IsAssignment = true;
4361 break;
4362 case Sema::CXXMoveAssignment:
4363 IsAssignment = true;
4364 IsMove = true;
4365 break;
4366 case Sema::CXXDestructor:
4367 break;
4368 case Sema::CXXInvalid:
4369 llvm_unreachable("invalid special member kind");
4370 }
4371
4372 if (MD->getNumParams()) {
4373 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4374 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4375 }
4376 }
4377
4378 bool inUnion() const { return MD->getParent()->isUnion(); }
4379
4380 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004381 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4382 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004383 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004384 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4385 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4386 Quals = 0;
4387 return S.LookupSpecialMember(Class, CSM,
4388 ConstArg || (Quals & Qualifiers::Const),
4389 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004390 MD->getRefQualifier() == RQ_RValue,
4391 TQ & Qualifiers::Const,
4392 TQ & Qualifiers::Volatile);
4393 }
4394
Richard Smith6c4c36c2012-03-30 20:53:28 +00004395 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004396
Richard Smith6c4c36c2012-03-30 20:53:28 +00004397 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004398 bool shouldDeleteForField(FieldDecl *FD);
4399 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004400
Richard Smith517bb842012-07-18 03:51:16 +00004401 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4402 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004403 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4404 Sema::SpecialMemberOverloadResult *SMOR,
4405 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004406
4407 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004408};
4409}
4410
John McCall12d8d802012-04-09 20:53:23 +00004411/// Is the given special member inaccessible when used on the given
4412/// sub-object.
4413bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4414 CXXMethodDecl *target) {
4415 /// If we're operating on a base class, the object type is the
4416 /// type of this special member.
4417 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004418 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004419 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4420 objectTy = S.Context.getTypeDeclType(MD->getParent());
4421 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4422
4423 // If we're operating on a field, the object type is the type of the field.
4424 } else {
4425 objectTy = S.Context.getTypeDeclType(target->getParent());
4426 }
4427
4428 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4429}
4430
Richard Smith6c4c36c2012-03-30 20:53:28 +00004431/// Check whether we should delete a special member due to the implicit
4432/// definition containing a call to a special member of a subobject.
4433bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4434 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4435 bool IsDtorCallInCtor) {
4436 CXXMethodDecl *Decl = SMOR->getMethod();
4437 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4438
4439 int DiagKind = -1;
4440
4441 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4442 DiagKind = !Decl ? 0 : 1;
4443 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4444 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004445 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004446 DiagKind = 3;
4447 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4448 !Decl->isTrivial()) {
4449 // A member of a union must have a trivial corresponding special member.
4450 // As a weird special case, a destructor call from a union's constructor
4451 // must be accessible and non-deleted, but need not be trivial. Such a
4452 // destructor is never actually called, but is semantically checked as
4453 // if it were.
4454 DiagKind = 4;
4455 }
4456
4457 if (DiagKind == -1)
4458 return false;
4459
4460 if (Diagnose) {
4461 if (Field) {
4462 S.Diag(Field->getLocation(),
4463 diag::note_deleted_special_member_class_subobject)
4464 << CSM << MD->getParent() << /*IsField*/true
4465 << Field << DiagKind << IsDtorCallInCtor;
4466 } else {
4467 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4468 S.Diag(Base->getLocStart(),
4469 diag::note_deleted_special_member_class_subobject)
4470 << CSM << MD->getParent() << /*IsField*/false
4471 << Base->getType() << DiagKind << IsDtorCallInCtor;
4472 }
4473
4474 if (DiagKind == 1)
4475 S.NoteDeletedFunction(Decl);
4476 // FIXME: Explain inaccessibility if DiagKind == 3.
4477 }
4478
4479 return true;
4480}
4481
Richard Smith9a561d52012-02-26 09:11:52 +00004482/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004483/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004484bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004485 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004486 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004487
4488 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004489 // -- any direct or virtual base class, or non-static data member with no
4490 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004491 // either M has no default constructor or overload resolution as applied
4492 // to M's default constructor results in an ambiguity or in a function
4493 // that is deleted or inaccessible
4494 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4495 // -- a direct or virtual base class B that cannot be copied/moved because
4496 // overload resolution, as applied to B's corresponding special member,
4497 // results in an ambiguity or a function that is deleted or inaccessible
4498 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004499 // C++11 [class.dtor]p5:
4500 // -- any direct or virtual base class [...] has a type with a destructor
4501 // that is deleted or inaccessible
4502 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004503 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004504 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004505 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004506
Richard Smith6c4c36c2012-03-30 20:53:28 +00004507 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4508 // -- any direct or virtual base class or non-static data member has a
4509 // type with a destructor that is deleted or inaccessible
4510 if (IsConstructor) {
4511 Sema::SpecialMemberOverloadResult *SMOR =
4512 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4513 false, false, false, false, false);
4514 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4515 return true;
4516 }
4517
Richard Smith9a561d52012-02-26 09:11:52 +00004518 return false;
4519}
4520
4521/// Check whether we should delete a special member function due to the class
4522/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004523bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004524 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004525 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004526}
4527
4528/// Check whether we should delete a special member function due to the class
4529/// having a particular non-static data member.
4530bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4531 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4532 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4533
4534 if (CSM == Sema::CXXDefaultConstructor) {
4535 // For a default constructor, all references must be initialized in-class
4536 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004537 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4538 if (Diagnose)
4539 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4540 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004541 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004542 }
Richard Smith79363f52012-02-27 06:07:25 +00004543 // C++11 [class.ctor]p5: any non-variant non-static data member of
4544 // const-qualified type (or array thereof) with no
4545 // brace-or-equal-initializer does not have a user-provided default
4546 // constructor.
4547 if (!inUnion() && FieldType.isConstQualified() &&
4548 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004549 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4550 if (Diagnose)
4551 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004552 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004553 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004554 }
4555
4556 if (inUnion() && !FieldType.isConstQualified())
4557 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004558 } else if (CSM == Sema::CXXCopyConstructor) {
4559 // For a copy constructor, data members must not be of rvalue reference
4560 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004561 if (FieldType->isRValueReferenceType()) {
4562 if (Diagnose)
4563 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4564 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004565 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004566 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004567 } else if (IsAssignment) {
4568 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004569 if (FieldType->isReferenceType()) {
4570 if (Diagnose)
4571 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4572 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004573 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004574 }
4575 if (!FieldRecord && FieldType.isConstQualified()) {
4576 // C++11 [class.copy]p23:
4577 // -- a non-static data member of const non-class type (or array thereof)
4578 if (Diagnose)
4579 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004580 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004581 return true;
4582 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004583 }
4584
4585 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004586 // Some additional restrictions exist on the variant members.
4587 if (!inUnion() && FieldRecord->isUnion() &&
4588 FieldRecord->isAnonymousStructOrUnion()) {
4589 bool AllVariantFieldsAreConst = true;
4590
Richard Smithdf8dc862012-03-29 19:00:10 +00004591 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004592 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4593 UE = FieldRecord->field_end();
4594 UI != UE; ++UI) {
4595 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004596
4597 if (!UnionFieldType.isConstQualified())
4598 AllVariantFieldsAreConst = false;
4599
Richard Smith9a561d52012-02-26 09:11:52 +00004600 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4601 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004602 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4603 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004604 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004605 }
4606
4607 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004608 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004609 FieldRecord->field_begin() != FieldRecord->field_end()) {
4610 if (Diagnose)
4611 S.Diag(FieldRecord->getLocation(),
4612 diag::note_deleted_default_ctor_all_const)
4613 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004614 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004615 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004616
Richard Smithdf8dc862012-03-29 19:00:10 +00004617 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004618 // This is technically non-conformant, but sanity demands it.
4619 return false;
4620 }
4621
Richard Smith517bb842012-07-18 03:51:16 +00004622 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4623 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004624 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004625 }
4626
4627 return false;
4628}
4629
4630/// C++11 [class.ctor] p5:
4631/// A defaulted default constructor for a class X is defined as deleted if
4632/// X is a union and all of its variant members are of const-qualified type.
4633bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004634 // This is a silly definition, because it gives an empty union a deleted
4635 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004636 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4637 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4638 if (Diagnose)
4639 S.Diag(MD->getParent()->getLocation(),
4640 diag::note_deleted_default_ctor_all_const)
4641 << MD->getParent() << /*not anonymous union*/0;
4642 return true;
4643 }
4644 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004645}
4646
4647/// Determine whether a defaulted special member function should be defined as
4648/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4649/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004650bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4651 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004652 if (MD->isInvalidDecl())
4653 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004654 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004655 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004656 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004657 return false;
4658
Richard Smith7d5088a2012-02-18 02:02:13 +00004659 // C++11 [expr.lambda.prim]p19:
4660 // The closure type associated with a lambda-expression has a
4661 // deleted (8.4.3) default constructor and a deleted copy
4662 // assignment operator.
4663 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004664 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4665 if (Diagnose)
4666 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004667 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004668 }
4669
Richard Smith5bdaac52012-04-02 20:59:25 +00004670 // For an anonymous struct or union, the copy and assignment special members
4671 // will never be used, so skip the check. For an anonymous union declared at
4672 // namespace scope, the constructor and destructor are used.
4673 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4674 RD->isAnonymousStructOrUnion())
4675 return false;
4676
Richard Smith6c4c36c2012-03-30 20:53:28 +00004677 // C++11 [class.copy]p7, p18:
4678 // If the class definition declares a move constructor or move assignment
4679 // operator, an implicitly declared copy constructor or copy assignment
4680 // operator is defined as deleted.
4681 if (MD->isImplicit() &&
4682 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4683 CXXMethodDecl *UserDeclaredMove = 0;
4684
4685 // In Microsoft mode, a user-declared move only causes the deletion of the
4686 // corresponding copy operation, not both copy operations.
4687 if (RD->hasUserDeclaredMoveConstructor() &&
4688 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4689 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004690
4691 // Find any user-declared move constructor.
4692 for (CXXRecordDecl::ctor_iterator I = RD->ctor_begin(),
4693 E = RD->ctor_end(); I != E; ++I) {
4694 if (I->isMoveConstructor()) {
4695 UserDeclaredMove = *I;
4696 break;
4697 }
4698 }
Richard Smith1c931be2012-04-02 18:40:40 +00004699 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004700 } else if (RD->hasUserDeclaredMoveAssignment() &&
4701 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4702 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004703
4704 // Find any user-declared move assignment operator.
4705 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
4706 E = RD->method_end(); I != E; ++I) {
4707 if (I->isMoveAssignmentOperator()) {
4708 UserDeclaredMove = *I;
4709 break;
4710 }
4711 }
Richard Smith1c931be2012-04-02 18:40:40 +00004712 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004713 }
4714
4715 if (UserDeclaredMove) {
4716 Diag(UserDeclaredMove->getLocation(),
4717 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004718 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004719 << UserDeclaredMove->isMoveAssignmentOperator();
4720 return true;
4721 }
4722 }
Sean Hunte16da072011-10-10 06:18:57 +00004723
Richard Smith5bdaac52012-04-02 20:59:25 +00004724 // Do access control from the special member function
4725 ContextRAII MethodContext(*this, MD);
4726
Richard Smith9a561d52012-02-26 09:11:52 +00004727 // C++11 [class.dtor]p5:
4728 // -- for a virtual destructor, lookup of the non-array deallocation function
4729 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004730 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004731 FunctionDecl *OperatorDelete = 0;
4732 DeclarationName Name =
4733 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4734 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004735 OperatorDelete, false)) {
4736 if (Diagnose)
4737 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004738 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004739 }
Richard Smith9a561d52012-02-26 09:11:52 +00004740 }
4741
Richard Smith6c4c36c2012-03-30 20:53:28 +00004742 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004743
Sean Huntcdee3fe2011-05-11 22:34:38 +00004744 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004745 BE = RD->bases_end(); BI != BE; ++BI)
4746 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004747 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004748 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004749
4750 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004751 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004752 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004753 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004754
4755 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004756 FE = RD->field_end(); FI != FE; ++FI)
4757 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004758 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004759 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004760
Richard Smith7d5088a2012-02-18 02:02:13 +00004761 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004762 return true;
4763
4764 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004765}
4766
Richard Smithac713512012-12-08 02:53:02 +00004767/// Perform lookup for a special member of the specified kind, and determine
4768/// whether it is trivial. If the triviality can be determined without the
4769/// lookup, skip it. This is intended for use when determining whether a
4770/// special member of a containing object is trivial, and thus does not ever
4771/// perform overload resolution for default constructors.
4772///
4773/// If \p Selected is not \c NULL, \c *Selected will be filled in with the
4774/// member that was most likely to be intended to be trivial, if any.
4775static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
4776 Sema::CXXSpecialMember CSM, unsigned Quals,
4777 CXXMethodDecl **Selected) {
4778 if (Selected)
4779 *Selected = 0;
4780
4781 switch (CSM) {
4782 case Sema::CXXInvalid:
4783 llvm_unreachable("not a special member");
4784
4785 case Sema::CXXDefaultConstructor:
4786 // C++11 [class.ctor]p5:
4787 // A default constructor is trivial if:
4788 // - all the [direct subobjects] have trivial default constructors
4789 //
4790 // Note, no overload resolution is performed in this case.
4791 if (RD->hasTrivialDefaultConstructor())
4792 return true;
4793
4794 if (Selected) {
4795 // If there's a default constructor which could have been trivial, dig it
4796 // out. Otherwise, if there's any user-provided default constructor, point
4797 // to that as an example of why there's not a trivial one.
4798 CXXConstructorDecl *DefCtor = 0;
4799 if (RD->needsImplicitDefaultConstructor())
4800 S.DeclareImplicitDefaultConstructor(RD);
4801 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(),
4802 CE = RD->ctor_end(); CI != CE; ++CI) {
4803 if (!CI->isDefaultConstructor())
4804 continue;
4805 DefCtor = *CI;
4806 if (!DefCtor->isUserProvided())
4807 break;
4808 }
4809
4810 *Selected = DefCtor;
4811 }
4812
4813 return false;
4814
4815 case Sema::CXXDestructor:
4816 // C++11 [class.dtor]p5:
4817 // A destructor is trivial if:
4818 // - all the direct [subobjects] have trivial destructors
4819 if (RD->hasTrivialDestructor())
4820 return true;
4821
4822 if (Selected) {
4823 if (RD->needsImplicitDestructor())
4824 S.DeclareImplicitDestructor(RD);
4825 *Selected = RD->getDestructor();
4826 }
4827
4828 return false;
4829
4830 case Sema::CXXCopyConstructor:
4831 // C++11 [class.copy]p12:
4832 // A copy constructor is trivial if:
4833 // - the constructor selected to copy each direct [subobject] is trivial
4834 if (RD->hasTrivialCopyConstructor()) {
4835 if (Quals == Qualifiers::Const)
4836 // We must either select the trivial copy constructor or reach an
4837 // ambiguity; no need to actually perform overload resolution.
4838 return true;
4839 } else if (!Selected) {
4840 return false;
4841 }
4842 // In C++98, we are not supposed to perform overload resolution here, but we
4843 // treat that as a language defect, as suggested on cxx-abi-dev, to treat
4844 // cases like B as having a non-trivial copy constructor:
4845 // struct A { template<typename T> A(T&); };
4846 // struct B { mutable A a; };
4847 goto NeedOverloadResolution;
4848
4849 case Sema::CXXCopyAssignment:
4850 // C++11 [class.copy]p25:
4851 // A copy assignment operator is trivial if:
4852 // - the assignment operator selected to copy each direct [subobject] is
4853 // trivial
4854 if (RD->hasTrivialCopyAssignment()) {
4855 if (Quals == Qualifiers::Const)
4856 return true;
4857 } else if (!Selected) {
4858 return false;
4859 }
4860 // In C++98, we are not supposed to perform overload resolution here, but we
4861 // treat that as a language defect.
4862 goto NeedOverloadResolution;
4863
4864 case Sema::CXXMoveConstructor:
4865 case Sema::CXXMoveAssignment:
4866 NeedOverloadResolution:
4867 Sema::SpecialMemberOverloadResult *SMOR =
4868 S.LookupSpecialMember(RD, CSM,
4869 Quals & Qualifiers::Const,
4870 Quals & Qualifiers::Volatile,
4871 /*RValueThis*/false, /*ConstThis*/false,
4872 /*VolatileThis*/false);
4873
4874 // The standard doesn't describe how to behave if the lookup is ambiguous.
4875 // We treat it as not making the member non-trivial, just like the standard
4876 // mandates for the default constructor. This should rarely matter, because
4877 // the member will also be deleted.
4878 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4879 return true;
4880
4881 if (!SMOR->getMethod()) {
4882 assert(SMOR->getKind() ==
4883 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
4884 return false;
4885 }
4886
4887 // We deliberately don't check if we found a deleted special member. We're
4888 // not supposed to!
4889 if (Selected)
4890 *Selected = SMOR->getMethod();
4891 return SMOR->getMethod()->isTrivial();
4892 }
4893
4894 llvm_unreachable("unknown special method kind");
4895}
4896
4897CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
4898 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(), CE = RD->ctor_end();
4899 CI != CE; ++CI)
4900 if (!CI->isImplicit())
4901 return *CI;
4902
4903 // Look for constructor templates.
4904 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
4905 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
4906 if (CXXConstructorDecl *CD =
4907 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
4908 return CD;
4909 }
4910
4911 return 0;
4912}
4913
4914/// The kind of subobject we are checking for triviality. The values of this
4915/// enumeration are used in diagnostics.
4916enum TrivialSubobjectKind {
4917 /// The subobject is a base class.
4918 TSK_BaseClass,
4919 /// The subobject is a non-static data member.
4920 TSK_Field,
4921 /// The object is actually the complete object.
4922 TSK_CompleteObject
4923};
4924
4925/// Check whether the special member selected for a given type would be trivial.
4926static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
4927 QualType SubType,
4928 Sema::CXXSpecialMember CSM,
4929 TrivialSubobjectKind Kind,
4930 bool Diagnose) {
4931 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
4932 if (!SubRD)
4933 return true;
4934
4935 CXXMethodDecl *Selected;
4936 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
4937 Diagnose ? &Selected : 0))
4938 return true;
4939
4940 if (Diagnose) {
4941 if (!Selected && CSM == Sema::CXXDefaultConstructor) {
4942 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
4943 << Kind << SubType.getUnqualifiedType();
4944 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
4945 S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
4946 } else if (!Selected)
4947 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
4948 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
4949 else if (Selected->isUserProvided()) {
4950 if (Kind == TSK_CompleteObject)
4951 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
4952 << Kind << SubType.getUnqualifiedType() << CSM;
4953 else {
4954 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
4955 << Kind << SubType.getUnqualifiedType() << CSM;
4956 S.Diag(Selected->getLocation(), diag::note_declared_at);
4957 }
4958 } else {
4959 if (Kind != TSK_CompleteObject)
4960 S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
4961 << Kind << SubType.getUnqualifiedType() << CSM;
4962
4963 // Explain why the defaulted or deleted special member isn't trivial.
4964 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
4965 }
4966 }
4967
4968 return false;
4969}
4970
4971/// Check whether the members of a class type allow a special member to be
4972/// trivial.
4973static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
4974 Sema::CXXSpecialMember CSM,
4975 bool ConstArg, bool Diagnose) {
4976 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
4977 FE = RD->field_end(); FI != FE; ++FI) {
4978 if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
4979 continue;
4980
4981 QualType FieldType = S.Context.getBaseElementType(FI->getType());
4982
4983 // Pretend anonymous struct or union members are members of this class.
4984 if (FI->isAnonymousStructOrUnion()) {
4985 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
4986 CSM, ConstArg, Diagnose))
4987 return false;
4988 continue;
4989 }
4990
4991 // C++11 [class.ctor]p5:
4992 // A default constructor is trivial if [...]
4993 // -- no non-static data member of its class has a
4994 // brace-or-equal-initializer
4995 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
4996 if (Diagnose)
4997 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << *FI;
4998 return false;
4999 }
5000
5001 // Objective C ARC 4.3.5:
5002 // [...] nontrivally ownership-qualified types are [...] not trivially
5003 // default constructible, copy constructible, move constructible, copy
5004 // assignable, move assignable, or destructible [...]
5005 if (S.getLangOpts().ObjCAutoRefCount &&
5006 FieldType.hasNonTrivialObjCLifetime()) {
5007 if (Diagnose)
5008 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
5009 << RD << FieldType.getObjCLifetime();
5010 return false;
5011 }
5012
5013 if (ConstArg && !FI->isMutable())
5014 FieldType.addConst();
5015 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, CSM,
5016 TSK_Field, Diagnose))
5017 return false;
5018 }
5019
5020 return true;
5021}
5022
5023/// Diagnose why the specified class does not have a trivial special member of
5024/// the given kind.
5025void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
5026 QualType Ty = Context.getRecordType(RD);
5027 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)
5028 Ty.addConst();
5029
5030 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, CSM,
5031 TSK_CompleteObject, /*Diagnose*/true);
5032}
5033
5034/// Determine whether a defaulted or deleted special member function is trivial,
5035/// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
5036/// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
5037bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
5038 bool Diagnose) {
5039 // Note that we can't work out CSM for ourselves. Consider this:
5040 //
5041 // struct S { S(int); S(const S&=0) = delete; };
5042 //
5043 // The same function is a trivial copy constructor but a non-trivial default
5044 // constructor.
5045 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
5046
5047 CXXRecordDecl *RD = MD->getParent();
5048
5049 bool ConstArg = false;
5050 ParmVarDecl *Param0 = MD->getNumParams() ? MD->getParamDecl(0) : 0;
5051
5052 // C++11 [class.copy]p12, p25:
5053 // A [special member] is trivial if its declared parameter type is the same
5054 // as if it had been implicitly declared [...]
5055 switch (CSM) {
5056 case CXXDefaultConstructor:
5057 case CXXDestructor:
5058 // Trivial default constructors and destructors cannot have parameters.
5059 break;
5060
5061 case CXXCopyConstructor:
5062 case CXXCopyAssignment: {
5063 // Trivial copy operations always have const, non-volatile parameter types.
5064 ConstArg = true;
5065 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
5066 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
5067 if (Diagnose)
5068 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5069 << Param0->getSourceRange() << Param0->getType()
5070 << Context.getLValueReferenceType(
5071 Context.getRecordType(RD).withConst());
5072 return false;
5073 }
5074 break;
5075 }
5076
5077 case CXXMoveConstructor:
5078 case CXXMoveAssignment: {
5079 // Trivial move operations always have non-cv-qualified parameters.
5080 const RValueReferenceType *RT =
5081 Param0->getType()->getAs<RValueReferenceType>();
5082 if (!RT || RT->getPointeeType().getCVRQualifiers()) {
5083 if (Diagnose)
5084 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5085 << Param0->getSourceRange() << Param0->getType()
5086 << Context.getRValueReferenceType(Context.getRecordType(RD));
5087 return false;
5088 }
5089 break;
5090 }
5091
5092 case CXXInvalid:
5093 llvm_unreachable("not a special member");
5094 }
5095
5096 // FIXME: We require that the parameter-declaration-clause is equivalent to
5097 // that of an implicit declaration, not just that the declared parameter type
5098 // matches, in order to prevent absuridities like a function simultaneously
5099 // being a trivial copy constructor and a non-trivial default constructor.
5100 // This issue has not yet been assigned a core issue number.
5101 if (MD->getMinRequiredArguments() < MD->getNumParams()) {
5102 if (Diagnose)
5103 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
5104 diag::note_nontrivial_default_arg)
5105 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
5106 return false;
5107 }
5108 if (MD->isVariadic()) {
5109 if (Diagnose)
5110 Diag(MD->getLocation(), diag::note_nontrivial_variadic);
5111 return false;
5112 }
5113
5114 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5115 // A copy/move [constructor or assignment operator] is trivial if
5116 // -- the [member] selected to copy/move each direct base class subobject
5117 // is trivial
5118 //
5119 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5120 // A [default constructor or destructor] is trivial if
5121 // -- all the direct base classes have trivial [default constructors or
5122 // destructors]
5123 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
5124 BE = RD->bases_end(); BI != BE; ++BI)
5125 if (!checkTrivialSubobjectCall(*this, BI->getLocStart(),
5126 ConstArg ? BI->getType().withConst()
5127 : BI->getType(),
5128 CSM, TSK_BaseClass, Diagnose))
5129 return false;
5130
5131 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5132 // A copy/move [constructor or assignment operator] for a class X is
5133 // trivial if
5134 // -- for each non-static data member of X that is of class type (or array
5135 // thereof), the constructor selected to copy/move that member is
5136 // trivial
5137 //
5138 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5139 // A [default constructor or destructor] is trivial if
5140 // -- for all of the non-static data members of its class that are of class
5141 // type (or array thereof), each such class has a trivial [default
5142 // constructor or destructor]
5143 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
5144 return false;
5145
5146 // C++11 [class.dtor]p5:
5147 // A destructor is trivial if [...]
5148 // -- the destructor is not virtual
5149 if (CSM == CXXDestructor && MD->isVirtual()) {
5150 if (Diagnose)
5151 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
5152 return false;
5153 }
5154
5155 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
5156 // A [special member] for class X is trivial if [...]
5157 // -- class X has no virtual functions and no virtual base classes
5158 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
5159 if (!Diagnose)
5160 return false;
5161
5162 if (RD->getNumVBases()) {
5163 // Check for virtual bases. We already know that the corresponding
5164 // member in all bases is trivial, so vbases must all be direct.
5165 CXXBaseSpecifier &BS = *RD->vbases_begin();
5166 assert(BS.isVirtual());
5167 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
5168 return false;
5169 }
5170
5171 // Must have a virtual method.
5172 for (CXXRecordDecl::method_iterator MI = RD->method_begin(),
5173 ME = RD->method_end(); MI != ME; ++MI) {
5174 if (MI->isVirtual()) {
5175 SourceLocation MLoc = MI->getLocStart();
5176 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
5177 return false;
5178 }
5179 }
5180
5181 llvm_unreachable("dynamic class with no vbases and no virtual functions");
5182 }
5183
5184 // Looks like it's trivial!
5185 return true;
5186}
5187
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005188/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005189namespace {
5190 struct FindHiddenVirtualMethodData {
5191 Sema *S;
5192 CXXMethodDecl *Method;
5193 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005194 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005195 };
5196}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005197
David Blaikie5f750682012-10-19 00:53:08 +00005198/// \brief Check whether any most overriden method from MD in Methods
5199static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
5200 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5201 if (MD->size_overridden_methods() == 0)
5202 return Methods.count(MD->getCanonicalDecl());
5203 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5204 E = MD->end_overridden_methods();
5205 I != E; ++I)
5206 if (CheckMostOverridenMethods(*I, Methods))
5207 return true;
5208 return false;
5209}
5210
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005211/// \brief Member lookup function that determines whether a given C++
5212/// method overloads virtual methods in a base class without overriding any,
5213/// to be used with CXXRecordDecl::lookupInBases().
5214static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
5215 CXXBasePath &Path,
5216 void *UserData) {
5217 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
5218
5219 FindHiddenVirtualMethodData &Data
5220 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
5221
5222 DeclarationName Name = Data.Method->getDeclName();
5223 assert(Name.getNameKind() == DeclarationName::Identifier);
5224
5225 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005226 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005227 for (Path.Decls = BaseRecord->lookup(Name);
5228 Path.Decls.first != Path.Decls.second;
5229 ++Path.Decls.first) {
5230 NamedDecl *D = *Path.Decls.first;
5231 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00005232 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005233 foundSameNameMethod = true;
5234 // Interested only in hidden virtual methods.
5235 if (!MD->isVirtual())
5236 continue;
5237 // If the method we are checking overrides a method from its base
5238 // don't warn about the other overloaded methods.
5239 if (!Data.S->IsOverload(Data.Method, MD, false))
5240 return true;
5241 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00005242 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005243 overloadedMethods.push_back(MD);
5244 }
5245 }
5246
5247 if (foundSameNameMethod)
5248 Data.OverloadedMethods.append(overloadedMethods.begin(),
5249 overloadedMethods.end());
5250 return foundSameNameMethod;
5251}
5252
David Blaikie5f750682012-10-19 00:53:08 +00005253/// \brief Add the most overriden methods from MD to Methods
5254static void AddMostOverridenMethods(const CXXMethodDecl *MD,
5255 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5256 if (MD->size_overridden_methods() == 0)
5257 Methods.insert(MD->getCanonicalDecl());
5258 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5259 E = MD->end_overridden_methods();
5260 I != E; ++I)
5261 AddMostOverridenMethods(*I, Methods);
5262}
5263
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005264/// \brief See if a method overloads virtual methods in a base class without
5265/// overriding any.
5266void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
5267 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00005268 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005269 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00005270 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005271 return;
5272
5273 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
5274 /*bool RecordPaths=*/false,
5275 /*bool DetectVirtual=*/false);
5276 FindHiddenVirtualMethodData Data;
5277 Data.Method = MD;
5278 Data.S = this;
5279
5280 // Keep the base methods that were overriden or introduced in the subclass
5281 // by 'using' in a set. A base method not in this set is hidden.
5282 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
5283 res.first != res.second; ++res.first) {
David Blaikie5f750682012-10-19 00:53:08 +00005284 NamedDecl *ND = *res.first;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005285 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
David Blaikie5f750682012-10-19 00:53:08 +00005286 ND = shad->getTargetDecl();
5287 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
5288 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005289 }
5290
5291 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
5292 !Data.OverloadedMethods.empty()) {
5293 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
5294 << MD << (Data.OverloadedMethods.size() > 1);
5295
5296 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
5297 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
5298 Diag(overloadedMD->getLocation(),
5299 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
5300 }
5301 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005302}
5303
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005304void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00005305 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005306 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00005307 SourceLocation RBrac,
5308 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005309 if (!TagDecl)
5310 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005311
Douglas Gregor42af25f2009-05-11 19:58:34 +00005312 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005313
Rafael Espindolaf729ce02012-07-12 04:32:30 +00005314 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
5315 if (l->getKind() != AttributeList::AT_Visibility)
5316 continue;
5317 l->setInvalid();
5318 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
5319 l->getName();
5320 }
5321
David Blaikie77b6de02011-09-22 02:58:26 +00005322 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00005323 // strict aliasing violation!
5324 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00005325 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00005326
Douglas Gregor23c94db2010-07-02 17:43:08 +00005327 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00005328 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005329}
5330
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005331/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
5332/// special functions, such as the default constructor, copy
5333/// constructor, or destructor, to the given C++ class (C++
5334/// [special]p1). This routine can only be executed just before the
5335/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00005336void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00005337 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00005338 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005339
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005340 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00005341 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005342
David Blaikie4e4d0842012-03-11 07:00:24 +00005343 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00005344 ++ASTContext::NumImplicitMoveConstructors;
5345
Douglas Gregora376d102010-07-02 21:50:04 +00005346 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
5347 ++ASTContext::NumImplicitCopyAssignmentOperators;
5348
5349 // If we have a dynamic class, then the copy assignment operator may be
5350 // virtual, so we have to declare it immediately. This ensures that, e.g.,
5351 // it shows up in the right place in the vtable and that we diagnose
5352 // problems with the implicit exception specification.
5353 if (ClassDecl->isDynamicClass())
5354 DeclareImplicitCopyAssignment(ClassDecl);
5355 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005356
Richard Smith1c931be2012-04-02 18:40:40 +00005357 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00005358 ++ASTContext::NumImplicitMoveAssignmentOperators;
5359
5360 // Likewise for the move assignment operator.
5361 if (ClassDecl->isDynamicClass())
5362 DeclareImplicitMoveAssignment(ClassDecl);
5363 }
5364
Douglas Gregor4923aa22010-07-02 20:37:36 +00005365 if (!ClassDecl->hasUserDeclaredDestructor()) {
5366 ++ASTContext::NumImplicitDestructors;
5367
5368 // If we have a dynamic class, then the destructor may be virtual, so we
5369 // have to declare the destructor immediately. This ensures that, e.g., it
5370 // shows up in the right place in the vtable and that we diagnose problems
5371 // with the implicit exception specification.
5372 if (ClassDecl->isDynamicClass())
5373 DeclareImplicitDestructor(ClassDecl);
5374 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005375}
5376
Francois Pichet8387e2a2011-04-22 22:18:13 +00005377void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
5378 if (!D)
5379 return;
5380
5381 int NumParamList = D->getNumTemplateParameterLists();
5382 for (int i = 0; i < NumParamList; i++) {
5383 TemplateParameterList* Params = D->getTemplateParameterList(i);
5384 for (TemplateParameterList::iterator Param = Params->begin(),
5385 ParamEnd = Params->end();
5386 Param != ParamEnd; ++Param) {
5387 NamedDecl *Named = cast<NamedDecl>(*Param);
5388 if (Named->getDeclName()) {
5389 S->AddDecl(Named);
5390 IdResolver.AddDecl(Named);
5391 }
5392 }
5393 }
5394}
5395
John McCalld226f652010-08-21 09:40:31 +00005396void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005397 if (!D)
5398 return;
5399
5400 TemplateParameterList *Params = 0;
5401 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5402 Params = Template->getTemplateParameters();
5403 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5404 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5405 Params = PartialSpec->getTemplateParameters();
5406 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005407 return;
5408
Douglas Gregor6569d682009-05-27 23:11:45 +00005409 for (TemplateParameterList::iterator Param = Params->begin(),
5410 ParamEnd = Params->end();
5411 Param != ParamEnd; ++Param) {
5412 NamedDecl *Named = cast<NamedDecl>(*Param);
5413 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005414 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005415 IdResolver.AddDecl(Named);
5416 }
5417 }
5418}
5419
John McCalld226f652010-08-21 09:40:31 +00005420void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005421 if (!RecordD) return;
5422 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005423 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005424 PushDeclContext(S, Record);
5425}
5426
John McCalld226f652010-08-21 09:40:31 +00005427void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005428 if (!RecordD) return;
5429 PopDeclContext();
5430}
5431
Douglas Gregor72b505b2008-12-16 21:30:33 +00005432/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5433/// parsing a top-level (non-nested) C++ class, and we are now
5434/// parsing those parts of the given Method declaration that could
5435/// not be parsed earlier (C++ [class.mem]p2), such as default
5436/// arguments. This action should enter the scope of the given
5437/// Method declaration as if we had just parsed the qualified method
5438/// name. However, it should not bring the parameters into scope;
5439/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005440void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005441}
5442
5443/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5444/// C++ method declaration. We're (re-)introducing the given
5445/// function parameter into scope for use in parsing later parts of
5446/// the method declaration. For example, we could see an
5447/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005448void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005449 if (!ParamD)
5450 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005451
John McCalld226f652010-08-21 09:40:31 +00005452 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005453
5454 // If this parameter has an unparsed default argument, clear it out
5455 // to make way for the parsed default argument.
5456 if (Param->hasUnparsedDefaultArg())
5457 Param->setDefaultArg(0);
5458
John McCalld226f652010-08-21 09:40:31 +00005459 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005460 if (Param->getDeclName())
5461 IdResolver.AddDecl(Param);
5462}
5463
5464/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5465/// processing the delayed method declaration for Method. The method
5466/// declaration is now considered finished. There may be a separate
5467/// ActOnStartOfFunctionDef action later (not necessarily
5468/// immediately!) for this method, if it was also defined inside the
5469/// class body.
John McCalld226f652010-08-21 09:40:31 +00005470void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005471 if (!MethodD)
5472 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005473
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005474 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005475
John McCalld226f652010-08-21 09:40:31 +00005476 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005477
5478 // Now that we have our default arguments, check the constructor
5479 // again. It could produce additional diagnostics or affect whether
5480 // the class has implicitly-declared destructors, among other
5481 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005482 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5483 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005484
5485 // Check the default arguments, which we may have added.
5486 if (!Method->isInvalidDecl())
5487 CheckCXXDefaultArguments(Method);
5488}
5489
Douglas Gregor42a552f2008-11-05 20:51:48 +00005490/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005491/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005492/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005493/// emit diagnostics and set the invalid bit to true. In any case, the type
5494/// will be updated to reflect a well-formed type for the constructor and
5495/// returned.
5496QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005497 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005498 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005499
5500 // C++ [class.ctor]p3:
5501 // A constructor shall not be virtual (10.3) or static (9.4). A
5502 // constructor can be invoked for a const, volatile or const
5503 // volatile object. A constructor shall not be declared const,
5504 // volatile, or const volatile (9.3.2).
5505 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005506 if (!D.isInvalidType())
5507 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5508 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5509 << SourceRange(D.getIdentifierLoc());
5510 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005511 }
John McCalld931b082010-08-26 03:08:43 +00005512 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005513 if (!D.isInvalidType())
5514 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5515 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5516 << SourceRange(D.getIdentifierLoc());
5517 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005518 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005519 }
Mike Stump1eb44332009-09-09 15:08:12 +00005520
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005521 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005522 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005523 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005524 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5525 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005526 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005527 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5528 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005529 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005530 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5531 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005532 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005533 }
Mike Stump1eb44332009-09-09 15:08:12 +00005534
Douglas Gregorc938c162011-01-26 05:01:58 +00005535 // C++0x [class.ctor]p4:
5536 // A constructor shall not be declared with a ref-qualifier.
5537 if (FTI.hasRefQualifier()) {
5538 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5539 << FTI.RefQualifierIsLValueRef
5540 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5541 D.setInvalidType();
5542 }
5543
Douglas Gregor42a552f2008-11-05 20:51:48 +00005544 // Rebuild the function type "R" without any type qualifiers (in
5545 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005546 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005547 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005548 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5549 return R;
5550
5551 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5552 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005553 EPI.RefQualifier = RQ_None;
5554
Chris Lattner65401802009-04-25 08:28:21 +00005555 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005556 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005557}
5558
Douglas Gregor72b505b2008-12-16 21:30:33 +00005559/// CheckConstructor - Checks a fully-formed constructor for
5560/// well-formedness, issuing any diagnostics required. Returns true if
5561/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005562void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005563 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005564 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5565 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005566 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005567
5568 // C++ [class.copy]p3:
5569 // A declaration of a constructor for a class X is ill-formed if
5570 // its first parameter is of type (optionally cv-qualified) X and
5571 // either there are no other parameters or else all other
5572 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005573 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005574 ((Constructor->getNumParams() == 1) ||
5575 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005576 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5577 Constructor->getTemplateSpecializationKind()
5578 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005579 QualType ParamType = Constructor->getParamDecl(0)->getType();
5580 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5581 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005582 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005583 const char *ConstRef
5584 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5585 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005586 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005587 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005588
5589 // FIXME: Rather that making the constructor invalid, we should endeavor
5590 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005591 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005592 }
5593 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005594}
5595
John McCall15442822010-08-04 01:04:25 +00005596/// CheckDestructor - Checks a fully-formed destructor definition for
5597/// well-formedness, issuing any diagnostics required. Returns true
5598/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005599bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005600 CXXRecordDecl *RD = Destructor->getParent();
5601
5602 if (Destructor->isVirtual()) {
5603 SourceLocation Loc;
5604
5605 if (!Destructor->isImplicit())
5606 Loc = Destructor->getLocation();
5607 else
5608 Loc = RD->getLocation();
5609
5610 // If we have a virtual destructor, look up the deallocation function
5611 FunctionDecl *OperatorDelete = 0;
5612 DeclarationName Name =
5613 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005614 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005615 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005616
Eli Friedman5f2987c2012-02-02 03:46:19 +00005617 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005618
5619 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005620 }
Anders Carlsson37909802009-11-30 21:24:50 +00005621
5622 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005623}
5624
Mike Stump1eb44332009-09-09 15:08:12 +00005625static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005626FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5627 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5628 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005629 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005630}
5631
Douglas Gregor42a552f2008-11-05 20:51:48 +00005632/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5633/// the well-formednes of the destructor declarator @p D with type @p
5634/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005635/// emit diagnostics and set the declarator to invalid. Even if this happens,
5636/// will be updated to reflect a well-formed type for the destructor and
5637/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005638QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005639 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005640 // C++ [class.dtor]p1:
5641 // [...] A typedef-name that names a class is a class-name
5642 // (7.1.3); however, a typedef-name that names a class shall not
5643 // be used as the identifier in the declarator for a destructor
5644 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005645 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005646 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005647 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005648 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005649 else if (const TemplateSpecializationType *TST =
5650 DeclaratorType->getAs<TemplateSpecializationType>())
5651 if (TST->isTypeAlias())
5652 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5653 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005654
5655 // C++ [class.dtor]p2:
5656 // A destructor is used to destroy objects of its class type. A
5657 // destructor takes no parameters, and no return type can be
5658 // specified for it (not even void). The address of a destructor
5659 // shall not be taken. A destructor shall not be static. A
5660 // destructor can be invoked for a const, volatile or const
5661 // volatile object. A destructor shall not be declared const,
5662 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005663 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005664 if (!D.isInvalidType())
5665 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5666 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005667 << SourceRange(D.getIdentifierLoc())
5668 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5669
John McCalld931b082010-08-26 03:08:43 +00005670 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005671 }
Chris Lattner65401802009-04-25 08:28:21 +00005672 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005673 // Destructors don't have return types, but the parser will
5674 // happily parse something like:
5675 //
5676 // class X {
5677 // float ~X();
5678 // };
5679 //
5680 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005681 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5682 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5683 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005684 }
Mike Stump1eb44332009-09-09 15:08:12 +00005685
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005686 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005687 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005688 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005689 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5690 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005691 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005692 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5693 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005694 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005695 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5696 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005697 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005698 }
5699
Douglas Gregorc938c162011-01-26 05:01:58 +00005700 // C++0x [class.dtor]p2:
5701 // A destructor shall not be declared with a ref-qualifier.
5702 if (FTI.hasRefQualifier()) {
5703 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5704 << FTI.RefQualifierIsLValueRef
5705 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5706 D.setInvalidType();
5707 }
5708
Douglas Gregor42a552f2008-11-05 20:51:48 +00005709 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005710 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005711 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5712
5713 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005714 FTI.freeArgs();
5715 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005716 }
5717
Mike Stump1eb44332009-09-09 15:08:12 +00005718 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005719 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005720 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005721 D.setInvalidType();
5722 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005723
5724 // Rebuild the function type "R" without any type qualifiers or
5725 // parameters (in case any of the errors above fired) and with
5726 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005727 // types.
John McCalle23cf432010-12-14 08:05:40 +00005728 if (!D.isInvalidType())
5729 return R;
5730
Douglas Gregord92ec472010-07-01 05:10:53 +00005731 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005732 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5733 EPI.Variadic = false;
5734 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005735 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005736 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005737}
5738
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005739/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5740/// well-formednes of the conversion function declarator @p D with
5741/// type @p R. If there are any errors in the declarator, this routine
5742/// will emit diagnostics and return true. Otherwise, it will return
5743/// false. Either way, the type @p R will be updated to reflect a
5744/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005745void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005746 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005747 // C++ [class.conv.fct]p1:
5748 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005749 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005750 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005751 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005752 if (!D.isInvalidType())
5753 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5754 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5755 << SourceRange(D.getIdentifierLoc());
5756 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005757 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005758 }
John McCalla3f81372010-04-13 00:04:31 +00005759
5760 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5761
Chris Lattner6e475012009-04-25 08:35:12 +00005762 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005763 // Conversion functions don't have return types, but the parser will
5764 // happily parse something like:
5765 //
5766 // class X {
5767 // float operator bool();
5768 // };
5769 //
5770 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005771 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5772 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5773 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005774 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005775 }
5776
John McCalla3f81372010-04-13 00:04:31 +00005777 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5778
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005779 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005780 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005781 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5782
5783 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005784 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005785 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005786 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005787 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005788 D.setInvalidType();
5789 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005790
John McCalla3f81372010-04-13 00:04:31 +00005791 // Diagnose "&operator bool()" and other such nonsense. This
5792 // is actually a gcc extension which we don't support.
5793 if (Proto->getResultType() != ConvType) {
5794 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5795 << Proto->getResultType();
5796 D.setInvalidType();
5797 ConvType = Proto->getResultType();
5798 }
5799
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005800 // C++ [class.conv.fct]p4:
5801 // The conversion-type-id shall not represent a function type nor
5802 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005803 if (ConvType->isArrayType()) {
5804 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5805 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005806 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005807 } else if (ConvType->isFunctionType()) {
5808 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5809 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005810 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005811 }
5812
5813 // Rebuild the function type "R" without any parameters (in case any
5814 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005815 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005816 if (D.isInvalidType())
5817 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005818
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005819 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005820 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005821 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005822 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005823 diag::warn_cxx98_compat_explicit_conversion_functions :
5824 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005825 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005826}
5827
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005828/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5829/// the declaration of the given C++ conversion function. This routine
5830/// is responsible for recording the conversion function in the C++
5831/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005832Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005833 assert(Conversion && "Expected to receive a conversion function declaration");
5834
Douglas Gregor9d350972008-12-12 08:25:50 +00005835 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005836
5837 // Make sure we aren't redeclaring the conversion function.
5838 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005839
5840 // C++ [class.conv.fct]p1:
5841 // [...] A conversion function is never used to convert a
5842 // (possibly cv-qualified) object to the (possibly cv-qualified)
5843 // same object type (or a reference to it), to a (possibly
5844 // cv-qualified) base class of that type (or a reference to it),
5845 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005846 // FIXME: Suppress this warning if the conversion function ends up being a
5847 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005848 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005849 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005850 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005851 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005852 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5853 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005854 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005855 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005856 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5857 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005858 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005859 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005860 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005861 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005862 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005863 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005864 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005865 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005866 }
5867
Douglas Gregore80622f2010-09-29 04:25:11 +00005868 if (FunctionTemplateDecl *ConversionTemplate
5869 = Conversion->getDescribedFunctionTemplate())
5870 return ConversionTemplate;
5871
John McCalld226f652010-08-21 09:40:31 +00005872 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005873}
5874
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005875//===----------------------------------------------------------------------===//
5876// Namespace Handling
5877//===----------------------------------------------------------------------===//
5878
Richard Smithd1a55a62012-10-04 22:13:39 +00005879/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5880/// reopened.
5881static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5882 SourceLocation Loc,
5883 IdentifierInfo *II, bool *IsInline,
5884 NamespaceDecl *PrevNS) {
5885 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005886
Richard Smithc969e6a2012-10-05 01:46:25 +00005887 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5888 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5889 // inline namespaces, with the intention of bringing names into namespace std.
5890 //
5891 // We support this just well enough to get that case working; this is not
5892 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005893 if (*IsInline && II && II->getName().startswith("__atomic") &&
5894 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005895 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005896 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5897 NS = NS->getPreviousDecl())
5898 NS->setInline(*IsInline);
5899 // Patch up the lookup table for the containing namespace. This isn't really
5900 // correct, but it's good enough for this particular case.
5901 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5902 E = PrevNS->decls_end(); I != E; ++I)
5903 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5904 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5905 return;
5906 }
5907
5908 if (PrevNS->isInline())
5909 // The user probably just forgot the 'inline', so suggest that it
5910 // be added back.
5911 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5912 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5913 else
5914 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5915 << IsInline;
5916
5917 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5918 *IsInline = PrevNS->isInline();
5919}
John McCallea318642010-08-26 09:15:37 +00005920
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005921/// ActOnStartNamespaceDef - This is called at the start of a namespace
5922/// definition.
John McCalld226f652010-08-21 09:40:31 +00005923Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005924 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005925 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005926 SourceLocation IdentLoc,
5927 IdentifierInfo *II,
5928 SourceLocation LBrace,
5929 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005930 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5931 // For anonymous namespace, take the location of the left brace.
5932 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005933 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005934 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005935 bool IsStd = false;
5936 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005937 Scope *DeclRegionScope = NamespcScope->getParent();
5938
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005939 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005940 if (II) {
5941 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005942 // The identifier in an original-namespace-definition shall not
5943 // have been previously defined in the declarative region in
5944 // which the original-namespace-definition appears. The
5945 // identifier in an original-namespace-definition is the name of
5946 // the namespace. Subsequently in that declarative region, it is
5947 // treated as an original-namespace-name.
5948 //
5949 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005950 // look through using directives, just look for any ordinary names.
5951
5952 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005953 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5954 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005955 NamedDecl *PrevDecl = 0;
5956 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005957 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005958 R.first != R.second; ++R.first) {
5959 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5960 PrevDecl = *R.first;
5961 break;
5962 }
5963 }
5964
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005965 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5966
5967 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005968 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00005969 if (IsInline != PrevNS->isInline())
5970 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5971 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00005972 } else if (PrevDecl) {
5973 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005974 Diag(Loc, diag::err_redefinition_different_kind)
5975 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005976 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005977 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005978 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005979 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005980 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005981 // This is the first "real" definition of the namespace "std", so update
5982 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005983 PrevNS = getStdNamespace();
5984 IsStd = true;
5985 AddToKnown = !IsInline;
5986 } else {
5987 // We've seen this namespace for the first time.
5988 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005989 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005990 } else {
John McCall9aeed322009-10-01 00:25:31 +00005991 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005992
5993 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005994 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005995 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005996 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005997 } else {
5998 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005999 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00006000 }
6001
Richard Smithd1a55a62012-10-04 22:13:39 +00006002 if (PrevNS && IsInline != PrevNS->isInline())
6003 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
6004 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006005 }
6006
6007 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
6008 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00006009 if (IsInvalid)
6010 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006011
6012 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00006013
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006014 // FIXME: Should we be merging attributes?
6015 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006016 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006017
6018 if (IsStd)
6019 StdNamespace = Namespc;
6020 if (AddToKnown)
6021 KnownNamespaces[Namespc] = false;
6022
6023 if (II) {
6024 PushOnScopeChains(Namespc, DeclRegionScope);
6025 } else {
6026 // Link the anonymous namespace into its parent.
6027 DeclContext *Parent = CurContext->getRedeclContext();
6028 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6029 TU->setAnonymousNamespace(Namespc);
6030 } else {
6031 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00006032 }
John McCall9aeed322009-10-01 00:25:31 +00006033
Douglas Gregora4181472010-03-24 00:46:35 +00006034 CurContext->addDecl(Namespc);
6035
John McCall9aeed322009-10-01 00:25:31 +00006036 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
6037 // behaves as if it were replaced by
6038 // namespace unique { /* empty body */ }
6039 // using namespace unique;
6040 // namespace unique { namespace-body }
6041 // where all occurrences of 'unique' in a translation unit are
6042 // replaced by the same identifier and this identifier differs
6043 // from all other identifiers in the entire program.
6044
6045 // We just create the namespace with an empty name and then add an
6046 // implicit using declaration, just like the standard suggests.
6047 //
6048 // CodeGen enforces the "universally unique" aspect by giving all
6049 // declarations semantically contained within an anonymous
6050 // namespace internal linkage.
6051
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006052 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00006053 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006054 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00006055 /* 'using' */ LBrace,
6056 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00006057 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00006058 /* identifier */ SourceLocation(),
6059 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006060 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00006061 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006062 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00006063 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006064 }
6065
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00006066 ActOnDocumentableDecl(Namespc);
6067
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006068 // Although we could have an invalid decl (i.e. the namespace name is a
6069 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00006070 // FIXME: We should be able to push Namespc here, so that the each DeclContext
6071 // for the namespace has the declarations that showed up in that particular
6072 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00006073 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00006074 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006075}
6076
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006077/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
6078/// is a namespace alias, returns the namespace it points to.
6079static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
6080 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
6081 return AD->getNamespace();
6082 return dyn_cast_or_null<NamespaceDecl>(D);
6083}
6084
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006085/// ActOnFinishNamespaceDef - This callback is called after a namespace is
6086/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00006087void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006088 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
6089 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006090 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006091 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00006092 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006093 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006094}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006095
John McCall384aff82010-08-25 07:42:41 +00006096CXXRecordDecl *Sema::getStdBadAlloc() const {
6097 return cast_or_null<CXXRecordDecl>(
6098 StdBadAlloc.get(Context.getExternalSource()));
6099}
6100
6101NamespaceDecl *Sema::getStdNamespace() const {
6102 return cast_or_null<NamespaceDecl>(
6103 StdNamespace.get(Context.getExternalSource()));
6104}
6105
Douglas Gregor66992202010-06-29 17:53:46 +00006106/// \brief Retrieve the special "std" namespace, which may require us to
6107/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006108NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00006109 if (!StdNamespace) {
6110 // The "std" namespace has not yet been defined, so build one implicitly.
6111 StdNamespace = NamespaceDecl::Create(Context,
6112 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006113 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006114 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006115 &PP.getIdentifierTable().get("std"),
6116 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006117 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00006118 }
6119
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006120 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00006121}
6122
Sebastian Redl395e04d2012-01-17 22:49:33 +00006123bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006124 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00006125 "Looking for std::initializer_list outside of C++.");
6126
6127 // We're looking for implicit instantiations of
6128 // template <typename E> class std::initializer_list.
6129
6130 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
6131 return false;
6132
Sebastian Redl84760e32012-01-17 22:49:58 +00006133 ClassTemplateDecl *Template = 0;
6134 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006135
Sebastian Redl84760e32012-01-17 22:49:58 +00006136 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00006137
Sebastian Redl84760e32012-01-17 22:49:58 +00006138 ClassTemplateSpecializationDecl *Specialization =
6139 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
6140 if (!Specialization)
6141 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006142
Sebastian Redl84760e32012-01-17 22:49:58 +00006143 Template = Specialization->getSpecializedTemplate();
6144 Arguments = Specialization->getTemplateArgs().data();
6145 } else if (const TemplateSpecializationType *TST =
6146 Ty->getAs<TemplateSpecializationType>()) {
6147 Template = dyn_cast_or_null<ClassTemplateDecl>(
6148 TST->getTemplateName().getAsTemplateDecl());
6149 Arguments = TST->getArgs();
6150 }
6151 if (!Template)
6152 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006153
6154 if (!StdInitializerList) {
6155 // Haven't recognized std::initializer_list yet, maybe this is it.
6156 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
6157 if (TemplateClass->getIdentifier() !=
6158 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006159 !getStdNamespace()->InEnclosingNamespaceSetOf(
6160 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00006161 return false;
6162 // This is a template called std::initializer_list, but is it the right
6163 // template?
6164 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006165 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00006166 return false;
6167 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
6168 return false;
6169
6170 // It's the right template.
6171 StdInitializerList = Template;
6172 }
6173
6174 if (Template != StdInitializerList)
6175 return false;
6176
6177 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00006178 if (Element)
6179 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00006180 return true;
6181}
6182
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006183static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
6184 NamespaceDecl *Std = S.getStdNamespace();
6185 if (!Std) {
6186 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6187 return 0;
6188 }
6189
6190 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
6191 Loc, Sema::LookupOrdinaryName);
6192 if (!S.LookupQualifiedName(Result, Std)) {
6193 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6194 return 0;
6195 }
6196 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
6197 if (!Template) {
6198 Result.suppressDiagnostics();
6199 // We found something weird. Complain about the first thing we found.
6200 NamedDecl *Found = *Result.begin();
6201 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
6202 return 0;
6203 }
6204
6205 // We found some template called std::initializer_list. Now verify that it's
6206 // correct.
6207 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006208 if (Params->getMinRequiredArguments() != 1 ||
6209 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006210 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
6211 return 0;
6212 }
6213
6214 return Template;
6215}
6216
6217QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
6218 if (!StdInitializerList) {
6219 StdInitializerList = LookupStdInitializerList(*this, Loc);
6220 if (!StdInitializerList)
6221 return QualType();
6222 }
6223
6224 TemplateArgumentListInfo Args(Loc, Loc);
6225 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
6226 Context.getTrivialTypeSourceInfo(Element,
6227 Loc)));
6228 return Context.getCanonicalType(
6229 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
6230}
6231
Sebastian Redl98d36062012-01-17 22:50:14 +00006232bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
6233 // C++ [dcl.init.list]p2:
6234 // A constructor is an initializer-list constructor if its first parameter
6235 // is of type std::initializer_list<E> or reference to possibly cv-qualified
6236 // std::initializer_list<E> for some type E, and either there are no other
6237 // parameters or else all other parameters have default arguments.
6238 if (Ctor->getNumParams() < 1 ||
6239 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
6240 return false;
6241
6242 QualType ArgType = Ctor->getParamDecl(0)->getType();
6243 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
6244 ArgType = RT->getPointeeType().getUnqualifiedType();
6245
6246 return isStdInitializerList(ArgType, 0);
6247}
6248
Douglas Gregor9172aa62011-03-26 22:25:30 +00006249/// \brief Determine whether a using statement is in a context where it will be
6250/// apply in all contexts.
6251static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
6252 switch (CurContext->getDeclKind()) {
6253 case Decl::TranslationUnit:
6254 return true;
6255 case Decl::LinkageSpec:
6256 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
6257 default:
6258 return false;
6259 }
6260}
6261
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006262namespace {
6263
6264// Callback to only accept typo corrections that are namespaces.
6265class NamespaceValidatorCCC : public CorrectionCandidateCallback {
6266 public:
6267 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
6268 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
6269 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
6270 }
6271 return false;
6272 }
6273};
6274
6275}
6276
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006277static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
6278 CXXScopeSpec &SS,
6279 SourceLocation IdentLoc,
6280 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006281 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006282 R.clear();
6283 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006284 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00006285 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006286 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
6287 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006288 if (DeclContext *DC = S.computeDeclContext(SS, false))
6289 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
6290 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00006291 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
6292 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006293 else
6294 S.Diag(IdentLoc, diag::err_using_directive_suggest)
6295 << Ident << CorrectedQuotedStr
6296 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006297
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006298 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
6299 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006300
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006301 R.addDecl(Corrected.getCorrectionDecl());
6302 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006303 }
6304 return false;
6305}
6306
John McCalld226f652010-08-21 09:40:31 +00006307Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006308 SourceLocation UsingLoc,
6309 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006310 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006311 SourceLocation IdentLoc,
6312 IdentifierInfo *NamespcName,
6313 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00006314 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
6315 assert(NamespcName && "Invalid NamespcName.");
6316 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00006317
6318 // This can only happen along a recovery path.
6319 while (S->getFlags() & Scope::TemplateParamScope)
6320 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006321 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00006322
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006323 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00006324 NestedNameSpecifier *Qualifier = 0;
6325 if (SS.isSet())
6326 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6327
Douglas Gregoreb11cd02009-01-14 22:20:51 +00006328 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006329 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
6330 LookupParsedName(R, S, &SS);
6331 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006332 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006333
Douglas Gregor66992202010-06-29 17:53:46 +00006334 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006335 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00006336 // Allow "using namespace std;" or "using namespace ::std;" even if
6337 // "std" hasn't been defined yet, for GCC compatibility.
6338 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
6339 NamespcName->isStr("std")) {
6340 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006341 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00006342 R.resolveKind();
6343 }
6344 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006345 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00006346 }
6347
John McCallf36e02d2009-10-09 21:13:30 +00006348 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006349 NamedDecl *Named = R.getFoundDecl();
6350 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
6351 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006352 // C++ [namespace.udir]p1:
6353 // A using-directive specifies that the names in the nominated
6354 // namespace can be used in the scope in which the
6355 // using-directive appears after the using-directive. During
6356 // unqualified name lookup (3.4.1), the names appear as if they
6357 // were declared in the nearest enclosing namespace which
6358 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00006359 // namespace. [Note: in this context, "contains" means "contains
6360 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006361
6362 // Find enclosing context containing both using-directive and
6363 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006364 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006365 DeclContext *CommonAncestor = cast<DeclContext>(NS);
6366 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
6367 CommonAncestor = CommonAncestor->getParent();
6368
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006369 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00006370 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006371 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006372
Douglas Gregor9172aa62011-03-26 22:25:30 +00006373 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00006374 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006375 Diag(IdentLoc, diag::warn_using_directive_in_header);
6376 }
6377
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006378 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006379 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00006380 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00006381 }
6382
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006383 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00006384 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006385}
6386
6387void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006388 // If the scope has an associated entity and the using directive is at
6389 // namespace or translation unit scope, add the UsingDirectiveDecl into
6390 // its lookup structure so qualified name lookup can find it.
6391 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6392 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006393 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006394 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006395 // Otherwise, it is at block sope. The using-directives will affect lookup
6396 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006397 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006398}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006399
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006400
John McCalld226f652010-08-21 09:40:31 +00006401Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006402 AccessSpecifier AS,
6403 bool HasUsingKeyword,
6404 SourceLocation UsingLoc,
6405 CXXScopeSpec &SS,
6406 UnqualifiedId &Name,
6407 AttributeList *AttrList,
6408 bool IsTypeName,
6409 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006410 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006411
Douglas Gregor12c118a2009-11-04 16:30:06 +00006412 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006413 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006414 case UnqualifiedId::IK_Identifier:
6415 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006416 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006417 case UnqualifiedId::IK_ConversionFunctionId:
6418 break;
6419
6420 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006421 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006422 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006423 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00006424 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006425 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6426 // instead once inheriting constructors work.
6427 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006428 diag::err_using_decl_constructor)
6429 << SS.getRange();
6430
David Blaikie4e4d0842012-03-11 07:00:24 +00006431 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00006432
John McCalld226f652010-08-21 09:40:31 +00006433 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006434
6435 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006436 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006437 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006438 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006439
6440 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006441 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006442 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006443 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006444 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006445
6446 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6447 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006448 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006449 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006450
John McCall60fa3cf2009-12-11 02:10:03 +00006451 // Warn about using declarations.
6452 // TODO: store that the declaration was written without 'using' and
6453 // talk about access decls instead of using decls in the
6454 // diagnostics.
6455 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006456 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006457
6458 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006459 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006460 }
6461
Douglas Gregor56c04582010-12-16 00:46:58 +00006462 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6463 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6464 return 0;
6465
John McCall9488ea12009-11-17 05:59:44 +00006466 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006467 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006468 /* IsInstantiation */ false,
6469 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006470 if (UD)
6471 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006472
John McCalld226f652010-08-21 09:40:31 +00006473 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006474}
6475
Douglas Gregor09acc982010-07-07 23:08:52 +00006476/// \brief Determine whether a using declaration considers the given
6477/// declarations as "equivalent", e.g., if they are redeclarations of
6478/// the same entity or are both typedefs of the same type.
6479static bool
6480IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6481 bool &SuppressRedeclaration) {
6482 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6483 SuppressRedeclaration = false;
6484 return true;
6485 }
6486
Richard Smith162e1c12011-04-15 14:24:37 +00006487 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6488 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006489 SuppressRedeclaration = true;
6490 return Context.hasSameType(TD1->getUnderlyingType(),
6491 TD2->getUnderlyingType());
6492 }
6493
6494 return false;
6495}
6496
6497
John McCall9f54ad42009-12-10 09:41:52 +00006498/// Determines whether to create a using shadow decl for a particular
6499/// decl, given the set of decls existing prior to this using lookup.
6500bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6501 const LookupResult &Previous) {
6502 // Diagnose finding a decl which is not from a base class of the
6503 // current class. We do this now because there are cases where this
6504 // function will silently decide not to build a shadow decl, which
6505 // will pre-empt further diagnostics.
6506 //
6507 // We don't need to do this in C++0x because we do the check once on
6508 // the qualifier.
6509 //
6510 // FIXME: diagnose the following if we care enough:
6511 // struct A { int foo; };
6512 // struct B : A { using A::foo; };
6513 // template <class T> struct C : A {};
6514 // template <class T> struct D : C<T> { using B::foo; } // <---
6515 // This is invalid (during instantiation) in C++03 because B::foo
6516 // resolves to the using decl in B, which is not a base class of D<T>.
6517 // We can't diagnose it immediately because C<T> is an unknown
6518 // specialization. The UsingShadowDecl in D<T> then points directly
6519 // to A::foo, which will look well-formed when we instantiate.
6520 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00006521 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006522 DeclContext *OrigDC = Orig->getDeclContext();
6523
6524 // Handle enums and anonymous structs.
6525 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6526 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6527 while (OrigRec->isAnonymousStructOrUnion())
6528 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6529
6530 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6531 if (OrigDC == CurContext) {
6532 Diag(Using->getLocation(),
6533 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006534 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006535 Diag(Orig->getLocation(), diag::note_using_decl_target);
6536 return true;
6537 }
6538
Douglas Gregordc355712011-02-25 00:36:19 +00006539 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006540 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006541 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006542 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006543 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006544 Diag(Orig->getLocation(), diag::note_using_decl_target);
6545 return true;
6546 }
6547 }
6548
6549 if (Previous.empty()) return false;
6550
6551 NamedDecl *Target = Orig;
6552 if (isa<UsingShadowDecl>(Target))
6553 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6554
John McCalld7533ec2009-12-11 02:33:26 +00006555 // If the target happens to be one of the previous declarations, we
6556 // don't have a conflict.
6557 //
6558 // FIXME: but we might be increasing its access, in which case we
6559 // should redeclare it.
6560 NamedDecl *NonTag = 0, *Tag = 0;
6561 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6562 I != E; ++I) {
6563 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006564 bool Result;
6565 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6566 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006567
6568 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6569 }
6570
John McCall9f54ad42009-12-10 09:41:52 +00006571 if (Target->isFunctionOrFunctionTemplate()) {
6572 FunctionDecl *FD;
6573 if (isa<FunctionTemplateDecl>(Target))
6574 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6575 else
6576 FD = cast<FunctionDecl>(Target);
6577
6578 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006579 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006580 case Ovl_Overload:
6581 return false;
6582
6583 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006584 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006585 break;
6586
6587 // We found a decl with the exact signature.
6588 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006589 // If we're in a record, we want to hide the target, so we
6590 // return true (without a diagnostic) to tell the caller not to
6591 // build a shadow decl.
6592 if (CurContext->isRecord())
6593 return true;
6594
6595 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006596 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006597 break;
6598 }
6599
6600 Diag(Target->getLocation(), diag::note_using_decl_target);
6601 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6602 return true;
6603 }
6604
6605 // Target is not a function.
6606
John McCall9f54ad42009-12-10 09:41:52 +00006607 if (isa<TagDecl>(Target)) {
6608 // No conflict between a tag and a non-tag.
6609 if (!Tag) return false;
6610
John McCall41ce66f2009-12-10 19:51:03 +00006611 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006612 Diag(Target->getLocation(), diag::note_using_decl_target);
6613 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6614 return true;
6615 }
6616
6617 // No conflict between a tag and a non-tag.
6618 if (!NonTag) return false;
6619
John McCall41ce66f2009-12-10 19:51:03 +00006620 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006621 Diag(Target->getLocation(), diag::note_using_decl_target);
6622 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6623 return true;
6624}
6625
John McCall9488ea12009-11-17 05:59:44 +00006626/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006627UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006628 UsingDecl *UD,
6629 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006630
6631 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006632 NamedDecl *Target = Orig;
6633 if (isa<UsingShadowDecl>(Target)) {
6634 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6635 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006636 }
6637
6638 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006639 = UsingShadowDecl::Create(Context, CurContext,
6640 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006641 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006642
6643 Shadow->setAccess(UD->getAccess());
6644 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6645 Shadow->setInvalidDecl();
6646
John McCall9488ea12009-11-17 05:59:44 +00006647 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006648 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006649 else
John McCall604e7f12009-12-08 07:46:18 +00006650 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006651
John McCall604e7f12009-12-08 07:46:18 +00006652
John McCall9f54ad42009-12-10 09:41:52 +00006653 return Shadow;
6654}
John McCall604e7f12009-12-08 07:46:18 +00006655
John McCall9f54ad42009-12-10 09:41:52 +00006656/// Hides a using shadow declaration. This is required by the current
6657/// using-decl implementation when a resolvable using declaration in a
6658/// class is followed by a declaration which would hide or override
6659/// one or more of the using decl's targets; for example:
6660///
6661/// struct Base { void foo(int); };
6662/// struct Derived : Base {
6663/// using Base::foo;
6664/// void foo(int);
6665/// };
6666///
6667/// The governing language is C++03 [namespace.udecl]p12:
6668///
6669/// When a using-declaration brings names from a base class into a
6670/// derived class scope, member functions in the derived class
6671/// override and/or hide member functions with the same name and
6672/// parameter types in a base class (rather than conflicting).
6673///
6674/// There are two ways to implement this:
6675/// (1) optimistically create shadow decls when they're not hidden
6676/// by existing declarations, or
6677/// (2) don't create any shadow decls (or at least don't make them
6678/// visible) until we've fully parsed/instantiated the class.
6679/// The problem with (1) is that we might have to retroactively remove
6680/// a shadow decl, which requires several O(n) operations because the
6681/// decl structures are (very reasonably) not designed for removal.
6682/// (2) avoids this but is very fiddly and phase-dependent.
6683void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006684 if (Shadow->getDeclName().getNameKind() ==
6685 DeclarationName::CXXConversionFunctionName)
6686 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6687
John McCall9f54ad42009-12-10 09:41:52 +00006688 // Remove it from the DeclContext...
6689 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006690
John McCall9f54ad42009-12-10 09:41:52 +00006691 // ...and the scope, if applicable...
6692 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006693 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006694 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006695 }
6696
John McCall9f54ad42009-12-10 09:41:52 +00006697 // ...and the using decl.
6698 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6699
6700 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006701 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006702}
6703
John McCall7ba107a2009-11-18 02:36:19 +00006704/// Builds a using declaration.
6705///
6706/// \param IsInstantiation - Whether this call arises from an
6707/// instantiation of an unresolved using declaration. We treat
6708/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006709NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6710 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006711 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006712 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006713 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006714 bool IsInstantiation,
6715 bool IsTypeName,
6716 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006717 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006718 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006719 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006720
Anders Carlsson550b14b2009-08-28 05:49:21 +00006721 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006722
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006723 if (SS.isEmpty()) {
6724 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006725 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006726 }
Mike Stump1eb44332009-09-09 15:08:12 +00006727
John McCall9f54ad42009-12-10 09:41:52 +00006728 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006729 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006730 ForRedeclaration);
6731 Previous.setHideTags(false);
6732 if (S) {
6733 LookupName(Previous, S);
6734
6735 // It is really dumb that we have to do this.
6736 LookupResult::Filter F = Previous.makeFilter();
6737 while (F.hasNext()) {
6738 NamedDecl *D = F.next();
6739 if (!isDeclInScope(D, CurContext, S))
6740 F.erase();
6741 }
6742 F.done();
6743 } else {
6744 assert(IsInstantiation && "no scope in non-instantiation");
6745 assert(CurContext->isRecord() && "scope not record in instantiation");
6746 LookupQualifiedName(Previous, CurContext);
6747 }
6748
John McCall9f54ad42009-12-10 09:41:52 +00006749 // Check for invalid redeclarations.
6750 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6751 return 0;
6752
6753 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006754 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6755 return 0;
6756
John McCallaf8e6ed2009-11-12 03:15:40 +00006757 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006758 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006759 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006760 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006761 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006762 // FIXME: not all declaration name kinds are legal here
6763 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6764 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006765 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006766 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006767 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006768 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6769 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006770 }
John McCalled976492009-12-04 22:46:56 +00006771 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006772 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6773 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006774 }
John McCalled976492009-12-04 22:46:56 +00006775 D->setAccess(AS);
6776 CurContext->addDecl(D);
6777
6778 if (!LookupContext) return D;
6779 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006780
John McCall77bb1aa2010-05-01 00:40:08 +00006781 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006782 UD->setInvalidDecl();
6783 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006784 }
6785
Richard Smithc5a89a12012-04-02 01:30:27 +00006786 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006787 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006788 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006789 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006790 return UD;
6791 }
6792
6793 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006794
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006795 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006796
John McCall604e7f12009-12-08 07:46:18 +00006797 // Unlike most lookups, we don't always want to hide tag
6798 // declarations: tag names are visible through the using declaration
6799 // even if hidden by ordinary names, *except* in a dependent context
6800 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006801 if (!IsInstantiation)
6802 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006803
John McCallb9abd8722012-04-07 03:04:20 +00006804 // For the purposes of this lookup, we have a base object type
6805 // equal to that of the current context.
6806 if (CurContext->isRecord()) {
6807 R.setBaseObjectType(
6808 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6809 }
6810
John McCalla24dc2e2009-11-17 02:14:36 +00006811 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006812
John McCallf36e02d2009-10-09 21:13:30 +00006813 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006814 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006815 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006816 UD->setInvalidDecl();
6817 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006818 }
6819
John McCalled976492009-12-04 22:46:56 +00006820 if (R.isAmbiguous()) {
6821 UD->setInvalidDecl();
6822 return UD;
6823 }
Mike Stump1eb44332009-09-09 15:08:12 +00006824
John McCall7ba107a2009-11-18 02:36:19 +00006825 if (IsTypeName) {
6826 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006827 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006828 Diag(IdentLoc, diag::err_using_typename_non_type);
6829 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6830 Diag((*I)->getUnderlyingDecl()->getLocation(),
6831 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006832 UD->setInvalidDecl();
6833 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006834 }
6835 } else {
6836 // If we asked for a non-typename and we got a type, error out,
6837 // but only if this is an instantiation of an unresolved using
6838 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006839 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006840 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6841 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006842 UD->setInvalidDecl();
6843 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006844 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006845 }
6846
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006847 // C++0x N2914 [namespace.udecl]p6:
6848 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006849 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006850 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6851 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006852 UD->setInvalidDecl();
6853 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006854 }
Mike Stump1eb44332009-09-09 15:08:12 +00006855
John McCall9f54ad42009-12-10 09:41:52 +00006856 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6857 if (!CheckUsingShadowDecl(UD, *I, Previous))
6858 BuildUsingShadowDecl(S, UD, *I);
6859 }
John McCall9488ea12009-11-17 05:59:44 +00006860
6861 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006862}
6863
Sebastian Redlf677ea32011-02-05 19:23:19 +00006864/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006865bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6866 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006867
Douglas Gregordc355712011-02-25 00:36:19 +00006868 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006869 assert(SourceType &&
6870 "Using decl naming constructor doesn't have type in scope spec.");
6871 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6872
6873 // Check whether the named type is a direct base class.
6874 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6875 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6876 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6877 BaseIt != BaseE; ++BaseIt) {
6878 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6879 if (CanonicalSourceType == BaseType)
6880 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006881 if (BaseIt->getType()->isDependentType())
6882 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006883 }
6884
6885 if (BaseIt == BaseE) {
6886 // Did not find SourceType in the bases.
6887 Diag(UD->getUsingLocation(),
6888 diag::err_using_decl_constructor_not_in_direct_base)
6889 << UD->getNameInfo().getSourceRange()
6890 << QualType(SourceType, 0) << TargetClass;
6891 return true;
6892 }
6893
Richard Smithc5a89a12012-04-02 01:30:27 +00006894 if (!CurContext->isDependentContext())
6895 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006896
6897 return false;
6898}
6899
John McCall9f54ad42009-12-10 09:41:52 +00006900/// Checks that the given using declaration is not an invalid
6901/// redeclaration. Note that this is checking only for the using decl
6902/// itself, not for any ill-formedness among the UsingShadowDecls.
6903bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6904 bool isTypeName,
6905 const CXXScopeSpec &SS,
6906 SourceLocation NameLoc,
6907 const LookupResult &Prev) {
6908 // C++03 [namespace.udecl]p8:
6909 // C++0x [namespace.udecl]p10:
6910 // A using-declaration is a declaration and can therefore be used
6911 // repeatedly where (and only where) multiple declarations are
6912 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006913 //
John McCall8a726212010-11-29 18:01:58 +00006914 // That's in non-member contexts.
6915 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006916 return false;
6917
6918 NestedNameSpecifier *Qual
6919 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6920
6921 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6922 NamedDecl *D = *I;
6923
6924 bool DTypename;
6925 NestedNameSpecifier *DQual;
6926 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6927 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006928 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006929 } else if (UnresolvedUsingValueDecl *UD
6930 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6931 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006932 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006933 } else if (UnresolvedUsingTypenameDecl *UD
6934 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6935 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006936 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006937 } else continue;
6938
6939 // using decls differ if one says 'typename' and the other doesn't.
6940 // FIXME: non-dependent using decls?
6941 if (isTypeName != DTypename) continue;
6942
6943 // using decls differ if they name different scopes (but note that
6944 // template instantiation can cause this check to trigger when it
6945 // didn't before instantiation).
6946 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6947 Context.getCanonicalNestedNameSpecifier(DQual))
6948 continue;
6949
6950 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006951 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006952 return true;
6953 }
6954
6955 return false;
6956}
6957
John McCall604e7f12009-12-08 07:46:18 +00006958
John McCalled976492009-12-04 22:46:56 +00006959/// Checks that the given nested-name qualifier used in a using decl
6960/// in the current context is appropriately related to the current
6961/// scope. If an error is found, diagnoses it and returns true.
6962bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6963 const CXXScopeSpec &SS,
6964 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006965 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006966
John McCall604e7f12009-12-08 07:46:18 +00006967 if (!CurContext->isRecord()) {
6968 // C++03 [namespace.udecl]p3:
6969 // C++0x [namespace.udecl]p8:
6970 // A using-declaration for a class member shall be a member-declaration.
6971
6972 // If we weren't able to compute a valid scope, it must be a
6973 // dependent class scope.
6974 if (!NamedContext || NamedContext->isRecord()) {
6975 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6976 << SS.getRange();
6977 return true;
6978 }
6979
6980 // Otherwise, everything is known to be fine.
6981 return false;
6982 }
6983
6984 // The current scope is a record.
6985
6986 // If the named context is dependent, we can't decide much.
6987 if (!NamedContext) {
6988 // FIXME: in C++0x, we can diagnose if we can prove that the
6989 // nested-name-specifier does not refer to a base class, which is
6990 // still possible in some cases.
6991
6992 // Otherwise we have to conservatively report that things might be
6993 // okay.
6994 return false;
6995 }
6996
6997 if (!NamedContext->isRecord()) {
6998 // Ideally this would point at the last name in the specifier,
6999 // but we don't have that level of source info.
7000 Diag(SS.getRange().getBegin(),
7001 diag::err_using_decl_nested_name_specifier_is_not_class)
7002 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
7003 return true;
7004 }
7005
Douglas Gregor6fb07292010-12-21 07:41:49 +00007006 if (!NamedContext->isDependentContext() &&
7007 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
7008 return true;
7009
David Blaikie4e4d0842012-03-11 07:00:24 +00007010 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00007011 // C++0x [namespace.udecl]p3:
7012 // In a using-declaration used as a member-declaration, the
7013 // nested-name-specifier shall name a base class of the class
7014 // being defined.
7015
7016 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
7017 cast<CXXRecordDecl>(NamedContext))) {
7018 if (CurContext == NamedContext) {
7019 Diag(NameLoc,
7020 diag::err_using_decl_nested_name_specifier_is_current_class)
7021 << SS.getRange();
7022 return true;
7023 }
7024
7025 Diag(SS.getRange().getBegin(),
7026 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7027 << (NestedNameSpecifier*) SS.getScopeRep()
7028 << cast<CXXRecordDecl>(CurContext)
7029 << SS.getRange();
7030 return true;
7031 }
7032
7033 return false;
7034 }
7035
7036 // C++03 [namespace.udecl]p4:
7037 // A using-declaration used as a member-declaration shall refer
7038 // to a member of a base class of the class being defined [etc.].
7039
7040 // Salient point: SS doesn't have to name a base class as long as
7041 // lookup only finds members from base classes. Therefore we can
7042 // diagnose here only if we can prove that that can't happen,
7043 // i.e. if the class hierarchies provably don't intersect.
7044
7045 // TODO: it would be nice if "definitely valid" results were cached
7046 // in the UsingDecl and UsingShadowDecl so that these checks didn't
7047 // need to be repeated.
7048
7049 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00007050 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00007051
7052 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
7053 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7054 Data->Bases.insert(Base);
7055 return true;
7056 }
7057
7058 bool hasDependentBases(const CXXRecordDecl *Class) {
7059 return !Class->forallBases(collect, this);
7060 }
7061
7062 /// Returns true if the base is dependent or is one of the
7063 /// accumulated base classes.
7064 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
7065 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7066 return !Data->Bases.count(Base);
7067 }
7068
7069 bool mightShareBases(const CXXRecordDecl *Class) {
7070 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
7071 }
7072 };
7073
7074 UserData Data;
7075
7076 // Returns false if we find a dependent base.
7077 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
7078 return false;
7079
7080 // Returns false if the class has a dependent base or if it or one
7081 // of its bases is present in the base set of the current context.
7082 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
7083 return false;
7084
7085 Diag(SS.getRange().getBegin(),
7086 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7087 << (NestedNameSpecifier*) SS.getScopeRep()
7088 << cast<CXXRecordDecl>(CurContext)
7089 << SS.getRange();
7090
7091 return true;
John McCalled976492009-12-04 22:46:56 +00007092}
7093
Richard Smith162e1c12011-04-15 14:24:37 +00007094Decl *Sema::ActOnAliasDeclaration(Scope *S,
7095 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007096 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00007097 SourceLocation UsingLoc,
7098 UnqualifiedId &Name,
7099 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00007100 // Skip up to the relevant declaration scope.
7101 while (S->getFlags() & Scope::TemplateParamScope)
7102 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00007103 assert((S->getFlags() & Scope::DeclScope) &&
7104 "got alias-declaration outside of declaration scope");
7105
7106 if (Type.isInvalid())
7107 return 0;
7108
7109 bool Invalid = false;
7110 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
7111 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00007112 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00007113
7114 if (DiagnoseClassNameShadow(CurContext, NameInfo))
7115 return 0;
7116
7117 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007118 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00007119 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007120 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
7121 TInfo->getTypeLoc().getBeginLoc());
7122 }
Richard Smith162e1c12011-04-15 14:24:37 +00007123
7124 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
7125 LookupName(Previous, S);
7126
7127 // Warn about shadowing the name of a template parameter.
7128 if (Previous.isSingleResult() &&
7129 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00007130 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00007131 Previous.clear();
7132 }
7133
7134 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
7135 "name in alias declaration must be an identifier");
7136 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
7137 Name.StartLocation,
7138 Name.Identifier, TInfo);
7139
7140 NewTD->setAccess(AS);
7141
7142 if (Invalid)
7143 NewTD->setInvalidDecl();
7144
Richard Smith3e4c6c42011-05-05 21:57:07 +00007145 CheckTypedefForVariablyModifiedType(S, NewTD);
7146 Invalid |= NewTD->isInvalidDecl();
7147
Richard Smith162e1c12011-04-15 14:24:37 +00007148 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007149
7150 NamedDecl *NewND;
7151 if (TemplateParamLists.size()) {
7152 TypeAliasTemplateDecl *OldDecl = 0;
7153 TemplateParameterList *OldTemplateParams = 0;
7154
7155 if (TemplateParamLists.size() != 1) {
7156 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007157 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
7158 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00007159 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007160 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00007161
7162 // Only consider previous declarations in the same scope.
7163 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
7164 /*ExplicitInstantiationOrSpecialization*/false);
7165 if (!Previous.empty()) {
7166 Redeclaration = true;
7167
7168 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
7169 if (!OldDecl && !Invalid) {
7170 Diag(UsingLoc, diag::err_redefinition_different_kind)
7171 << Name.Identifier;
7172
7173 NamedDecl *OldD = Previous.getRepresentativeDecl();
7174 if (OldD->getLocation().isValid())
7175 Diag(OldD->getLocation(), diag::note_previous_definition);
7176
7177 Invalid = true;
7178 }
7179
7180 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
7181 if (TemplateParameterListsAreEqual(TemplateParams,
7182 OldDecl->getTemplateParameters(),
7183 /*Complain=*/true,
7184 TPL_TemplateMatch))
7185 OldTemplateParams = OldDecl->getTemplateParameters();
7186 else
7187 Invalid = true;
7188
7189 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
7190 if (!Invalid &&
7191 !Context.hasSameType(OldTD->getUnderlyingType(),
7192 NewTD->getUnderlyingType())) {
7193 // FIXME: The C++0x standard does not clearly say this is ill-formed,
7194 // but we can't reasonably accept it.
7195 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
7196 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
7197 if (OldTD->getLocation().isValid())
7198 Diag(OldTD->getLocation(), diag::note_previous_definition);
7199 Invalid = true;
7200 }
7201 }
7202 }
7203
7204 // Merge any previous default template arguments into our parameters,
7205 // and check the parameter list.
7206 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
7207 TPC_TypeAliasTemplate))
7208 return 0;
7209
7210 TypeAliasTemplateDecl *NewDecl =
7211 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
7212 Name.Identifier, TemplateParams,
7213 NewTD);
7214
7215 NewDecl->setAccess(AS);
7216
7217 if (Invalid)
7218 NewDecl->setInvalidDecl();
7219 else if (OldDecl)
7220 NewDecl->setPreviousDeclaration(OldDecl);
7221
7222 NewND = NewDecl;
7223 } else {
7224 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
7225 NewND = NewTD;
7226 }
Richard Smith162e1c12011-04-15 14:24:37 +00007227
7228 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00007229 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00007230
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00007231 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00007232 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00007233}
7234
John McCalld226f652010-08-21 09:40:31 +00007235Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007236 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00007237 SourceLocation AliasLoc,
7238 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00007239 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007240 SourceLocation IdentLoc,
7241 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00007242
Anders Carlsson81c85c42009-03-28 23:53:49 +00007243 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00007244 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
7245 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00007246
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007247 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00007248 NamedDecl *PrevDecl
7249 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
7250 ForRedeclaration);
7251 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
7252 PrevDecl = 0;
7253
7254 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00007255 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00007256 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00007257 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00007258 // FIXME: At some point, we'll want to create the (redundant)
7259 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00007260 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00007261 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00007262 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00007263 }
Mike Stump1eb44332009-09-09 15:08:12 +00007264
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007265 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
7266 diag::err_redefinition_different_kind;
7267 Diag(AliasLoc, DiagID) << Alias;
7268 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00007269 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007270 }
7271
John McCalla24dc2e2009-11-17 02:14:36 +00007272 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00007273 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00007274
John McCallf36e02d2009-10-09 21:13:30 +00007275 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007276 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00007277 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00007278 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00007279 }
Anders Carlsson5721c682009-03-28 06:42:02 +00007280 }
Mike Stump1eb44332009-09-09 15:08:12 +00007281
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007282 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00007283 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00007284 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00007285 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00007286
John McCall3dbd3d52010-02-16 06:53:13 +00007287 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00007288 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00007289}
7290
Sean Hunt001cad92011-05-10 00:49:42 +00007291Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007292Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
7293 CXXMethodDecl *MD) {
7294 CXXRecordDecl *ClassDecl = MD->getParent();
7295
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007296 // C++ [except.spec]p14:
7297 // An implicitly declared special member function (Clause 12) shall have an
7298 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00007299 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007300 if (ClassDecl->isInvalidDecl())
7301 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007302
Sebastian Redl60618fa2011-03-12 11:50:43 +00007303 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007304 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7305 BEnd = ClassDecl->bases_end();
7306 B != BEnd; ++B) {
7307 if (B->isVirtual()) // Handled below.
7308 continue;
7309
Douglas Gregor18274032010-07-03 00:47:00 +00007310 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7311 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007312 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7313 // If this is a deleted function, add it anyway. This might be conformant
7314 // with the standard. This might not. I'm not sure. It might not matter.
7315 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007316 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007317 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007318 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007319
7320 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007321 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7322 BEnd = ClassDecl->vbases_end();
7323 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00007324 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7325 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007326 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7327 // If this is a deleted function, add it anyway. This might be conformant
7328 // with the standard. This might not. I'm not sure. It might not matter.
7329 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007330 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007331 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007332 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007333
7334 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007335 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7336 FEnd = ClassDecl->field_end();
7337 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00007338 if (F->hasInClassInitializer()) {
7339 if (Expr *E = F->getInClassInitializer())
7340 ExceptSpec.CalledExpr(E);
7341 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007342 // DR1351:
7343 // If the brace-or-equal-initializer of a non-static data member
7344 // invokes a defaulted default constructor of its class or of an
7345 // enclosing class in a potentially evaluated subexpression, the
7346 // program is ill-formed.
7347 //
7348 // This resolution is unworkable: the exception specification of the
7349 // default constructor can be needed in an unevaluated context, in
7350 // particular, in the operand of a noexcept-expression, and we can be
7351 // unable to compute an exception specification for an enclosed class.
7352 //
7353 // We do not allow an in-class initializer to require the evaluation
7354 // of the exception specification for any in-class initializer whose
7355 // definition is not lexically complete.
7356 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00007357 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00007358 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00007359 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7360 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
7361 // If this is a deleted function, add it anyway. This might be conformant
7362 // with the standard. This might not. I'm not sure. It might not matter.
7363 // In particular, the problem is that this function never gets called. It
7364 // might just be ill-formed because this function attempts to refer to
7365 // a deleted function here.
7366 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007367 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007368 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007369 }
John McCalle23cf432010-12-14 08:05:40 +00007370
Sean Hunt001cad92011-05-10 00:49:42 +00007371 return ExceptSpec;
7372}
7373
Richard Smithafb49182012-11-29 01:34:07 +00007374namespace {
7375/// RAII object to register a special member as being currently declared.
7376struct DeclaringSpecialMember {
7377 Sema &S;
7378 Sema::SpecialMemberDecl D;
7379 bool WasAlreadyBeingDeclared;
7380
7381 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
7382 : S(S), D(RD, CSM) {
7383 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
7384 if (WasAlreadyBeingDeclared)
7385 // This almost never happens, but if it does, ensure that our cache
7386 // doesn't contain a stale result.
7387 S.SpecialMemberCache.clear();
7388
7389 // FIXME: Register a note to be produced if we encounter an error while
7390 // declaring the special member.
7391 }
7392 ~DeclaringSpecialMember() {
7393 if (!WasAlreadyBeingDeclared)
7394 S.SpecialMembersBeingDeclared.erase(D);
7395 }
7396
7397 /// \brief Are we already trying to declare this special member?
7398 bool isAlreadyBeingDeclared() const {
7399 return WasAlreadyBeingDeclared;
7400 }
7401};
7402}
7403
Sean Hunt001cad92011-05-10 00:49:42 +00007404CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
7405 CXXRecordDecl *ClassDecl) {
7406 // C++ [class.ctor]p5:
7407 // A default constructor for a class X is a constructor of class X
7408 // that can be called without an argument. If there is no
7409 // user-declared constructor for class X, a default constructor is
7410 // implicitly declared. An implicitly-declared default constructor
7411 // is an inline public member of its class.
Richard Smithd0adeb62012-11-27 21:20:31 +00007412 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00007413 "Should not build implicit default constructor!");
7414
Richard Smithafb49182012-11-29 01:34:07 +00007415 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
7416 if (DSM.isAlreadyBeingDeclared())
7417 return 0;
7418
Richard Smith7756afa2012-06-10 05:43:50 +00007419 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
7420 CXXDefaultConstructor,
7421 false);
7422
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007423 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007424 CanQualType ClassType
7425 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007426 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007427 DeclarationName Name
7428 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007429 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007430 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007431 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007432 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007433 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007434 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007435 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007436 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00007437 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007438
7439 // Build an exception specification pointing back at this constructor.
7440 FunctionProtoType::ExtProtoInfo EPI;
7441 EPI.ExceptionSpecType = EST_Unevaluated;
7442 EPI.ExceptionSpecDecl = DefaultCon;
7443 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7444
Douglas Gregor18274032010-07-03 00:47:00 +00007445 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007446 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
7447
Douglas Gregor23c94db2010-07-02 17:43:08 +00007448 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007449 PushOnScopeChains(DefaultCon, S, false);
7450 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007451
Sean Hunte16da072011-10-10 06:18:57 +00007452 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00007453 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00007454
Douglas Gregor32df23e2010-07-01 22:02:46 +00007455 return DefaultCon;
7456}
7457
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007458void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7459 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007460 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007461 !Constructor->doesThisDeclarationHaveABody() &&
7462 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007463 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007464
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007465 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007466 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007467
Eli Friedman9a14db32012-10-18 20:14:08 +00007468 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007469 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007470 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007471 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007472 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007473 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007474 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007475 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007476 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007477
7478 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007479 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007480
7481 Constructor->setUsed();
7482 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007483
7484 if (ASTMutationListener *L = getASTMutationListener()) {
7485 L->CompletedImplicitDefinition(Constructor);
7486 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007487}
7488
Richard Smith7a614d82011-06-11 17:19:42 +00007489void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7490 if (!D) return;
7491 AdjustDeclIfTemplate(D);
7492
7493 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00007494
Richard Smithb9d0b762012-07-27 04:22:15 +00007495 if (!ClassDecl->isDependentType())
Richard Smithac713512012-12-08 02:53:02 +00007496 CheckExplicitlyDefaultedAndDeletedMethods(ClassDecl);
7497
7498 // C++11 [dcl.constexpr]p8: A constexpr specifier for a non-static member
7499 // function that is not a constructor declares that member function to be
7500 // const. [...] The class of which that function is a member shall be
7501 // a literal type.
7502 //
7503 // If the class has virtual bases, any constexpr members will already have
7504 // been diagnosed by the checks performed on the member declaration, so
7505 // suppress this (less useful) diagnostic.
7506 //
7507 // We delay this until we know whether an explicitly-defaulted (or deleted)
7508 // destructor for the class is trivial.
7509 if (LangOpts.CPlusPlus0x && !ClassDecl->isDependentType() &&
7510 !ClassDecl->isLiteral() && !ClassDecl->getNumVBases()) {
7511 for (CXXRecordDecl::method_iterator M = ClassDecl->method_begin(),
7512 MEnd = ClassDecl->method_end();
7513 M != MEnd; ++M) {
7514 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
7515 switch (ClassDecl->getTemplateSpecializationKind()) {
7516 case TSK_ImplicitInstantiation:
7517 case TSK_ExplicitInstantiationDeclaration:
7518 case TSK_ExplicitInstantiationDefinition:
7519 // If a template instantiates to a non-literal type, but its members
7520 // instantiate to constexpr functions, the template is technically
7521 // ill-formed, but we allow it for sanity.
7522 continue;
7523
7524 case TSK_Undeclared:
7525 case TSK_ExplicitSpecialization:
7526 RequireLiteralType(M->getLocation(), Context.getRecordType(ClassDecl),
7527 diag::err_constexpr_method_non_literal);
7528 break;
7529 }
7530
7531 // Only produce one error per class.
7532 break;
7533 }
7534 }
7535 }
Richard Smith7a614d82011-06-11 17:19:42 +00007536}
7537
Sebastian Redlf677ea32011-02-05 19:23:19 +00007538void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7539 // We start with an initial pass over the base classes to collect those that
7540 // inherit constructors from. If there are none, we can forgo all further
7541 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007542 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007543 BasesVector BasesToInheritFrom;
7544 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7545 BaseE = ClassDecl->bases_end();
7546 BaseIt != BaseE; ++BaseIt) {
7547 if (BaseIt->getInheritConstructors()) {
7548 QualType Base = BaseIt->getType();
7549 if (Base->isDependentType()) {
7550 // If we inherit constructors from anything that is dependent, just
7551 // abort processing altogether. We'll get another chance for the
7552 // instantiations.
7553 return;
7554 }
7555 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7556 }
7557 }
7558 if (BasesToInheritFrom.empty())
7559 return;
7560
7561 // Now collect the constructors that we already have in the current class.
7562 // Those take precedence over inherited constructors.
7563 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7564 // unless there is a user-declared constructor with the same signature in
7565 // the class where the using-declaration appears.
7566 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7567 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7568 CtorE = ClassDecl->ctor_end();
7569 CtorIt != CtorE; ++CtorIt) {
7570 ExistingConstructors.insert(
7571 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7572 }
7573
Sebastian Redlf677ea32011-02-05 19:23:19 +00007574 DeclarationName CreatedCtorName =
7575 Context.DeclarationNames.getCXXConstructorName(
7576 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7577
7578 // Now comes the true work.
7579 // First, we keep a map from constructor types to the base that introduced
7580 // them. Needed for finding conflicting constructors. We also keep the
7581 // actually inserted declarations in there, for pretty diagnostics.
7582 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7583 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7584 ConstructorToSourceMap InheritedConstructors;
7585 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7586 BaseE = BasesToInheritFrom.end();
7587 BaseIt != BaseE; ++BaseIt) {
7588 const RecordType *Base = *BaseIt;
7589 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7590 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7591 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7592 CtorE = BaseDecl->ctor_end();
7593 CtorIt != CtorE; ++CtorIt) {
7594 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007595 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007596 DeclarationName Name =
7597 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007598 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7599 LookupQualifiedName(Result, CurContext);
7600 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007601 SourceLocation UsingLoc = UD ? UD->getLocation() :
7602 ClassDecl->getLocation();
7603
7604 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7605 // from the class X named in the using-declaration consists of actual
7606 // constructors and notional constructors that result from the
7607 // transformation of defaulted parameters as follows:
7608 // - all non-template default constructors of X, and
7609 // - for each non-template constructor of X that has at least one
7610 // parameter with a default argument, the set of constructors that
7611 // results from omitting any ellipsis parameter specification and
7612 // successively omitting parameters with a default argument from the
7613 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007614 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007615 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7616 const FunctionProtoType *BaseCtorType =
7617 BaseCtor->getType()->getAs<FunctionProtoType>();
7618
7619 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7620 maxParams = BaseCtor->getNumParams();
7621 params <= maxParams; ++params) {
7622 // Skip default constructors. They're never inherited.
7623 if (params == 0)
7624 continue;
7625 // Skip copy and move constructors for the same reason.
7626 if (CanBeCopyOrMove && params == 1)
7627 continue;
7628
7629 // Build up a function type for this particular constructor.
7630 // FIXME: The working paper does not consider that the exception spec
7631 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007632 // source. This code doesn't yet, either. When it does, this code will
7633 // need to be delayed until after exception specifications and in-class
7634 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007635 const Type *NewCtorType;
7636 if (params == maxParams)
7637 NewCtorType = BaseCtorType;
7638 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007639 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007640 for (unsigned i = 0; i < params; ++i) {
7641 Args.push_back(BaseCtorType->getArgType(i));
7642 }
7643 FunctionProtoType::ExtProtoInfo ExtInfo =
7644 BaseCtorType->getExtProtoInfo();
7645 ExtInfo.Variadic = false;
7646 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7647 Args.data(), params, ExtInfo)
7648 .getTypePtr();
7649 }
7650 const Type *CanonicalNewCtorType =
7651 Context.getCanonicalType(NewCtorType);
7652
7653 // Now that we have the type, first check if the class already has a
7654 // constructor with this signature.
7655 if (ExistingConstructors.count(CanonicalNewCtorType))
7656 continue;
7657
7658 // Then we check if we have already declared an inherited constructor
7659 // with this signature.
7660 std::pair<ConstructorToSourceMap::iterator, bool> result =
7661 InheritedConstructors.insert(std::make_pair(
7662 CanonicalNewCtorType,
7663 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7664 if (!result.second) {
7665 // Already in the map. If it came from a different class, that's an
7666 // error. Not if it's from the same.
7667 CanQualType PreviousBase = result.first->second.first;
7668 if (CanonicalBase != PreviousBase) {
7669 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7670 const CXXConstructorDecl *PrevBaseCtor =
7671 PrevCtor->getInheritedConstructor();
7672 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7673
7674 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7675 Diag(BaseCtor->getLocation(),
7676 diag::note_using_decl_constructor_conflict_current_ctor);
7677 Diag(PrevBaseCtor->getLocation(),
7678 diag::note_using_decl_constructor_conflict_previous_ctor);
7679 Diag(PrevCtor->getLocation(),
7680 diag::note_using_decl_constructor_conflict_previous_using);
7681 }
7682 continue;
7683 }
7684
7685 // OK, we're there, now add the constructor.
7686 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007687 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007688 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7689 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007690 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7691 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007692 /*ImplicitlyDeclared=*/true,
7693 // FIXME: Due to a defect in the standard, we treat inherited
7694 // constructors as constexpr even if that makes them ill-formed.
7695 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007696 NewCtor->setAccess(BaseCtor->getAccess());
7697
7698 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007699 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007700 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007701 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7702 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007703 /*IdentifierInfo=*/0,
7704 BaseCtorType->getArgType(i),
7705 /*TInfo=*/0, SC_None,
7706 SC_None, /*DefaultArg=*/0));
7707 }
David Blaikie4278c652011-09-21 18:16:56 +00007708 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007709 NewCtor->setInheritedConstructor(BaseCtor);
7710
Sebastian Redlf677ea32011-02-05 19:23:19 +00007711 ClassDecl->addDecl(NewCtor);
7712 result.first->second.second = NewCtor;
7713 }
7714 }
7715 }
7716}
7717
Sean Huntcb45a0f2011-05-12 22:46:25 +00007718Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007719Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7720 CXXRecordDecl *ClassDecl = MD->getParent();
7721
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007722 // C++ [except.spec]p14:
7723 // An implicitly declared special member function (Clause 12) shall have
7724 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007725 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007726 if (ClassDecl->isInvalidDecl())
7727 return ExceptSpec;
7728
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007729 // Direct base-class destructors.
7730 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7731 BEnd = ClassDecl->bases_end();
7732 B != BEnd; ++B) {
7733 if (B->isVirtual()) // Handled below.
7734 continue;
7735
7736 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007737 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007738 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007739 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007740
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007741 // Virtual base-class destructors.
7742 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7743 BEnd = ClassDecl->vbases_end();
7744 B != BEnd; ++B) {
7745 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007746 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007747 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007748 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007749
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007750 // Field destructors.
7751 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7752 FEnd = ClassDecl->field_end();
7753 F != FEnd; ++F) {
7754 if (const RecordType *RecordTy
7755 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007756 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007757 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007758 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007759
Sean Huntcb45a0f2011-05-12 22:46:25 +00007760 return ExceptSpec;
7761}
7762
7763CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7764 // C++ [class.dtor]p2:
7765 // If a class has no user-declared destructor, a destructor is
7766 // declared implicitly. An implicitly-declared destructor is an
7767 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00007768 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00007769
Richard Smithafb49182012-11-29 01:34:07 +00007770 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
7771 if (DSM.isAlreadyBeingDeclared())
7772 return 0;
7773
Douglas Gregor4923aa22010-07-02 20:37:36 +00007774 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007775 CanQualType ClassType
7776 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007777 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007778 DeclarationName Name
7779 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007780 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007781 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007782 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7783 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007784 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007785 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007786 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007787 Destructor->setImplicit();
7788 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007789
7790 // Build an exception specification pointing back at this destructor.
7791 FunctionProtoType::ExtProtoInfo EPI;
7792 EPI.ExceptionSpecType = EST_Unevaluated;
7793 EPI.ExceptionSpecDecl = Destructor;
7794 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7795
Douglas Gregor4923aa22010-07-02 20:37:36 +00007796 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007797 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007798
Douglas Gregor4923aa22010-07-02 20:37:36 +00007799 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007800 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007801 PushOnScopeChains(Destructor, S, false);
7802 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007803
Richard Smith9a561d52012-02-26 09:11:52 +00007804 AddOverriddenMethods(ClassDecl, Destructor);
7805
Richard Smith7d5088a2012-02-18 02:02:13 +00007806 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007807 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007808
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007809 return Destructor;
7810}
7811
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007812void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007813 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007814 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007815 !Destructor->doesThisDeclarationHaveABody() &&
7816 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007817 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007818 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007819 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007820
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007821 if (Destructor->isInvalidDecl())
7822 return;
7823
Eli Friedman9a14db32012-10-18 20:14:08 +00007824 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007825
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007826 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007827 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7828 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007829
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007830 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007831 Diag(CurrentLocation, diag::note_member_synthesized_at)
7832 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7833
7834 Destructor->setInvalidDecl();
7835 return;
7836 }
7837
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007838 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007839 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007840 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007841 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007842 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007843
7844 if (ASTMutationListener *L = getASTMutationListener()) {
7845 L->CompletedImplicitDefinition(Destructor);
7846 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007847}
7848
Richard Smitha4156b82012-04-21 18:42:51 +00007849/// \brief Perform any semantic analysis which needs to be delayed until all
7850/// pending class member declarations have been parsed.
7851void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007852 // Perform any deferred checking of exception specifications for virtual
7853 // destructors.
7854 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7855 i != e; ++i) {
7856 const CXXDestructorDecl *Dtor =
7857 DelayedDestructorExceptionSpecChecks[i].first;
7858 assert(!Dtor->getParent()->isDependentType() &&
7859 "Should not ever add destructors of templates into the list.");
7860 CheckOverridingFunctionExceptionSpec(Dtor,
7861 DelayedDestructorExceptionSpecChecks[i].second);
7862 }
7863 DelayedDestructorExceptionSpecChecks.clear();
7864}
7865
Richard Smithb9d0b762012-07-27 04:22:15 +00007866void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7867 CXXDestructorDecl *Destructor) {
7868 assert(getLangOpts().CPlusPlus0x &&
7869 "adjusting dtor exception specs was introduced in c++11");
7870
Sebastian Redl0ee33912011-05-19 05:13:44 +00007871 // C++11 [class.dtor]p3:
7872 // A declaration of a destructor that does not have an exception-
7873 // specification is implicitly considered to have the same exception-
7874 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007875 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007876 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007877 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007878 return;
7879
Chandler Carruth3f224b22011-09-20 04:55:26 +00007880 // Replace the destructor's type, building off the existing one. Fortunately,
7881 // the only thing of interest in the destructor type is its extended info.
7882 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007883 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7884 EPI.ExceptionSpecType = EST_Unevaluated;
7885 EPI.ExceptionSpecDecl = Destructor;
7886 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007887
Sebastian Redl0ee33912011-05-19 05:13:44 +00007888 // FIXME: If the destructor has a body that could throw, and the newly created
7889 // spec doesn't allow exceptions, we should emit a warning, because this
7890 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007891 // However, we don't have a body or an exception specification yet, so it
7892 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007893}
7894
Richard Smith8c889532012-11-14 00:50:40 +00007895/// When generating a defaulted copy or move assignment operator, if a field
7896/// should be copied with __builtin_memcpy rather than via explicit assignments,
7897/// do so. This optimization only applies for arrays of scalars, and for arrays
7898/// of class type where the selected copy/move-assignment operator is trivial.
7899static StmtResult
7900buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7901 Expr *To, Expr *From) {
7902 // Compute the size of the memory buffer to be copied.
7903 QualType SizeType = S.Context.getSizeType();
7904 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7905 S.Context.getTypeSizeInChars(T).getQuantity());
7906
7907 // Take the address of the field references for "from" and "to". We
7908 // directly construct UnaryOperators here because semantic analysis
7909 // does not permit us to take the address of an xvalue.
7910 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7911 S.Context.getPointerType(From->getType()),
7912 VK_RValue, OK_Ordinary, Loc);
7913 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7914 S.Context.getPointerType(To->getType()),
7915 VK_RValue, OK_Ordinary, Loc);
7916
7917 const Type *E = T->getBaseElementTypeUnsafe();
7918 bool NeedsCollectableMemCpy =
7919 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7920
7921 // Create a reference to the __builtin_objc_memmove_collectable function
7922 StringRef MemCpyName = NeedsCollectableMemCpy ?
7923 "__builtin_objc_memmove_collectable" :
7924 "__builtin_memcpy";
7925 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7926 Sema::LookupOrdinaryName);
7927 S.LookupName(R, S.TUScope, true);
7928
7929 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7930 if (!MemCpy)
7931 // Something went horribly wrong earlier, and we will have complained
7932 // about it.
7933 return StmtError();
7934
7935 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7936 VK_RValue, Loc, 0);
7937 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7938
7939 Expr *CallArgs[] = {
7940 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7941 };
7942 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7943 Loc, CallArgs, Loc);
7944
7945 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7946 return S.Owned(Call.takeAs<Stmt>());
7947}
7948
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007949/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007950/// \c To.
7951///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007952/// This routine is used to copy/move the members of a class with an
7953/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007954/// copied are arrays, this routine builds for loops to copy them.
7955///
7956/// \param S The Sema object used for type-checking.
7957///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007958/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007959///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007960/// \param T The type of the expressions being copied/moved. Both expressions
7961/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007962///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007963/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007964///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007965/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007966///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007967/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007968/// Otherwise, it's a non-static member subobject.
7969///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007970/// \param Copying Whether we're copying or moving.
7971///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007972/// \param Depth Internal parameter recording the depth of the recursion.
7973///
Richard Smith8c889532012-11-14 00:50:40 +00007974/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7975/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007976static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007977buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7978 Expr *To, Expr *From,
7979 bool CopyingBaseSubobject, bool Copying,
7980 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007981 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007982 // Each subobject is assigned in the manner appropriate to its type:
7983 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007984 // - if the subobject is of class type, as if by a call to operator= with
7985 // the subobject as the object expression and the corresponding
7986 // subobject of x as a single function argument (as if by explicit
7987 // qualification; that is, ignoring any possible virtual overriding
7988 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00007989 //
7990 // C++03 [class.copy]p13:
7991 // - if the subobject is of class type, the copy assignment operator for
7992 // the class is used (as if by explicit qualification; that is,
7993 // ignoring any possible virtual overriding functions in more derived
7994 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007995 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7996 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00007997
Douglas Gregor06a9f362010-05-01 20:49:11 +00007998 // Look for operator=.
7999 DeclarationName Name
8000 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8001 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
8002 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008003
Richard Smith044c8aa2012-11-13 00:54:12 +00008004 // Prior to C++11, filter out any result that isn't a copy/move-assignment
8005 // operator.
8006 if (!S.getLangOpts().CPlusPlus0x) {
8007 LookupResult::Filter F = OpLookup.makeFilter();
8008 while (F.hasNext()) {
8009 NamedDecl *D = F.next();
8010 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
8011 if (Method->isCopyAssignmentOperator() ||
8012 (!Copying && Method->isMoveAssignmentOperator()))
8013 continue;
8014
8015 F.erase();
8016 }
8017 F.done();
John McCallb0207482010-03-16 06:11:48 +00008018 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008019
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008020 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00008021 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008022 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00008023 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008024 // ambiguities), we need to cast "this" to that subobject type; to
8025 // ensure that we don't go through the virtual call mechanism, we need
8026 // to qualify the operator= name with the base class (see below). However,
8027 // this means that if the base class has a protected copy assignment
8028 // operator, the protected member access check will fail. So, we
8029 // rewrite "protected" access to "public" access in this case, since we
8030 // know by construction that we're calling from a derived class.
8031 if (CopyingBaseSubobject) {
8032 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
8033 L != LEnd; ++L) {
8034 if (L.getAccess() == AS_protected)
8035 L.setAccess(AS_public);
8036 }
8037 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008038
Douglas Gregor06a9f362010-05-01 20:49:11 +00008039 // Create the nested-name-specifier that will be used to qualify the
8040 // reference to operator=; this is required to suppress the virtual
8041 // call mechanism.
8042 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008043 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00008044 SS.MakeTrivial(S.Context,
8045 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008046 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00008047 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00008048
Douglas Gregor06a9f362010-05-01 20:49:11 +00008049 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00008050 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00008051 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008052 /*TemplateKWLoc=*/SourceLocation(),
8053 /*FirstQualifierInScope=*/0,
8054 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008055 /*TemplateArgs=*/0,
8056 /*SuppressQualifierCheck=*/true);
8057 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008058 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008059
Douglas Gregor06a9f362010-05-01 20:49:11 +00008060 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00008061
Richard Smith044c8aa2012-11-13 00:54:12 +00008062 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00008063 OpEqualRef.takeAs<Expr>(),
8064 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008065 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008066 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008067
Richard Smith8c889532012-11-14 00:50:40 +00008068 // If we built a call to a trivial 'operator=' while copying an array,
8069 // bail out. We'll replace the whole shebang with a memcpy.
8070 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
8071 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
8072 return StmtResult((Stmt*)0);
8073
Richard Smith044c8aa2012-11-13 00:54:12 +00008074 // Convert to an expression-statement, and clean up any produced
8075 // temporaries.
8076 return S.ActOnExprStmt(S.MakeFullExpr(Call.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008077 }
John McCallb0207482010-03-16 06:11:48 +00008078
Richard Smith044c8aa2012-11-13 00:54:12 +00008079 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00008080 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00008081 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008082 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00008083 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008084 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008085 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008086 return S.ActOnExprStmt(S.MakeFullExpr(Assignment.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008087 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008088
8089 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00008090 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00008091
Douglas Gregor06a9f362010-05-01 20:49:11 +00008092 // Construct a loop over the array bounds, e.g.,
8093 //
8094 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
8095 //
8096 // that will copy each of the array elements.
8097 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00008098
Douglas Gregor06a9f362010-05-01 20:49:11 +00008099 // Create the iteration variable.
8100 IdentifierInfo *IterationVarName = 0;
8101 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00008102 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008103 llvm::raw_svector_ostream OS(Str);
8104 OS << "__i" << Depth;
8105 IterationVarName = &S.Context.Idents.get(OS.str());
8106 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008107 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008108 IterationVarName, SizeType,
8109 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00008110 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00008111
Douglas Gregor06a9f362010-05-01 20:49:11 +00008112 // Initialize the iteration variable to zero.
8113 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00008114 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00008115
8116 // Create a reference to the iteration variable; we'll use this several
8117 // times throughout.
8118 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00008119 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008120 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00008121 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
8122 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
8123
Douglas Gregor06a9f362010-05-01 20:49:11 +00008124 // Create the DeclStmt that holds the iteration variable.
8125 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00008126
Douglas Gregor06a9f362010-05-01 20:49:11 +00008127 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00008128 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008129 IterationVarRefRVal,
8130 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00008131 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008132 IterationVarRefRVal,
8133 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008134 if (!Copying) // Cast to rvalue
8135 From = CastForMoving(S, From);
8136
8137 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00008138 StmtResult Copy =
8139 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
8140 To, From, CopyingBaseSubobject,
8141 Copying, Depth + 1);
8142 // Bail out if copying fails or if we determined that we should use memcpy.
8143 if (Copy.isInvalid() || !Copy.get())
8144 return Copy;
8145
8146 // Create the comparison against the array bound.
8147 llvm::APInt Upper
8148 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
8149 Expr *Comparison
8150 = new (S.Context) BinaryOperator(IterationVarRefRVal,
8151 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
8152 BO_NE, S.Context.BoolTy,
8153 VK_RValue, OK_Ordinary, Loc, false);
8154
8155 // Create the pre-increment of the iteration variable.
8156 Expr *Increment
8157 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
8158 VK_LValue, OK_Ordinary, Loc);
8159
Douglas Gregor06a9f362010-05-01 20:49:11 +00008160 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00008161 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008162 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00008163 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00008164 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008165}
8166
Richard Smith8c889532012-11-14 00:50:40 +00008167static StmtResult
8168buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
8169 Expr *To, Expr *From,
8170 bool CopyingBaseSubobject, bool Copying) {
8171 // Maybe we should use a memcpy?
8172 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
8173 T.isTriviallyCopyableType(S.Context))
8174 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8175
8176 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
8177 CopyingBaseSubobject,
8178 Copying, 0));
8179
8180 // If we ended up picking a trivial assignment operator for an array of a
8181 // non-trivially-copyable class type, just emit a memcpy.
8182 if (!Result.isInvalid() && !Result.get())
8183 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8184
8185 return Result;
8186}
8187
Richard Smithb9d0b762012-07-27 04:22:15 +00008188Sema::ImplicitExceptionSpecification
8189Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
8190 CXXRecordDecl *ClassDecl = MD->getParent();
8191
8192 ImplicitExceptionSpecification ExceptSpec(*this);
8193 if (ClassDecl->isInvalidDecl())
8194 return ExceptSpec;
8195
8196 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8197 assert(T->getNumArgs() == 1 && "not a copy assignment op");
8198 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8199
Douglas Gregorb87786f2010-07-01 17:48:08 +00008200 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00008201 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00008202 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00008203
8204 // It is unspecified whether or not an implicit copy assignment operator
8205 // attempts to deduplicate calls to assignment operators of virtual bases are
8206 // made. As such, this exception specification is effectively unspecified.
8207 // Based on a similar decision made for constness in C++0x, we're erring on
8208 // the side of assuming such calls to be made regardless of whether they
8209 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00008210 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8211 BaseEnd = ClassDecl->bases_end();
8212 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00008213 if (Base->isVirtual())
8214 continue;
8215
Douglas Gregora376d102010-07-02 21:50:04 +00008216 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00008217 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00008218 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8219 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008220 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00008221 }
Sean Hunt661c67a2011-06-21 23:42:56 +00008222
8223 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8224 BaseEnd = ClassDecl->vbases_end();
8225 Base != BaseEnd; ++Base) {
8226 CXXRecordDecl *BaseClassDecl
8227 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8228 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8229 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008230 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00008231 }
8232
Douglas Gregorb87786f2010-07-01 17:48:08 +00008233 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8234 FieldEnd = ClassDecl->field_end();
8235 Field != FieldEnd;
8236 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008237 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00008238 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8239 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008240 LookupCopyingAssignment(FieldClassDecl,
8241 ArgQuals | FieldType.getCVRQualifiers(),
8242 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008243 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008244 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00008245 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008246
Richard Smithb9d0b762012-07-27 04:22:15 +00008247 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00008248}
8249
8250CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
8251 // Note: The following rules are largely analoguous to the copy
8252 // constructor rules. Note that virtual bases are not taken into account
8253 // for determining the argument type of the operator. Note also that
8254 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00008255 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00008256
Richard Smithafb49182012-11-29 01:34:07 +00008257 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
8258 if (DSM.isAlreadyBeingDeclared())
8259 return 0;
8260
Sean Hunt30de05c2011-05-14 05:23:20 +00008261 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8262 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithacf796b2012-11-28 06:23:12 +00008263 if (ClassDecl->implicitCopyAssignmentHasConstParam())
Sean Hunt30de05c2011-05-14 05:23:20 +00008264 ArgType = ArgType.withConst();
8265 ArgType = Context.getLValueReferenceType(ArgType);
8266
Douglas Gregord3c35902010-07-01 16:36:15 +00008267 // An implicitly-declared copy assignment operator is an inline public
8268 // member of its class.
8269 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008270 SourceLocation ClassLoc = ClassDecl->getLocation();
8271 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00008272 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008273 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00008274 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00008275 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00008276 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00008277 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00008278 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00008279 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00008280 CopyAssignment->setImplicit();
8281 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00008282
8283 // Build an exception specification pointing back at this member.
8284 FunctionProtoType::ExtProtoInfo EPI;
8285 EPI.ExceptionSpecType = EST_Unevaluated;
8286 EPI.ExceptionSpecDecl = CopyAssignment;
8287 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8288
Douglas Gregord3c35902010-07-01 16:36:15 +00008289 // Add the parameter to the operator.
8290 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008291 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00008292 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008293 SC_None,
8294 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008295 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00008296
Douglas Gregora376d102010-07-02 21:50:04 +00008297 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00008298 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00008299
Douglas Gregor23c94db2010-07-02 17:43:08 +00008300 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00008301 PushOnScopeChains(CopyAssignment, S, false);
8302 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00008303
Nico Weberafcc96a2012-01-23 03:19:29 +00008304 // C++0x [class.copy]p19:
8305 // .... If the class definition does not explicitly declare a copy
8306 // assignment operator, there is no user-declared move constructor, and
8307 // there is no user-declared move assignment operator, a copy assignment
8308 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008309 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00008310 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008311
Douglas Gregord3c35902010-07-01 16:36:15 +00008312 AddOverriddenMethods(ClassDecl, CopyAssignment);
8313 return CopyAssignment;
8314}
8315
Douglas Gregor06a9f362010-05-01 20:49:11 +00008316void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
8317 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00008318 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008319 CopyAssignOperator->isOverloadedOperator() &&
8320 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008321 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
8322 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008323 "DefineImplicitCopyAssignment called for wrong function");
8324
8325 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
8326
8327 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
8328 CopyAssignOperator->setInvalidDecl();
8329 return;
8330 }
8331
8332 CopyAssignOperator->setUsed();
8333
Eli Friedman9a14db32012-10-18 20:14:08 +00008334 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008335 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008336
8337 // C++0x [class.copy]p30:
8338 // The implicitly-defined or explicitly-defaulted copy assignment operator
8339 // for a non-union class X performs memberwise copy assignment of its
8340 // subobjects. The direct base classes of X are assigned first, in the
8341 // order of their declaration in the base-specifier-list, and then the
8342 // immediate non-static data members of X are assigned, in the order in
8343 // which they were declared in the class definition.
8344
8345 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008346 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008347
8348 // The parameter for the "other" object, which we are copying from.
8349 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
8350 Qualifiers OtherQuals = Other->getType().getQualifiers();
8351 QualType OtherRefType = Other->getType();
8352 if (const LValueReferenceType *OtherRef
8353 = OtherRefType->getAs<LValueReferenceType>()) {
8354 OtherRefType = OtherRef->getPointeeType();
8355 OtherQuals = OtherRefType.getQualifiers();
8356 }
8357
8358 // Our location for everything implicitly-generated.
8359 SourceLocation Loc = CopyAssignOperator->getLocation();
8360
8361 // Construct a reference to the "other" object. We'll be using this
8362 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00008363 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008364 assert(OtherRef && "Reference to parameter cannot fail!");
8365
8366 // Construct the "this" pointer. We'll be using this throughout the generated
8367 // ASTs.
8368 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8369 assert(This && "Reference to this cannot fail!");
8370
8371 // Assign base classes.
8372 bool Invalid = false;
8373 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8374 E = ClassDecl->bases_end(); Base != E; ++Base) {
8375 // Form the assignment:
8376 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
8377 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00008378 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00008379 Invalid = true;
8380 continue;
8381 }
8382
John McCallf871d0c2010-08-07 06:22:56 +00008383 CXXCastPath BasePath;
8384 BasePath.push_back(Base);
8385
Douglas Gregor06a9f362010-05-01 20:49:11 +00008386 // Construct the "from" expression, which is an implicit cast to the
8387 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00008388 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00008389 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
8390 CK_UncheckedDerivedToBase,
8391 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008392
8393 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00008394 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008395
8396 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00008397 To = ImpCastExprToType(To.take(),
8398 Context.getCVRQualifiedType(BaseType,
8399 CopyAssignOperator->getTypeQualifiers()),
8400 CK_UncheckedDerivedToBase,
8401 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008402
8403 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00008404 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00008405 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008406 /*CopyingBaseSubobject=*/true,
8407 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008408 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008409 Diag(CurrentLocation, diag::note_member_synthesized_at)
8410 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8411 CopyAssignOperator->setInvalidDecl();
8412 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008413 }
8414
8415 // Success! Record the copy.
8416 Statements.push_back(Copy.takeAs<Expr>());
8417 }
8418
Douglas Gregor06a9f362010-05-01 20:49:11 +00008419 // Assign non-static members.
8420 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8421 FieldEnd = ClassDecl->field_end();
8422 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008423 if (Field->isUnnamedBitfield())
8424 continue;
8425
Douglas Gregor06a9f362010-05-01 20:49:11 +00008426 // Check for members of reference type; we can't copy those.
8427 if (Field->getType()->isReferenceType()) {
8428 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8429 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8430 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008431 Diag(CurrentLocation, diag::note_member_synthesized_at)
8432 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008433 Invalid = true;
8434 continue;
8435 }
8436
8437 // Check for members of const-qualified, non-class type.
8438 QualType BaseType = Context.getBaseElementType(Field->getType());
8439 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8440 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8441 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8442 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008443 Diag(CurrentLocation, diag::note_member_synthesized_at)
8444 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008445 Invalid = true;
8446 continue;
8447 }
John McCallb77115d2011-06-17 00:18:42 +00008448
8449 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008450 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8451 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008452
8453 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008454 if (FieldType->isIncompleteArrayType()) {
8455 assert(ClassDecl->hasFlexibleArrayMember() &&
8456 "Incomplete array type is not valid");
8457 continue;
8458 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008459
8460 // Build references to the field in the object we're copying from and to.
8461 CXXScopeSpec SS; // Intentionally empty
8462 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8463 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008464 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008465 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008466 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008467 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008468 SS, SourceLocation(), 0,
8469 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008470 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008471 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008472 SS, SourceLocation(), 0,
8473 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008474 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8475 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008476
Douglas Gregor06a9f362010-05-01 20:49:11 +00008477 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008478 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008479 To.get(), From.get(),
8480 /*CopyingBaseSubobject=*/false,
8481 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008482 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008483 Diag(CurrentLocation, diag::note_member_synthesized_at)
8484 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8485 CopyAssignOperator->setInvalidDecl();
8486 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008487 }
8488
8489 // Success! Record the copy.
8490 Statements.push_back(Copy.takeAs<Stmt>());
8491 }
8492
8493 if (!Invalid) {
8494 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008495 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008496
John McCall60d7b3a2010-08-24 06:29:42 +00008497 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008498 if (Return.isInvalid())
8499 Invalid = true;
8500 else {
8501 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008502
8503 if (Trap.hasErrorOccurred()) {
8504 Diag(CurrentLocation, diag::note_member_synthesized_at)
8505 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8506 Invalid = true;
8507 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008508 }
8509 }
8510
8511 if (Invalid) {
8512 CopyAssignOperator->setInvalidDecl();
8513 return;
8514 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008515
8516 StmtResult Body;
8517 {
8518 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008519 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008520 /*isStmtExpr=*/false);
8521 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8522 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008523 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008524
8525 if (ASTMutationListener *L = getASTMutationListener()) {
8526 L->CompletedImplicitDefinition(CopyAssignOperator);
8527 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008528}
8529
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008530Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008531Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8532 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008533
Richard Smithb9d0b762012-07-27 04:22:15 +00008534 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008535 if (ClassDecl->isInvalidDecl())
8536 return ExceptSpec;
8537
8538 // C++0x [except.spec]p14:
8539 // An implicitly declared special member function (Clause 12) shall have an
8540 // exception-specification. [...]
8541
8542 // It is unspecified whether or not an implicit move assignment operator
8543 // attempts to deduplicate calls to assignment operators of virtual bases are
8544 // made. As such, this exception specification is effectively unspecified.
8545 // Based on a similar decision made for constness in C++0x, we're erring on
8546 // the side of assuming such calls to be made regardless of whether they
8547 // actually happen.
8548 // Note that a move constructor is not implicitly declared when there are
8549 // virtual bases, but it can still be user-declared and explicitly defaulted.
8550 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8551 BaseEnd = ClassDecl->bases_end();
8552 Base != BaseEnd; ++Base) {
8553 if (Base->isVirtual())
8554 continue;
8555
8556 CXXRecordDecl *BaseClassDecl
8557 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8558 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008559 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008560 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008561 }
8562
8563 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8564 BaseEnd = ClassDecl->vbases_end();
8565 Base != BaseEnd; ++Base) {
8566 CXXRecordDecl *BaseClassDecl
8567 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8568 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008569 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008570 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008571 }
8572
8573 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8574 FieldEnd = ClassDecl->field_end();
8575 Field != FieldEnd;
8576 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008577 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008578 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008579 if (CXXMethodDecl *MoveAssign =
8580 LookupMovingAssignment(FieldClassDecl,
8581 FieldType.getCVRQualifiers(),
8582 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008583 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008584 }
8585 }
8586
8587 return ExceptSpec;
8588}
8589
Richard Smith1c931be2012-04-02 18:40:40 +00008590/// Determine whether the class type has any direct or indirect virtual base
8591/// classes which have a non-trivial move assignment operator.
8592static bool
8593hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8594 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8595 BaseEnd = ClassDecl->vbases_end();
8596 Base != BaseEnd; ++Base) {
8597 CXXRecordDecl *BaseClass =
8598 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8599
8600 // Try to declare the move assignment. If it would be deleted, then the
8601 // class does not have a non-trivial move assignment.
8602 if (BaseClass->needsImplicitMoveAssignment())
8603 S.DeclareImplicitMoveAssignment(BaseClass);
8604
Richard Smith426391c2012-11-16 00:53:38 +00008605 if (BaseClass->hasNonTrivialMoveAssignment())
Richard Smith1c931be2012-04-02 18:40:40 +00008606 return true;
8607 }
8608
8609 return false;
8610}
8611
8612/// Determine whether the given type either has a move constructor or is
8613/// trivially copyable.
8614static bool
8615hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8616 Type = S.Context.getBaseElementType(Type);
8617
8618 // FIXME: Technically, non-trivially-copyable non-class types, such as
8619 // reference types, are supposed to return false here, but that appears
8620 // to be a standard defect.
8621 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008622 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008623 return true;
8624
8625 if (Type.isTriviallyCopyableType(S.Context))
8626 return true;
8627
8628 if (IsConstructor) {
Richard Smithe5411b72012-12-01 02:35:44 +00008629 // FIXME: Need this because otherwise hasMoveConstructor isn't guaranteed to
8630 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008631 if (ClassDecl->needsImplicitMoveConstructor())
8632 S.DeclareImplicitMoveConstructor(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008633 return ClassDecl->hasMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00008634 }
8635
Richard Smithe5411b72012-12-01 02:35:44 +00008636 // FIXME: Need this because otherwise hasMoveAssignment isn't guaranteed to
8637 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008638 if (ClassDecl->needsImplicitMoveAssignment())
8639 S.DeclareImplicitMoveAssignment(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008640 return ClassDecl->hasMoveAssignment();
Richard Smith1c931be2012-04-02 18:40:40 +00008641}
8642
8643/// Determine whether all non-static data members and direct or virtual bases
8644/// of class \p ClassDecl have either a move operation, or are trivially
8645/// copyable.
8646static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8647 bool IsConstructor) {
8648 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8649 BaseEnd = ClassDecl->bases_end();
8650 Base != BaseEnd; ++Base) {
8651 if (Base->isVirtual())
8652 continue;
8653
8654 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8655 return false;
8656 }
8657
8658 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8659 BaseEnd = ClassDecl->vbases_end();
8660 Base != BaseEnd; ++Base) {
8661 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8662 return false;
8663 }
8664
8665 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8666 FieldEnd = ClassDecl->field_end();
8667 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008668 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008669 return false;
8670 }
8671
8672 return true;
8673}
8674
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008675CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008676 // C++11 [class.copy]p20:
8677 // If the definition of a class X does not explicitly declare a move
8678 // assignment operator, one will be implicitly declared as defaulted
8679 // if and only if:
8680 //
8681 // - [first 4 bullets]
8682 assert(ClassDecl->needsImplicitMoveAssignment());
8683
Richard Smithafb49182012-11-29 01:34:07 +00008684 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
8685 if (DSM.isAlreadyBeingDeclared())
8686 return 0;
8687
Richard Smith1c931be2012-04-02 18:40:40 +00008688 // [Checked after we build the declaration]
8689 // - the move assignment operator would not be implicitly defined as
8690 // deleted,
8691
8692 // [DR1402]:
8693 // - X has no direct or indirect virtual base class with a non-trivial
8694 // move assignment operator, and
8695 // - each of X's non-static data members and direct or virtual base classes
8696 // has a type that either has a move assignment operator or is trivially
8697 // copyable.
8698 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8699 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8700 ClassDecl->setFailedImplicitMoveAssignment();
8701 return 0;
8702 }
8703
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008704 // Note: The following rules are largely analoguous to the move
8705 // constructor rules.
8706
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008707 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8708 QualType RetType = Context.getLValueReferenceType(ArgType);
8709 ArgType = Context.getRValueReferenceType(ArgType);
8710
8711 // An implicitly-declared move assignment operator is an inline public
8712 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008713 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8714 SourceLocation ClassLoc = ClassDecl->getLocation();
8715 DeclarationNameInfo NameInfo(Name, ClassLoc);
8716 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008717 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008718 /*TInfo=*/0, /*isStatic=*/false,
8719 /*StorageClassAsWritten=*/SC_None,
8720 /*isInline=*/true,
8721 /*isConstexpr=*/false,
8722 SourceLocation());
8723 MoveAssignment->setAccess(AS_public);
8724 MoveAssignment->setDefaulted();
8725 MoveAssignment->setImplicit();
8726 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8727
Richard Smithb9d0b762012-07-27 04:22:15 +00008728 // Build an exception specification pointing back at this member.
8729 FunctionProtoType::ExtProtoInfo EPI;
8730 EPI.ExceptionSpecType = EST_Unevaluated;
8731 EPI.ExceptionSpecDecl = MoveAssignment;
8732 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8733
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008734 // Add the parameter to the operator.
8735 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8736 ClassLoc, ClassLoc, /*Id=*/0,
8737 ArgType, /*TInfo=*/0,
8738 SC_None,
8739 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008740 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008741
8742 // Note that we have added this copy-assignment operator.
8743 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8744
8745 // C++0x [class.copy]p9:
8746 // If the definition of a class X does not explicitly declare a move
8747 // assignment operator, one will be implicitly declared as defaulted if and
8748 // only if:
8749 // [...]
8750 // - the move assignment operator would not be implicitly defined as
8751 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008752 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008753 // Cache this result so that we don't try to generate this over and over
8754 // on every lookup, leaking memory and wasting time.
8755 ClassDecl->setFailedImplicitMoveAssignment();
8756 return 0;
8757 }
8758
8759 if (Scope *S = getScopeForContext(ClassDecl))
8760 PushOnScopeChains(MoveAssignment, S, false);
8761 ClassDecl->addDecl(MoveAssignment);
8762
8763 AddOverriddenMethods(ClassDecl, MoveAssignment);
8764 return MoveAssignment;
8765}
8766
8767void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8768 CXXMethodDecl *MoveAssignOperator) {
8769 assert((MoveAssignOperator->isDefaulted() &&
8770 MoveAssignOperator->isOverloadedOperator() &&
8771 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008772 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8773 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008774 "DefineImplicitMoveAssignment called for wrong function");
8775
8776 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8777
8778 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8779 MoveAssignOperator->setInvalidDecl();
8780 return;
8781 }
8782
8783 MoveAssignOperator->setUsed();
8784
Eli Friedman9a14db32012-10-18 20:14:08 +00008785 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008786 DiagnosticErrorTrap Trap(Diags);
8787
8788 // C++0x [class.copy]p28:
8789 // The implicitly-defined or move assignment operator for a non-union class
8790 // X performs memberwise move assignment of its subobjects. The direct base
8791 // classes of X are assigned first, in the order of their declaration in the
8792 // base-specifier-list, and then the immediate non-static data members of X
8793 // are assigned, in the order in which they were declared in the class
8794 // definition.
8795
8796 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008797 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008798
8799 // The parameter for the "other" object, which we are move from.
8800 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8801 QualType OtherRefType = Other->getType()->
8802 getAs<RValueReferenceType>()->getPointeeType();
8803 assert(OtherRefType.getQualifiers() == 0 &&
8804 "Bad argument type of defaulted move assignment");
8805
8806 // Our location for everything implicitly-generated.
8807 SourceLocation Loc = MoveAssignOperator->getLocation();
8808
8809 // Construct a reference to the "other" object. We'll be using this
8810 // throughout the generated ASTs.
8811 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8812 assert(OtherRef && "Reference to parameter cannot fail!");
8813 // Cast to rvalue.
8814 OtherRef = CastForMoving(*this, OtherRef);
8815
8816 // Construct the "this" pointer. We'll be using this throughout the generated
8817 // ASTs.
8818 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8819 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008820
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008821 // Assign base classes.
8822 bool Invalid = false;
8823 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8824 E = ClassDecl->bases_end(); Base != E; ++Base) {
8825 // Form the assignment:
8826 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8827 QualType BaseType = Base->getType().getUnqualifiedType();
8828 if (!BaseType->isRecordType()) {
8829 Invalid = true;
8830 continue;
8831 }
8832
8833 CXXCastPath BasePath;
8834 BasePath.push_back(Base);
8835
8836 // Construct the "from" expression, which is an implicit cast to the
8837 // appropriately-qualified base type.
8838 Expr *From = OtherRef;
8839 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008840 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008841
8842 // Dereference "this".
8843 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8844
8845 // Implicitly cast "this" to the appropriately-qualified base type.
8846 To = ImpCastExprToType(To.take(),
8847 Context.getCVRQualifiedType(BaseType,
8848 MoveAssignOperator->getTypeQualifiers()),
8849 CK_UncheckedDerivedToBase,
8850 VK_LValue, &BasePath);
8851
8852 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008853 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008854 To.get(), From,
8855 /*CopyingBaseSubobject=*/true,
8856 /*Copying=*/false);
8857 if (Move.isInvalid()) {
8858 Diag(CurrentLocation, diag::note_member_synthesized_at)
8859 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8860 MoveAssignOperator->setInvalidDecl();
8861 return;
8862 }
8863
8864 // Success! Record the move.
8865 Statements.push_back(Move.takeAs<Expr>());
8866 }
8867
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008868 // Assign non-static members.
8869 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8870 FieldEnd = ClassDecl->field_end();
8871 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008872 if (Field->isUnnamedBitfield())
8873 continue;
8874
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008875 // Check for members of reference type; we can't move those.
8876 if (Field->getType()->isReferenceType()) {
8877 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8878 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8879 Diag(Field->getLocation(), diag::note_declared_at);
8880 Diag(CurrentLocation, diag::note_member_synthesized_at)
8881 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8882 Invalid = true;
8883 continue;
8884 }
8885
8886 // Check for members of const-qualified, non-class type.
8887 QualType BaseType = Context.getBaseElementType(Field->getType());
8888 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8889 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8890 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8891 Diag(Field->getLocation(), diag::note_declared_at);
8892 Diag(CurrentLocation, diag::note_member_synthesized_at)
8893 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8894 Invalid = true;
8895 continue;
8896 }
8897
8898 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008899 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8900 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008901
8902 QualType FieldType = Field->getType().getNonReferenceType();
8903 if (FieldType->isIncompleteArrayType()) {
8904 assert(ClassDecl->hasFlexibleArrayMember() &&
8905 "Incomplete array type is not valid");
8906 continue;
8907 }
8908
8909 // Build references to the field in the object we're copying from and to.
8910 CXXScopeSpec SS; // Intentionally empty
8911 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8912 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008913 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008914 MemberLookup.resolveKind();
8915 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8916 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008917 SS, SourceLocation(), 0,
8918 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008919 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8920 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008921 SS, SourceLocation(), 0,
8922 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008923 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8924 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8925
8926 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8927 "Member reference with rvalue base must be rvalue except for reference "
8928 "members, which aren't allowed for move assignment.");
8929
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008930 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008931 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008932 To.get(), From.get(),
8933 /*CopyingBaseSubobject=*/false,
8934 /*Copying=*/false);
8935 if (Move.isInvalid()) {
8936 Diag(CurrentLocation, diag::note_member_synthesized_at)
8937 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8938 MoveAssignOperator->setInvalidDecl();
8939 return;
8940 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008941
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008942 // Success! Record the copy.
8943 Statements.push_back(Move.takeAs<Stmt>());
8944 }
8945
8946 if (!Invalid) {
8947 // Add a "return *this;"
8948 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8949
8950 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8951 if (Return.isInvalid())
8952 Invalid = true;
8953 else {
8954 Statements.push_back(Return.takeAs<Stmt>());
8955
8956 if (Trap.hasErrorOccurred()) {
8957 Diag(CurrentLocation, diag::note_member_synthesized_at)
8958 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8959 Invalid = true;
8960 }
8961 }
8962 }
8963
8964 if (Invalid) {
8965 MoveAssignOperator->setInvalidDecl();
8966 return;
8967 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008968
8969 StmtResult Body;
8970 {
8971 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008972 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008973 /*isStmtExpr=*/false);
8974 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8975 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008976 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8977
8978 if (ASTMutationListener *L = getASTMutationListener()) {
8979 L->CompletedImplicitDefinition(MoveAssignOperator);
8980 }
8981}
8982
Richard Smithb9d0b762012-07-27 04:22:15 +00008983Sema::ImplicitExceptionSpecification
8984Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8985 CXXRecordDecl *ClassDecl = MD->getParent();
8986
8987 ImplicitExceptionSpecification ExceptSpec(*this);
8988 if (ClassDecl->isInvalidDecl())
8989 return ExceptSpec;
8990
8991 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8992 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8993 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8994
Douglas Gregor0d405db2010-07-01 20:59:04 +00008995 // C++ [except.spec]p14:
8996 // An implicitly declared special member function (Clause 12) shall have an
8997 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008998 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8999 BaseEnd = ClassDecl->bases_end();
9000 Base != BaseEnd;
9001 ++Base) {
9002 // Virtual bases are handled below.
9003 if (Base->isVirtual())
9004 continue;
9005
Douglas Gregor22584312010-07-02 23:41:54 +00009006 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009007 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009008 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009009 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009010 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009011 }
9012 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9013 BaseEnd = ClassDecl->vbases_end();
9014 Base != BaseEnd;
9015 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00009016 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009017 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009018 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009019 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009020 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009021 }
9022 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9023 FieldEnd = ClassDecl->field_end();
9024 Field != FieldEnd;
9025 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00009026 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00009027 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
9028 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00009029 LookupCopyingConstructor(FieldClassDecl,
9030 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00009031 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009032 }
9033 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00009034
Richard Smithb9d0b762012-07-27 04:22:15 +00009035 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00009036}
9037
9038CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
9039 CXXRecordDecl *ClassDecl) {
9040 // C++ [class.copy]p4:
9041 // If the class definition does not explicitly declare a copy
9042 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +00009043 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +00009044
Richard Smithafb49182012-11-29 01:34:07 +00009045 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
9046 if (DSM.isAlreadyBeingDeclared())
9047 return 0;
9048
Sean Hunt49634cf2011-05-13 06:10:58 +00009049 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9050 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +00009051 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +00009052 if (Const)
9053 ArgType = ArgType.withConst();
9054 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00009055
Richard Smith7756afa2012-06-10 05:43:50 +00009056 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9057 CXXCopyConstructor,
9058 Const);
9059
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009060 DeclarationName Name
9061 = Context.DeclarationNames.getCXXConstructorName(
9062 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009063 SourceLocation ClassLoc = ClassDecl->getLocation();
9064 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00009065
9066 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009067 // member of its class.
9068 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009069 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009070 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009071 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009072 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00009073 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009074 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00009075
Richard Smithb9d0b762012-07-27 04:22:15 +00009076 // Build an exception specification pointing back at this member.
9077 FunctionProtoType::ExtProtoInfo EPI;
9078 EPI.ExceptionSpecType = EST_Unevaluated;
9079 EPI.ExceptionSpecDecl = CopyConstructor;
9080 CopyConstructor->setType(
9081 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
9082
Douglas Gregor22584312010-07-02 23:41:54 +00009083 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00009084 ++ASTContext::NumImplicitCopyConstructorsDeclared;
9085
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009086 // Add the parameter to the constructor.
9087 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009088 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009089 /*IdentifierInfo=*/0,
9090 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00009091 SC_None,
9092 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009093 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00009094
Douglas Gregor23c94db2010-07-02 17:43:08 +00009095 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00009096 PushOnScopeChains(CopyConstructor, S, false);
9097 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00009098
Nico Weberafcc96a2012-01-23 03:19:29 +00009099 // C++11 [class.copy]p8:
9100 // ... If the class definition does not explicitly declare a copy
9101 // constructor, there is no user-declared move constructor, and there is no
9102 // user-declared move assignment operator, a copy constructor is implicitly
9103 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00009104 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00009105 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00009106
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009107 return CopyConstructor;
9108}
9109
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009110void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00009111 CXXConstructorDecl *CopyConstructor) {
9112 assert((CopyConstructor->isDefaulted() &&
9113 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009114 !CopyConstructor->doesThisDeclarationHaveABody() &&
9115 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009116 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00009117
Anders Carlsson63010a72010-04-23 16:24:12 +00009118 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009119 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009120
Eli Friedman9a14db32012-10-18 20:14:08 +00009121 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00009122 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009123
Sean Huntcbb67482011-01-08 20:30:50 +00009124 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009125 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00009126 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009127 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00009128 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009129 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009130 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009131 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
9132 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009133 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009134 /*isStmtExpr=*/false)
9135 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009136 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00009137 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009138
9139 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00009140 if (ASTMutationListener *L = getASTMutationListener()) {
9141 L->CompletedImplicitDefinition(CopyConstructor);
9142 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009143}
9144
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009145Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00009146Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
9147 CXXRecordDecl *ClassDecl = MD->getParent();
9148
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009149 // C++ [except.spec]p14:
9150 // An implicitly declared special member function (Clause 12) shall have an
9151 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00009152 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009153 if (ClassDecl->isInvalidDecl())
9154 return ExceptSpec;
9155
9156 // Direct base-class constructors.
9157 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
9158 BEnd = ClassDecl->bases_end();
9159 B != BEnd; ++B) {
9160 if (B->isVirtual()) // Handled below.
9161 continue;
9162
9163 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9164 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009165 CXXConstructorDecl *Constructor =
9166 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009167 // If this is a deleted function, add it anyway. This might be conformant
9168 // with the standard. This might not. I'm not sure. It might not matter.
9169 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009170 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009171 }
9172 }
9173
9174 // Virtual base-class constructors.
9175 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
9176 BEnd = ClassDecl->vbases_end();
9177 B != BEnd; ++B) {
9178 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9179 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009180 CXXConstructorDecl *Constructor =
9181 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009182 // If this is a deleted function, add it anyway. This might be conformant
9183 // with the standard. This might not. I'm not sure. It might not matter.
9184 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009185 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009186 }
9187 }
9188
9189 // Field constructors.
9190 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
9191 FEnd = ClassDecl->field_end();
9192 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00009193 QualType FieldType = Context.getBaseElementType(F->getType());
9194 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
9195 CXXConstructorDecl *Constructor =
9196 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009197 // If this is a deleted function, add it anyway. This might be conformant
9198 // with the standard. This might not. I'm not sure. It might not matter.
9199 // In particular, the problem is that this function never gets called. It
9200 // might just be ill-formed because this function attempts to refer to
9201 // a deleted function here.
9202 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009203 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009204 }
9205 }
9206
9207 return ExceptSpec;
9208}
9209
9210CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
9211 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00009212 // C++11 [class.copy]p9:
9213 // If the definition of a class X does not explicitly declare a move
9214 // constructor, one will be implicitly declared as defaulted if and only if:
9215 //
9216 // - [first 4 bullets]
9217 assert(ClassDecl->needsImplicitMoveConstructor());
9218
Richard Smithafb49182012-11-29 01:34:07 +00009219 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
9220 if (DSM.isAlreadyBeingDeclared())
9221 return 0;
9222
Richard Smith1c931be2012-04-02 18:40:40 +00009223 // [Checked after we build the declaration]
9224 // - the move assignment operator would not be implicitly defined as
9225 // deleted,
9226
9227 // [DR1402]:
9228 // - each of X's non-static data members and direct or virtual base classes
9229 // has a type that either has a move constructor or is trivially copyable.
9230 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
9231 ClassDecl->setFailedImplicitMoveConstructor();
9232 return 0;
9233 }
9234
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009235 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9236 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009237
Richard Smith7756afa2012-06-10 05:43:50 +00009238 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9239 CXXMoveConstructor,
9240 false);
9241
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009242 DeclarationName Name
9243 = Context.DeclarationNames.getCXXConstructorName(
9244 Context.getCanonicalType(ClassType));
9245 SourceLocation ClassLoc = ClassDecl->getLocation();
9246 DeclarationNameInfo NameInfo(Name, ClassLoc);
9247
9248 // C++0x [class.copy]p11:
9249 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009250 // member of its class.
9251 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009252 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009253 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009254 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009255 MoveConstructor->setAccess(AS_public);
9256 MoveConstructor->setDefaulted();
9257 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00009258
Richard Smithb9d0b762012-07-27 04:22:15 +00009259 // Build an exception specification pointing back at this member.
9260 FunctionProtoType::ExtProtoInfo EPI;
9261 EPI.ExceptionSpecType = EST_Unevaluated;
9262 EPI.ExceptionSpecDecl = MoveConstructor;
9263 MoveConstructor->setType(
9264 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
9265
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009266 // Add the parameter to the constructor.
9267 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
9268 ClassLoc, ClassLoc,
9269 /*IdentifierInfo=*/0,
9270 ArgType, /*TInfo=*/0,
9271 SC_None,
9272 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009273 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009274
9275 // C++0x [class.copy]p9:
9276 // If the definition of a class X does not explicitly declare a move
9277 // constructor, one will be implicitly declared as defaulted if and only if:
9278 // [...]
9279 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00009280 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009281 // Cache this result so that we don't try to generate this over and over
9282 // on every lookup, leaking memory and wasting time.
9283 ClassDecl->setFailedImplicitMoveConstructor();
9284 return 0;
9285 }
9286
9287 // Note that we have declared this constructor.
9288 ++ASTContext::NumImplicitMoveConstructorsDeclared;
9289
9290 if (Scope *S = getScopeForContext(ClassDecl))
9291 PushOnScopeChains(MoveConstructor, S, false);
9292 ClassDecl->addDecl(MoveConstructor);
9293
9294 return MoveConstructor;
9295}
9296
9297void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
9298 CXXConstructorDecl *MoveConstructor) {
9299 assert((MoveConstructor->isDefaulted() &&
9300 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009301 !MoveConstructor->doesThisDeclarationHaveABody() &&
9302 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009303 "DefineImplicitMoveConstructor - call it for implicit move ctor");
9304
9305 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
9306 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
9307
Eli Friedman9a14db32012-10-18 20:14:08 +00009308 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009309 DiagnosticErrorTrap Trap(Diags);
9310
9311 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
9312 Trap.hasErrorOccurred()) {
9313 Diag(CurrentLocation, diag::note_member_synthesized_at)
9314 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
9315 MoveConstructor->setInvalidDecl();
9316 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009317 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009318 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
9319 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009320 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009321 /*isStmtExpr=*/false)
9322 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009323 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009324 }
9325
9326 MoveConstructor->setUsed();
9327
9328 if (ASTMutationListener *L = getASTMutationListener()) {
9329 L->CompletedImplicitDefinition(MoveConstructor);
9330 }
9331}
9332
Douglas Gregore4e68d42012-02-15 19:33:52 +00009333bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
9334 return FD->isDeleted() &&
9335 (FD->isDefaulted() || FD->isImplicit()) &&
9336 isa<CXXMethodDecl>(FD);
9337}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009338
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009339/// \brief Mark the call operator of the given lambda closure type as "used".
9340static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
9341 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00009342 = cast<CXXMethodDecl>(
9343 *Lambda->lookup(
9344 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009345 CallOperator->setReferenced();
9346 CallOperator->setUsed();
9347}
9348
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009349void Sema::DefineImplicitLambdaToFunctionPointerConversion(
9350 SourceLocation CurrentLocation,
9351 CXXConversionDecl *Conv)
9352{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009353 CXXRecordDecl *Lambda = Conv->getParent();
9354
9355 // Make sure that the lambda call operator is marked used.
9356 markLambdaCallOperatorUsed(*this, Lambda);
9357
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009358 Conv->setUsed();
9359
Eli Friedman9a14db32012-10-18 20:14:08 +00009360 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009361 DiagnosticErrorTrap Trap(Diags);
9362
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009363 // Return the address of the __invoke function.
9364 DeclarationName InvokeName = &Context.Idents.get("__invoke");
9365 CXXMethodDecl *Invoke
9366 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
9367 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9368 VK_LValue, Conv->getLocation()).take();
9369 assert(FunctionRef && "Can't refer to __invoke function?");
9370 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
9371 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
9372 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009373 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009374
9375 // Fill in the __invoke function with a dummy implementation. IR generation
9376 // will fill in the actual details.
9377 Invoke->setUsed();
9378 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009379 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009380
9381 if (ASTMutationListener *L = getASTMutationListener()) {
9382 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009383 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009384 }
9385}
9386
9387void Sema::DefineImplicitLambdaToBlockPointerConversion(
9388 SourceLocation CurrentLocation,
9389 CXXConversionDecl *Conv)
9390{
9391 Conv->setUsed();
9392
Eli Friedman9a14db32012-10-18 20:14:08 +00009393 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009394 DiagnosticErrorTrap Trap(Diags);
9395
Douglas Gregorac1303e2012-02-22 05:02:47 +00009396 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009397 Expr *This = ActOnCXXThis(CurrentLocation).take();
9398 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009399
Eli Friedman23f02672012-03-01 04:01:32 +00009400 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9401 Conv->getLocation(),
9402 Conv, DerefThis);
9403
9404 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9405 // behavior. Note that only the general conversion function does this
9406 // (since it's unusable otherwise); in the case where we inline the
9407 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009408 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00009409 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9410 CK_CopyAndAutoreleaseBlockObject,
9411 BuildBlock.get(), 0, VK_RValue);
9412
9413 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009414 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009415 Conv->setInvalidDecl();
9416 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009417 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009418
Douglas Gregorac1303e2012-02-22 05:02:47 +00009419 // Create the return statement that returns the block from the conversion
9420 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009421 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009422 if (Return.isInvalid()) {
9423 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9424 Conv->setInvalidDecl();
9425 return;
9426 }
9427
9428 // Set the body of the conversion function.
9429 Stmt *ReturnS = Return.take();
9430 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9431 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009432 Conv->getLocation()));
9433
Douglas Gregorac1303e2012-02-22 05:02:47 +00009434 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009435 if (ASTMutationListener *L = getASTMutationListener()) {
9436 L->CompletedImplicitDefinition(Conv);
9437 }
9438}
9439
Douglas Gregorf52757d2012-03-10 06:53:13 +00009440/// \brief Determine whether the given list arguments contains exactly one
9441/// "real" (non-default) argument.
9442static bool hasOneRealArgument(MultiExprArg Args) {
9443 switch (Args.size()) {
9444 case 0:
9445 return false;
9446
9447 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009448 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009449 return false;
9450
9451 // fall through
9452 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009453 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009454 }
9455
9456 return false;
9457}
9458
John McCall60d7b3a2010-08-24 06:29:42 +00009459ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009460Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009461 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009462 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009463 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009464 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009465 unsigned ConstructKind,
9466 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009467 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009468
Douglas Gregor2f599792010-04-02 18:24:57 +00009469 // C++0x [class.copy]p34:
9470 // When certain criteria are met, an implementation is allowed to
9471 // omit the copy/move construction of a class object, even if the
9472 // copy/move constructor and/or destructor for the object have
9473 // side effects. [...]
9474 // - when a temporary class object that has not been bound to a
9475 // reference (12.2) would be copied/moved to a class object
9476 // with the same cv-unqualified type, the copy/move operation
9477 // can be omitted by constructing the temporary object
9478 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009479 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009480 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009481 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009482 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009483 }
Mike Stump1eb44332009-09-09 15:08:12 +00009484
9485 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009486 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009487 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009488}
9489
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009490/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9491/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009492ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009493Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9494 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009495 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009496 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009497 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009498 unsigned ConstructKind,
9499 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009500 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009501 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009502 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009503 HadMultipleCandidates, /*FIXME*/false,
9504 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009505 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9506 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009507}
9508
Mike Stump1eb44332009-09-09 15:08:12 +00009509bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009510 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009511 MultiExprArg Exprs,
9512 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009513 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009514 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009515 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009516 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009517 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009518 if (TempResult.isInvalid())
9519 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009520
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009521 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009522 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009523 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009524 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009525 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009526
Anders Carlssonfe2de492009-08-25 05:18:00 +00009527 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009528}
9529
John McCall68c6c9a2010-02-02 09:10:11 +00009530void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009531 if (VD->isInvalidDecl()) return;
9532
John McCall68c6c9a2010-02-02 09:10:11 +00009533 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009534 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009535 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009536 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009537
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009538 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009539 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009540 CheckDestructorAccess(VD->getLocation(), Destructor,
9541 PDiag(diag::err_access_dtor_var)
9542 << VD->getDeclName()
9543 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009544 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009545
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009546 if (!VD->hasGlobalStorage()) return;
9547
9548 // Emit warning for non-trivial dtor in global scope (a real global,
9549 // class-static, function-static).
9550 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9551
9552 // TODO: this should be re-enabled for static locals by !CXAAtExit
9553 if (!VD->isStaticLocal())
9554 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009555}
9556
Douglas Gregor39da0b82009-09-09 23:08:42 +00009557/// \brief Given a constructor and the set of arguments provided for the
9558/// constructor, convert the arguments and add any required default arguments
9559/// to form a proper call to this constructor.
9560///
9561/// \returns true if an error occurred, false otherwise.
9562bool
9563Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9564 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009565 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009566 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009567 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009568 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9569 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009570 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009571
9572 const FunctionProtoType *Proto
9573 = Constructor->getType()->getAs<FunctionProtoType>();
9574 assert(Proto && "Constructor without a prototype?");
9575 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009576
9577 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009578 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009579 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009580 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009581 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009582
9583 VariadicCallType CallType =
9584 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009585 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009586 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9587 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009588 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009589 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009590
9591 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9592
Richard Smith831421f2012-06-25 20:30:08 +00009593 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9594 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009595
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009596 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009597}
9598
Anders Carlsson20d45d22009-12-12 00:32:00 +00009599static inline bool
9600CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9601 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009602 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009603 if (isa<NamespaceDecl>(DC)) {
9604 return SemaRef.Diag(FnDecl->getLocation(),
9605 diag::err_operator_new_delete_declared_in_namespace)
9606 << FnDecl->getDeclName();
9607 }
9608
9609 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009610 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009611 return SemaRef.Diag(FnDecl->getLocation(),
9612 diag::err_operator_new_delete_declared_static)
9613 << FnDecl->getDeclName();
9614 }
9615
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009616 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009617}
9618
Anders Carlsson156c78e2009-12-13 17:53:43 +00009619static inline bool
9620CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9621 CanQualType ExpectedResultType,
9622 CanQualType ExpectedFirstParamType,
9623 unsigned DependentParamTypeDiag,
9624 unsigned InvalidParamTypeDiag) {
9625 QualType ResultType =
9626 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9627
9628 // Check that the result type is not dependent.
9629 if (ResultType->isDependentType())
9630 return SemaRef.Diag(FnDecl->getLocation(),
9631 diag::err_operator_new_delete_dependent_result_type)
9632 << FnDecl->getDeclName() << ExpectedResultType;
9633
9634 // Check that the result type is what we expect.
9635 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9636 return SemaRef.Diag(FnDecl->getLocation(),
9637 diag::err_operator_new_delete_invalid_result_type)
9638 << FnDecl->getDeclName() << ExpectedResultType;
9639
9640 // A function template must have at least 2 parameters.
9641 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9642 return SemaRef.Diag(FnDecl->getLocation(),
9643 diag::err_operator_new_delete_template_too_few_parameters)
9644 << FnDecl->getDeclName();
9645
9646 // The function decl must have at least 1 parameter.
9647 if (FnDecl->getNumParams() == 0)
9648 return SemaRef.Diag(FnDecl->getLocation(),
9649 diag::err_operator_new_delete_too_few_parameters)
9650 << FnDecl->getDeclName();
9651
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009652 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009653 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9654 if (FirstParamType->isDependentType())
9655 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9656 << FnDecl->getDeclName() << ExpectedFirstParamType;
9657
9658 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009659 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009660 ExpectedFirstParamType)
9661 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9662 << FnDecl->getDeclName() << ExpectedFirstParamType;
9663
9664 return false;
9665}
9666
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009667static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009668CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009669 // C++ [basic.stc.dynamic.allocation]p1:
9670 // A program is ill-formed if an allocation function is declared in a
9671 // namespace scope other than global scope or declared static in global
9672 // scope.
9673 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9674 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009675
9676 CanQualType SizeTy =
9677 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9678
9679 // C++ [basic.stc.dynamic.allocation]p1:
9680 // The return type shall be void*. The first parameter shall have type
9681 // std::size_t.
9682 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9683 SizeTy,
9684 diag::err_operator_new_dependent_param_type,
9685 diag::err_operator_new_param_type))
9686 return true;
9687
9688 // C++ [basic.stc.dynamic.allocation]p1:
9689 // The first parameter shall not have an associated default argument.
9690 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009691 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009692 diag::err_operator_new_default_arg)
9693 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9694
9695 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009696}
9697
9698static bool
Richard Smith444d3842012-10-20 08:26:51 +00009699CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009700 // C++ [basic.stc.dynamic.deallocation]p1:
9701 // A program is ill-formed if deallocation functions are declared in a
9702 // namespace scope other than global scope or declared static in global
9703 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009704 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9705 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009706
9707 // C++ [basic.stc.dynamic.deallocation]p2:
9708 // Each deallocation function shall return void and its first parameter
9709 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009710 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9711 SemaRef.Context.VoidPtrTy,
9712 diag::err_operator_delete_dependent_param_type,
9713 diag::err_operator_delete_param_type))
9714 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009715
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009716 return false;
9717}
9718
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009719/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9720/// of this overloaded operator is well-formed. If so, returns false;
9721/// otherwise, emits appropriate diagnostics and returns true.
9722bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009723 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009724 "Expected an overloaded operator declaration");
9725
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009726 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9727
Mike Stump1eb44332009-09-09 15:08:12 +00009728 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009729 // The allocation and deallocation functions, operator new,
9730 // operator new[], operator delete and operator delete[], are
9731 // described completely in 3.7.3. The attributes and restrictions
9732 // found in the rest of this subclause do not apply to them unless
9733 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009734 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009735 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009736
Anders Carlssona3ccda52009-12-12 00:26:23 +00009737 if (Op == OO_New || Op == OO_Array_New)
9738 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009739
9740 // C++ [over.oper]p6:
9741 // An operator function shall either be a non-static member
9742 // function or be a non-member function and have at least one
9743 // parameter whose type is a class, a reference to a class, an
9744 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009745 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9746 if (MethodDecl->isStatic())
9747 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009748 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009749 } else {
9750 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009751 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9752 ParamEnd = FnDecl->param_end();
9753 Param != ParamEnd; ++Param) {
9754 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009755 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9756 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009757 ClassOrEnumParam = true;
9758 break;
9759 }
9760 }
9761
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009762 if (!ClassOrEnumParam)
9763 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009764 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009765 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009766 }
9767
9768 // C++ [over.oper]p8:
9769 // An operator function cannot have default arguments (8.3.6),
9770 // except where explicitly stated below.
9771 //
Mike Stump1eb44332009-09-09 15:08:12 +00009772 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009773 // (C++ [over.call]p1).
9774 if (Op != OO_Call) {
9775 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9776 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009777 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009778 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009779 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009780 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009781 }
9782 }
9783
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009784 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9785 { false, false, false }
9786#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9787 , { Unary, Binary, MemberOnly }
9788#include "clang/Basic/OperatorKinds.def"
9789 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009790
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009791 bool CanBeUnaryOperator = OperatorUses[Op][0];
9792 bool CanBeBinaryOperator = OperatorUses[Op][1];
9793 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009794
9795 // C++ [over.oper]p8:
9796 // [...] Operator functions cannot have more or fewer parameters
9797 // than the number required for the corresponding operator, as
9798 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009799 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009800 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009801 if (Op != OO_Call &&
9802 ((NumParams == 1 && !CanBeUnaryOperator) ||
9803 (NumParams == 2 && !CanBeBinaryOperator) ||
9804 (NumParams < 1) || (NumParams > 2))) {
9805 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009806 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009807 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009808 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009809 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009810 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009811 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009812 assert(CanBeBinaryOperator &&
9813 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009814 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009815 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009816
Chris Lattner416e46f2008-11-21 07:57:12 +00009817 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009818 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009819 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009820
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009821 // Overloaded operators other than operator() cannot be variadic.
9822 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009823 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009824 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009825 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009826 }
9827
9828 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009829 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9830 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009831 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009832 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009833 }
9834
9835 // C++ [over.inc]p1:
9836 // The user-defined function called operator++ implements the
9837 // prefix and postfix ++ operator. If this function is a member
9838 // function with no parameters, or a non-member function with one
9839 // parameter of class or enumeration type, it defines the prefix
9840 // increment operator ++ for objects of that type. If the function
9841 // is a member function with one parameter (which shall be of type
9842 // int) or a non-member function with two parameters (the second
9843 // of which shall be of type int), it defines the postfix
9844 // increment operator ++ for objects of that type.
9845 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9846 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9847 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009848 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009849 ParamIsInt = BT->getKind() == BuiltinType::Int;
9850
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009851 if (!ParamIsInt)
9852 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009853 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009854 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009855 }
9856
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009857 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009858}
Chris Lattner5a003a42008-12-17 07:09:26 +00009859
Sean Hunta6c058d2010-01-13 09:01:02 +00009860/// CheckLiteralOperatorDeclaration - Check whether the declaration
9861/// of this literal operator function is well-formed. If so, returns
9862/// false; otherwise, emits appropriate diagnostics and returns true.
9863bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009864 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009865 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9866 << FnDecl->getDeclName();
9867 return true;
9868 }
9869
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009870 if (FnDecl->isExternC()) {
9871 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9872 return true;
9873 }
9874
Sean Hunta6c058d2010-01-13 09:01:02 +00009875 bool Valid = false;
9876
Richard Smith36f5cfe2012-03-09 08:00:36 +00009877 // This might be the definition of a literal operator template.
9878 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9879 // This might be a specialization of a literal operator template.
9880 if (!TpDecl)
9881 TpDecl = FnDecl->getPrimaryTemplate();
9882
Sean Hunt216c2782010-04-07 23:11:06 +00009883 // template <char...> type operator "" name() is the only valid template
9884 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009885 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009886 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009887 // Must have only one template parameter
9888 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9889 if (Params->size() == 1) {
9890 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009891 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009892
Sean Hunt216c2782010-04-07 23:11:06 +00009893 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009894 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9895 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9896 Valid = true;
9897 }
9898 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009899 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009900 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009901 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9902
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009903 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009904
Sean Hunt30019c02010-04-07 22:57:35 +00009905 // unsigned long long int, long double, and any character type are allowed
9906 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009907 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9908 Context.hasSameType(T, Context.LongDoubleTy) ||
9909 Context.hasSameType(T, Context.CharTy) ||
9910 Context.hasSameType(T, Context.WCharTy) ||
9911 Context.hasSameType(T, Context.Char16Ty) ||
9912 Context.hasSameType(T, Context.Char32Ty)) {
9913 if (++Param == FnDecl->param_end())
9914 Valid = true;
9915 goto FinishedParams;
9916 }
9917
Sean Hunt30019c02010-04-07 22:57:35 +00009918 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009919 const PointerType *PT = T->getAs<PointerType>();
9920 if (!PT)
9921 goto FinishedParams;
9922 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009923 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009924 goto FinishedParams;
9925 T = T.getUnqualifiedType();
9926
9927 // Move on to the second parameter;
9928 ++Param;
9929
9930 // If there is no second parameter, the first must be a const char *
9931 if (Param == FnDecl->param_end()) {
9932 if (Context.hasSameType(T, Context.CharTy))
9933 Valid = true;
9934 goto FinishedParams;
9935 }
9936
9937 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9938 // are allowed as the first parameter to a two-parameter function
9939 if (!(Context.hasSameType(T, Context.CharTy) ||
9940 Context.hasSameType(T, Context.WCharTy) ||
9941 Context.hasSameType(T, Context.Char16Ty) ||
9942 Context.hasSameType(T, Context.Char32Ty)))
9943 goto FinishedParams;
9944
9945 // The second and final parameter must be an std::size_t
9946 T = (*Param)->getType().getUnqualifiedType();
9947 if (Context.hasSameType(T, Context.getSizeType()) &&
9948 ++Param == FnDecl->param_end())
9949 Valid = true;
9950 }
9951
9952 // FIXME: This diagnostic is absolutely terrible.
9953FinishedParams:
9954 if (!Valid) {
9955 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9956 << FnDecl->getDeclName();
9957 return true;
9958 }
9959
Richard Smitha9e88b22012-03-09 08:16:22 +00009960 // A parameter-declaration-clause containing a default argument is not
9961 // equivalent to any of the permitted forms.
9962 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9963 ParamEnd = FnDecl->param_end();
9964 Param != ParamEnd; ++Param) {
9965 if ((*Param)->hasDefaultArg()) {
9966 Diag((*Param)->getDefaultArgRange().getBegin(),
9967 diag::err_literal_operator_default_argument)
9968 << (*Param)->getDefaultArgRange();
9969 break;
9970 }
9971 }
9972
Richard Smith2fb4ae32012-03-08 02:39:21 +00009973 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009974 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9975 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009976 // C++11 [usrlit.suffix]p1:
9977 // Literal suffix identifiers that do not start with an underscore
9978 // are reserved for future standardization.
9979 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009980 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009981
Sean Hunta6c058d2010-01-13 09:01:02 +00009982 return false;
9983}
9984
Douglas Gregor074149e2009-01-05 19:45:36 +00009985/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9986/// linkage specification, including the language and (if present)
9987/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9988/// the location of the language string literal, which is provided
9989/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9990/// the '{' brace. Otherwise, this linkage specification does not
9991/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009992Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9993 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009994 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009995 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009996 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009997 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009998 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009999 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +000010000 Language = LinkageSpecDecl::lang_cxx;
10001 else {
Douglas Gregor074149e2009-01-05 19:45:36 +000010002 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +000010003 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010004 }
Mike Stump1eb44332009-09-09 15:08:12 +000010005
Chris Lattnercc98eac2008-12-17 07:13:27 +000010006 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +000010007
Douglas Gregor074149e2009-01-05 19:45:36 +000010008 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010009 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010010 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +000010011 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +000010012 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010013}
10014
Abramo Bagnara35f9a192010-07-30 16:47:02 +000010015/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +000010016/// the C++ linkage specification LinkageSpec. If RBraceLoc is
10017/// valid, it's the position of the closing '}' brace in a linkage
10018/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +000010019Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010020 Decl *LinkageSpec,
10021 SourceLocation RBraceLoc) {
10022 if (LinkageSpec) {
10023 if (RBraceLoc.isValid()) {
10024 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
10025 LSDecl->setRBraceLoc(RBraceLoc);
10026 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010027 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010028 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010029 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +000010030}
10031
Douglas Gregord308e622009-05-18 20:51:54 +000010032/// \brief Perform semantic analysis for the variable declaration that
10033/// occurs within a C++ catch clause, returning the newly-created
10034/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010035VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +000010036 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010037 SourceLocation StartLoc,
10038 SourceLocation Loc,
10039 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +000010040 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +000010041 QualType ExDeclType = TInfo->getType();
10042
Sebastian Redl4b07b292008-12-22 19:15:10 +000010043 // Arrays and functions decay.
10044 if (ExDeclType->isArrayType())
10045 ExDeclType = Context.getArrayDecayedType(ExDeclType);
10046 else if (ExDeclType->isFunctionType())
10047 ExDeclType = Context.getPointerType(ExDeclType);
10048
10049 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
10050 // The exception-declaration shall not denote a pointer or reference to an
10051 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010052 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +000010053 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +000010054 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010055 Invalid = true;
10056 }
Douglas Gregord308e622009-05-18 20:51:54 +000010057
Sebastian Redl4b07b292008-12-22 19:15:10 +000010058 QualType BaseType = ExDeclType;
10059 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +000010060 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +000010061 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010062 BaseType = Ptr->getPointeeType();
10063 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010064 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +000010065 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010066 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010067 BaseType = Ref->getPointeeType();
10068 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010069 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010070 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010071 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +000010072 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +000010073 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010074
Mike Stump1eb44332009-09-09 15:08:12 +000010075 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +000010076 RequireNonAbstractType(Loc, ExDeclType,
10077 diag::err_abstract_type_in_decl,
10078 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +000010079 Invalid = true;
10080
John McCall5a180392010-07-24 00:37:23 +000010081 // Only the non-fragile NeXT runtime currently supports C++ catches
10082 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +000010083 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +000010084 QualType T = ExDeclType;
10085 if (const ReferenceType *RT = T->getAs<ReferenceType>())
10086 T = RT->getPointeeType();
10087
10088 if (T->isObjCObjectType()) {
10089 Diag(Loc, diag::err_objc_object_catch);
10090 Invalid = true;
10091 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +000010092 // FIXME: should this be a test for macosx-fragile specifically?
10093 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +000010094 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +000010095 }
10096 }
10097
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010098 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
10099 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +000010100 ExDecl->setExceptionVariable(true);
10101
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010102 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000010103 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010104 Invalid = true;
10105
Douglas Gregorc41b8782011-07-06 18:14:43 +000010106 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +000010107 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +000010108 // C++ [except.handle]p16:
10109 // The object declared in an exception-declaration or, if the
10110 // exception-declaration does not specify a name, a temporary (12.2) is
10111 // copy-initialized (8.5) from the exception object. [...]
10112 // The object is destroyed when the handler exits, after the destruction
10113 // of any automatic objects initialized within the handler.
10114 //
10115 // We just pretend to initialize the object with itself, then make sure
10116 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +000010117 QualType initType = ExDeclType;
10118
10119 InitializedEntity entity =
10120 InitializedEntity::InitializeVariable(ExDecl);
10121 InitializationKind initKind =
10122 InitializationKind::CreateCopy(Loc, SourceLocation());
10123
10124 Expr *opaqueValue =
10125 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
10126 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
10127 ExprResult result = sequence.Perform(*this, entity, initKind,
10128 MultiExprArg(&opaqueValue, 1));
10129 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +000010130 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +000010131 else {
10132 // If the constructor used was non-trivial, set this as the
10133 // "initializer".
10134 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
10135 if (!construct->getConstructor()->isTrivial()) {
10136 Expr *init = MaybeCreateExprWithCleanups(construct);
10137 ExDecl->setInit(init);
10138 }
10139
10140 // And make sure it's destructable.
10141 FinalizeVarWithDestructor(ExDecl, recordType);
10142 }
Douglas Gregor6d182892010-03-05 23:38:39 +000010143 }
10144 }
10145
Douglas Gregord308e622009-05-18 20:51:54 +000010146 if (Invalid)
10147 ExDecl->setInvalidDecl();
10148
10149 return ExDecl;
10150}
10151
10152/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
10153/// handler.
John McCalld226f652010-08-21 09:40:31 +000010154Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +000010155 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +000010156 bool Invalid = D.isInvalidType();
10157
10158 // Check for unexpanded parameter packs.
10159 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
10160 UPPC_ExceptionType)) {
10161 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
10162 D.getIdentifierLoc());
10163 Invalid = true;
10164 }
10165
Sebastian Redl4b07b292008-12-22 19:15:10 +000010166 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +000010167 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +000010168 LookupOrdinaryName,
10169 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010170 // The scope should be freshly made just for us. There is just no way
10171 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +000010172 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +000010173 if (PrevDecl->isTemplateParameter()) {
10174 // Maybe we will complain about the shadowed template parameter.
10175 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +000010176 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010177 }
10178 }
10179
Chris Lattnereaaebc72009-04-25 08:06:05 +000010180 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010181 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
10182 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +000010183 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010184 }
10185
Douglas Gregor83cb9422010-09-09 17:09:21 +000010186 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +000010187 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010188 D.getIdentifierLoc(),
10189 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +000010190 if (Invalid)
10191 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000010192
Sebastian Redl4b07b292008-12-22 19:15:10 +000010193 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010194 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +000010195 PushOnScopeChains(ExDecl, S);
10196 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010197 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +000010198
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000010199 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +000010200 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010201}
Anders Carlssonfb311762009-03-14 00:25:26 +000010202
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010203Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +000010204 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +000010205 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010206 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +000010207 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +000010208
Richard Smithe3f470a2012-07-11 22:37:56 +000010209 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
10210 return 0;
10211
10212 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
10213 AssertMessage, RParenLoc, false);
10214}
10215
10216Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
10217 Expr *AssertExpr,
10218 StringLiteral *AssertMessage,
10219 SourceLocation RParenLoc,
10220 bool Failed) {
10221 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
10222 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +000010223 // In a static_assert-declaration, the constant-expression shall be a
10224 // constant expression that can be contextually converted to bool.
10225 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
10226 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010227 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +000010228
Richard Smithdaaefc52011-12-14 23:32:26 +000010229 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +000010230 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +000010231 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +000010232 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010233 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +000010234
Richard Smithe3f470a2012-07-11 22:37:56 +000010235 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +000010236 llvm::SmallString<256> MsgBuffer;
10237 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +000010238 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010239 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +000010240 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +000010241 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +000010242 }
Anders Carlssonc3082412009-03-14 00:33:21 +000010243 }
Mike Stump1eb44332009-09-09 15:08:12 +000010244
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010245 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +000010246 AssertExpr, AssertMessage, RParenLoc,
10247 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +000010248
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010249 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +000010250 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +000010251}
Sebastian Redl50de12f2009-03-24 22:27:57 +000010252
Douglas Gregor1d869352010-04-07 16:53:43 +000010253/// \brief Perform semantic analysis of the given friend type declaration.
10254///
10255/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +000010256FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +000010257 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010258 TypeSourceInfo *TSInfo) {
10259 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
10260
10261 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +000010262 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +000010263
Richard Smith6b130222011-10-18 21:39:00 +000010264 // C++03 [class.friend]p2:
10265 // An elaborated-type-specifier shall be used in a friend declaration
10266 // for a class.*
10267 //
10268 // * The class-key of the elaborated-type-specifier is required.
10269 if (!ActiveTemplateInstantiations.empty()) {
10270 // Do not complain about the form of friend template types during
10271 // template instantiation; we will already have complained when the
10272 // template was declared.
10273 } else if (!T->isElaboratedTypeSpecifier()) {
10274 // If we evaluated the type to a record type, suggest putting
10275 // a tag in front.
10276 if (const RecordType *RT = T->getAs<RecordType>()) {
10277 RecordDecl *RD = RT->getDecl();
10278
10279 std::string InsertionText = std::string(" ") + RD->getKindName();
10280
10281 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010282 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +000010283 diag::warn_cxx98_compat_unelaborated_friend_type :
10284 diag::ext_unelaborated_friend_type)
10285 << (unsigned) RD->getTagKind()
10286 << T
10287 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
10288 InsertionText);
10289 } else {
10290 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +000010291 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +000010292 diag::warn_cxx98_compat_nonclass_type_friend :
10293 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +000010294 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000010295 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000010296 }
Richard Smith6b130222011-10-18 21:39:00 +000010297 } else if (T->getAs<EnumType>()) {
10298 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +000010299 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +000010300 diag::warn_cxx98_compat_enum_friend :
10301 diag::ext_enum_friend)
10302 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000010303 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000010304 }
10305
Richard Smithd6f80da2012-09-20 01:31:00 +000010306 // C++11 [class.friend]p3:
10307 // A friend declaration that does not declare a function shall have one
10308 // of the following forms:
10309 // friend elaborated-type-specifier ;
10310 // friend simple-type-specifier ;
10311 // friend typename-specifier ;
10312 if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
10313 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
10314
Douglas Gregor06245bf2010-04-07 17:57:12 +000010315 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +000010316 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +000010317 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +000010318 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +000010319}
10320
John McCall9a34edb2010-10-19 01:40:49 +000010321/// Handle a friend tag declaration where the scope specifier was
10322/// templated.
10323Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
10324 unsigned TagSpec, SourceLocation TagLoc,
10325 CXXScopeSpec &SS,
10326 IdentifierInfo *Name, SourceLocation NameLoc,
10327 AttributeList *Attr,
10328 MultiTemplateParamsArg TempParamLists) {
10329 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
10330
10331 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +000010332 bool Invalid = false;
10333
10334 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +000010335 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010336 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +000010337 TempParamLists.size(),
10338 /*friend*/ true,
10339 isExplicitSpecialization,
10340 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +000010341 if (TemplateParams->size() > 0) {
10342 // This is a declaration of a class template.
10343 if (Invalid)
10344 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000010345
Eric Christopher4110e132011-07-21 05:34:24 +000010346 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
10347 SS, Name, NameLoc, Attr,
10348 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +000010349 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +000010350 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010351 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +000010352 } else {
10353 // The "template<>" header is extraneous.
10354 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
10355 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
10356 isExplicitSpecialization = true;
10357 }
10358 }
10359
10360 if (Invalid) return 0;
10361
John McCall9a34edb2010-10-19 01:40:49 +000010362 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010363 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010364 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000010365 isAllExplicitSpecializations = false;
10366 break;
10367 }
10368 }
10369
10370 // FIXME: don't ignore attributes.
10371
10372 // If it's explicit specializations all the way down, just forget
10373 // about the template header and build an appropriate non-templated
10374 // friend. TODO: for source fidelity, remember the headers.
10375 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010376 if (SS.isEmpty()) {
10377 bool Owned = false;
10378 bool IsDependent = false;
10379 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10380 Attr, AS_public,
10381 /*ModulePrivateLoc=*/SourceLocation(),
10382 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010383 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010384 /*ScopedEnumUsesClassTag=*/false,
10385 /*UnderlyingType=*/TypeResult());
10386 }
10387
Douglas Gregor2494dd02011-03-01 01:34:45 +000010388 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000010389 ElaboratedTypeKeyword Keyword
10390 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010391 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000010392 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010393 if (T.isNull())
10394 return 0;
10395
10396 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10397 if (isa<DependentNameType>(T)) {
10398 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010399 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010400 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010401 TL.setNameLoc(NameLoc);
10402 } else {
10403 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010404 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000010405 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010406 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
10407 }
10408
10409 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10410 TSI, FriendLoc);
10411 Friend->setAccess(AS_public);
10412 CurContext->addDecl(Friend);
10413 return Friend;
10414 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010415
10416 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10417
10418
John McCall9a34edb2010-10-19 01:40:49 +000010419
10420 // Handle the case of a templated-scope friend class. e.g.
10421 // template <class T> class A<T>::B;
10422 // FIXME: we don't support these right now.
10423 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10424 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10425 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10426 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010427 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010428 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010429 TL.setNameLoc(NameLoc);
10430
10431 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10432 TSI, FriendLoc);
10433 Friend->setAccess(AS_public);
10434 Friend->setUnsupportedFriend(true);
10435 CurContext->addDecl(Friend);
10436 return Friend;
10437}
10438
10439
John McCalldd4a3b02009-09-16 22:47:08 +000010440/// Handle a friend type declaration. This works in tandem with
10441/// ActOnTag.
10442///
10443/// Notes on friend class templates:
10444///
10445/// We generally treat friend class declarations as if they were
10446/// declaring a class. So, for example, the elaborated type specifier
10447/// in a friend declaration is required to obey the restrictions of a
10448/// class-head (i.e. no typedefs in the scope chain), template
10449/// parameters are required to match up with simple template-ids, &c.
10450/// However, unlike when declaring a template specialization, it's
10451/// okay to refer to a template specialization without an empty
10452/// template parameter declaration, e.g.
10453/// friend class A<T>::B<unsigned>;
10454/// We permit this as a special case; if there are any template
10455/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010456/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010457Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010458 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010459 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010460
10461 assert(DS.isFriendSpecified());
10462 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10463
John McCalldd4a3b02009-09-16 22:47:08 +000010464 // Try to convert the decl specifier to a type. This works for
10465 // friend templates because ActOnTag never produces a ClassTemplateDecl
10466 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010467 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010468 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10469 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010470 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010471 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010472
Douglas Gregor6ccab972010-12-16 01:14:37 +000010473 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10474 return 0;
10475
John McCalldd4a3b02009-09-16 22:47:08 +000010476 // This is definitely an error in C++98. It's probably meant to
10477 // be forbidden in C++0x, too, but the specification is just
10478 // poorly written.
10479 //
10480 // The problem is with declarations like the following:
10481 // template <T> friend A<T>::foo;
10482 // where deciding whether a class C is a friend or not now hinges
10483 // on whether there exists an instantiation of A that causes
10484 // 'foo' to equal C. There are restrictions on class-heads
10485 // (which we declare (by fiat) elaborated friend declarations to
10486 // be) that makes this tractable.
10487 //
10488 // FIXME: handle "template <> friend class A<T>;", which
10489 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010490 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010491 Diag(Loc, diag::err_tagless_friend_type_template)
10492 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010493 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010494 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010495
John McCall02cace72009-08-28 07:59:38 +000010496 // C++98 [class.friend]p1: A friend of a class is a function
10497 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010498 // This is fixed in DR77, which just barely didn't make the C++03
10499 // deadline. It's also a very silly restriction that seriously
10500 // affects inner classes and which nobody else seems to implement;
10501 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010502 //
10503 // But note that we could warn about it: it's always useless to
10504 // friend one of your own members (it's not, however, worthless to
10505 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010506
John McCalldd4a3b02009-09-16 22:47:08 +000010507 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010508 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010509 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010510 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010511 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010512 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010513 DS.getFriendSpecLoc());
10514 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010515 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010516
10517 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010518 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010519
John McCalldd4a3b02009-09-16 22:47:08 +000010520 D->setAccess(AS_public);
10521 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010522
John McCalld226f652010-08-21 09:40:31 +000010523 return D;
John McCall02cace72009-08-28 07:59:38 +000010524}
10525
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010526Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010527 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010528 const DeclSpec &DS = D.getDeclSpec();
10529
10530 assert(DS.isFriendSpecified());
10531 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10532
10533 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010534 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010535
10536 // C++ [class.friend]p1
10537 // A friend of a class is a function or class....
10538 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010539 // It *doesn't* see through dependent types, which is correct
10540 // according to [temp.arg.type]p3:
10541 // If a declaration acquires a function type through a
10542 // type dependent on a template-parameter and this causes
10543 // a declaration that does not use the syntactic form of a
10544 // function declarator to have a function type, the program
10545 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010546 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010547 Diag(Loc, diag::err_unexpected_friend);
10548
10549 // It might be worthwhile to try to recover by creating an
10550 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010551 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010552 }
10553
10554 // C++ [namespace.memdef]p3
10555 // - If a friend declaration in a non-local class first declares a
10556 // class or function, the friend class or function is a member
10557 // of the innermost enclosing namespace.
10558 // - The name of the friend is not found by simple name lookup
10559 // until a matching declaration is provided in that namespace
10560 // scope (either before or after the class declaration granting
10561 // friendship).
10562 // - If a friend function is called, its name may be found by the
10563 // name lookup that considers functions from namespaces and
10564 // classes associated with the types of the function arguments.
10565 // - When looking for a prior declaration of a class or a function
10566 // declared as a friend, scopes outside the innermost enclosing
10567 // namespace scope are not considered.
10568
John McCall337ec3d2010-10-12 23:13:28 +000010569 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010570 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10571 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010572 assert(Name);
10573
Douglas Gregor6ccab972010-12-16 01:14:37 +000010574 // Check for unexpanded parameter packs.
10575 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10576 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10577 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10578 return 0;
10579
John McCall67d1a672009-08-06 02:15:43 +000010580 // The context we found the declaration in, or in which we should
10581 // create the declaration.
10582 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010583 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010584 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010585 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010586
John McCall337ec3d2010-10-12 23:13:28 +000010587 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010588
John McCall337ec3d2010-10-12 23:13:28 +000010589 // There are four cases here.
10590 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010591 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010592 // there as appropriate.
10593 // Recover from invalid scope qualifiers as if they just weren't there.
10594 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010595 // C++0x [namespace.memdef]p3:
10596 // If the name in a friend declaration is neither qualified nor
10597 // a template-id and the declaration is a function or an
10598 // elaborated-type-specifier, the lookup to determine whether
10599 // the entity has been previously declared shall not consider
10600 // any scopes outside the innermost enclosing namespace.
10601 // C++0x [class.friend]p11:
10602 // If a friend declaration appears in a local class and the name
10603 // specified is an unqualified name, a prior declaration is
10604 // looked up without considering scopes that are outside the
10605 // innermost enclosing non-class scope. For a friend function
10606 // declaration, if there is no prior declaration, the program is
10607 // ill-formed.
10608 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010609 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010610
John McCall29ae6e52010-10-13 05:45:15 +000010611 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010612 DC = CurContext;
10613 while (true) {
10614 // Skip class contexts. If someone can cite chapter and verse
10615 // for this behavior, that would be nice --- it's what GCC and
10616 // EDG do, and it seems like a reasonable intent, but the spec
10617 // really only says that checks for unqualified existing
10618 // declarations should stop at the nearest enclosing namespace,
10619 // not that they should only consider the nearest enclosing
10620 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010621 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010622 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010623
John McCall68263142009-11-18 22:49:29 +000010624 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010625
10626 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010627 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010628 break;
John McCall29ae6e52010-10-13 05:45:15 +000010629
John McCall8a407372010-10-14 22:22:28 +000010630 if (isTemplateId) {
10631 if (isa<TranslationUnitDecl>(DC)) break;
10632 } else {
10633 if (DC->isFileContext()) break;
10634 }
John McCall67d1a672009-08-06 02:15:43 +000010635 DC = DC->getParent();
10636 }
10637
10638 // C++ [class.friend]p1: A friend of a class is a function or
10639 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010640 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010641 // Most C++ 98 compilers do seem to give an error here, so
10642 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010643 if (!Previous.empty() && DC->Equals(CurContext))
10644 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010645 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010646 diag::warn_cxx98_compat_friend_is_member :
10647 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010648
John McCall380aaa42010-10-13 06:22:15 +000010649 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010650
Douglas Gregor883af832011-10-10 01:11:59 +000010651 // C++ [class.friend]p6:
10652 // A function can be defined in a friend declaration of a class if and
10653 // only if the class is a non-local class (9.8), the function name is
10654 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010655 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010656 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10657 }
10658
John McCall337ec3d2010-10-12 23:13:28 +000010659 // - There's a non-dependent scope specifier, in which case we
10660 // compute it and do a previous lookup there for a function
10661 // or function template.
10662 } else if (!SS.getScopeRep()->isDependent()) {
10663 DC = computeDeclContext(SS);
10664 if (!DC) return 0;
10665
10666 if (RequireCompleteDeclContext(SS, DC)) return 0;
10667
10668 LookupQualifiedName(Previous, DC);
10669
10670 // Ignore things found implicitly in the wrong scope.
10671 // TODO: better diagnostics for this case. Suggesting the right
10672 // qualified scope would be nice...
10673 LookupResult::Filter F = Previous.makeFilter();
10674 while (F.hasNext()) {
10675 NamedDecl *D = F.next();
10676 if (!DC->InEnclosingNamespaceSetOf(
10677 D->getDeclContext()->getRedeclContext()))
10678 F.erase();
10679 }
10680 F.done();
10681
10682 if (Previous.empty()) {
10683 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010684 Diag(Loc, diag::err_qualified_friend_not_found)
10685 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010686 return 0;
10687 }
10688
10689 // C++ [class.friend]p1: A friend of a class is a function or
10690 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010691 if (DC->Equals(CurContext))
10692 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010693 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010694 diag::warn_cxx98_compat_friend_is_member :
10695 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010696
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010697 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010698 // C++ [class.friend]p6:
10699 // A function can be defined in a friend declaration of a class if and
10700 // only if the class is a non-local class (9.8), the function name is
10701 // unqualified, and the function has namespace scope.
10702 SemaDiagnosticBuilder DB
10703 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10704
10705 DB << SS.getScopeRep();
10706 if (DC->isFileContext())
10707 DB << FixItHint::CreateRemoval(SS.getRange());
10708 SS.clear();
10709 }
John McCall337ec3d2010-10-12 23:13:28 +000010710
10711 // - There's a scope specifier that does not match any template
10712 // parameter lists, in which case we use some arbitrary context,
10713 // create a method or method template, and wait for instantiation.
10714 // - There's a scope specifier that does match some template
10715 // parameter lists, which we don't handle right now.
10716 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010717 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010718 // C++ [class.friend]p6:
10719 // A function can be defined in a friend declaration of a class if and
10720 // only if the class is a non-local class (9.8), the function name is
10721 // unqualified, and the function has namespace scope.
10722 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10723 << SS.getScopeRep();
10724 }
10725
John McCall337ec3d2010-10-12 23:13:28 +000010726 DC = CurContext;
10727 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010728 }
Douglas Gregor883af832011-10-10 01:11:59 +000010729
John McCall29ae6e52010-10-13 05:45:15 +000010730 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010731 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010732 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10733 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10734 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010735 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010736 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10737 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010738 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010739 }
John McCall67d1a672009-08-06 02:15:43 +000010740 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010741
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010742 // FIXME: This is an egregious hack to cope with cases where the scope stack
10743 // does not contain the declaration context, i.e., in an out-of-line
10744 // definition of a class.
10745 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10746 if (!DCScope) {
10747 FakeDCScope.setEntity(DC);
10748 DCScope = &FakeDCScope;
10749 }
10750
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010751 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010752 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010753 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010754 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010755
Douglas Gregor182ddf02009-09-28 00:08:27 +000010756 assert(ND->getDeclContext() == DC);
10757 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010758
John McCallab88d972009-08-31 22:39:49 +000010759 // Add the function declaration to the appropriate lookup tables,
10760 // adjusting the redeclarations list as necessary. We don't
10761 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010762 //
John McCallab88d972009-08-31 22:39:49 +000010763 // Also update the scope-based lookup if the target context's
10764 // lookup context is in lexical scope.
10765 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010766 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010767 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010768 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010769 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010770 }
John McCall02cace72009-08-28 07:59:38 +000010771
10772 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010773 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010774 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010775 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010776 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010777
John McCall1f2e1a92012-08-10 03:15:35 +000010778 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010779 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010780 } else {
10781 if (DC->isRecord()) CheckFriendAccess(ND);
10782
John McCall6102ca12010-10-16 06:59:13 +000010783 FunctionDecl *FD;
10784 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10785 FD = FTD->getTemplatedDecl();
10786 else
10787 FD = cast<FunctionDecl>(ND);
10788
10789 // Mark templated-scope function declarations as unsupported.
10790 if (FD->getNumTemplateParameterLists())
10791 FrD->setUnsupportedFriend(true);
10792 }
John McCall337ec3d2010-10-12 23:13:28 +000010793
John McCalld226f652010-08-21 09:40:31 +000010794 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010795}
10796
John McCalld226f652010-08-21 09:40:31 +000010797void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10798 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010799
Sebastian Redl50de12f2009-03-24 22:27:57 +000010800 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10801 if (!Fn) {
10802 Diag(DelLoc, diag::err_deleted_non_function);
10803 return;
10804 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010805 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010806 // Don't consider the implicit declaration we generate for explicit
10807 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010808 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10809 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010810 Diag(DelLoc, diag::err_deleted_decl_not_first);
10811 Diag(Prev->getLocation(), diag::note_previous_declaration);
10812 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010813 // If the declaration wasn't the first, we delete the function anyway for
10814 // recovery.
10815 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010816 Fn->setDeletedAsWritten();
Sebastian Redl50de12f2009-03-24 22:27:57 +000010817}
Sebastian Redl13e88542009-04-27 21:33:24 +000010818
Sean Hunte4246a62011-05-12 06:15:49 +000010819void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10820 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10821
10822 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010823 if (MD->getParent()->isDependentType()) {
10824 MD->setDefaulted();
10825 MD->setExplicitlyDefaulted();
10826 return;
10827 }
10828
Sean Hunte4246a62011-05-12 06:15:49 +000010829 CXXSpecialMember Member = getSpecialMember(MD);
10830 if (Member == CXXInvalid) {
10831 Diag(DefaultLoc, diag::err_default_special_members);
10832 return;
10833 }
10834
10835 MD->setDefaulted();
10836 MD->setExplicitlyDefaulted();
10837
Sean Huntcd10dec2011-05-23 23:14:04 +000010838 // If this definition appears within the record, do the checking when
10839 // the record is complete.
10840 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010841 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010842 // Find the uninstantiated declaration that actually had the '= default'
10843 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010844 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010845
10846 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010847 return;
10848
Richard Smithb9d0b762012-07-27 04:22:15 +000010849 CheckExplicitlyDefaultedSpecialMember(MD);
10850
Sean Hunte4246a62011-05-12 06:15:49 +000010851 switch (Member) {
10852 case CXXDefaultConstructor: {
10853 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010854 if (!CD->isInvalidDecl())
10855 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10856 break;
10857 }
10858
10859 case CXXCopyConstructor: {
10860 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010861 if (!CD->isInvalidDecl())
10862 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010863 break;
10864 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010865
Sean Hunt2b188082011-05-14 05:23:28 +000010866 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010867 if (!MD->isInvalidDecl())
10868 DefineImplicitCopyAssignment(DefaultLoc, MD);
10869 break;
10870 }
10871
Sean Huntcb45a0f2011-05-12 22:46:25 +000010872 case CXXDestructor: {
10873 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010874 if (!DD->isInvalidDecl())
10875 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010876 break;
10877 }
10878
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010879 case CXXMoveConstructor: {
10880 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010881 if (!CD->isInvalidDecl())
10882 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010883 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010884 }
Sean Hunt82713172011-05-25 23:16:36 +000010885
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010886 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010887 if (!MD->isInvalidDecl())
10888 DefineImplicitMoveAssignment(DefaultLoc, MD);
10889 break;
10890 }
10891
10892 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010893 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010894 }
10895 } else {
10896 Diag(DefaultLoc, diag::err_default_special_members);
10897 }
10898}
10899
Sebastian Redl13e88542009-04-27 21:33:24 +000010900static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010901 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010902 Stmt *SubStmt = *CI;
10903 if (!SubStmt)
10904 continue;
10905 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010906 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010907 diag::err_return_in_constructor_handler);
10908 if (!isa<Expr>(SubStmt))
10909 SearchForReturnInStmt(Self, SubStmt);
10910 }
10911}
10912
10913void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10914 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10915 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10916 SearchForReturnInStmt(*this, Handler);
10917 }
10918}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010919
Mike Stump1eb44332009-09-09 15:08:12 +000010920bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010921 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010922 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10923 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010924
Chandler Carruth73857792010-02-15 11:53:20 +000010925 if (Context.hasSameType(NewTy, OldTy) ||
10926 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010927 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010928
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010929 // Check if the return types are covariant
10930 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010931
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010932 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010933 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10934 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010935 NewClassTy = NewPT->getPointeeType();
10936 OldClassTy = OldPT->getPointeeType();
10937 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010938 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10939 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10940 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10941 NewClassTy = NewRT->getPointeeType();
10942 OldClassTy = OldRT->getPointeeType();
10943 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010944 }
10945 }
Mike Stump1eb44332009-09-09 15:08:12 +000010946
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010947 // The return types aren't either both pointers or references to a class type.
10948 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010949 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010950 diag::err_different_return_type_for_overriding_virtual_function)
10951 << New->getDeclName() << NewTy << OldTy;
10952 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010953
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010954 return true;
10955 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010956
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010957 // C++ [class.virtual]p6:
10958 // If the return type of D::f differs from the return type of B::f, the
10959 // class type in the return type of D::f shall be complete at the point of
10960 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010961 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10962 if (!RT->isBeingDefined() &&
10963 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010964 diag::err_covariant_return_incomplete,
10965 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010966 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010967 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010968
Douglas Gregora4923eb2009-11-16 21:35:15 +000010969 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010970 // Check if the new class derives from the old class.
10971 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10972 Diag(New->getLocation(),
10973 diag::err_covariant_return_not_derived)
10974 << New->getDeclName() << NewTy << OldTy;
10975 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10976 return true;
10977 }
Mike Stump1eb44332009-09-09 15:08:12 +000010978
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010979 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010980 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010981 diag::err_covariant_return_inaccessible_base,
10982 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10983 // FIXME: Should this point to the return type?
10984 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010985 // FIXME: this note won't trigger for delayed access control
10986 // diagnostics, and it's impossible to get an undelayed error
10987 // here from access control during the original parse because
10988 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010989 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10990 return true;
10991 }
10992 }
Mike Stump1eb44332009-09-09 15:08:12 +000010993
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010994 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010995 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010996 Diag(New->getLocation(),
10997 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010998 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010999 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11000 return true;
11001 };
Mike Stump1eb44332009-09-09 15:08:12 +000011002
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011003
11004 // The new class type must have the same or less qualifiers as the old type.
11005 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
11006 Diag(New->getLocation(),
11007 diag::err_covariant_return_type_class_type_more_qualified)
11008 << New->getDeclName() << NewTy << OldTy;
11009 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11010 return true;
11011 };
Mike Stump1eb44332009-09-09 15:08:12 +000011012
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011013 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011014}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011015
Douglas Gregor4ba31362009-12-01 17:24:26 +000011016/// \brief Mark the given method pure.
11017///
11018/// \param Method the method to be marked pure.
11019///
11020/// \param InitRange the source range that covers the "0" initializer.
11021bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000011022 SourceLocation EndLoc = InitRange.getEnd();
11023 if (EndLoc.isValid())
11024 Method->setRangeEnd(EndLoc);
11025
Douglas Gregor4ba31362009-12-01 17:24:26 +000011026 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
11027 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000011028 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000011029 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000011030
11031 if (!Method->isInvalidDecl())
11032 Diag(Method->getLocation(), diag::err_non_virtual_pure)
11033 << Method->getDeclName() << InitRange;
11034 return true;
11035}
11036
Douglas Gregor552e2992012-02-21 02:22:07 +000011037/// \brief Determine whether the given declaration is a static data member.
11038static bool isStaticDataMember(Decl *D) {
11039 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
11040 if (!Var)
11041 return false;
11042
11043 return Var->isStaticDataMember();
11044}
John McCall731ad842009-12-19 09:28:58 +000011045/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
11046/// an initializer for the out-of-line declaration 'Dcl'. The scope
11047/// is a fresh scope pushed for just this purpose.
11048///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011049/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
11050/// static data member of class X, names should be looked up in the scope of
11051/// class X.
John McCalld226f652010-08-21 09:40:31 +000011052void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011053 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011054 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011055
John McCall731ad842009-12-19 09:28:58 +000011056 // We should only get called for declarations with scope specifiers, like:
11057 // int foo::bar;
11058 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011059 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000011060
11061 // If we are parsing the initializer for a static data member, push a
11062 // new expression evaluation context that is associated with this static
11063 // data member.
11064 if (isStaticDataMember(D))
11065 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011066}
11067
11068/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000011069/// initializer for the out-of-line declaration 'D'.
11070void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011071 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011072 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011073
Douglas Gregor552e2992012-02-21 02:22:07 +000011074 if (isStaticDataMember(D))
11075 PopExpressionEvaluationContext();
11076
John McCall731ad842009-12-19 09:28:58 +000011077 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011078 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011079}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011080
11081/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
11082/// C++ if/switch/while/for statement.
11083/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000011084DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011085 // C++ 6.4p2:
11086 // The declarator shall not specify a function or an array.
11087 // The type-specifier-seq shall not contain typedef and shall not declare a
11088 // new class or enumeration.
11089 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
11090 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011091
11092 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000011093 if (!Dcl)
11094 return true;
11095
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011096 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
11097 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011098 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000011099 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011100 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011101
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011102 return Dcl;
11103}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011104
Douglas Gregordfe65432011-07-28 19:11:31 +000011105void Sema::LoadExternalVTableUses() {
11106 if (!ExternalSource)
11107 return;
11108
11109 SmallVector<ExternalVTableUse, 4> VTables;
11110 ExternalSource->ReadUsedVTables(VTables);
11111 SmallVector<VTableUse, 4> NewUses;
11112 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
11113 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
11114 = VTablesUsed.find(VTables[I].Record);
11115 // Even if a definition wasn't required before, it may be required now.
11116 if (Pos != VTablesUsed.end()) {
11117 if (!Pos->second && VTables[I].DefinitionRequired)
11118 Pos->second = true;
11119 continue;
11120 }
11121
11122 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
11123 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
11124 }
11125
11126 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
11127}
11128
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011129void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
11130 bool DefinitionRequired) {
11131 // Ignore any vtable uses in unevaluated operands or for classes that do
11132 // not have a vtable.
11133 if (!Class->isDynamicClass() || Class->isDependentContext() ||
11134 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000011135 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000011136 return;
11137
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011138 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000011139 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011140 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11141 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
11142 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
11143 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000011144 // If we already had an entry, check to see if we are promoting this vtable
11145 // to required a definition. If so, we need to reappend to the VTableUses
11146 // list, since we may have already processed the first entry.
11147 if (DefinitionRequired && !Pos.first->second) {
11148 Pos.first->second = true;
11149 } else {
11150 // Otherwise, we can early exit.
11151 return;
11152 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011153 }
11154
11155 // Local classes need to have their virtual members marked
11156 // immediately. For all other classes, we mark their virtual members
11157 // at the end of the translation unit.
11158 if (Class->isLocalClass())
11159 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000011160 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011161 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000011162}
11163
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011164bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000011165 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011166 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000011167 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000011168
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011169 // Note: The VTableUses vector could grow as a result of marking
11170 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000011171 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011172 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000011173 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011174 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000011175 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011176 if (!Class)
11177 continue;
11178
11179 SourceLocation Loc = VTableUses[I].second;
11180
Richard Smithb9d0b762012-07-27 04:22:15 +000011181 bool DefineVTable = true;
11182
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011183 // If this class has a key function, but that key function is
11184 // defined in another translation unit, we don't need to emit the
11185 // vtable even though we're using it.
11186 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000011187 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011188 switch (KeyFunction->getTemplateSpecializationKind()) {
11189 case TSK_Undeclared:
11190 case TSK_ExplicitSpecialization:
11191 case TSK_ExplicitInstantiationDeclaration:
11192 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000011193 DefineVTable = false;
11194 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011195
11196 case TSK_ExplicitInstantiationDefinition:
11197 case TSK_ImplicitInstantiation:
11198 // We will be instantiating the key function.
11199 break;
11200 }
11201 } else if (!KeyFunction) {
11202 // If we have a class with no key function that is the subject
11203 // of an explicit instantiation declaration, suppress the
11204 // vtable; it will live with the explicit instantiation
11205 // definition.
11206 bool IsExplicitInstantiationDeclaration
11207 = Class->getTemplateSpecializationKind()
11208 == TSK_ExplicitInstantiationDeclaration;
11209 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
11210 REnd = Class->redecls_end();
11211 R != REnd; ++R) {
11212 TemplateSpecializationKind TSK
11213 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
11214 if (TSK == TSK_ExplicitInstantiationDeclaration)
11215 IsExplicitInstantiationDeclaration = true;
11216 else if (TSK == TSK_ExplicitInstantiationDefinition) {
11217 IsExplicitInstantiationDeclaration = false;
11218 break;
11219 }
11220 }
11221
11222 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000011223 DefineVTable = false;
11224 }
11225
11226 // The exception specifications for all virtual members may be needed even
11227 // if we are not providing an authoritative form of the vtable in this TU.
11228 // We may choose to emit it available_externally anyway.
11229 if (!DefineVTable) {
11230 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
11231 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011232 }
11233
11234 // Mark all of the virtual members of this class as referenced, so
11235 // that we can build a vtable. Then, tell the AST consumer that a
11236 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000011237 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011238 MarkVirtualMembersReferenced(Loc, Class);
11239 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11240 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
11241
11242 // Optionally warn if we're emitting a weak vtable.
11243 if (Class->getLinkage() == ExternalLinkage &&
11244 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000011245 const FunctionDecl *KeyFunctionDef = 0;
11246 if (!KeyFunction ||
11247 (KeyFunction->hasBody(KeyFunctionDef) &&
11248 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000011249 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
11250 TSK_ExplicitInstantiationDefinition
11251 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
11252 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011253 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011254 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011255 VTableUses.clear();
11256
Douglas Gregor78844032011-04-22 22:25:37 +000011257 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011258}
Anders Carlssond6a637f2009-12-07 08:24:59 +000011259
Richard Smithb9d0b762012-07-27 04:22:15 +000011260void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
11261 const CXXRecordDecl *RD) {
11262 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
11263 E = RD->method_end(); I != E; ++I)
11264 if ((*I)->isVirtual() && !(*I)->isPure())
11265 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
11266}
11267
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011268void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
11269 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000011270 // Mark all functions which will appear in RD's vtable as used.
11271 CXXFinalOverriderMap FinalOverriders;
11272 RD->getFinalOverriders(FinalOverriders);
11273 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
11274 E = FinalOverriders.end();
11275 I != E; ++I) {
11276 for (OverridingMethods::const_iterator OI = I->second.begin(),
11277 OE = I->second.end();
11278 OI != OE; ++OI) {
11279 assert(OI->second.size() > 0 && "no final overrider");
11280 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000011281
Richard Smithff817f72012-07-07 06:59:51 +000011282 // C++ [basic.def.odr]p2:
11283 // [...] A virtual member function is used if it is not pure. [...]
11284 if (!Overrider->isPure())
11285 MarkFunctionReferenced(Loc, Overrider);
11286 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011287 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011288
11289 // Only classes that have virtual bases need a VTT.
11290 if (RD->getNumVBases() == 0)
11291 return;
11292
11293 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
11294 e = RD->bases_end(); i != e; ++i) {
11295 const CXXRecordDecl *Base =
11296 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011297 if (Base->getNumVBases() == 0)
11298 continue;
11299 MarkVirtualMembersReferenced(Loc, Base);
11300 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011301}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011302
11303/// SetIvarInitializers - This routine builds initialization ASTs for the
11304/// Objective-C implementation whose ivars need be initialized.
11305void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000011306 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011307 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000011308 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000011309 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011310 CollectIvarsToConstructOrDestruct(OID, ivars);
11311 if (ivars.empty())
11312 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000011313 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011314 for (unsigned i = 0; i < ivars.size(); i++) {
11315 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011316 if (Field->isInvalidDecl())
11317 continue;
11318
Sean Huntcbb67482011-01-08 20:30:50 +000011319 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011320 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
11321 InitializationKind InitKind =
11322 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
11323
11324 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000011325 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000011326 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000011327 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011328 // Note, MemberInit could actually come back empty if no initialization
11329 // is required (e.g., because it would call a trivial default constructor)
11330 if (!MemberInit.get() || MemberInit.isInvalid())
11331 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000011332
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011333 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000011334 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
11335 SourceLocation(),
11336 MemberInit.takeAs<Expr>(),
11337 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011338 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011339
11340 // Be sure that the destructor is accessible and is marked as referenced.
11341 if (const RecordType *RecordTy
11342 = Context.getBaseElementType(Field->getType())
11343 ->getAs<RecordType>()) {
11344 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000011345 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011346 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011347 CheckDestructorAccess(Field->getLocation(), Destructor,
11348 PDiag(diag::err_access_dtor_ivar)
11349 << Context.getBaseElementType(Field->getType()));
11350 }
11351 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011352 }
11353 ObjCImplementation->setIvarInitializers(Context,
11354 AllToInit.data(), AllToInit.size());
11355 }
11356}
Sean Huntfe57eef2011-05-04 05:57:24 +000011357
Sean Huntebcbe1d2011-05-04 23:29:54 +000011358static
11359void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
11360 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
11361 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
11362 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
11363 Sema &S) {
11364 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11365 CE = Current.end();
11366 if (Ctor->isInvalidDecl())
11367 return;
11368
Richard Smitha8eaf002012-08-23 06:16:52 +000011369 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
11370
11371 // Target may not be determinable yet, for instance if this is a dependent
11372 // call in an uninstantiated template.
11373 if (Target) {
11374 const FunctionDecl *FNTarget = 0;
11375 (void)Target->hasBody(FNTarget);
11376 Target = const_cast<CXXConstructorDecl*>(
11377 cast_or_null<CXXConstructorDecl>(FNTarget));
11378 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000011379
11380 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
11381 // Avoid dereferencing a null pointer here.
11382 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
11383
11384 if (!Current.insert(Canonical))
11385 return;
11386
11387 // We know that beyond here, we aren't chaining into a cycle.
11388 if (!Target || !Target->isDelegatingConstructor() ||
11389 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11390 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11391 Valid.insert(*CI);
11392 Current.clear();
11393 // We've hit a cycle.
11394 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11395 Current.count(TCanonical)) {
11396 // If we haven't diagnosed this cycle yet, do so now.
11397 if (!Invalid.count(TCanonical)) {
11398 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011399 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011400 << Ctor;
11401
Richard Smitha8eaf002012-08-23 06:16:52 +000011402 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011403 if (TCanonical != Canonical)
11404 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11405
11406 CXXConstructorDecl *C = Target;
11407 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011408 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011409 (void)C->getTargetConstructor()->hasBody(FNTarget);
11410 assert(FNTarget && "Ctor cycle through bodiless function");
11411
Richard Smitha8eaf002012-08-23 06:16:52 +000011412 C = const_cast<CXXConstructorDecl*>(
11413 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011414 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11415 }
11416 }
11417
11418 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11419 Invalid.insert(*CI);
11420 Current.clear();
11421 } else {
11422 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11423 }
11424}
11425
11426
Sean Huntfe57eef2011-05-04 05:57:24 +000011427void Sema::CheckDelegatingCtorCycles() {
11428 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11429
Sean Huntebcbe1d2011-05-04 23:29:54 +000011430 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11431 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011432
Douglas Gregor0129b562011-07-27 21:57:17 +000011433 for (DelegatingCtorDeclsType::iterator
11434 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011435 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011436 I != E; ++I)
11437 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011438
11439 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11440 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011441}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011442
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011443namespace {
11444 /// \brief AST visitor that finds references to the 'this' expression.
11445 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11446 Sema &S;
11447
11448 public:
11449 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11450
11451 bool VisitCXXThisExpr(CXXThisExpr *E) {
11452 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11453 << E->isImplicit();
11454 return false;
11455 }
11456 };
11457}
11458
11459bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11460 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11461 if (!TSInfo)
11462 return false;
11463
11464 TypeLoc TL = TSInfo->getTypeLoc();
11465 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11466 if (!ProtoTL)
11467 return false;
11468
11469 // C++11 [expr.prim.general]p3:
11470 // [The expression this] shall not appear before the optional
11471 // cv-qualifier-seq and it shall not appear within the declaration of a
11472 // static member function (although its type and value category are defined
11473 // within a static member function as they are within a non-static member
11474 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011475 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011476 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11477 FindCXXThisExpr Finder(*this);
11478
11479 // If the return type came after the cv-qualifier-seq, check it now.
11480 if (Proto->hasTrailingReturn() &&
11481 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11482 return true;
11483
11484 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011485 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11486 return true;
11487
11488 return checkThisInStaticMemberFunctionAttributes(Method);
11489}
11490
11491bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11492 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11493 if (!TSInfo)
11494 return false;
11495
11496 TypeLoc TL = TSInfo->getTypeLoc();
11497 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11498 if (!ProtoTL)
11499 return false;
11500
11501 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11502 FindCXXThisExpr Finder(*this);
11503
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011504 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011505 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011506 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011507 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011508 case EST_DynamicNone:
11509 case EST_MSAny:
11510 case EST_None:
11511 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011512
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011513 case EST_ComputedNoexcept:
11514 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11515 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011516
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011517 case EST_Dynamic:
11518 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011519 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011520 E != EEnd; ++E) {
11521 if (!Finder.TraverseType(*E))
11522 return true;
11523 }
11524 break;
11525 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011526
11527 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011528}
11529
11530bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11531 FindCXXThisExpr Finder(*this);
11532
11533 // Check attributes.
11534 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11535 A != AEnd; ++A) {
11536 // FIXME: This should be emitted by tblgen.
11537 Expr *Arg = 0;
11538 ArrayRef<Expr *> Args;
11539 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11540 Arg = G->getArg();
11541 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11542 Arg = G->getArg();
11543 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11544 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11545 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11546 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11547 else if (ExclusiveLockFunctionAttr *ELF
11548 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11549 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11550 else if (SharedLockFunctionAttr *SLF
11551 = dyn_cast<SharedLockFunctionAttr>(*A))
11552 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11553 else if (ExclusiveTrylockFunctionAttr *ETLF
11554 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11555 Arg = ETLF->getSuccessValue();
11556 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11557 } else if (SharedTrylockFunctionAttr *STLF
11558 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11559 Arg = STLF->getSuccessValue();
11560 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11561 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11562 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11563 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11564 Arg = LR->getArg();
11565 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11566 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11567 else if (ExclusiveLocksRequiredAttr *ELR
11568 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11569 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11570 else if (SharedLocksRequiredAttr *SLR
11571 = dyn_cast<SharedLocksRequiredAttr>(*A))
11572 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11573
11574 if (Arg && !Finder.TraverseStmt(Arg))
11575 return true;
11576
11577 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11578 if (!Finder.TraverseStmt(Args[I]))
11579 return true;
11580 }
11581 }
11582
11583 return false;
11584}
11585
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011586void
11587Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11588 ArrayRef<ParsedType> DynamicExceptions,
11589 ArrayRef<SourceRange> DynamicExceptionRanges,
11590 Expr *NoexceptExpr,
11591 llvm::SmallVectorImpl<QualType> &Exceptions,
11592 FunctionProtoType::ExtProtoInfo &EPI) {
11593 Exceptions.clear();
11594 EPI.ExceptionSpecType = EST;
11595 if (EST == EST_Dynamic) {
11596 Exceptions.reserve(DynamicExceptions.size());
11597 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11598 // FIXME: Preserve type source info.
11599 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11600
11601 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11602 collectUnexpandedParameterPacks(ET, Unexpanded);
11603 if (!Unexpanded.empty()) {
11604 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11605 UPPC_ExceptionType,
11606 Unexpanded);
11607 continue;
11608 }
11609
11610 // Check that the type is valid for an exception spec, and
11611 // drop it if not.
11612 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11613 Exceptions.push_back(ET);
11614 }
11615 EPI.NumExceptions = Exceptions.size();
11616 EPI.Exceptions = Exceptions.data();
11617 return;
11618 }
11619
11620 if (EST == EST_ComputedNoexcept) {
11621 // If an error occurred, there's no expression here.
11622 if (NoexceptExpr) {
11623 assert((NoexceptExpr->isTypeDependent() ||
11624 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11625 Context.BoolTy) &&
11626 "Parser should have made sure that the expression is boolean");
11627 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11628 EPI.ExceptionSpecType = EST_BasicNoexcept;
11629 return;
11630 }
11631
11632 if (!NoexceptExpr->isValueDependent())
11633 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011634 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011635 /*AllowFold*/ false).take();
11636 EPI.NoexceptExpr = NoexceptExpr;
11637 }
11638 return;
11639 }
11640}
11641
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011642/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11643Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11644 // Implicitly declared functions (e.g. copy constructors) are
11645 // __host__ __device__
11646 if (D->isImplicit())
11647 return CFT_HostDevice;
11648
11649 if (D->hasAttr<CUDAGlobalAttr>())
11650 return CFT_Global;
11651
11652 if (D->hasAttr<CUDADeviceAttr>()) {
11653 if (D->hasAttr<CUDAHostAttr>())
11654 return CFT_HostDevice;
11655 else
11656 return CFT_Device;
11657 }
11658
11659 return CFT_Host;
11660}
11661
11662bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11663 CUDAFunctionTarget CalleeTarget) {
11664 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11665 // Callable from the device only."
11666 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11667 return true;
11668
11669 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11670 // Callable from the host only."
11671 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11672 // Callable from the host only."
11673 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11674 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11675 return true;
11676
11677 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11678 return true;
11679
11680 return false;
11681}